diff --git a/.gitignore b/.gitignore index 45cfa1b..2ccedc9 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,3 @@ *.lock *.ini /runtime/* -/public/storage/* -/public/backup/* -/app/crud/file/* diff --git a/vendor/.gitignore b/vendor/.gitignore index c96a04f..e69de29 100644 --- a/vendor/.gitignore +++ b/vendor/.gitignore @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/vendor/adbario/php-dot-notation/LICENSE.md b/vendor/adbario/php-dot-notation/LICENSE.md new file mode 100644 index 0000000..fe01323 --- /dev/null +++ b/vendor/adbario/php-dot-notation/LICENSE.md @@ -0,0 +1,21 @@ +# The MIT License (MIT) + +Copyright (c) 2016-2019 Riku Särkinen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/adbario/php-dot-notation/composer.json b/vendor/adbario/php-dot-notation/composer.json new file mode 100644 index 0000000..cea7126 --- /dev/null +++ b/vendor/adbario/php-dot-notation/composer.json @@ -0,0 +1,29 @@ +{ + "name": "adbario/php-dot-notation", + "description": "PHP dot notation access to arrays", + "keywords": ["dotnotation", "arrayaccess"], + "homepage": "https://github.com/adbario/php-dot-notation", + "license": "MIT", + "authors": [ + { + "name": "Riku Särkinen", + "email": "riku@adbar.io" + } + ], + "require": { + "php": "^5.5 || ^7.0 || ^8.0", + "ext-json": "*" + }, + "require-dev": { + "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5", + "squizlabs/php_codesniffer": "^3.6" + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Adbar\\": "src" + } + } +} diff --git a/vendor/adbario/php-dot-notation/src/Dot.php b/vendor/adbario/php-dot-notation/src/Dot.php new file mode 100644 index 0000000..3cd1c50 --- /dev/null +++ b/vendor/adbario/php-dot-notation/src/Dot.php @@ -0,0 +1,623 @@ + + * @link https://github.com/adbario/php-dot-notation + * @license https://github.com/adbario/php-dot-notation/blob/2.x/LICENSE.md (MIT License) + */ +namespace Adbar; + +use Countable; +use ArrayAccess; +use ArrayIterator; +use JsonSerializable; +use IteratorAggregate; + +/** + * Dot + * + * This class provides a dot notation access and helper functions for + * working with arrays of data. Inspired by Laravel Collection. + */ +class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable +{ + /** + * The stored items + * + * @var array + */ + protected $items = []; + + + /** + * The delimiter (alternative to a '.') to be used. + * + * @var string + */ + protected $delimiter = '.'; + + + /** + * Create a new Dot instance + * + * @param mixed $items + * @param string $delimiter + */ + public function __construct($items = [], $delimiter = '.') + { + $this->items = $this->getArrayItems($items); + $this->delimiter = strlen($delimiter) ? $delimiter : '.'; + } + + /** + * Set a given key / value pair or pairs + * if the key doesn't exist already + * + * @param array|int|string $keys + * @param mixed $value + */ + public function add($keys, $value = null) + { + if (is_array($keys)) { + foreach ($keys as $key => $value) { + $this->add($key, $value); + } + } elseif (is_null($this->get($keys))) { + $this->set($keys, $value); + } + } + + /** + * Return all the stored items + * + * @return array + */ + public function all() + { + return $this->items; + } + + /** + * Delete the contents of a given key or keys + * + * @param array|int|string|null $keys + */ + public function clear($keys = null) + { + if (is_null($keys)) { + $this->items = []; + + return; + } + + $keys = (array) $keys; + + foreach ($keys as $key) { + $this->set($key, []); + } + } + + /** + * Delete the given key or keys + * + * @param array|int|string $keys + */ + public function delete($keys) + { + $keys = (array) $keys; + + foreach ($keys as $key) { + if ($this->exists($this->items, $key)) { + unset($this->items[$key]); + + continue; + } + + $items = &$this->items; + $segments = explode($this->delimiter, $key); + $lastSegment = array_pop($segments); + + foreach ($segments as $segment) { + if (!isset($items[$segment]) || !is_array($items[$segment])) { + continue 2; + } + + $items = &$items[$segment]; + } + + unset($items[$lastSegment]); + } + } + + /** + * Checks if the given key exists in the provided array. + * + * @param array $array Array to validate + * @param int|string $key The key to look for + * + * @return bool + */ + protected function exists($array, $key) + { + return array_key_exists($key, $array); + } + + /** + * Flatten an array with the given character as a key delimiter + * + * @param string $delimiter + * @param array|null $items + * @param string $prepend + * @return array + */ + public function flatten($delimiter = '.', $items = null, $prepend = '') + { + $flatten = []; + + if (is_null($items)) { + $items = $this->items; + } + + if (!func_num_args()) { + $delimiter = $this->delimiter; + } + + foreach ($items as $key => $value) { + if (is_array($value) && !empty($value)) { + $flatten = array_merge( + $flatten, + $this->flatten($delimiter, $value, $prepend.$key.$delimiter) + ); + } else { + $flatten[$prepend.$key] = $value; + } + } + + return $flatten; + } + + /** + * Return the value of a given key + * + * @param int|string|null $key + * @param mixed $default + * @return mixed + */ + public function get($key = null, $default = null) + { + if (is_null($key)) { + return $this->items; + } + + if ($this->exists($this->items, $key)) { + return $this->items[$key]; + } + + if (strpos($key, $this->delimiter) === false) { + return $default; + } + + $items = $this->items; + + foreach (explode($this->delimiter, $key) as $segment) { + if (!is_array($items) || !$this->exists($items, $segment)) { + return $default; + } + + $items = &$items[$segment]; + } + + return $items; + } + + /** + * Return the given items as an array + * + * @param mixed $items + * @return array + */ + protected function getArrayItems($items) + { + if (is_array($items)) { + return $items; + } elseif ($items instanceof self) { + return $items->all(); + } + + return (array) $items; + } + + /** + * Check if a given key or keys exists + * + * @param array|int|string $keys + * @return bool + */ + public function has($keys) + { + $keys = (array) $keys; + + if (!$this->items || $keys === []) { + return false; + } + + foreach ($keys as $key) { + $items = $this->items; + + if ($this->exists($items, $key)) { + continue; + } + + foreach (explode($this->delimiter, $key) as $segment) { + if (!is_array($items) || !$this->exists($items, $segment)) { + return false; + } + + $items = $items[$segment]; + } + } + + return true; + } + + /** + * Check if a given key or keys are empty + * + * @param array|int|string|null $keys + * @return bool + */ + public function isEmpty($keys = null) + { + if (is_null($keys)) { + return empty($this->items); + } + + $keys = (array) $keys; + + foreach ($keys as $key) { + if (!empty($this->get($key))) { + return false; + } + } + + return true; + } + + /** + * Merge a given array or a Dot object with the given key + * or with the whole Dot object + * + * @param array|string|self $key + * @param array|self $value + */ + public function merge($key, $value = []) + { + if (is_array($key)) { + $this->items = array_merge($this->items, $key); + } elseif (is_string($key)) { + $items = (array) $this->get($key); + $value = array_merge($items, $this->getArrayItems($value)); + + $this->set($key, $value); + } elseif ($key instanceof self) { + $this->items = array_merge($this->items, $key->all()); + } + } + + /** + * Recursively merge a given array or a Dot object with the given key + * or with the whole Dot object. + * + * Duplicate keys are converted to arrays. + * + * @param array|string|self $key + * @param array|self $value + */ + public function mergeRecursive($key, $value = []) + { + if (is_array($key)) { + $this->items = array_merge_recursive($this->items, $key); + } elseif (is_string($key)) { + $items = (array) $this->get($key); + $value = array_merge_recursive($items, $this->getArrayItems($value)); + + $this->set($key, $value); + } elseif ($key instanceof self) { + $this->items = array_merge_recursive($this->items, $key->all()); + } + } + + /** + * Recursively merge a given array or a Dot object with the given key + * or with the whole Dot object. + * + * Instead of converting duplicate keys to arrays, the value from + * given array will replace the value in Dot object. + * + * @param array|string|self $key + * @param array|self $value + */ + public function mergeRecursiveDistinct($key, $value = []) + { + if (is_array($key)) { + $this->items = $this->arrayMergeRecursiveDistinct($this->items, $key); + } elseif (is_string($key)) { + $items = (array) $this->get($key); + $value = $this->arrayMergeRecursiveDistinct($items, $this->getArrayItems($value)); + + $this->set($key, $value); + } elseif ($key instanceof self) { + $this->items = $this->arrayMergeRecursiveDistinct($this->items, $key->all()); + } + } + + /** + * Merges two arrays recursively. In contrast to array_merge_recursive, + * duplicate keys are not converted to arrays but rather overwrite the + * value in the first array with the duplicate value in the second array. + * + * @param array $array1 Initial array to merge + * @param array $array2 Array to recursively merge + * @return array + */ + protected function arrayMergeRecursiveDistinct(array $array1, array $array2) + { + $merged = &$array1; + + foreach ($array2 as $key => $value) { + if (is_array($value) && isset($merged[$key]) && is_array($merged[$key])) { + $merged[$key] = $this->arrayMergeRecursiveDistinct($merged[$key], $value); + } else { + $merged[$key] = $value; + } + } + + return $merged; + } + + /** + * Return the value of a given key and + * delete the key + * + * @param int|string|null $key + * @param mixed $default + * @return mixed + */ + public function pull($key = null, $default = null) + { + if (is_null($key)) { + $value = $this->all(); + $this->clear(); + + return $value; + } + + $value = $this->get($key, $default); + $this->delete($key); + + return $value; + } + + /** + * Push a given value to the end of the array + * in a given key + * + * @param mixed $key + * @param mixed $value + */ + public function push($key, $value = null) + { + if (is_null($value)) { + $this->items[] = $key; + + return; + } + + $items = $this->get($key); + + if (is_array($items) || is_null($items)) { + $items[] = $value; + $this->set($key, $items); + } + } + + /** + * Replace all values or values within the given key + * with an array or Dot object + * + * @param array|string|self $key + * @param array|self $value + */ + public function replace($key, $value = []) + { + if (is_array($key)) { + $this->items = array_replace($this->items, $key); + } elseif (is_string($key)) { + $items = (array) $this->get($key); + $value = array_replace($items, $this->getArrayItems($value)); + + $this->set($key, $value); + } elseif ($key instanceof self) { + $this->items = array_replace($this->items, $key->all()); + } + } + + /** + * Set a given key / value pair or pairs + * + * @param array|int|string $keys + * @param mixed $value + */ + public function set($keys, $value = null) + { + if (is_array($keys)) { + foreach ($keys as $key => $value) { + $this->set($key, $value); + } + + return; + } + + $items = &$this->items; + + foreach (explode($this->delimiter, $keys) as $key) { + if (!isset($items[$key]) || !is_array($items[$key])) { + $items[$key] = []; + } + + $items = &$items[$key]; + } + + $items = $value; + } + + /** + * Replace all items with a given array + * + * @param mixed $items + */ + public function setArray($items) + { + $this->items = $this->getArrayItems($items); + } + + /** + * Replace all items with a given array as a reference + * + * @param array $items + */ + public function setReference(array &$items) + { + $this->items = &$items; + } + + /** + * Return the value of a given key or all the values as JSON + * + * @param mixed $key + * @param int $options + * @return string + */ + public function toJson($key = null, $options = 0) + { + if (is_string($key)) { + return json_encode($this->get($key), $options); + } + + $options = $key === null ? 0 : $key; + + return json_encode($this->items, $options); + } + + /* + * -------------------------------------------------------------- + * ArrayAccess interface + * -------------------------------------------------------------- + */ + + /** + * Check if a given key exists + * + * @param int|string $key + * @return bool + */ + #[\ReturnTypeWillChange] + public function offsetExists($key) + { + return $this->has($key); + } + + /** + * Return the value of a given key + * + * @param int|string $key + * @return mixed + */ + #[\ReturnTypeWillChange] + public function offsetGet($key) + { + return $this->get($key); + } + + /** + * Set a given value to the given key + * + * @param int|string|null $key + * @param mixed $value + */ + #[\ReturnTypeWillChange] + public function offsetSet($key, $value) + { + if (is_null($key)) { + $this->items[] = $value; + + return; + } + + $this->set($key, $value); + } + + /** + * Delete the given key + * + * @param int|string $key + */ + #[\ReturnTypeWillChange] + public function offsetUnset($key) + { + $this->delete($key); + } + + /* + * -------------------------------------------------------------- + * Countable interface + * -------------------------------------------------------------- + */ + + /** + * Return the number of items in a given key + * + * @param int|string|null $key + * @return int + */ + #[\ReturnTypeWillChange] + public function count($key = null) + { + return count($this->get($key)); + } + + /* + * -------------------------------------------------------------- + * IteratorAggregate interface + * -------------------------------------------------------------- + */ + + /** + * Get an iterator for the stored items + * + * @return \ArrayIterator + */ + #[\ReturnTypeWillChange] + public function getIterator() + { + return new ArrayIterator($this->items); + } + + /* + * -------------------------------------------------------------- + * JsonSerializable interface + * -------------------------------------------------------------- + */ + + /** + * Return items for JSON serialization + * + * @return array + */ + #[\ReturnTypeWillChange] + public function jsonSerialize() + { + return $this->items; + } +} diff --git a/vendor/adbario/php-dot-notation/src/helpers.php b/vendor/adbario/php-dot-notation/src/helpers.php new file mode 100644 index 0000000..bebb952 --- /dev/null +++ b/vendor/adbario/php-dot-notation/src/helpers.php @@ -0,0 +1,24 @@ + + * @link https://github.com/adbario/php-dot-notation + * @license https://github.com/adbario/php-dot-notation/blob/2.x/LICENSE.md (MIT License) + */ + +use Adbar\Dot; + +if (! function_exists('dot')) { + /** + * Create a new Dot object with the given items and optional delimiter + * + * @param mixed $items + * @param string $delimiter + * @return \Adbar\Dot + */ + function dot($items, $delimiter = '.') + { + return new Dot($items, $delimiter); + } +} diff --git a/vendor/alibabacloud/credentials/CHANGELOG.md b/vendor/alibabacloud/credentials/CHANGELOG.md new file mode 100644 index 0000000..703a558 --- /dev/null +++ b/vendor/alibabacloud/credentials/CHANGELOG.md @@ -0,0 +1,18 @@ +# CHANGELOG + +## 1.2.0 - 2024-10-17 + +- Refactor all credentials providers. + +## 1.1.3 - 2020-12-24 + +- Require guzzle ^6.3|^7.0 + +## 1.0.2 - 2020-02-14 +- Update Tea. + +## 1.0.1 - 2019-12-30 +- Supported get `Role Name` automatically. + +## 1.0.0 - 2019-09-01 +- Initial release of the Alibaba Cloud Credentials for PHP Version 1.0.0 on Packagist See for more information. diff --git a/vendor/alibabacloud/credentials/CONTRIBUTING.md b/vendor/alibabacloud/credentials/CONTRIBUTING.md new file mode 100644 index 0000000..8ed9330 --- /dev/null +++ b/vendor/alibabacloud/credentials/CONTRIBUTING.md @@ -0,0 +1,30 @@ +# CONTRIBUTING + +We work hard to provide a high-quality and useful SDK for Alibaba Cloud, and +we greatly value feedback and contributions from our community. Please submit +your [issues][issues] or [pull requests][pull-requests] through GitHub. + +## Tips + +- The SDK is released under the [Apache license][license]. Any code you submit + will be released under that license. For substantial contributions, we may + ask you to sign a [Alibaba Documentation Corporate Contributor License + Agreement (CLA)][cla]. +- We follow all of the relevant PSR recommendations from the [PHP Framework + Interop Group][php-fig]. Please submit code that follows these standards. + The [PHP CS Fixer][cs-fixer] tool can be helpful for formatting your code. + Your can use `composer fixer` to fix code. +- We maintain a high percentage of code coverage in our unit tests. If you make + changes to the code, please add, update, and/or remove tests as appropriate. +- If your code does not conform to the PSR standards, does not include adequate + tests, or does not contain a changelog document, we may ask you to update + your pull requests before we accept them. We also reserve the right to deny + any pull requests that do not align with our standards or goals. + +[issues]: https://github.com/aliyun/credentials-php/issues +[pull-requests]: https://github.com/aliyun/credentials-php/pulls +[license]: http://www.apache.org/licenses/LICENSE-2.0 +[cla]: https://alibaba-cla-2018.oss-cn-beijing.aliyuncs.com/Alibaba_Documentation_Open_Source_Corporate_CLA.pdf +[php-fig]: http://php-fig.org +[cs-fixer]: http://cs.sensiolabs.org/ +[docs-readme]: https://github.com/aliyun/credentials-php/blob/master/README.md diff --git a/vendor/alibabacloud/credentials/LICENSE.md b/vendor/alibabacloud/credentials/LICENSE.md new file mode 100644 index 0000000..ec13fcc --- /dev/null +++ b/vendor/alibabacloud/credentials/LICENSE.md @@ -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/credentials/NOTICE.md b/vendor/alibabacloud/credentials/NOTICE.md new file mode 100644 index 0000000..97db193 --- /dev/null +++ b/vendor/alibabacloud/credentials/NOTICE.md @@ -0,0 +1,88 @@ +# NOTICE + + + +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. +A copy of the License is located at + + + +or in the "license" file accompanying this file. This file 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. + +# Guzzle + + + +Copyright (c) 2011-2018 Michael Dowling, https://github.com/mtdowling + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +# jmespath.php + + + +Copyright (c) 2014 Michael Dowling, https://github.com/mtdowling + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +# Dot + + + +Copyright (c) 2016-2019 Riku Särkinen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/alibabacloud/credentials/README-zh-CN.md b/vendor/alibabacloud/credentials/README-zh-CN.md new file mode 100644 index 0000000..5ef6ecd --- /dev/null +++ b/vendor/alibabacloud/credentials/README-zh-CN.md @@ -0,0 +1,423 @@ +[English](/README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +# Alibaba Cloud Credentials for PHP + +[![PHP CI](https://github.com/aliyun/credentials-php/actions/workflows/ci.yml/badge.svg)](https://github.com/aliyun/credentials-php/actions/workflows/ci.yml) +[![codecov](https://codecov.io/gh/aliyun/credentials-php/graph/badge.svg?token=YIkSjtfKbB)](https://codecov.io/gh/aliyun/credentials-php) +[![Latest Stable Version](https://poser.pugx.org/alibabacloud/credentials/v/stable)](https://packagist.org/packages/alibabacloud/credentials) +[![composer.lock](https://poser.pugx.org/alibabacloud/credentials/composerlock)](https://packagist.org/packages/alibabacloud/credentials) +[![Total Downloads](https://poser.pugx.org/alibabacloud/credentials/downloads)](https://packagist.org/packages/alibabacloud/credentials) +[![License](https://poser.pugx.org/alibabacloud/credentials/license)](https://packagist.org/packages/alibabacloud/credentials) + +Alibaba Cloud Credentials for PHP 是帮助 PHP 开发者管理凭据的工具。 + +## 先决条件 + +您的系统需要满足[先决条件](/docs/zh-CN/0-Prerequisites.md),包括 PHP> = 5.6。 我们强烈建议使用cURL扩展,并使用TLS后端编译cURL 7.16.2+。 + +## 安装依赖 + +如果已在系统上[全局安装 Composer](https://getcomposer.org/doc/00-intro.md#globally),请直接在项目目录中运行以下内容来安装 Alibaba Cloud Credentials for PHP 作为依赖项: + +```sh +composer require alibabacloud/credentials +``` + +> 一些用户可能由于网络问题无法安装,可以使用[阿里云 Composer 全量镜像](https://developer.aliyun.com/composer)。 + +请看[安装](/docs/zh-CN/1-Installation.md)有关通过 Composer 和其他方式安装的详细信息。 + +## 快速使用 + +在您开始之前,您需要注册阿里云帐户并获取您的[凭证](https://usercenter.console.aliyun.com/#/manage/ak)。 + +### 凭证类型 + +#### 使用默认凭据链 +当您在初始化凭据客户端不传入任何参数时,Credentials工具会使用默认凭据链方式初始化客户端。默认凭据的读取逻辑请参见[默认凭据链](#默认凭证提供程序链)。 + +```php +getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### AccessKey + +通过[用户信息管理][ak]设置 access_key,它们具有该账户完全的权限,请妥善保管。有时出于安全考虑,您不能把具有完全访问权限的主账户 AccessKey 交于一个项目的开发者使用,您可以[创建RAM子账户][ram]并为子账户[授权][permissions],使用RAM子用户的 AccessKey 来进行API调用。 + +```php + 'access_key', + 'accessKeyId' => '', + 'accessKeySecret' => '', +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +``` + +#### STS + +通过安全令牌服务(Security Token Service,简称 STS),申请临时安全凭证(Temporary Security Credentials,简称 TSC),创建临时安全凭证。 + +```php + 'sts', + 'accessKeyId' => '', + 'accessKeySecret' => '', + 'securityToken' => '', +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### RamRoleArn + +通过指定RAM角色的ARN(Alibabacloud Resource Name),Credentials工具可以帮助开发者前往STS换取STS Token。您也可以通过为 `Policy` 赋值来限制RAM角色到一个更小的权限集合。 + +```php + 'ram_role_arn', + 'accessKeyId' => '', + 'accessKeySecret' => '', + // 要扮演的RAM角色ARN,示例值:acs:ram::123456789012****:role/adminrole,可以通过环境变量ALIBABA_CLOUD_ROLE_ARN设置role_arn + 'roleArn' => '', + // 角色会话名称,可以通过环境变量ALIBABA_CLOUD_ROLE_SESSION_NAME设置role_session_name + 'roleSessionName' => '', + // 设置更小的权限策略,非必填。示例值:{"Statement": [{"Action": ["*"],"Effect": "Allow","Resource": ["*"]}],"Version":"1"} + 'policy' => '', + // 设置session过期时间,非必填。 + 'roleSessionExpiration' => 3600, +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### EcsRamRole + +ECS和ECI实例均支持绑定实例RAM角色,当在实例中使用Credentials工具时,将自动获取实例绑定的RAM角色,并通过访问元数据服务获取RAM角色的STS Token,以完成凭据客户端的初始化。 + +实例元数据服务器支持加固模式和普通模式两种访问方式,Credentials工具默认使用加固模式(IMDSv2)获取访问凭据。若使用加固模式时发生异常,您可以通过设置disableIMDSv1来执行不同的异常处理逻辑: + +- 当值为false(默认值)时,会使用普通模式继续获取访问凭据。 + +- 当值为true时,表示只能使用加固模式获取访问凭据,会抛出异常。 + +服务端是否支持IMDSv2,取决于您在服务器的配置。 + +```php + 'ecs_ram_role', + // 选填,该ECS角色的角色名称,不填会自动获取,但是建议加上以减少请求次数,可以通过环境变量ALIBABA_CLOUD_ECS_METADATA设置role_name + 'roleName' => '', + // 选填,是否强制关闭IMDSv1,即必须使用IMDSv2加固模式,可以通过环境变量ALIBABA_CLOUD_IMDSV1_DISABLED设置 + 'disableIMDSv1' => true, +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### OIDCRoleArn + +在容器服务 Kubernetes 版中设置了Worker节点RAM角色后,对应节点内的Pod中的应用也就可以像ECS上部署的应用一样,通过元数据服务(Meta Data Server)获取关联角色的STS Token。但如果容器集群上部署的是不可信的应用(比如部署您的客户提交的应用,代码也没有对您开放),您可能并不希望它们能通过元数据服务获取Worker节点关联实例RAM角色的STS Token。为了避免影响云上资源的安全,同时又能让这些不可信的应用安全地获取所需的 STS Token,实现应用级别的权限最小化,您可以使用RRSA(RAM Roles for Service Account)功能。阿里云容器集群会为不同的应用Pod创建和挂载相应的服务账户OIDC Token文件,并将相关配置信息注入到环境变量中,Credentials工具通过获取环境变量的配置信息,调用STS服务的AssumeRoleWithOIDC - OIDC角色SSO时获取扮演角色的临时身份凭证接口换取绑定角色的STS Token。详情请参见[通过RRSA配置ServiceAccount的RAM权限实现Pod权限隔离](https://help.aliyun.com/zh/ack/ack-managed-and-ack-dedicated/user-guide/use-rrsa-to-authorize-pods-to-access-different-cloud-services#task-2142941)。 + +```php + 'oidc_role_arn', + // OIDC提供商ARN,可以通过环境变量ALIBABA_CLOUD_OIDC_PROVIDER_ARN设置oidc_provider_arn + 'oidcProviderArn' => '', + // OIDC Token文件路径,可以通过环境变量ALIBABA_CLOUD_OIDC_TOKEN_FILE设置oidc_token_file_path + 'oidcTokenFilePath' => '', + // 要扮演的RAM角色ARN,示例值:acs:ram::123456789012****:role/adminrole,可以通过环境变量ALIBABA_CLOUD_ROLE_ARN设置role_arn + 'roleArn' => '', + // 角色会话名称,可以通过环境变量ALIBABA_CLOUD_ROLE_SESSION_NAME设置role_session_name + 'roleSessionName' => '', + // 设置更小的权限策略,非必填。示例值:{"Statement": [{"Action": ["*"],"Effect": "Allow","Resource": ["*"]}],"Version":"1"} + 'policy' => '', + # 设置session过期时间 + 'roleSessionExpiration' => 3600, +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### Credentials URI + +通过指定提供凭证的自定义网络服务地址,让凭证自动申请维护 STS Token。 + +```php + 'credentials_uri', + // 凭证的 URI,格式为http://local_or_remote_uri/,可以通过环境变量ALIBABA_CLOUD_CREDENTIALS_URI设置credentials_uri + 'credentialsURI' => '', +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### Bearer Token + +目前只有云呼叫中心 CCC 这款产品支持 Bearer Token 的凭据初始化方式。 + +```php + 'bearer', + // 填入您的Bearer Token + 'bearerToken' => '', +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getBearerToken(); +``` + +## 默认凭证提供程序链 + +当您的程序开发环境和生产环境采用不同的凭据类型,常见做法是在代码中获取当前环境信息,编写获取不同凭据的分支代码。借助Credentials工具的默认凭据链,您可以用同一套代码,通过程序之外的配置来控制不同环境下的凭据获取方式。当您在不传入参数的情况下,直接使用$credential = new Credential();初始化凭据客户端时,阿里云SDK将会尝试按照如下顺序查找相关凭据信息。 + +### 1. 使用环境变量 + +Credentials工具会优先在环境变量中获取凭据信息。 + +- 如果系统环境变量 `ALIBABA_CLOUD_ACCESS_KEY_ID`(密钥Key) 和 `ALIBABA_CLOUD_ACCESS_KEY_SECRET`(密钥Value) 不为空,Credentials工具会优先使用它们作为默认凭据。 + +- 如果系统环境变量 `ALIBABA_CLOUD_ACCESS_KEY_ID`(密钥Key)、`ALIBABA_CLOUD_ACCESS_KEY_SECRET`(密钥Value)、`ALIBABA_CLOUD_SECURITY_TOKEN`(Token)均不为空,Credentials工具会优先使用STS Token作为默认凭据。 + +### 2. 使用OIDC RAM角色 +若不存在优先级更高的凭据信息,Credentials工具会在环境变量中获取如下内容: + +`ALIBABA_CLOUD_ROLE_ARN`:RAM角色名称ARN; + +`ALIBABA_CLOUD_OIDC_PROVIDER_ARN`:OIDC提供商ARN; + +`ALIBABA_CLOUD_OIDC_TOKEN_FILE`:OIDC Token文件路径; + +若以上三个环境变量都已设置内容,Credentials将会使用变量内容调用STS服务的[AssumeRoleWithOIDC - OIDC角色SSO时获取扮演角色的临时身份凭证](https://help.aliyun.com/zh/ram/developer-reference/api-sts-2015-04-01-assumerolewithoidc)接口换取STS Token作为默认凭据。 + +### 3. 使用 Aliyun CLI 工具的 config.json 配置文件 + +若不存在优先级更高的凭据信息,Credentials工具会优先在如下位置查找 `config.json` 文件是否存在: +Linux系统:`~/.aliyun/config.json` +Windows系统: `C:\Users\USER_NAME\.aliyun\config.json` +如果文件存在,程序将会使用配置文件中 `current` 指定的凭据信息初始化凭据客户端。当然,您也可以通过环境变量 `ALIBABA_CLOUD_PROFILE` 来指定凭据信息,例如设置 `ALIBABA_CLOUD_PROFILE` 的值为 `AK`。 + +在config.json配置文件中每个module的值代表了不同的凭据信息获取方式: + +- AK:使用用户的Access Key作为凭据信息; +- RamRoleArn:使用RAM角色的ARN来获取凭据信息; +- EcsRamRole:利用ECS绑定的RAM角色来获取凭据信息; +- OIDC:通过OIDC ARN和OIDC Token来获取凭据信息; +- ChainableRamRoleArn:采用角色链的方式,通过指定JSON文件中的其他凭据,以重新获取新的凭据信息。 + +配置示例信息如下: + +```json +{ + "current": "AK", + "profiles": [ + { + "name": "AK", + "mode": "AK", + "access_key_id": "access_key_id", + "access_key_secret": "access_key_secret" + }, + { + "name": "RamRoleArn", + "mode": "RamRoleArn", + "access_key_id": "access_key_id", + "access_key_secret": "access_key_secret", + "ram_role_arn": "ram_role_arn", + "ram_session_name": "ram_session_name", + "expired_seconds": 3600, + "sts_region": "cn-hangzhou" + }, + { + "name": "EcsRamRole", + "mode": "EcsRamRole", + "ram_role_name": "ram_role_name" + }, + { + "name": "OIDC", + "mode": "OIDC", + "ram_role_arn": "ram_role_arn", + "oidc_token_file": "path/to/oidc/file", + "oidc_provider_arn": "oidc_provider_arn", + "ram_session_name": "ram_session_name", + "expired_seconds": 3600, + "sts_region": "cn-hangzhou" + }, + { + "name": "ChainableRamRoleArn", + "mode": "ChainableRamRoleArn", + "source_profile": "AK", + "ram_role_arn": "ram_role_arn", + "ram_session_name": "ram_session_name", + "expired_seconds": 3600, + "sts_region": "cn-hangzhou" + } + ] +} +``` + +### 4. 使用配置文件 +> +> 如果用户主目录存在默认文件 `~/.alibabacloud/credentials` (Windows 为 `C:\Users\USER_NAME\.alibabacloud\credentials`),程序会自动创建指定类型和名称的凭证。您也可通过环境变量 `ALIBABA_CLOUD_CREDENTIALS_FILE` 指定配置文件路径。如果文件存在,程序将会使用配置文件中 default 指定的凭据信息初始化凭据客户端。当然,您也可以通过环境变量 `ALIBABA_CLOUD_PROFILE` 来指定凭据信息,例如设置 `ALIBABA_CLOUD_PROFILE` 的值为 `client1`。 + +配置示例信息如下: + +```ini +[default] +type = access_key # 认证方式为 access_key +access_key_id = foo # Key +access_key_secret = bar # Secret + +[project1] +type = ecs_ram_role # 认证方式为 ecs_ram_role +role_name = EcsRamRoleTest # Role Name,非必填,不填则自动获取,建议设置,可以减少网络请求。 + +[project2] +type = ram_role_arn # 认证方式为 ram_role_arn +access_key_id = foo +access_key_secret = bar +role_arn = role_arn +role_session_name = session_name + +[project3] +type=oidc_role_arn # 认证方式为 oidc_role_arn +oidc_provider_arn=oidc_provider_arn +oidc_token_file_path=oidc_token_file_path +role_arn=role_arn +role_session_name=session_name +``` + +### 5. 使用 ECS 实例RAM角色 + +若不存在优先级更高的凭据信息,Credentials工具将通过环境变量获取ALIBABA_CLOUD_ECS_METADATA(ECS实例RAM角色名称)的值。若该变量的值存在,程序将采用加固模式(IMDSv2)访问ECS的元数据服务(Meta Data Server),以获取ECS实例RAM角色的STS Token作为默认凭据信息。在使用加固模式时若发生异常,将使用普通模式兜底来获取访问凭据。您也可以通过设置环境变量ALIBABA_CLOUD_IMDSV1_DISABLED,执行不同的异常处理逻辑: + +- 当值为false时,会使用普通模式继续获取访问凭据。 + +- 当值为true时,表示只能使用加固模式获取访问凭据,会抛出异常。 + +服务端是否支持IMDSv2,取决于您在服务器的配置。 + +### 6. 使用外部服务 Credentials URI + +若不存在优先级更高的凭据信息,Credentials工具会在环境变量中获取ALIBABA_CLOUD_CREDENTIALS_URI,若存在,程序将请求该URI地址,获取临时安全凭证作为默认凭据信息。 + +外部服务响应结构应如下: + +```json +{ + "Code": "Success", + "AccessKeyId": "AccessKeyId", + "AccessKeySecret": "AccessKeySecret", + "SecurityToken": "SecurityToken", + "Expiration": "2024-10-26T03:46:38Z" +} +``` + +## 文档 + +* [先决条件](/docs/zh-CN/0-Prerequisites.md) +* [安装](/docs/zh-CN/1-Installation.md) + +## 问题 + +[提交 Issue](https://github.com/aliyun/credentials-php/issues/new/choose),不符合指南的问题可能会立即关闭。 + +## 发行说明 + +每个版本的详细更改记录在[发行说明](/CHANGELOG.md)中。 + +## 贡献 + +提交 Pull Request 之前请阅读[贡献指南](/CONTRIBUTING.md)。 + +## 相关 + +* [OpenAPI 开发者门户][open-api] +* [Packagist][packagist] +* [Composer][composer] +* [Guzzle中文文档][guzzle-docs] +* [最新源码][latest-release] + +## 许可证 + +[Apache-2.0](/LICENSE.md) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. + +[open-api]: https://api.aliyun.com +[latest-release]: https://github.com/aliyun/credentials-php +[guzzle-docs]: https://guzzle-cn.readthedocs.io/zh_CN/latest/request-options.html +[composer]: https://getcomposer.org +[packagist]: https://packagist.org/packages/alibabacloud/credentials diff --git a/vendor/alibabacloud/credentials/README.md b/vendor/alibabacloud/credentials/README.md new file mode 100644 index 0000000..e646999 --- /dev/null +++ b/vendor/alibabacloud/credentials/README.md @@ -0,0 +1,422 @@ +English | [简体中文](/README-zh-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +# Alibaba Cloud Credentials for PHP + +[![PHP CI](https://github.com/aliyun/credentials-php/actions/workflows/ci.yml/badge.svg)](https://github.com/aliyun/credentials-php/actions/workflows/ci.yml) +[![codecov](https://codecov.io/gh/aliyun/credentials-php/graph/badge.svg?token=YIkSjtfKbB)](https://codecov.io/gh/aliyun/credentials-php) +[![Latest Stable Version](https://poser.pugx.org/alibabacloud/credentials/v/stable)](https://packagist.org/packages/alibabacloud/credentials) +[![composer.lock](https://poser.pugx.org/alibabacloud/credentials/composerlock)](https://packagist.org/packages/alibabacloud/credentials) +[![Total Downloads](https://poser.pugx.org/alibabacloud/credentials/downloads)](https://packagist.org/packages/alibabacloud/credentials) +[![License](https://poser.pugx.org/alibabacloud/credentials/license)](https://packagist.org/packages/alibabacloud/credentials) + +Alibaba Cloud Credentials for PHP is a tool that helps PHP developers manage their credentials. + +## Prerequisites + +Your system needs to meet [Prerequisites](/docs/zh-CN/0-Prerequisites.md), including PHP> = 5.6. We strongly recommend using the cURL extension and compiling cURL 7.16.2+ using the TLS backend. + +## Installation + +If you have [Globally Install Composer](https://getcomposer.org/doc/00-intro.md#globally) on your system, install Alibaba Cloud Credentials for PHP as a dependency by running the following directly in the project directory: + +```sh +composer require alibabacloud/credentials +``` + +> Some users may not be able to install due to network problems, you can switch to the [Alibaba Cloud Composer Mirror](https://developer.aliyun.com/composer). + +See [Installation](/docs/zh-CN/1-Installation.md) for details on installing through Composer and other means. + +## Quick Examples + +Before you begin, you need to sign up for an Alibaba Cloud account and retrieve your [Credentials](https://usercenter.console.aliyun.com/#/manage/ak). + +### Credential Type + +#### Default credential provider chain + +If you do not specify a method to initialize a Credentials client, the default credential provider chain is used. For more information, see the Default credential provider chain section of this topic. + +```php +getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### AccessKey + +Setup access_key credential through [User Information Management][ak], it have full authority over the account, please keep it safe. Sometimes for security reasons, you cannot hand over a primary account AccessKey with full access to the developer of a project. You may create a sub-account [RAM Sub-account][ram] , grant its [authorization][permissions],and use the AccessKey of RAM Sub-account. + +```php + 'access_key', + 'accessKeyId' => '', + 'accessKeySecret' => '', +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +``` + +#### STS + +Create a temporary security credential by applying Temporary Security Credentials (TSC) through the Security Token Service (STS). + +```php + 'sts', + 'accessKeyId' => '', + 'accessKeySecret' => '', + 'securityToken' => '', +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### RamRoleArn + +By specifying [RAM Role][RAM Role], the credential will be able to automatically request maintenance of STS Token. If you want to limit the permissions([How to make a policy][policy]) of STS Token, you can assign value for `Policy`. + +```php + 'ram_role_arn', + 'accessKeyId' => '', + 'accessKeySecret' => '', + // Specify the ARN of the RAM role to be assumed. Example: acs:ram::123456789012****:role/adminrole. + 'roleArn' => '', + // Specify the name of the role session. + 'roleSessionName' => '', + // Optional. Specify limited permissions for the RAM role. Example: {"Statement": [{"Action": ["*"],"Effect": "Allow","Resource": ["*"]}],"Version":"1"}. + 'policy' => '', + // Optional. Specify the expiration of the session + 'roleSessionExpiration' => 3600, +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### EcsRamRole + +Both ECS and ECI instances support binding instance RAM roles. When the Credentials tool is used in an instance, the RAM role bound to the instance will be automatically obtained, and the STS Token of the RAM role will be obtained by accessing the metadata service to complete the initialization of the credential client. + +The instance metadata server supports two access modes: hardened mode and normal mode. The Credentials tool uses hardened mode (IMDSv2) by default to obtain access credentials. If an exception occurs when using hardened mode, you can set disableIMDSv1 to perform different exception handling logic: + +- When the value is false (default value), the normal mode will continue to be used to obtain access credentials. + +- When the value is true, it means that only hardened mode can be used to obtain access credentials, and an exception will be thrown. + +Whether the server supports IMDSv2 depends on your configuration on the server. + +```php + 'ecs_ram_role', + // Optional. Specify the name of the RAM role of the ECS instance. If you do not specify this parameter, its value is automatically obtained. To reduce the number of requests, we recommend that you specify this parameter. + 'roleName' => '', + //Optional, whether to forcibly disable IMDSv1, that is, to use IMDSv2 hardening mode, which can be set by the environment variable ALIBABA_CLOUD_IMDSV1_DISABLED + 'disableIMDSv1' => true, +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### OIDCRoleArn + +After you attach a RAM role to a worker node in an Container Service for Kubernetes, applications in the pods on the worker node can use the metadata server to obtain an STS token the same way in which applications on ECS instances do. However, if an untrusted application is deployed on the worker node, such as an application that is submitted by your customer and whose code is unavailable to you, you may not want the application to use the metadata server to obtain an STS token of the RAM role attached to the worker node. To ensure the security of cloud resources and enable untrusted applications to securely obtain required STS tokens, you can use the RAM Roles for Service Accounts (RRSA) feature to grant minimum necessary permissions to an application. In this case, the ACK cluster creates a service account OpenID Connect (OIDC) token file, associates the token file with a pod, and then injects relevant environment variables into the pod. Then, the Credentials tool uses the environment variables to call the AssumeRoleWithOIDC operation of STS and obtains an STS token of the RAM role. For more information about the RRSA feature, see [Use RRSA to authorize different pods to access different cloud services](https://www.alibabacloud.com/help/en/ack/ack-managed-and-ack-dedicated/user-guide/use-rrsa-to-authorize-pods-to-access-different-cloud-services#task-2142941). + +```php + 'oidc_role_arn', + // Specify the ARN of the OIDC IdP by specifying the ALIBABA_CLOUD_OIDC_PROVIDER_ARN environment variable. + 'oidcProviderArn' => '', + // Specify the path of the OIDC token file by specifying the ALIBABA_CLOUD_OIDC_TOKEN_FILE environment variable. + 'oidcTokenFilePath' => '', + // Specify the ARN of the RAM role by specifying the ALIBABA_CLOUD_ROLE_ARN environment variable. + 'roleArn' => '', + // Specify the role session name by specifying the ALIBABA_CLOUD_ROLE_SESSION_NAME environment variable. + 'roleSessionName' => '', + // Optional. Specify limited permissions for the RAM role. Example: {"Statement": [{"Action": ["*"],"Effect": "Allow","Resource": ["*"]}],"Version":"1"}. + 'policy' => '', + // Optional. Specify the validity period of the session. + 'roleSessionExpiration' => 3600, +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### Credentials URI + +By specifying the url, the credential will be able to automatically request maintenance of STS Token. + +```php + 'credentials_uri', + // Format: http url. `credentialsURI` can be replaced by setting environment variable: ALIBABA_CLOUD_CREDENTIALS_URI + 'credentialsURI' => '', +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getAccessKeyId(); +$credential->getAccessKeySecret(); +$credential->getSecurityToken(); +``` + +#### Bearer Token + +If credential is required by the Cloud Call Centre (CCC), please apply for Bearer Token maintenance by yourself. + +```php + 'bearer', + 'bearerToken' => '', +]); +$client = new Credential($config); + +$credential = $client->getCredential(); +$credential->getBearerToken(); +``` + +## Default credential provider chain + +If you want to use different types of credentials in the development and production environments of your application, you generally need to obtain the environment information from the code and write code branches to obtain different credentials for the development and production environments. The default credential provider chain of the Credentials tool allows you to use the same code to obtain credentials for different environments based on configurations independent of the application. If you use $credential = new Credential(); to initialize a Credentials client without specifying an initialization method, the Credentials tool obtains the credential information in the following order: + +### 1. Environmental certificate + +Look for environment credentials in environment variable. +- If the `ALIBABA_CLOUD_ACCESS_KEY_ID` and `ALIBABA_CLOUD_ACCESS_KEY_SECRET` environment variables are defined and are not empty, the program will use them to create default credentials. +- If the `ALIBABA_CLOUD_ACCESS_KEY_ID`, `ALIBABA_CLOUD_ACCESS_KEY_SECRET` and `ALIBABA_CLOUD_SECURITY_TOKEN` environment variables are defined and are not empty, the program will use them to create temporary security credentials(STS). Note: This token has an expiration time, it is recommended to use it in a temporary environment. + +### 2. The RAM role of an OIDC IdP + +If no credentials are found in the previous step, the Credentials tool obtains the values of the following environment variables: + +`ALIBABA_CLOUD_ROLE_ARN`: the ARN of the RAM role. + +`ALIBABA_CLOUD_OIDC_PROVIDER_ARN`: the ARN of the OIDC IdP. + +`ALIBABA_CLOUD_OIDC_TOKEN_FILE`: the path of the OIDC token file. + +If the preceding three environment variables are specified, the Credentials tool uses the environment variables to call the [AssumeRoleWithOIDC](https://www.alibabacloud.com/help/en/ram/developer-reference/api-sts-2015-04-01-assumerolewithoidc) operation of STS to obtain an STS token as the default credential. + +### 3. Using the config.json Configuration File of Aliyun CLI Tool +If there is no higher-priority credential information, the Credentials tool will first check the following locations to see if the config.json file exists: + +Linux system: `~/.aliyun/config.json` +Windows system: `C:\Users\USER_NAME\.aliyun\config.json` +If the file exists, the program will use the credential information specified by `current` in the configuration file to initialize the credentials client. Of course, you can also use the environment variable `ALIBABA_CLOUD_PROFILE` to specify the credential information, for example by setting the value of `ALIBABA_CLOUD_PROFILE` to `AK`. + +In the config.json configuration file, the value of each module represents different ways to obtain credential information: + +- AK: Use the Access Key of the user as credential information; +- RamRoleArn: Use the ARN of the RAM role to obtain credential information; +- EcsRamRole: Use the RAM role bound to the ECS to obtain credential information; +- OIDC: Obtain credential information through OIDC ARN and OIDC Token; +- ChainableRamRoleArn: Use the role chaining method to obtain new credential information by specifying other credentials in the JSON file. + +The configuration example information is as follows: + +```json +{ + "current": "AK", + "profiles": [ + { + "name": "AK", + "mode": "AK", + "access_key_id": "access_key_id", + "access_key_secret": "access_key_secret" + }, + { + "name": "RamRoleArn", + "mode": "RamRoleArn", + "access_key_id": "access_key_id", + "access_key_secret": "access_key_secret", + "ram_role_arn": "ram_role_arn", + "ram_session_name": "ram_session_name", + "expired_seconds": 3600, + "sts_region": "cn-hangzhou" + }, + { + "name": "EcsRamRole", + "mode": "EcsRamRole", + "ram_role_name": "ram_role_name" + }, + { + "name": "OIDC", + "mode": "OIDC", + "ram_role_arn": "ram_role_arn", + "oidc_token_file": "path/to/oidc/file", + "oidc_provider_arn": "oidc_provider_arn", + "ram_session_name": "ram_session_name", + "expired_seconds": 3600, + "sts_region": "cn-hangzhou" + }, + { + "name": "ChainableRamRoleArn", + "mode": "ChainableRamRoleArn", + "source_profile": "AK", + "ram_role_arn": "ram_role_arn", + "ram_session_name": "ram_session_name", + "expired_seconds": 3600, + "sts_region": "cn-hangzhou" + } + ] +} +``` + +### 4. Configuration file +> +> If the user's home directory has the default file `~/.alibabacloud/credentials` (Windows is `C:\Users\USER_NAME\.alibabacloud\credentials`), the program will automatically create credentials with the specified type and name. You can also specify the configuration file path by configuring the `ALIBABA_CLOUD_CREDENTIALS_FILE` environment variable. If the configuration file exists, the application initializes a Credentials client by using the credential information that is specified by default in the configuration file. You can also configure the `ALIBABA_CLOUD_PROFILE` environment variable to modify the default credential information that is read. + +Configuration example: +```ini +[default] +type = access_key # Authentication method is access_key +access_key_id = foo # Key +access_key_secret = bar # Secret + +[project1] +type = ecs_ram_role # Authentication method is ecs_ram_role +role_name = EcsRamRoleTest # Role name, optional. It will be retrieved automatically if not set. It is highly recommended to set it up to reduce requests. + +[project2] +type = ram_role_arn # Authentication method is ram_role_arn +access_key_id = foo +access_key_secret = bar +role_arn = role_arn +role_session_name = session_name + +[project3] +type=oidc_role_arn # Authentication method is oidc_role_arn +oidc_provider_arn=oidc_provider_arn +oidc_token_file_path=oidc_token_file_path +role_arn=role_arn +role_session_name=session_name +``` + +### 5. Instance RAM role + +If there is no credential information with a higher priority, the Credentials tool will obtain the value of ALIBABA_CLOUD_ECS_METADATA (ECS instance RAM role name) through the environment variable. If the value of this variable exists, the program will use the hardened mode (IMDSv2) to access the metadata service (Meta Data Server) of ECS to obtain the STS Token of the ECS instance RAM role as the default credential information. If an exception occurs when using the hardened mode, the normal mode will be used as a fallback to obtain access credentials. You can also set the environment variable ALIBABA_CLOUD_IMDSV1_DISABLED to perform different exception handling logic: + +- When the value is false, the normal mode will continue to obtain access credentials. + +- When the value is true, it means that only the hardened mode can be used to obtain access credentials, and an exception will be thrown. + +Whether the server supports IMDSv2 depends on your configuration on the server. + +### 6. Using External Service Credentials URI + +If there are no higher-priority credential information, the Credentials tool will obtain the `ALIBABA_CLOUD_CREDENTIALS_URI` from the environment variables. If it exists, the program will request the URI address to obtain temporary security credentials as the default credential information. + +The external service response structure should be as follows: + +```json +{ + "Code": "Success", + "AccessKeyId": "AccessKeyId", + "AccessKeySecret": "AccessKeySecret", + "SecurityToken": "SecurityToken", + "Expiration": "2024-10-26T03:46:38Z" +} +``` + +## Documentation + +* [Prerequisites](/docs/zh-CN/0-Prerequisites.md) +* [Installation](/docs/zh-CN/1-Installation.md) + +## Issue + +[Submit Issue](https://github.com/aliyun/credentials-php/issues/new/choose), Problems that do not meet the guidelines may close immediately. + +## Release notes + +Detailed changes for each version are recorded in the [Release Notes](/CHANGELOG.md). + +## Contribution + +Please read the [Contribution Guide](/CONTRIBUTING.md) before submitting a Pull Request. + +## Related + +* [OpenAPI Developer Portal][open-api] +* [Packagist][packagist] +* [Composer][composer] +* [Guzzle Doc][guzzle-docs] +* [Latest Release][latest-release] + +## License + +[Apache-2.0](/LICENSE.md) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. + +[open-api]: https://api.alibabacloud.com +[latest-release]: https://github.com/aliyun/credentials-php +[guzzle-docs]: http://docs.guzzlephp.org/en/stable/request-options.html +[composer]: https://getcomposer.org +[packagist]: https://packagist.org/packages/alibabacloud/credentials diff --git a/vendor/alibabacloud/credentials/SECURITY.md b/vendor/alibabacloud/credentials/SECURITY.md new file mode 100644 index 0000000..034e848 --- /dev/null +++ b/vendor/alibabacloud/credentials/SECURITY.md @@ -0,0 +1,21 @@ +# Security Policy + +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 5.1.x | :white_check_mark: | +| 5.0.x | :x: | +| 4.0.x | :white_check_mark: | +| < 4.0 | :x: | + +## Reporting a Vulnerability + +Use this section to tell people how to report a vulnerability. + +Tell them where to go, how often they can expect to get an update on a +reported vulnerability, what to expect if the vulnerability is accepted or +declined, etc. diff --git a/vendor/alibabacloud/credentials/UPGRADING.md b/vendor/alibabacloud/credentials/UPGRADING.md new file mode 100644 index 0000000..f084ed6 --- /dev/null +++ b/vendor/alibabacloud/credentials/UPGRADING.md @@ -0,0 +1,6 @@ +Upgrading Guide +=============== + +1.x +----------------------- +- This is the first version. See for more information. diff --git a/vendor/alibabacloud/credentials/composer.json b/vendor/alibabacloud/credentials/composer.json new file mode 100644 index 0000000..73ff7c2 --- /dev/null +++ b/vendor/alibabacloud/credentials/composer.json @@ -0,0 +1,107 @@ +{ + "name": "alibabacloud/credentials", + "homepage": "https://www.alibabacloud.com/", + "description": "Alibaba Cloud Credentials for PHP", + "keywords": [ + "sdk", + "tool", + "cloud", + "client", + "aliyun", + "library", + "alibaba", + "Credentials", + "alibabacloud" + ], + "type": "library", + "license": "Apache-2.0", + "support": { + "source": "https://github.com/aliyun/credentials-php", + "issues": "https://github.com/aliyun/credentials-php/issues" + }, + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "require": { + "php": ">=5.6", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-openssl": "*", + "ext-mbstring": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "adbario/php-dot-notation": "^2.2", + "alibabacloud/tea": "^3.0" + }, + "require-dev": { + "ext-spl": "*", + "ext-dom": "*", + "ext-pcre": "*", + "psr/cache": "^1.0", + "ext-sockets": "*", + "drupal/coder": "^8.3", + "symfony/dotenv": "^3.4", + "phpunit/phpunit": "^5.7|^6.5|^8.5|^9.3", + "monolog/monolog": "^1.24", + "composer/composer": "^1.8", + "mikey179/vfsstream": "^1.6", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\Credentials\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "AlibabaCloud\\Credentials\\Tests\\": "tests/" + } + }, + "config": { + "preferred-install": "dist", + "optimize-autoloader": true, + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } + }, + "minimum-stability": "dev", + "prefer-stable": true, + "scripts-descriptions": { + "cs": "Tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard.", + "cbf": "Automatically correct coding standard violations.", + "fixer": "Fixes code to follow standards.", + "test": "Run all tests.", + "unit": "Run Unit tests.", + "feature": "Run Feature tests.", + "clearCache": "Clear cache like coverage.", + "coverage": "Show Coverage html.", + "endpoints": "Update endpoints from OSS." + }, + "scripts": { + "cs": "phpcs --standard=PSR2 -n ./", + "cbf": "phpcbf --standard=PSR2 -n ./", + "fixer": "php-cs-fixer fix ./", + "test": [ + "phpunit --colors=always" + ], + "unit": [ + "@clearCache", + "phpunit --testsuite=Unit --colors=always" + ], + "feature": [ + "@clearCache", + "phpunit --testsuite=Feature --colors=always" + ], + "coverage": "open cache/coverage/index.html", + "clearCache": "rm -rf cache/*" + } +} diff --git a/vendor/alibabacloud/credentials/src/AccessKeyCredential.php b/vendor/alibabacloud/credentials/src/AccessKeyCredential.php new file mode 100644 index 0000000..05a0132 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/AccessKeyCredential.php @@ -0,0 +1,86 @@ +accessKeyId = $access_key_id; + $this->accessKeySecret = $access_key_secret; + } + + /** + * @return string + */ + public function getAccessKeyId() + { + return $this->accessKeyId; + } + + /** + * @return string + */ + public function getAccessKeySecret() + { + return $this->accessKeySecret; + } + + /** + * @return string + */ + public function __toString() + { + return "$this->accessKeyId#$this->accessKeySecret"; + } + + /** + * @return ShaHmac1Signature + */ + public function getSignature() + { + return new ShaHmac1Signature(); + } + + public function getSecurityToken() + { + return ''; + } + /** + * @inheritDoc + */ + public function getCredential() + { + return new CredentialModel([ + 'accessKeyId' => $this->accessKeyId, + 'accessKeySecret' => $this->accessKeySecret, + 'type' => 'access_key', + ]); + } +} diff --git a/vendor/alibabacloud/credentials/src/BearerTokenCredential.php b/vendor/alibabacloud/credentials/src/BearerTokenCredential.php new file mode 100644 index 0000000..34fab6f --- /dev/null +++ b/vendor/alibabacloud/credentials/src/BearerTokenCredential.php @@ -0,0 +1,67 @@ +bearerToken = $bearer_token; + } + + /** + * @return string + */ + public function getBearerToken() + { + return $this->bearerToken; + } + + /** + * @return string + */ + public function __toString() + { + return "bearerToken#$this->bearerToken"; + } + + /** + * @return BearerTokenSignature + */ + public function getSignature() + { + return new BearerTokenSignature(); + } + + /** + * @inheritDoc + */ + public function getCredential() + { + return new CredentialModel([ + 'bearerToken' => $this->bearerToken, + 'type' => 'bearer', + ]); + } + +} diff --git a/vendor/alibabacloud/credentials/src/Credential.php b/vendor/alibabacloud/credentials/src/Credential.php new file mode 100644 index 0000000..fb89018 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Credential.php @@ -0,0 +1,268 @@ +config = null; + } else { + $this->config = new Config($this->parseConfig($config)); + } + } else { + $this->config = $config; + } + $this->credential = $this->getCredentials($this->config); + } + + /** + * @param array $config + * + * @return array + */ + private function parseConfig($config) + { + $res = []; + foreach (\array_change_key_case($config) as $key => $value) { + $res[Helper::snakeToCamelCase($key)] = $value; + } + return $res; + } + + + + /** + * Credentials getter. + * + * @param Config $config + * @return CredentialsInterface + * + */ + private function getCredentials($config) + { + if (is_null($config)) { + return new CredentialsProviderWrap('default', new DefaultCredentialsProvider()); + } + switch ($config->type) { + case 'access_key': + $provider = new StaticAKCredentialsProvider([ + 'accessKeyId' => $config->accessKeyId, + 'accessKeySecret' => $config->accessKeySecret, + ]); + return new CredentialsProviderWrap('access_key', $provider); + case 'sts': + $provider = new StaticSTSCredentialsProvider([ + 'accessKeyId' => $config->accessKeyId, + 'accessKeySecret' => $config->accessKeySecret, + 'securityToken' => $config->securityToken, + ]); + return new CredentialsProviderWrap('sts', $provider); + case 'bearer': + return new BearerTokenCredential($config->bearerToken); + case 'ram_role_arn': + if (!is_null($config->securityToken) && $config->securityToken !== '') { + $innerProvider = new StaticSTSCredentialsProvider([ + 'accessKeyId' => $config->accessKeyId, + 'accessKeySecret' => $config->accessKeySecret, + 'securityToken' => $config->securityToken, + ]); + } else { + $innerProvider = new StaticAKCredentialsProvider([ + 'accessKeyId' => $config->accessKeyId, + 'accessKeySecret' => $config->accessKeySecret, + ]); + } + $provider = new RamRoleArnCredentialsProvider([ + 'credentialsProvider' => $innerProvider, + 'roleArn' => $config->roleArn, + 'roleSessionName' => $config->roleSessionName, + 'policy' => $config->policy, + 'durationSeconds' => $config->roleSessionExpiration, + 'externalId' => $config->externalId, + 'stsEndpoint' => $config->STSEndpoint, + ], [ + 'connectTimeout' => $config->connectTimeout, + 'readTimeout' => $config->readTimeout, + ]); + return new CredentialsProviderWrap('ram_role_arn', $provider); + case 'rsa_key_pair': + $provider = new RsaKeyPairCredentialsProvider([ + 'publicKeyId' => $config->publicKeyId, + 'privateKeyFile' => $config->privateKeyFile, + 'durationSeconds' => $config->roleSessionExpiration, + 'stsEndpoint' => $config->STSEndpoint, + ], [ + 'connectTimeout' => $config->connectTimeout, + 'readTimeout' => $config->readTimeout, + ]); + return new CredentialsProviderWrap('rsa_key_pair', $provider); + case 'ecs_ram_role': + $provider = new EcsRamRoleCredentialsProvider([ + 'roleName' => $config->roleName, + 'disableIMDSv1' => $config->disableIMDSv1, + ], [ + 'connectTimeout' => $config->connectTimeout, + 'readTimeout' => $config->readTimeout, + ]); + return new CredentialsProviderWrap('ecs_ram_role', $provider); + case 'oidc_role_arn': + $provider = new OIDCRoleArnCredentialsProvider([ + 'roleArn' => $config->roleArn, + 'oidcProviderArn' => $config->oidcProviderArn, + 'oidcTokenFilePath' => $config->oidcTokenFilePath, + 'roleSessionName' => $config->roleSessionName, + 'policy' => $config->policy, + 'durationSeconds' => $config->roleSessionExpiration, + 'stsEndpoint' => $config->STSEndpoint, + ], [ + 'connectTimeout' => $config->connectTimeout, + 'readTimeout' => $config->readTimeout, + ]); + return new CredentialsProviderWrap('oidc_role_arn', $provider); + case "credentials_uri": + $provider = new URLCredentialsProvider([ + 'credentialsURI' => $config->credentialsURI, + ], [ + 'connectTimeout' => $config->connectTimeout, + 'readTimeout' => $config->readTimeout, + ]); + return new CredentialsProviderWrap('credentials_uri', $provider); + default: + throw new InvalidArgumentException('Unsupported credential type option: ' . $config->type . ', support: access_key, sts, bearer, ecs_ram_role, ram_role_arn, rsa_key_pair, oidc_role_arn, credentials_uri'); + } + } + + /** + * @return CredentialModel + * @throws RuntimeException + * @throws GuzzleException + */ + public function getCredential() + { + return $this->credential->getCredential(); + } + + /** + * @return array + */ + public function getConfig() + { + return $this->config->toMap(); + } + + /** + * @deprecated use getCredential() instead + * + * @return string + * @throws RuntimeException + * @throws GuzzleException + */ + public function getType() + { + return $this->credential->getCredential()->getType(); + } + + /** + * @deprecated use getCredential() instead + * + * @return string + * @throws RuntimeException + * @throws GuzzleException + */ + public function getAccessKeyId() + { + return $this->credential->getCredential()->getAccessKeyId(); + } + + /** + * @deprecated use getCredential() instead + * + * @return string + * @throws RuntimeException + * @throws GuzzleException + */ + public function getAccessKeySecret() + { + return $this->credential->getCredential()->getAccessKeySecret(); + } + + /** + * @deprecated use getCredential() instead + * + * @return string + * @throws RuntimeException + * @throws GuzzleException + */ + public function getSecurityToken() + { + return $this->credential->getCredential()->getSecurityToken(); + } + + /** + * @deprecated use getCredential() instead + * + * @return string + * @throws RuntimeException + * @throws GuzzleException + */ + public function getBearerToken() + { + return $this->credential->getCredential()->getBearerToken(); + } + + /** + * @param string $name + * @param array $arguments + * + * @return mixed + */ + public function __call($name, $arguments) + { + return $this->credential->$name($arguments); + } +} diff --git a/vendor/alibabacloud/credentials/src/Credential/Config.php b/vendor/alibabacloud/credentials/src/Credential/Config.php new file mode 100644 index 0000000..1fb57e3 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Credential/Config.php @@ -0,0 +1,270 @@ +accessKeyId) { + $res['accessKeyId'] = $this->accessKeyId; + } + if (null !== $this->accessKeySecret) { + $res['accessKeySecret'] = $this->accessKeySecret; + } + if (null !== $this->securityToken) { + $res['securityToken'] = $this->securityToken; + } + if (null !== $this->bearerToken) { + $res['bearerToken'] = $this->bearerToken; + } + if (null !== $this->durationSeconds) { + $res['durationSeconds'] = $this->durationSeconds; + } + if (null !== $this->roleArn) { + $res['roleArn'] = $this->roleArn; + } + if (null !== $this->policy) { + $res['policy'] = $this->policy; + } + if (null !== $this->roleSessionExpiration) { + $res['roleSessionExpiration'] = $this->roleSessionExpiration; + } + if (null !== $this->roleSessionName) { + $res['roleSessionName'] = $this->roleSessionName; + } + if (null !== $this->publicKeyId) { + $res['publicKeyId'] = $this->publicKeyId; + } + if (null !== $this->privateKeyFile) { + $res['privateKeyFile'] = $this->privateKeyFile; + } + if (null !== $this->roleName) { + $res['roleName'] = $this->roleName; + } + if (null !== $this->credentialsURI) { + $res['credentialsURI'] = $this->credentialsURI; + } + if (null !== $this->type) { + $res['type'] = $this->type; + } + if (null !== $this->STSEndpoint) { + $res['STSEndpoint'] = $this->STSEndpoint; + } + if (null !== $this->externalId) { + $res['externalId'] = $this->externalId; + } + return $res; + } + /** + * @param array $map + * @return Config + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['accessKeyId'])) { + $model->accessKeyId = $map['accessKeyId']; + } + if (isset($map['accessKeySecret'])) { + $model->accessKeySecret = $map['accessKeySecret']; + } + if (isset($map['securityToken'])) { + $model->securityToken = $map['securityToken']; + } + if (isset($map['bearerToken'])) { + $model->bearerToken = $map['bearerToken']; + } + if (isset($map['durationSeconds'])) { + $model->durationSeconds = $map['durationSeconds']; + } + if (isset($map['roleArn'])) { + $model->roleArn = $map['roleArn']; + } + if (isset($map['policy'])) { + $model->policy = $map['policy']; + } + if (isset($map['roleSessionExpiration'])) { + $model->roleSessionExpiration = $map['roleSessionExpiration']; + } + if (isset($map['roleSessionName'])) { + $model->roleSessionName = $map['roleSessionName']; + } + if (isset($map['publicKeyId'])) { + $model->publicKeyId = $map['publicKeyId']; + } + if (isset($map['privateKeyFile'])) { + $model->privateKeyFile = $map['privateKeyFile']; + } + if (isset($map['roleName'])) { + $model->roleName = $map['roleName']; + } + if (isset($map['credentialsURI'])) { + $model->credentialsURI = $map['credentialsURI']; + } + if (isset($map['type'])) { + $model->type = $map['type']; + } + if (isset($map['STSEndpoint'])) { + $model->STSEndpoint = $map['STSEndpoint']; + } + if (isset($map['externalId'])) { + $model->externalId = $map['externalId']; + } + return $model; + } + /** + * @description credential type + * @example access_key + * @var string + */ + public $type = 'default'; + + /** + * @description accesskey id + * @var string + */ + public $accessKeyId; + + /** + * @description accesskey secret + * @var string + */ + public $accessKeySecret; + + /** + * @description security token + * @var string + */ + public $securityToken; + + /** + * @description bearer token + * @var string + */ + public $bearerToken; + + /** + * @description role name + * @var string + */ + public $roleName; + + /** + * @description role arn + * @var string + */ + public $roleArn; + + /** + * @description oidc provider arn + * @var string + */ + public $oidcProviderArn; + + /** + * @description oidc token file path + * @var string + */ + public $oidcTokenFilePath; + + /** + * @description role session expiration + * @example 3600 + * @var int + */ + public $roleSessionExpiration; + + /** + * @description role session name + * @var string + */ + public $roleSessionName; + + /** + * @description role arn policy + * @var string + */ + public $policy; + + /** + * @description external id for ram role arn + * @var string + */ + public $externalId; + + /** + * @description sts endpoint + * @var string + */ + public $STSEndpoint; + + public $publicKeyId; + + public $privateKeyFile; + + /** + * @description read timeout + * @var int + */ + public $readTimeout; + + /** + * @description connection timeout + * @var int + */ + public $connectTimeout; + + /** + * @description disable IMDS v1 + * @var bool + */ + public $disableIMDSv1; + + /** + * @description credentials URI + * @var string + */ + public $credentialsURI; + + /** + * @deprecated + */ + public $metadataTokenDuration; + + /** + * @deprecated + */ + public $durationSeconds; + + /** + * @deprecated + */ + public $host; + + /** + * @deprecated + */ + public $expiration; + + /** + * @deprecated + */ + public $certFile = ""; + + /** + * @deprecated + */ + public $certPassword = ""; + + /** + * @internal + */ + public $proxy; +} diff --git a/vendor/alibabacloud/credentials/src/Credential/CredentialModel.php b/vendor/alibabacloud/credentials/src/Credential/CredentialModel.php new file mode 100644 index 0000000..8d516d9 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Credential/CredentialModel.php @@ -0,0 +1,143 @@ +accessKeyId) { + $res['accessKeyId'] = $this->accessKeyId; + } + if (null !== $this->accessKeySecret) { + $res['accessKeySecret'] = $this->accessKeySecret; + } + if (null !== $this->securityToken) { + $res['securityToken'] = $this->securityToken; + } + if (null !== $this->bearerToken) { + $res['bearerToken'] = $this->bearerToken; + } + if (null !== $this->type) { + $res['type'] = $this->type; + } + if (null !== $this->providerName) { + $res['providerName'] = $this->providerName; + } + return $res; + } + /** + * @param array $map + * @return CredentialModel + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['accessKeyId'])) { + $model->accessKeyId = $map['accessKeyId']; + } + if (isset($map['accessKeySecret'])) { + $model->accessKeySecret = $map['accessKeySecret']; + } + if (isset($map['securityToken'])) { + $model->securityToken = $map['securityToken']; + } + if (isset($map['bearerToken'])) { + $model->bearerToken = $map['bearerToken']; + } + if (isset($map['type'])) { + $model->type = $map['type']; + } + if(isset($map['providerName'])){ + $model->providerName = $map['providerName']; + } + return $model; + } + /** + * @description accesskey id + * @var string + */ + public $accessKeyId; + + /** + * @description accesskey secret + * @var string + */ + public $accessKeySecret; + + /** + * @description security token + * @var string + */ + public $securityToken; + + /** + * @description bearer token + * @var string + */ + public $bearerToken; + + /** + * @description type + * @example access_key + * @var string + */ + public $type; + + /** + * @description provider name + * @example cli_profile/static_ak + * @var string + */ + public $providerName; + + /** + * @return string + */ + public function getAccessKeyId() + { + return $this->accessKeyId; + } + + /** + * @return string + */ + public function getAccessKeySecret() + { + return $this->accessKeySecret; + } + + /** + * @return string + */ + public function getSecurityToken() + { + return $this->securityToken; + } + + /** + * @return string + */ + public function getBearerToken() + { + return $this->bearerToken; + } + + public function getType() + { + return $this->type; + } + + public function getProviderName() + { + return $this->providerName; + } + +} diff --git a/vendor/alibabacloud/credentials/src/Credential/RefreshResult.php b/vendor/alibabacloud/credentials/src/Credential/RefreshResult.php new file mode 100644 index 0000000..af1c202 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Credential/RefreshResult.php @@ -0,0 +1,97 @@ +credentials = $credentials; + $this->staleTime = $staleTime; + $this->prefetchTime = $prefetchTime; + } + public function validate() {} + public function toMap() + { + $res = []; + if (null !== $this->staleTime) { + $res['staleTime'] = $this->staleTime; + } + if (null !== $this->prefetchTime) { + $res['prefetchTime'] = $this->prefetchTime; + } + if (null !== $this->credentials) { + $res['credentials'] = $this->credentials; + } + return $res; + } + /** + * @param array $map + * @return RefreshResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['staleTime'])) { + $model->staleTime = $map['staleTime']; + } + if (isset($map['prefetchTime'])) { + $model->staleTime = $map['prefetchTime']; + } + if (isset($map['credentials'])) { + $model->staleTime = $map['credentials']; + } + return $model; + } + /** + * @description staleTime + * @var int + */ + public $staleTime; + + /** + * @description prefetchTime + * @var int + */ + public $prefetchTime; + + /** + * @description credentials + * @var Credentials + */ + public $credentials; + + + /** + * @return Credentials + */ + public function credentials() + { + return $this->credentials; + } + + /** + * @var int + */ + public function staleTime() + { + return $this->staleTime; + } + + /** + * @var int + */ + public function prefetchTime() + { + return $this->prefetchTime; + } +} diff --git a/vendor/alibabacloud/credentials/src/Credentials.php b/vendor/alibabacloud/credentials/src/Credentials.php new file mode 100644 index 0000000..f064b86 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Credentials.php @@ -0,0 +1,104 @@ +typeName = $typeName; + $this->credentialsProvider = $credentialsProvider; + } + + /** + * @inheritDoc + */ + public function getCredential() + { + $credentials = $this->credentialsProvider->getCredentials(); + return new CredentialModel([ + 'accessKeyId' => $credentials->getAccessKeyId(), + 'accessKeySecret' => $credentials->getAccessKeySecret(), + 'securityToken' => $credentials->getSecurityToken(), + 'type' => $this->typeName, + 'providerName' => $credentials->getProviderName(), + ]); + } + + /** + * @param string $name + * @param array $arguments + * + * @return mixed + */ + public function __call($name, $arguments) + { + return $this->credentialsProvider->$name($arguments); + } + + public function __toString() + { + return "credentialsProviderWrap#$this->typeName"; + } + + /** + * @return ShaHmac1Signature + */ + public function getSignature() + { + return null; + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/credentials/src/EcsRamRoleCredential.php b/vendor/alibabacloud/credentials/src/EcsRamRoleCredential.php new file mode 100644 index 0000000..ba66c0d --- /dev/null +++ b/vendor/alibabacloud/credentials/src/EcsRamRoleCredential.php @@ -0,0 +1,199 @@ +roleName = $role_name; + + Filter::disableIMDSv1($disable_imdsv1); + + $this->disableIMDSv1 = $disable_imdsv1; + + $this->metadataTokenDuration = $metadata_token_duration; + } + + /** + * @return string + * @throws GuzzleException + * @throws Exception + */ + public function getRoleName() + { + if ($this->roleName !== null) { + return $this->roleName; + } + + $this->roleName = $this->getRoleNameFromMeta(); + + return $this->roleName; + } + + /** + * @return string + * @throws Exception + */ + public function getRoleNameFromMeta() + { + $options = [ + 'http_errors' => false, + 'timeout' => 1, + 'connect_timeout' => 1, + ]; + + $result = Request::createClient()->request( + 'GET', + 'http://100.100.100.200/latest/meta-data/ram/security-credentials/', + $options + ); + + if ($result->getStatusCode() === 404) { + throw new InvalidArgumentException('The role name was not found in the instance'); + } + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Error retrieving credentials from result: ' . $result->getBody()); + } + + $role_name = (string) $result; + if (!$role_name) { + throw new RuntimeException('Error retrieving credentials from result is empty'); + } + + return $role_name; + } + + /** + * @return string + */ + public function __toString() + { + return "roleName#$this->roleName"; + } + + /** + * @return ShaHmac1Signature + */ + public function getSignature() + { + return new ShaHmac1Signature(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeyId() + { + return $this->getSessionCredential()->getAccessKeyId(); + } + + /** + * @return AlibabaCloud\Credentials\Providers\Credentials + * @throws Exception + * @throws GuzzleException + */ + protected function getSessionCredential() + { + $params = [ + "roleName" => $this->roleName, + 'disableIMDSv1' => $this->disableIMDSv1, + 'metadataTokenDuration' => $this->metadataTokenDuration, + ]; + return (new EcsRamRoleCredentialsProvider($params))->getCredentials(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeySecret() + { + return $this->getSessionCredential()->getAccessKeySecret(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getSecurityToken() + { + return $this->getSessionCredential()->getSecurityToken(); + } + + /** + * @return int + * @throws Exception + * @throws GuzzleException + */ + public function getExpiration() + { + return $this->getSessionCredential()->getExpiration(); + } + + /** + * @return bool + */ + public function isDisableIMDSv1() + { + return $this->disableIMDSv1; + } + + /** + * @inheritDoc + */ + public function getCredential() + { + $credentials = $this->getSessionCredential(); + return new CredentialModel([ + 'accessKeyId' => $credentials->getAccessKeyId(), + 'accessKeySecret' => $credentials->getAccessKeySecret(), + 'securityToken' => $credentials->getSecurityToken(), + 'type' => 'ecs_ram_role', + ]); + } + +} diff --git a/vendor/alibabacloud/credentials/src/Providers/CLIProfileCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/CLIProfileCredentialsProvider.php new file mode 100644 index 0000000..2f43c55 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/CLIProfileCredentialsProvider.php @@ -0,0 +1,398 @@ + 'https://oauth.aliyun.com', + 'INTL' => 'https://oauth.alibabacloud.com', + ]; + + private static $oauthClientMap = [ + 'CN' => '4038181954557748008', + 'INTL' => '4103531455503354461', + ]; + + /** + * @var string + */ + private $profileName; + + /** + * @var CredentialsProvider + */ + private $credentialsProvider; + + + /** + * CLIProfileCredentialsProvider constructor. + * + * @param array $params + */ + public function __construct(array $params = []) + { + $this->filterProfileName($params); + } + + private function filterProfileName(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_PROFILE')) { + $this->profileName = Helper::env('ALIBABA_CLOUD_PROFILE'); + } + + if (isset($params['profileName'])) { + $this->profileName = $params['profileName']; + } + } + + /** + * @return bool + */ + private function shouldReloadCredentialsProvider() + { + if (is_null($this->credentialsProvider)) { + return true; + } + + return false; + } + + /** + * @return CredentialsProvider + */ + protected function reloadCredentialsProvider($profileFile, $profileName) + { + if (!Helper::inOpenBasedir($profileFile)) { + throw new RuntimeException('Unable to open credentials file: ' . $profileFile); + } + + if (!\is_readable($profileFile) || !\is_file($profileFile)) { + throw new RuntimeException('Credentials file is not readable: ' . $profileFile); + } + + $jsonContent = \file_get_contents($profileFile); + $fileArray = json_decode($jsonContent, true); + + if (\is_array($fileArray) && !empty($fileArray)) { + if (is_null($profileName) || $profileName === '') { + $profileName = $fileArray['current']; + } + if (isset($fileArray['profiles'])) { + foreach ($fileArray['profiles'] as $profile) { + if (Helper::unsetReturnNull($profile, 'name') === $profileName) { + switch (Helper::unsetReturnNull($profile, 'mode')) { + case 'AK': + return new StaticAKCredentialsProvider([ + 'accessKeyId' => Helper::unsetReturnNull($profile, 'access_key_id'), + 'accessKeySecret' => Helper::unsetReturnNull($profile, 'access_key_secret'), + ]); + case 'StsToken': + return new StaticSTSCredentialsProvider([ + 'accessKeyId' => Helper::unsetReturnNull($profile, 'access_key_id'), + 'accessKeySecret' => Helper::unsetReturnNull($profile, 'access_key_secret'), + 'securityToken' => Helper::unsetReturnNull($profile, 'sts_token'), + ]); + case 'RamRoleArn': + $innerProvider = new StaticAKCredentialsProvider([ + 'accessKeyId' => Helper::unsetReturnNull($profile, 'access_key_id'), + 'accessKeySecret' => Helper::unsetReturnNull($profile, 'access_key_secret'), + ]); + return new RamRoleArnCredentialsProvider([ + 'credentialsProvider' => $innerProvider, + 'roleArn' => Helper::unsetReturnNull($profile, 'ram_role_arn'), + 'roleSessionName' => Helper::unsetReturnNull($profile, 'ram_session_name'), + 'durationSeconds' => Helper::unsetReturnNull($profile, 'expired_seconds'), + 'policy' => Helper::unsetReturnNull($profile, 'policy'), + 'externalId' => Helper::unsetReturnNull($profile, 'external_id'), + 'stsRegionId' => Helper::unsetReturnNull($profile, 'sts_region'), + 'enableVpc' => Helper::unsetReturnNull($profile, 'enable_vpc'), + ]); + case 'EcsRamRole': + return new EcsRamRoleCredentialsProvider([ + 'roleName' => Helper::unsetReturnNull($profile, 'ram_role_name'), + ]); + case 'OIDC': + return new OIDCRoleArnCredentialsProvider([ + 'roleArn' => Helper::unsetReturnNull($profile, 'ram_role_arn'), + 'oidcProviderArn' => Helper::unsetReturnNull($profile, 'oidc_provider_arn'), + 'oidcTokenFilePath' => Helper::unsetReturnNull($profile, 'oidc_token_file'), + 'roleSessionName' => Helper::unsetReturnNull($profile, 'ram_session_name'), + 'durationSeconds' => Helper::unsetReturnNull($profile, 'expired_seconds'), + 'policy' => Helper::unsetReturnNull($profile, 'policy'), + 'stsRegionId' => Helper::unsetReturnNull($profile, 'sts_region'), + 'enableVpc' => Helper::unsetReturnNull($profile, 'enable_vpc'), + ]); + case 'ChainableRamRoleArn': + $previousProvider = $this->reloadCredentialsProvider($profileFile, Helper::unsetReturnNull($profile, 'source_profile')); + return new RamRoleArnCredentialsProvider([ + 'credentialsProvider' => $previousProvider, + 'roleArn' => Helper::unsetReturnNull($profile, 'ram_role_arn'), + 'roleSessionName' => Helper::unsetReturnNull($profile, 'ram_session_name'), + 'durationSeconds' => Helper::unsetReturnNull($profile, 'expired_seconds'), + 'policy' => Helper::unsetReturnNull($profile, 'policy'), + 'externalId' => Helper::unsetReturnNull($profile, 'external_id'), + 'stsRegionId' => Helper::unsetReturnNull($profile, 'sts_region'), + 'enableVpc' => Helper::unsetReturnNull($profile, 'enable_vpc'), + ]); + case 'CloudSSO': + return new CloudSSOCredentialsProvider([ + 'signInUrl' => Helper::unsetReturnNull($profile, 'cloud_sso_sign_in_url'), + 'accountId' => Helper::unsetReturnNull($profile, 'cloud_sso_account_id'), + 'accessConfig' => Helper::unsetReturnNull($profile, 'cloud_sso_access_config'), + 'accessToken' => Helper::unsetReturnNull($profile, 'access_token'), + 'accessTokenExpire' => Helper::unsetReturnNull($profile, 'cloud_sso_access_token_expire'), + ]); + case 'OAuth': + $siteType = strtoupper(Helper::unsetReturnNull($profile, 'oauth_site_type') ?: ''); + if (!isset(self::$oauthBaseUrlMap[$siteType])) { + throw new RuntimeException('Invalid OAuth site type, support CN or INTL.'); + } + $oauthSignInUrl = self::$oauthBaseUrlMap[$siteType]; + $oauthClientId = self::$oauthClientMap[$siteType]; + return new OAuthCredentialsProvider([ + 'signInUrl' => $oauthSignInUrl, + 'clientId' => $oauthClientId, + 'refreshToken' => Helper::unsetReturnNull($profile, 'oauth_refresh_token'), + 'accessToken' => Helper::unsetReturnNull($profile, 'oauth_access_token'), + 'accessTokenExpire' => Helper::unsetReturnNull($profile, 'oauth_access_token_expire'), + 'tokenUpdateCallback' => $this->createOAuthTokenUpdateCallback($profileFile, $profileName), + ]); + case 'External': + return new ExternalCredentialsProvider([ + 'processCommand' => (string) Helper::unsetReturnNull($profile, 'process_command'), + 'credentialUpdateCallback' => $this->createExternalCredentialUpdateCallback($profileFile, $profileName), + ]); + default: + throw new RuntimeException('Unsupported credential mode from CLI credentials file: ' . (string) Helper::unsetReturnNull($profile, 'mode')); + } + } + } + } + } + throw new RuntimeException('Failed to get credential from CLI credentials file: ' . $profileFile); + } + /** + * Get credential. + * + * @return Credentials + * @throws RuntimeException + */ + public function getCredentials() + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_CLI_PROFILE_DISABLED') && Helper::env('ALIBABA_CLOUD_CLI_PROFILE_DISABLED') === true) { + throw new RuntimeException('CLI credentials file is disabled'); + } + $cliProfileFile = self::getDefaultFile(); + if ($this->shouldReloadCredentialsProvider()) { + $this->credentialsProvider = $this->reloadCredentialsProvider($cliProfileFile, $this->profileName); + } + + $credentials = $this->credentialsProvider->getCredentials(); + return new Credentials([ + 'accessKeyId' => $credentials->getAccessKeyId(), + 'accessKeySecret' => $credentials->getAccessKeySecret(), + 'securityToken' => $credentials->getSecurityToken(), + 'providerName' => $this->getProviderName() . '/' . $this->credentialsProvider->getProviderName(), + ]); + } + + /** + * @param string $profileFile + * @param string $profileName + * @return callable + */ + private function createOAuthTokenUpdateCallback($profileFile, $profileName) + { + return function ($refreshToken, $accessToken, $accessKeyId, $accessKeySecret, $securityToken, $accessTokenExpire, $stsExpire) use ($profileFile, $profileName) { + try { + $this->updateOAuthTokens($profileFile, $profileName, $refreshToken, $accessToken, $accessKeyId, $accessKeySecret, $securityToken, $accessTokenExpire, $stsExpire); + } catch (\Exception $e) { + // Warning only + } + }; + } + + /** + * @param string $profileFile + * @param string $profileName + * @return callable + */ + private function createExternalCredentialUpdateCallback($profileFile, $profileName) + { + return function ($accessKeyId, $accessKeySecret, $securityToken, $expiration) use ($profileFile, $profileName) { + try { + $this->updateExternalCredentials($profileFile, $profileName, $accessKeyId, $accessKeySecret, $securityToken, $expiration); + } catch (\Exception $e) { + // Warning only + } + }; + } + + /** + * @param string $profileFile + * @param string $profileName + * @param string $refreshToken + * @param string $accessToken + * @param string $accessKeyId + * @param string $accessKeySecret + * @param string $securityToken + * @param int $accessTokenExpire + * @param int $stsExpire + */ + private function updateOAuthTokens($profileFile, $profileName, $refreshToken, $accessToken, $accessKeyId, $accessKeySecret, $securityToken, $accessTokenExpire, $stsExpire) + { + if (!file_exists($profileFile)) { + return; + } + + $jsonContent = file_get_contents($profileFile); + $config = json_decode($jsonContent, true); + if (empty($config) || !isset($config['profiles'])) { + return; + } + + $oauthProfile = $this->findOAuthProfile($config, $profileName); + if ($oauthProfile === null) { + return; + } + + $oauthProfile['oauth_refresh_token'] = $refreshToken; + $oauthProfile['oauth_access_token'] = $accessToken; + $oauthProfile['oauth_access_token_expire'] = $accessTokenExpire; + $oauthProfile['access_key_id'] = $accessKeyId; + $oauthProfile['access_key_secret'] = $accessKeySecret; + $oauthProfile['sts_token'] = $securityToken; + $oauthProfile['sts_expiration'] = $stsExpire; + + foreach ($config['profiles'] as &$p) { + if (isset($p['name']) && $p['name'] === $oauthProfile['name']) { + $p = $oauthProfile; + break; + } + } + unset($p); + + file_put_contents($profileFile, json_encode($config, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)); + } + + /** + * @param string $profileFile + * @param string $profileName + * @param string $accessKeyId + * @param string $accessKeySecret + * @param string $securityToken + * @param int $expiration + */ + private function updateExternalCredentials($profileFile, $profileName, $accessKeyId, $accessKeySecret, $securityToken, $expiration) + { + if (!file_exists($profileFile)) { + return; + } + + $jsonContent = file_get_contents($profileFile); + $config = json_decode($jsonContent, true); + if (empty($config) || !isset($config['profiles'])) { + return; + } + + $externalProfile = $this->findExternalProfile($config, $profileName); + if ($externalProfile === null) { + return; + } + + $externalProfile['access_key_id'] = $accessKeyId; + $externalProfile['access_key_secret'] = $accessKeySecret; + $externalProfile['sts_token'] = $securityToken; + $externalProfile['sts_expiration'] = $expiration; + + foreach ($config['profiles'] as &$p) { + if (isset($p['name']) && $p['name'] === $externalProfile['name']) { + $p = $externalProfile; + break; + } + } + unset($p); + + file_put_contents($profileFile, json_encode($config, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)); + } + + /** + * @param array $config + * @param string $profileName + * @return array|null + */ + private function findOAuthProfile($config, $profileName) + { + if (!isset($config['profiles'])) { + return null; + } + foreach ($config['profiles'] as $p) { + if (isset($p['name']) && $p['name'] === $profileName) { + if (isset($p['mode']) && $p['mode'] === 'OAuth') { + return $p; + } + if (!empty($p['source_profile'])) { + return $this->findOAuthProfile($config, $p['source_profile']); + } + return null; + } + } + return null; + } + + /** + * @param array $config + * @param string $profileName + * @return array|null + */ + private function findExternalProfile($config, $profileName) + { + if (!isset($config['profiles'])) { + return null; + } + foreach ($config['profiles'] as $p) { + if (isset($p['name']) && $p['name'] === $profileName) { + if (isset($p['mode']) && $p['mode'] === 'External') { + return $p; + } + if (!empty($p['source_profile'])) { + return $this->findExternalProfile($config, $p['source_profile']); + } + return null; + } + } + return null; + } + + /** + * Get the default credential file. + * + * @return string + */ + private function getDefaultFile() + { + return Helper::getHomeDirectory() . + DIRECTORY_SEPARATOR . + '.aliyun' . + DIRECTORY_SEPARATOR . + 'config.json'; + } + + /** + * @return string + */ + public function getProviderName() + { + return 'cli_profile'; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/ChainProvider.php b/vendor/alibabacloud/credentials/src/Providers/ChainProvider.php new file mode 100644 index 0000000..d6c1540 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/ChainProvider.php @@ -0,0 +1,188 @@ + 'access_key', + 'access_key_id' => $accessKeyId, + 'access_key_secret' => $accessKeySecret, + ] + ); + } + }; + } + + /** + * @return string + */ + public static function getDefaultName() + { + $name = Helper::envNotEmpty('ALIBABA_CLOUD_PROFILE'); + + if ($name) { + return $name; + } + + return 'default'; + } + + /** + * @return Closure + */ + public static function ini() + { + return static function () { + $filename = Helper::envNotEmpty('ALIBABA_CLOUD_CREDENTIALS_FILE'); + if (!$filename) { + $filename = self::getDefaultFile(); + } + + if (!Helper::inOpenBasedir($filename)) { + return; + } + + if ($filename !== self::getDefaultFile() && (!\is_readable($filename) || !\is_file($filename))) { + throw new RuntimeException( + 'Credentials file is not readable: ' . $filename + ); + } + + $file_array = \parse_ini_file($filename, true); + + if (\is_array($file_array) && !empty($file_array)) { + foreach (\array_change_key_case($file_array) as $name => $configures) { + Credentials::set($name, $configures); + } + } + }; + } + + /** + * Get the default credential file. + * + * @return string + */ + public static function getDefaultFile() + { + return Helper::getHomeDirectory() . + DIRECTORY_SEPARATOR . + '.alibabacloud' . + DIRECTORY_SEPARATOR . + 'credentials'; + } + + /** + * @return Closure + */ + public static function instance() + { + return static function () { + $instance = Helper::envNotEmpty('ALIBABA_CLOUD_ECS_METADATA'); + if ($instance) { + Credentials::set( + self::getDefaultName(), + [ + 'type' => 'ecs_ram_role', + 'role_name' => $instance, + ] + ); + } + }; + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/credentials/src/Providers/CloudSSOCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/CloudSSOCredentialsProvider.php new file mode 100644 index 0000000..de259d5 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/CloudSSOCredentialsProvider.php @@ -0,0 +1,162 @@ +filterOptions($options); + $this->filterParams($params); + } + + private function filterOptions(array $options) + { + if (isset($options['connectTimeout'])) { + $this->connectTimeout = $options['connectTimeout']; + } + + if (isset($options['readTimeout'])) { + $this->readTimeout = $options['readTimeout']; + } + } + + private function filterParams(array $params) + { + $this->signInUrl = isset($params['signInUrl']) ? $params['signInUrl'] : null; + $this->accountId = isset($params['accountId']) ? $params['accountId'] : null; + $this->accessConfig = isset($params['accessConfig']) ? $params['accessConfig'] : null; + $this->accessToken = isset($params['accessToken']) ? $params['accessToken'] : null; + $this->accessTokenExpire = isset($params['accessTokenExpire']) ? (int) $params['accessTokenExpire'] : 0; + + if (empty($this->accessToken) || $this->accessTokenExpire === 0 + || $this->accessTokenExpire - time() <= 0) { + throw new InvalidArgumentException('CloudSSO access token is empty or expired, please re-login with cli.'); + } + + if (empty($this->signInUrl) || empty($this->accountId) || empty($this->accessConfig)) { + throw new InvalidArgumentException('CloudSSO sign in url, account id, and access config cannot be empty.'); + } + } + + /** + * @return RefreshResult + * @throws RuntimeException + */ + public function refreshCredentials() + { + $parsedUrl = parse_url($this->signInUrl); + $scheme = isset($parsedUrl['scheme']) ? $parsedUrl['scheme'] : 'https'; + $host = isset($parsedUrl['host']) ? $parsedUrl['host'] : ''; + + $requestUrl = $scheme . '://' . $host . '/cloud-credentials'; + + $body = json_encode([ + 'AccountId' => $this->accountId, + 'AccessConfigurationId' => $this->accessConfig, + ]); + + $options = [ + 'http_errors' => false, + 'connect_timeout' => $this->connectTimeout, + 'read_timeout' => $this->readTimeout, + 'headers' => [ + 'Accept' => 'application/json', + 'Content-Type' => 'application/json', + 'Authorization' => 'Bearer ' . $this->accessToken, + ], + 'body' => $body, + ]; + + $result = Request::createClient()->request('POST', $requestUrl, $options); + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Get session token from CloudSSO failed, statusCode: ' + . $result->getStatusCode() . ', result: ' . (string) $result->getBody()); + } + + $json = json_decode((string) $result->getBody(), true); + if (!isset($json['CloudCredential'])) { + throw new RuntimeException('Get session token from CloudSSO failed, fail to get credentials.'); + } + + $credentials = $json['CloudCredential']; + if (!isset($credentials['AccessKeyId']) || !isset($credentials['AccessKeySecret']) + || !isset($credentials['SecurityToken'])) { + throw new RuntimeException('Get session token from CloudSSO failed, fail to get credentials.'); + } + + $expiration = \strtotime($credentials['Expiration']); + + return new RefreshResult(new Credentials([ + 'accessKeyId' => $credentials['AccessKeyId'], + 'accessKeySecret' => $credentials['AccessKeySecret'], + 'securityToken' => $credentials['SecurityToken'], + 'expiration' => $expiration, + 'providerName' => $this->getProviderName(), + ]), $this->getStaleTime($expiration)); + } + + public function key() + { + return 'cloud_sso#' . $this->signInUrl . '#' . $this->accountId . '#' . $this->accessConfig; + } + + public function getProviderName() + { + return 'cloud_sso'; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/Credentials.php b/vendor/alibabacloud/credentials/src/Providers/Credentials.php new file mode 100644 index 0000000..bfd4fe3 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/Credentials.php @@ -0,0 +1,87 @@ + $v) { + $this->{$k} = $v; + } + } + } + + /** + * @return string + */ + public function getAccessKeyId() + { + return $this->accessKeyId; + } + + /** + * @return string + */ + public function getAccessKeySecret() + { + return $this->accessKeySecret; + } + + /** + * @return string + */ + public function getSecurityToken() + { + return $this->securityToken; + } + + /** + * @return int + */ + public function getExpiration() + { + return $this->expiration; + } + + /** + * @return string + */ + public function getProviderName() + { + return $this->providerName; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/CredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/CredentialsProvider.php new file mode 100644 index 0000000..ddbd1a1 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/CredentialsProvider.php @@ -0,0 +1,24 @@ +filterReuseLastProviderEnabled($params); + $this->createDefaultChain(); + Filter::reuseLastProviderEnabled($this->reuseLastProviderEnabled); + } + + private function filterReuseLastProviderEnabled(array $params) + { + $this->reuseLastProviderEnabled = true; + if (isset($params['reuseLastProviderEnabled'])) { + $this->reuseLastProviderEnabled = $params['reuseLastProviderEnabled']; + } + } + + private function createDefaultChain() + { + self::$defaultProviders = [ + new EnvironmentVariableCredentialsProvider(), + ]; + if ( + Helper::envNotEmpty('ALIBABA_CLOUD_ROLE_ARN') + && Helper::envNotEmpty('ALIBABA_CLOUD_OIDC_PROVIDER_ARN') + && Helper::envNotEmpty('ALIBABA_CLOUD_OIDC_TOKEN_FILE') + ) { + array_push( + self::$defaultProviders, + new OIDCRoleArnCredentialsProvider() + ); + } + array_push( + self::$defaultProviders, + new CLIProfileCredentialsProvider() + ); + array_push( + self::$defaultProviders, + new ProfileCredentialsProvider() + ); + array_push( + self::$defaultProviders, + new EcsRamRoleCredentialsProvider() + ); + if (Helper::envNotEmpty('ALIBABA_CLOUD_CREDENTIALS_URI')) { + array_push( + self::$defaultProviders, + new URLCredentialsProvider() + ); + } + } + + /** + * @param CredentialsProvider ...$providers + */ + public static function set(...$providers) + { + if (empty($providers)) { + throw new InvalidArgumentException('No providers in chain'); + } + + foreach ($providers as $provider) { + if (!$provider instanceof CredentialsProvider) { + throw new InvalidArgumentException('Providers must all be CredentialsProvider'); + } + } + + self::$customChain = $providers; + } + + /** + * @return bool + */ + public static function hasCustomChain() + { + return (bool) self::$customChain; + } + + public static function flush() + { + self::$customChain = []; + } + + /** + * Get credential. + * + * @return Credentials + * @throws RuntimeException + */ + public function getCredentials() + { + if ($this->reuseLastProviderEnabled && !is_null($this->lastUsedCredentialsProvider)) { + $credentials = $this->lastUsedCredentialsProvider->getCredentials(); + return new Credentials([ + 'accessKeyId' => $credentials->getAccessKeyId(), + 'accessKeySecret' => $credentials->getAccessKeySecret(), + 'securityToken' => $credentials->getSecurityToken(), + 'providerName' => $this->getProviderName() . '/' . $this->lastUsedCredentialsProvider->getProviderName(), + ]); + } + + $providerChain = array_merge( + self::$customChain, + self::$defaultProviders + ); + + $exceptionMessages = []; + + foreach ($providerChain as $provider) { + try { + $credentials = $provider->getCredentials(); + $this->lastUsedCredentialsProvider = $provider; + return new Credentials([ + 'accessKeyId' => $credentials->getAccessKeyId(), + 'accessKeySecret' => $credentials->getAccessKeySecret(), + 'securityToken' => $credentials->getSecurityToken(), + 'providerName' => $this->getProviderName() . '/' . $provider->getProviderName(), + ]); + } catch (Exception $exception) { + array_push($exceptionMessages, basename(str_replace('\\', '/', get_class($provider))) . ': ' . $exception->getMessage()); + } + } + throw new RuntimeException('Unable to load credentials from any of the providers in the chain: ' . implode(', ', $exceptionMessages)); + + } + + /** + * @inheritDoc + */ + public function getProviderName() + { + return "default"; + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/credentials/src/Providers/EcsRamRoleCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/EcsRamRoleCredentialsProvider.php new file mode 100644 index 0000000..8dffb50 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/EcsRamRoleCredentialsProvider.php @@ -0,0 +1,276 @@ +filterOptions($options); + $this->filterRoleName($params); + $this->filterDisableECSIMDSv1($params); + Filter::roleName($this->roleName); + Filter::disableIMDSv1($this->disableIMDSv1); + } + + private function filterOptions(array $options) + { + if (isset($options['connectTimeout'])) { + $this->connectTimeout = $options['connectTimeout']; + } + + if (isset($options['readTimeout'])) { + $this->readTimeout = $options['readTimeout']; + } + + Filter::timeout($this->connectTimeout, $this->readTimeout); + } + + private function filterRoleName(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_ECS_METADATA')) { + $this->roleName = Helper::env('ALIBABA_CLOUD_ECS_METADATA'); + } + + if (isset($params['roleName'])) { + $this->roleName = $params['roleName']; + } + } + + private function filterDisableECSIMDSv1($params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_IMDSV1_DISABLED')) { + $this->disableIMDSv1 = Helper::env('ALIBABA_CLOUD_IMDSV1_DISABLED') === true ? true : false; + } + + if (isset($params['disableIMDSv1'])) { + $this->disableIMDSv1 = $params['disableIMDSv1']; + } + } + + /** + * Get credentials by request. + * + * @return RefreshResult + * @throws InvalidArgumentException + * @throws RuntimeException + * @throws GuzzleException + */ + public function refreshCredentials() + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_ECS_METADATA_DISABLED') && Helper::env('ALIBABA_CLOUD_ECS_METADATA_DISABLED') === true) { + throw new RuntimeException('IMDS credentials is disabled'); + } + + if (is_null($this->roleName) || $this->roleName === '') { + $this->roleName = $this->getRoleNameFromMeta(); + } + + $url = $this->metadataHost . $this->ecsUri . $this->roleName; + $options = Request::commonOptions(); + $options['read_timeout'] = $this->readTimeout; + $options['connect_timeout'] = $this->connectTimeout; + + $metadataToken = $this->getMetadataToken(); + if (!is_null($metadataToken)) { + $options['headers']['X-aliyun-ecs-metadata-token'] = $metadataToken; + } + + $result = Request::createClient()->request('GET', $url, $options); + + if ($result->getStatusCode() === 404) { + throw new InvalidArgumentException('The role was not found in the instance' . (string) $result); + } + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Error refreshing credentials from IMDS, statusCode: ' . $result->getStatusCode() . ', result: ' . (string) $result); + } + + $credentials = $result->toArray(); + + if (!isset($credentials['AccessKeyId']) || !isset($credentials['AccessKeySecret']) || !isset($credentials['SecurityToken'])) { + throw new RuntimeException('Error retrieving credentials from IMDS result:' . $result->toJson()); + } + + if (!isset($credentials['Code']) || $credentials['Code'] !== 'Success') { + throw new RuntimeException('Error retrieving credentials from IMDS result, Code is not Success:' . $result->toJson()); + } + + return new RefreshResult(new Credentials([ + 'accessKeyId' => $credentials['AccessKeyId'], + 'accessKeySecret' => $credentials['AccessKeySecret'], + 'securityToken' => $credentials['SecurityToken'], + 'expiration' => \strtotime($credentials['Expiration']), + 'providerName' => $this->getProviderName(), + ]), $this->getStaleTime(strtotime($credentials["Expiration"])), $this->getPrefetchTime(strtotime($credentials["Expiration"]))); + } + + /** + * @return string + * @throws InvalidArgumentException + * @throws RuntimeException + * @throws GuzzleException + */ + private function getRoleNameFromMeta() + { + $options = Request::commonOptions(); + $options['read_timeout'] = $this->readTimeout; + $options['connect_timeout'] = $this->connectTimeout; + + $metadataToken = $this->getMetadataToken(); + if (!is_null($metadataToken)) { + $options['headers']['X-aliyun-ecs-metadata-token'] = $metadataToken; + } + + $result = Request::createClient()->request( + 'GET', + 'http://100.100.100.200/latest/meta-data/ram/security-credentials/', + $options + ); + + if ($result->getStatusCode() === 404) { + throw new InvalidArgumentException('The role name was not found in the instance' . (string) $result); + } + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Error retrieving role name from result: ' . (string) $result); + } + + $role_name = (string) $result; + if (!$role_name) { + throw new RuntimeException('Error retrieving role name from result is empty'); + } + + return $role_name; + } + + /** + * Get metadata token by request. + * + * @return string + * @throws RuntimeException + * @throws GuzzleException + */ + private function getMetadataToken() + { + $url = $this->metadataHost . $this->metadataTokenUri; + $options = Request::commonOptions(); + $options['read_timeout'] = $this->readTimeout; + $options['connect_timeout'] = $this->connectTimeout; + $options['headers']['X-aliyun-ecs-metadata-token-ttl-seconds'] = $this->metadataTokenDuration; + + $result = Request::createClient()->request('PUT', $url, $options); + + if ($result->getStatusCode() != 200) { + if ($this->disableIMDSv1) { + throw new RuntimeException('Failed to get token from ECS Metadata Service. HttpCode= ' . $result->getStatusCode()); + } + return null; + } + return (string) $result; + } + + /** + * @var int + */ + public function getPrefetchTime($expiration) + { + return $expiration <= 0 ? + time() + (5 * 60) : + time() + (60 * 60); + } + + /** + * @return string + */ + public function key() + { + return 'ecs_ram_role#roleName#' . $this->roleName; + } + + /** + * @return string + */ + public function getProviderName() + { + return 'ecs_ram_role'; + } + + /** + * @return string + */ + public function getRoleName() + { + return $this->roleName; + } + + /** + * @return bool + */ + public function isDisableIMDSv1() + { + return $this->disableIMDSv1; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/EnvironmentVariableCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/EnvironmentVariableCredentialsProvider.php new file mode 100644 index 0000000..b6dd579 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/EnvironmentVariableCredentialsProvider.php @@ -0,0 +1,65 @@ + $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'providerName' => $this->getProviderName(), + ]); + } + + return new Credentials([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'providerName' => $this->getProviderName(), + ]); + } + + /** + * @inheritDoc + */ + public function getProviderName() + { + return "env"; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/ExternalCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/ExternalCredentialsProvider.php new file mode 100644 index 0000000..e59a68f --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/ExternalCredentialsProvider.php @@ -0,0 +1,207 @@ +timeout = (int) $options['timeout']; + } + + $this->processCommand = isset($params['processCommand']) ? $params['processCommand'] : null; + $this->credentialUpdateCallback = isset($params['credentialUpdateCallback']) + ? $params['credentialUpdateCallback'] : null; + + if (empty($this->processCommand)) { + throw new InvalidArgumentException('process_command is empty'); + } + } + + /** + * @return Credentials + */ + public function getCredentials() + { + if ($this->needUpdateCredential()) { + $credential = $this->getCredentialsInternal(); + $this->credentials = $credential; + $this->expirationTimestamp = $credential->getExpiration() > 0 ? $credential->getExpiration() : 0; + $this->invokeCredentialUpdateCallback($credential); + } + + return new Credentials([ + 'accessKeyId' => $this->credentials->getAccessKeyId(), + 'accessKeySecret' => $this->credentials->getAccessKeySecret(), + 'securityToken' => $this->credentials->getSecurityToken(), + 'expiration' => $this->credentials->getExpiration(), + 'providerName' => $this->getProviderName(), + ]); + } + + /** + * @return Credentials + */ + public function getCredentialsInternal() + { + $stdout = $this->executeCommand(); + $json = json_decode($stdout, true); + if (!is_array($json)) { + throw new RuntimeException('failed to parse external command output: ' . json_last_error_msg()); + } + + if (empty($json['access_key_id']) || empty($json['access_key_secret'])) { + throw new RuntimeException('invalid credential response: access_key_id or access_key_secret is empty'); + } + + if (isset($json['mode']) && $json['mode'] === 'StsToken' && empty($json['sts_token'])) { + throw new RuntimeException('invalid StsToken credential response: sts_token is empty'); + } + + $expiration = !empty($json['expiration']) ? strtotime($json['expiration']) : 0; + if ($expiration === false) { + $expiration = 0; + } + + return new Credentials([ + 'accessKeyId' => $json['access_key_id'], + 'accessKeySecret' => $json['access_key_secret'], + 'securityToken' => isset($json['sts_token']) ? $json['sts_token'] : null, + 'expiration' => $expiration, + 'providerName' => $this->getProviderName(), + ]); + } + + /** + * @return string + */ + private function executeCommand() + { + $args = preg_split('/\s+/', trim($this->processCommand)); + if (empty($args) || $args[0] === '') { + throw new RuntimeException('process_command is empty'); + } + $command = implode(' ', array_map('escapeshellarg', $args)); + $descriptorSpec = [ + 1 => ['pipe', 'w'], + 2 => ['pipe', 'w'], + ]; + $process = proc_open($command, $descriptorSpec, $pipes); + if (!is_resource($process)) { + throw new RuntimeException('failed to execute external command'); + } + + stream_set_blocking($pipes[1], false); + stream_set_blocking($pipes[2], false); + $stdout = ''; + $stderr = ''; + $startedAt = time(); + while (true) { + $stdout .= stream_get_contents($pipes[1]); + $stderr .= stream_get_contents($pipes[2]); + $status = proc_get_status($process); + if (!$status['running']) { + $exitCode = $status['exitcode']; + break; + } + if (time() - $startedAt >= $this->timeout) { + proc_terminate($process); + proc_close($process); + throw new RuntimeException('command process timed out after ' . ($this->timeout * 1000) . ' milliseconds'); + } + usleep(10000); + } + + $stdout .= stream_get_contents($pipes[1]); + $stderr .= stream_get_contents($pipes[2]); + fclose($pipes[1]); + fclose($pipes[2]); + proc_close($process); + if ($exitCode !== 0) { + throw new RuntimeException('failed to execute external command: exit status ' . $exitCode . "\nstderr: " . $stderr); + } + + return $stdout; + } + + /** + * @return bool + */ + private function needUpdateCredential() + { + if ($this->credentials === null) { + return true; + } + if ($this->expirationTimestamp === 0) { + return true; + } + return $this->expirationTimestamp - time() <= 180; + } + + private function invokeCredentialUpdateCallback(Credentials $credential) + { + if (!$this->credentialUpdateCallback || !is_callable($this->credentialUpdateCallback)) { + return; + } + try { + call_user_func( + $this->credentialUpdateCallback, + $credential->getAccessKeyId(), + $credential->getAccessKeySecret(), + $credential->getSecurityToken(), + $this->expirationTimestamp + ); + } catch (\Exception $e) { + // Warning only + } + } + + /** + * @return string + */ + public function getProviderName() + { + return 'external'; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/OAuthCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/OAuthCredentialsProvider.php new file mode 100644 index 0000000..5faba0d --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/OAuthCredentialsProvider.php @@ -0,0 +1,220 @@ +filterOptions($options); + $this->filterParams($params); + } + + private function filterOptions(array $options) + { + if (isset($options['connectTimeout'])) { + $this->connectTimeout = $options['connectTimeout']; + } + + if (isset($options['readTimeout'])) { + $this->readTimeout = $options['readTimeout']; + } + } + + private function filterParams(array $params) + { + $this->clientId = isset($params['clientId']) ? $params['clientId'] : null; + $this->signInUrl = isset($params['signInUrl']) ? $params['signInUrl'] : null; + $this->refreshToken = isset($params['refreshToken']) ? $params['refreshToken'] : null; + $this->accessToken = isset($params['accessToken']) ? $params['accessToken'] : null; + $this->accessTokenExpire = isset($params['accessTokenExpire']) ? (int) $params['accessTokenExpire'] : 0; + $this->tokenUpdateCallback = isset($params['tokenUpdateCallback']) ? $params['tokenUpdateCallback'] : null; + + if (empty($this->clientId)) { + throw new InvalidArgumentException('The clientId is empty.'); + } + + if (empty($this->signInUrl)) { + throw new InvalidArgumentException('The url for sign-in is empty.'); + } + } + + private function tryRefreshOAuthToken() + { + $parsedUrl = parse_url($this->signInUrl); + $scheme = isset($parsedUrl['scheme']) ? $parsedUrl['scheme'] : 'https'; + $host = isset($parsedUrl['host']) ? $parsedUrl['host'] : ''; + + $requestUrl = $scheme . '://' . $host . '/v1/token'; + + $formData = [ + 'grant_type' => 'refresh_token', + 'refresh_token' => $this->refreshToken, + 'client_id' => $this->clientId, + 'Timestamp' => gmdate('Y-m-d\TH:i:s\Z'), + ]; + + $options = [ + 'http_errors' => false, + 'connect_timeout' => $this->connectTimeout, + 'read_timeout' => $this->readTimeout, + 'headers' => [ + 'Content-Type' => 'application/x-www-form-urlencoded', + ], + 'form_params' => $formData, + ]; + + $result = Request::createClient()->request('POST', $requestUrl, $options); + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Failed to refresh OAuth token, status code: ' . $result->getStatusCode()); + } + + $json = json_decode((string) $result->getBody(), true); + if (empty($json) || empty($json['access_token']) || empty($json['refresh_token'])) { + throw new RuntimeException('Failed to refresh OAuth token: ' . (string) $result->getBody()); + } + + $this->accessToken = $json['access_token']; + $this->refreshToken = $json['refresh_token']; + $this->accessTokenExpire = time() + (isset($json['expires_in']) ? (int) $json['expires_in'] : 3600); + } + + /** + * @return RefreshResult + * @throws RuntimeException + */ + public function refreshCredentials() + { + $now = time(); + if (!empty($this->refreshToken) + && (empty($this->accessToken) || $this->accessTokenExpire === 0 + || $this->accessTokenExpire - $now <= 1200)) { + $this->tryRefreshOAuthToken(); + } + + $parsedUrl = parse_url($this->signInUrl); + $scheme = isset($parsedUrl['scheme']) ? $parsedUrl['scheme'] : 'https'; + $host = isset($parsedUrl['host']) ? $parsedUrl['host'] : ''; + + $requestUrl = $scheme . '://' . $host . '/v1/exchange'; + + $options = [ + 'http_errors' => false, + 'connect_timeout' => $this->connectTimeout, + 'read_timeout' => $this->readTimeout, + 'headers' => [ + 'Content-Type' => 'application/json', + 'Authorization' => 'Bearer ' . $this->accessToken, + ], + ]; + + $result = Request::createClient()->request('POST', $requestUrl, $options); + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Get session token from OAuth failed, statusCode: ' + . $result->getStatusCode() . ', result: ' . (string) $result->getBody()); + } + + $json = json_decode((string) $result->getBody(), true); + if (empty($json) || empty($json['accessKeyId']) || empty($json['accessKeySecret']) + || empty($json['securityToken'])) { + throw new RuntimeException('Refresh session token from OAuth failed, fail to get credentials: ' + . (string) $result->getBody()); + } + + $expiration = isset($json['expiration']) ? \strtotime($json['expiration']) : 0; + + if ($this->tokenUpdateCallback && is_callable($this->tokenUpdateCallback)) { + try { + call_user_func( + $this->tokenUpdateCallback, + $this->refreshToken, + $this->accessToken, + $json['accessKeyId'], + $json['accessKeySecret'], + $json['securityToken'], + $this->accessTokenExpire, + $expiration + ); + } catch (\Exception $e) { + // Warning only + } + } + + return new RefreshResult(new Credentials([ + 'accessKeyId' => $json['accessKeyId'], + 'accessKeySecret' => $json['accessKeySecret'], + 'securityToken' => $json['securityToken'], + 'expiration' => $expiration, + 'providerName' => $this->getProviderName(), + ]), $this->getStaleTime($expiration)); + } + + public function key() + { + return 'oauth#' . $this->signInUrl . '#' . $this->clientId; + } + + public function getProviderName() + { + return 'oauth'; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/OIDCRoleArnCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/OIDCRoleArnCredentialsProvider.php new file mode 100644 index 0000000..18fe6ec --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/OIDCRoleArnCredentialsProvider.php @@ -0,0 +1,268 @@ +filterOptions($options); + $this->filterRoleArn($params); + $this->filterOIDCProviderArn($params); + $this->filterOIDCTokenFilePath($params); + $this->filterRoleSessionName($params); + $this->filterDurationSeconds($params); + $this->filterPolicy($params); + $this->filterSTSEndpoint($params); + } + + private function filterRoleArn(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_ROLE_ARN')) { + $this->roleArn = Helper::env('ALIBABA_CLOUD_ROLE_ARN'); + } + + if (isset($params['roleArn'])) { + $this->roleArn = $params['roleArn']; + } + + Filter::roleArn($this->roleArn); + } + + private function filterOIDCProviderArn(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_OIDC_PROVIDER_ARN')) { + $this->oidcProviderArn = Helper::env('ALIBABA_CLOUD_OIDC_PROVIDER_ARN'); + } + + if (isset($params['oidcProviderArn'])) { + $this->oidcProviderArn = $params['oidcProviderArn']; + } + + Filter::oidcProviderArn($this->oidcProviderArn); + } + + private function filterOIDCTokenFilePath(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_OIDC_TOKEN_FILE')) { + $this->oidcTokenFilePath = Helper::env('ALIBABA_CLOUD_OIDC_TOKEN_FILE'); + } + + if (isset($params['oidcTokenFilePath'])) { + $this->oidcTokenFilePath = $params['oidcTokenFilePath']; + } + + Filter::oidcTokenFilePath($this->oidcTokenFilePath); + } + + private function filterRoleSessionName(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_ROLE_SESSION_NAME')) { + $this->roleSessionName = Helper::env('ALIBABA_CLOUD_ROLE_SESSION_NAME'); + } + + if (isset($params['roleSessionName'])) { + $this->roleSessionName = $params['roleSessionName']; + } + + if (is_null($this->roleSessionName) || $this->roleSessionName === '') { + $this->roleSessionName = 'phpSdkRoleSessionName'; + } + } + + private function filterDurationSeconds(array $params) + { + if (isset($params['durationSeconds'])) { + if (is_int($params['durationSeconds'])) { + $this->durationSeconds = $params['durationSeconds']; + } + } + if ($this->durationSeconds < 900) { + throw new InvalidArgumentException('Role session expiration should be in the range of 900s - max session duration'); + } + } + + private function filterPolicy(array $params) + { + if (isset($params['policy'])) { + if (is_string($params['policy'])) { + $this->policy = $params['policy']; + } + + if (is_array($params['policy'])) { + $this->policy = json_encode($params['policy']); + } + } + } + + private function filterSTSEndpoint(array $params) + { + $prefix = 'sts'; + if (Helper::envNotEmpty('ALIBABA_CLOUD_VPC_ENDPOINT_ENABLED') || (isset($params['enableVpc']) && $params['enableVpc'] === true)) { + $prefix = 'sts-vpc'; + } + if (Helper::envNotEmpty('ALIBABA_CLOUD_STS_REGION')) { + $this->stsEndpoint = $prefix . '.' . Helper::env('ALIBABA_CLOUD_STS_REGION') . '.aliyuncs.com'; + } + + if (isset($params['stsRegionId'])) { + $this->stsEndpoint = $prefix . '.' . $params['stsRegionId'] . '.aliyuncs.com'; + } + + if (isset($params['stsEndpoint'])) { + $this->stsEndpoint = $params['stsEndpoint']; + } + + if (is_null($this->stsEndpoint) || $this->stsEndpoint === '') { + $this->stsEndpoint = 'sts.aliyuncs.com'; + } + } + + private function filterOptions(array $options) + { + if (isset($options['connectTimeout'])) { + $this->connectTimeout = $options['connectTimeout']; + } + + if (isset($options['readTimeout'])) { + $this->readTimeout = $options['readTimeout']; + } + + Filter::timeout($this->connectTimeout, $this->readTimeout); + } + + /** + * Get credentials by request. + * + * @return RefreshResult + * @throws RuntimeException + * @throws GuzzleException + */ + public function refreshCredentials() + { + $options = Request::commonOptions(); + $options['read_timeout'] = $this->readTimeout; + $options['connect_timeout'] = $this->connectTimeout; + + $options['query']['Action'] = 'AssumeRoleWithOIDC'; + $options['query']['Version'] = '2015-04-01'; + $options['query']['Format'] = 'JSON'; + $options['query']['Timestamp'] = gmdate('Y-m-d\TH:i:s\Z'); + $options['query']['RoleArn'] = $this->roleArn; + $options['query']['OIDCProviderArn'] = $this->oidcProviderArn; + try { + $oidcToken = file_get_contents($this->oidcTokenFilePath); + $options['query']['OIDCToken'] = $oidcToken; + } catch (Exception $exception) { + throw new InvalidArgumentException($exception->getMessage()); + } + $options['query']['RoleSessionName'] = $this->roleSessionName; + $options['query']['DurationSeconds'] = (string) $this->durationSeconds; + if (!is_null($this->policy)) { + $options['query']['Policy'] = $this->policy; + } + + $url = (new Uri())->withScheme('https')->withHost($this->stsEndpoint); + + $result = Request::createClient()->request('POST', $url, $options); + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Error refreshing credentials from OIDC, statusCode: ' . $result->getStatusCode() . ', result: ' . (string) $result); + } + + $json = $result->toArray(); + $credentials = $json['Credentials']; + + if (!isset($credentials['AccessKeyId']) || !isset($credentials['AccessKeySecret']) || !isset($credentials['SecurityToken'])) { + throw new RuntimeException('Error retrieving credentials from OIDC result:' . $result->toJson()); + } + + return new RefreshResult(new Credentials([ + 'accessKeyId' => $credentials['AccessKeyId'], + 'accessKeySecret' => $credentials['AccessKeySecret'], + 'securityToken' => $credentials['SecurityToken'], + 'expiration' => \strtotime($credentials['Expiration']), + 'providerName' => $this->getProviderName(), + ]), $this->getStaleTime(strtotime($credentials['Expiration']))); + } + + public function key() + { + return 'oidc_role_arn#roleArn#' . $this->roleArn . '#oidcProviderArn#' . $this->oidcProviderArn . '#roleSessionName#' . $this->roleSessionName; + } + + public function getProviderName() + { + return 'oidc_role_arn'; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/ProfileCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/ProfileCredentialsProvider.php new file mode 100644 index 0000000..ab07efe --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/ProfileCredentialsProvider.php @@ -0,0 +1,188 @@ +filterProfileName($params); + $this->filterProfileFile(); + } + + private function filterProfileName(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_PROFILE')) { + $this->profileName = Helper::env('ALIBABA_CLOUD_PROFILE'); + } + + if (isset($params['profileName'])) { + $this->profileName = $params['profileName']; + } + + if (is_null($this->profileName) || $this->profileName === '') { + $this->profileName = 'default'; + } + } + + private function filterProfileFile() + { + $this->profileFile = Helper::envNotEmpty('ALIBABA_CLOUD_CREDENTIALS_FILE'); + + if (!$this->profileFile) { + $this->profileFile = self::getDefaultFile(); + } + } + + /** + * @return bool + */ + private function shouldReloadCredentialsProvider() + { + if (is_null($this->credentialsProvider)) { + return true; + } + + return false; + } + + /** + * @return CredentialsProvider + */ + private function reloadCredentialsProvider($profileFile, $profileName) + { + if (!Helper::inOpenBasedir($profileFile)) { + throw new RuntimeException('Unable to open credentials file: ' . $profileFile); + } + + if (!\is_readable($profileFile) || !\is_file($profileFile)) { + throw new RuntimeException('Credentials file is not readable: ' . $profileFile); + } + + $fileArray = \parse_ini_file($profileFile, true); + + if (\is_array($fileArray) && !empty($fileArray)) { + $credentialsConfigures = []; + foreach (\array_change_key_case($fileArray) as $name => $configures) { + if ($name === $profileName) { + $credentialsConfigures = $configures; + break; + } + } + if (\is_array($credentialsConfigures) && !empty($credentialsConfigures)) { + switch (Helper::unsetReturnNull($credentialsConfigures, 'type')) { + case 'access_key': + return new StaticAKCredentialsProvider([ + 'accessKeyId' => Helper::unsetReturnNull($credentialsConfigures, 'access_key_id'), + 'accessKeySecret' => Helper::unsetReturnNull($credentialsConfigures, 'access_key_secret'), + ]); + case 'ram_role_arn': + $innerProvider = new StaticAKCredentialsProvider([ + 'accessKeyId' => Helper::unsetReturnNull($credentialsConfigures, 'access_key_id'), + 'accessKeySecret' => Helper::unsetReturnNull($credentialsConfigures, 'access_key_secret'), + ]); + return new RamRoleArnCredentialsProvider([ + 'credentialsProvider' => $innerProvider, + 'roleArn' => Helper::unsetReturnNull($credentialsConfigures, 'role_arn'), + 'roleSessionName' => Helper::unsetReturnNull($credentialsConfigures, 'role_session_name'), + 'policy' => Helper::unsetReturnNull($credentialsConfigures, 'policy'), + ]); + case 'ecs_ram_role': + return new EcsRamRoleCredentialsProvider([ + 'roleName' => Helper::unsetReturnNull($credentialsConfigures, 'role_name'), + ]); + case 'oidc_role_arn': + return new OIDCRoleArnCredentialsProvider([ + 'roleArn' => Helper::unsetReturnNull($credentialsConfigures, 'role_arn'), + 'oidcProviderArn' => Helper::unsetReturnNull($credentialsConfigures, 'oidc_provider_arn'), + 'oidcTokenFilePath' => Helper::unsetReturnNull($credentialsConfigures, 'oidc_token_file_path'), + 'roleSessionName' => Helper::unsetReturnNull($credentialsConfigures, 'role_session_name'), + 'policy' => Helper::unsetReturnNull($credentialsConfigures, 'policy'), + ]); + case 'rsa_key_pair': + return new RsaKeyPairCredentialsProvider([ + 'publicKeyId' => Helper::unsetReturnNull($credentialsConfigures, 'public_key_id'), + 'privateKeyFile' => Helper::unsetReturnNull($credentialsConfigures, 'private_key_file'), + ]); + default: + throw new RuntimeException('Unsupported credential type from credentials file: ' . Helper::unsetReturnNull($credentialsConfigures, 'type')); + } + } + } + throw new RuntimeException('Failed to get credential from credentials file: ' . $profileFile); + } + /** + * Get credential. + * + * @return Credentials + * @throws RuntimeException + */ + public function getCredentials() + { + if ($this->shouldReloadCredentialsProvider()) { + $this->credentialsProvider = $this->reloadCredentialsProvider($this->profileFile, $this->profileName); + } + + $credentials = $this->credentialsProvider->getCredentials(); + return new Credentials([ + 'accessKeyId' => $credentials->getAccessKeyId(), + 'accessKeySecret' => $credentials->getAccessKeySecret(), + 'securityToken' => $credentials->getSecurityToken(), + 'providerName' => $this->getProviderName() . '/' . $this->credentialsProvider->getProviderName(), + ]); + + } + + /** + * Get the default credential file. + * + * @return string + */ + private function getDefaultFile() + { + return Helper::getHomeDirectory() . + DIRECTORY_SEPARATOR . + '.alibabacloud' . + DIRECTORY_SEPARATOR . + 'credentials'; + } + + /** + * @return string + */ + public function getProviderName() + { + return 'profile'; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/RamRoleArnCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/RamRoleArnCredentialsProvider.php new file mode 100644 index 0000000..b69f6c5 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/RamRoleArnCredentialsProvider.php @@ -0,0 +1,321 @@ +filterOptions($options); + $this->filterCredentials($params); + $this->filterRoleArn($params); + $this->filterRoleSessionName($params); + $this->filterDurationSeconds($params); + $this->filterPolicy($params); + $this->filterExternalId($params); + $this->filterSTSEndpoint($params); + } + + private function filterRoleArn(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_ROLE_ARN')) { + $this->roleArn = Helper::env('ALIBABA_CLOUD_ROLE_ARN'); + } + + if (isset($params['roleArn'])) { + $this->roleArn = $params['roleArn']; + } + + Filter::roleArn($this->roleArn); + } + + private function filterRoleSessionName(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_ROLE_SESSION_NAME')) { + $this->roleSessionName = Helper::env('ALIBABA_CLOUD_ROLE_SESSION_NAME'); + } + + if (isset($params['roleSessionName'])) { + $this->roleSessionName = $params['roleSessionName']; + } + + if (is_null($this->roleSessionName) || $this->roleSessionName === '') { + $this->roleSessionName = 'phpSdkRoleSessionName'; + } + } + + private function filterDurationSeconds(array $params) + { + if (isset($params['durationSeconds'])) { + if (is_int($params['durationSeconds'])) { + $this->durationSeconds = $params['durationSeconds']; + } + } + if ($this->durationSeconds < 900) { + throw new InvalidArgumentException('Role session expiration should be in the range of 900s - max session duration'); + } + } + + private function filterPolicy(array $params) + { + if (isset($params['policy'])) { + if (is_string($params['policy'])) { + $this->policy = $params['policy']; + } + + if (is_array($params['policy'])) { + $this->policy = json_encode($params['policy']); + } + } + } + + private function filterExternalId(array $params) + { + if (isset($params['externalId'])) { + if (is_string($params['externalId'])) { + $this->externalId = $params['externalId']; + } + } + } + + private function filterSTSEndpoint(array $params) + { + $prefix = 'sts'; + if (Helper::envNotEmpty('ALIBABA_CLOUD_VPC_ENDPOINT_ENABLED') || (isset($params['enableVpc']) && $params['enableVpc'] === true)) { + $prefix = 'sts-vpc'; + } + if (Helper::envNotEmpty('ALIBABA_CLOUD_STS_REGION')) { + $this->stsEndpoint = $prefix . '.' . Helper::env('ALIBABA_CLOUD_STS_REGION') . '.aliyuncs.com'; + } + + if (isset($params['stsRegionId'])) { + $this->stsEndpoint = $prefix . '.' . $params['stsRegionId'] . '.aliyuncs.com'; + } + + if (isset($params['stsEndpoint'])) { + $this->stsEndpoint = $params['stsEndpoint']; + } + + if (is_null($this->stsEndpoint) || $this->stsEndpoint === '') { + $this->stsEndpoint = 'sts.aliyuncs.com'; + } + } + + private function filterCredentials(array $params) + { + if (isset($params['credentialsProvider'])) { + if (!($params['credentialsProvider'] instanceof CredentialsProvider)) { + throw new InvalidArgumentException('Invalid credentialsProvider option for ram_role_arn'); + } + $this->credentialsProvider = $params['credentialsProvider']; + } else if (isset($params['accessKeyId']) && isset($params['accessKeySecret']) && isset($params['securityToken'])) { + Filter::accessKey($params['accessKeyId'], $params['accessKeySecret']); + Filter::securityToken($params['securityToken']); + $this->credentialsProvider = new StaticSTSCredentialsProvider($params); + } else if (isset($params['accessKeyId']) && isset($params['accessKeySecret'])) { + Filter::accessKey($params['accessKeyId'], $params['accessKeySecret']); + $this->credentialsProvider = new StaticAKCredentialsProvider($params); + } else { + throw new InvalidArgumentException('Missing required credentials option for ram_role_arn'); + } + } + + private function filterOptions(array $options) + { + if (isset($options['connectTimeout'])) { + $this->connectTimeout = $options['connectTimeout']; + } + + if (isset($options['readTimeout'])) { + $this->readTimeout = $options['readTimeout']; + } + + Filter::timeout($this->connectTimeout, $this->readTimeout); + } + + /** + * Get credentials by request. + * + * @return RefreshResult + * @throws RuntimeException + * @throws GuzzleException + */ + public function refreshCredentials() + { + $options = Request::commonOptions(); + $options['read_timeout'] = $this->readTimeout; + $options['connect_timeout'] = $this->connectTimeout; + + $options['query']['Action'] = 'AssumeRole'; + $options['query']['Version'] = '2015-04-01'; + $options['query']['Format'] = 'JSON'; + $options['query']['Timestamp'] = gmdate('Y-m-d\TH:i:s\Z'); + $options['query']['SignatureMethod'] = 'HMAC-SHA1'; + $options['query']['SignatureVersion'] = '1.0'; + $options['query']['SignatureNonce'] = Request::uuid(json_encode($options['query'])); + $options['query']['RoleArn'] = $this->roleArn; + $options['query']['RoleSessionName'] = $this->roleSessionName; + $options['query']['DurationSeconds'] = (string) $this->durationSeconds; + if (!is_null($this->policy) && $this->policy !== '') { + $options['query']['Policy'] = $this->policy; + } + if (!is_null($this->externalId) && $this->externalId !== '') { + $options['query']['ExternalId'] = $this->externalId; + } + + $sessionCredentials = $this->credentialsProvider->getCredentials(); + $options['query']['AccessKeyId'] = $sessionCredentials->getAccessKeyId(); + if (!is_null($sessionCredentials->getSecurityToken())) { + $options['query']['SecurityToken'] = $sessionCredentials->getSecurityToken(); + } + $options['query']['Signature'] = Request::shaHmac1sign( + Request::signString('GET', $options['query']), + $sessionCredentials->getAccessKeySecret() . '&' + ); + + $url = (new Uri())->withScheme('https')->withHost($this->stsEndpoint); + + $result = Request::createClient()->request('GET', $url, $options); + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Error refreshing credentials from RamRoleArn, statusCode: ' . $result->getStatusCode() . ', result: ' . (string) $result); + } + + $json = $result->toArray(); + $credentials = $json['Credentials']; + + if (!isset($credentials['AccessKeyId']) || !isset($credentials['AccessKeySecret']) || !isset($credentials['SecurityToken'])) { + throw new RuntimeException('Error retrieving credentials from RamRoleArn result:' . $result->toJson()); + } + + return new RefreshResult(new Credentials([ + 'accessKeyId' => $credentials['AccessKeyId'], + 'accessKeySecret' => $credentials['AccessKeySecret'], + 'securityToken' => $credentials['SecurityToken'], + 'expiration' => \strtotime($credentials['Expiration']), + 'providerName' => $this->getProviderName(), + ]), $this->getStaleTime(strtotime($credentials['Expiration']))); + } + + public function key() + { + $credentials = $this->credentialsProvider->getCredentials(); + return 'ram_role_arn#credential#' . $credentials->getAccessKeyId() . '#roleArn#' . $this->roleArn . '#roleSessionName#' . $this->roleSessionName; + } + + public function getProviderName() + { + return 'ram_role_arn/' . $this->credentialsProvider->getProviderName(); + } + + /** + * @return string + */ + public function getRoleArn() + { + return $this->roleArn; + } + + /** + * @return string + */ + public function getRoleSessionName() + { + return $this->roleSessionName; + } + + /** + * @return string + */ + public function getPolicy() + { + return $this->policy; + } + + /** + * @deprecated + * @return string + */ + public function getOriginalAccessKeyId() + { + return $this->credentialsProvider->getCredentials()->getAccessKeyId(); + } + + /** + * @deprecated + * @return string + */ + public function getOriginalAccessKeySecret() + { + return $this->credentialsProvider->getCredentials()->getAccessKeySecret(); + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/RsaKeyPairCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/RsaKeyPairCredentialsProvider.php new file mode 100644 index 0000000..8c85db6 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/RsaKeyPairCredentialsProvider.php @@ -0,0 +1,200 @@ +filterOptions($options); + $this->filterDurationSeconds($params); + $this->filterSTSEndpoint($params); + $this->publicKeyId = isset($params['publicKeyId']) ? $params['publicKeyId'] : null; + $privateKeyFile = isset($params['privateKeyFile']) ? $params['privateKeyFile'] : null; + Filter::publicKeyId($this->publicKeyId); + Filter::privateKeyFile($privateKeyFile); + + try { + $this->privateKey = file_get_contents($privateKeyFile); + } catch (Exception $exception) { + throw new InvalidArgumentException($exception->getMessage()); + } + } + + private function filterOptions(array $options) + { + if (isset($options['connectTimeout'])) { + $this->connectTimeout = $options['connectTimeout']; + } + + if (isset($options['readTimeout'])) { + $this->readTimeout = $options['readTimeout']; + } + + Filter::timeout($this->connectTimeout, $this->readTimeout); + } + + private function filterDurationSeconds(array $params) + { + if (isset($params['durationSeconds'])) { + if (is_int($params['durationSeconds'])) { + $this->durationSeconds = $params['durationSeconds']; + } + } + if ($this->durationSeconds < 900) { + throw new InvalidArgumentException('Role session expiration should be in the range of 900s - max session duration'); + } + } + + private function filterSTSEndpoint(array $params) + { + if (isset($params['stsEndpoint'])) { + $this->stsEndpoint = $params['stsEndpoint']; + } + + if (is_null($this->stsEndpoint) || $this->stsEndpoint === '') { + $this->stsEndpoint = 'sts.ap-northeast-1.aliyuncs.com'; + } + } + + + /** + * Get credentials by request. + * + * @return RefreshResult + * @throws RuntimeException + * @throws GuzzleException + */ + public function refreshCredentials() + { + $options = Request::commonOptions(); + $options['read_timeout'] = $this->readTimeout; + $options['connect_timeout'] = $this->connectTimeout; + + $options['query']['Action'] = 'GenerateSessionAccessKey'; + $options['query']['Version'] = '2015-04-01'; + $options['query']['Format'] = 'JSON'; + $options['query']['Timestamp'] = gmdate('Y-m-d\TH:i:s\Z'); + $options['query']['SignatureMethod'] = 'SHA256withRSA'; + $options['query']['SignatureType'] = 'PRIVATEKEY'; + $options['query']['SignatureVersion'] = '1.0'; + $options['query']['SignatureNonce'] = Request::uuid(json_encode($options['query'])); + $options['query']['DurationSeconds'] = (string) $this->durationSeconds; + $options['query']['AccessKeyId'] = $this->publicKeyId; + $options['query']['Signature'] = Request::shaHmac256WithRsasign( + Request::signString('GET', $options['query']), + $this->privateKey + ); + + $url = (new Uri())->withScheme('https')->withHost($this->stsEndpoint); + + $result = Request::createClient()->request('GET', $url, $options); + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Error refreshing credentials from RsaKeyPair, statusCode: ' . $result->getStatusCode() . ', result: ' . (string) $result); + } + + $json = $result->toArray(); + + if (!isset($json['SessionAccessKey']['SessionAccessKeyId']) || !isset($json['SessionAccessKey']['SessionAccessKeySecret'])) { + throw new RuntimeException('Error retrieving credentials from RsaKeyPair result:' . $result->toJson()); + } + + $credentials = []; + $credentials['AccessKeyId'] = $json['SessionAccessKey']['SessionAccessKeyId']; + $credentials['AccessKeySecret'] = $json['SessionAccessKey']['SessionAccessKeySecret']; + $credentials['Expiration'] = $json['SessionAccessKey']['Expiration']; + $credentials['SecurityToken'] = null; + + + return new RefreshResult(new Credentials([ + 'accessKeyId' => $credentials['AccessKeyId'], + 'accessKeySecret' => $credentials['AccessKeySecret'], + 'securityToken' => $credentials['SecurityToken'], + 'expiration' => \strtotime($credentials['Expiration']), + 'providerName' => $this->getProviderName(), + ]), $this->getStaleTime(strtotime($credentials['Expiration']))); + } + + public function key() + { + return 'rsa_key_pair#publicKeyId#' . $this->publicKeyId; + } + + public function getProviderName() + { + return 'rsa_key_pair'; + } + + /** + * @return string + */ + public function getPublicKeyId() + { + return $this->publicKeyId; + } + + /** + * @return mixed + */ + public function getPrivateKey() + { + return $this->privateKey; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/SessionCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/SessionCredentialsProvider.php new file mode 100644 index 0000000..60b92de --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/SessionCredentialsProvider.php @@ -0,0 +1,161 @@ +key()])) { + $result = self::$credentialsCache[$this->key()]; + return $result; + } + return null; + } + + /** + * Cache credentials. + * + * @param RefreshResult $credential + */ + protected function cache(RefreshResult $credential) + { + self::$credentialsCache[$this->key()] = $credential; + } + + /** + * Get credential. + * + * @return Credentials + */ + public function getCredentials() + { + if ($this->cacheIsStale() || $this->shouldInitiateCachePrefetch()) { + $result = $this->refreshCache(); + $this->cache($result); + } + + $result = $this->getCredentialsInCache(); + + return $result->credentials(); + } + + /** + * @return RefreshResult + */ + protected function refreshCache() + { + try { + return $this->handleFetchedSuccess($this->refreshCredentials()); + } catch (\Exception $e) { + return $this->handleFetchedFailure($e); + } + } + + /** + * @return RefreshResult + * @throws \Exception + */ + protected function handleFetchedFailure(\Exception $e) + { + $currentCachedValue = $this->getCredentialsInCache(); + if (is_null($currentCachedValue)) { + throw $e; + } + + if (time() < $currentCachedValue->staleTime()) { + return $currentCachedValue; + } + + throw $e; + } + /** + * @return RefreshResult + */ + protected function handleFetchedSuccess(RefreshResult $value) + { + $now = time(); + // 过期时间大于15分钟,不用管 + if ($now < $value->staleTime()) { + return $value; + } + // 不足或等于15分钟,但未过期,下次会再次刷新 + if ($now < $value->staleTime() + 15 * 60) { + $value->staleTime = $now; + return $value; + } + // 已过期,看缓存,缓存若大于15分钟,返回缓存,若小于15分钟,则稍后重试 + if (is_null($this->getCredentialsInCache())) { + throw new \Exception("The fetched credentials have expired and no cache is available."); + } else if ($now < $this->getCredentialsInCache()->staleTime()) { + return $this->getCredentialsInCache(); + } else { + // 返回成功,延长有效期 1 分钟 + $expectation = mt_rand(50, 70); + $value->staleTime = time() + $expectation; + return $value; + } + } + + /** + * @return bool + */ + protected function cacheIsStale() + { + return is_null($this->getCredentialsInCache()) || time() >= $this->getCredentialsInCache()->staleTime(); + } + + /** + * @return bool + */ + protected function shouldInitiateCachePrefetch() + { + return is_null($this->getCredentialsInCache()) || time() >= $this->getCredentialsInCache()->prefetchTime(); + } + + /** + * @return int + */ + public function getStaleTime($expiration) + { + return $expiration <= 0 ? + time() + (60 * 60) : + $expiration - (15 * 60); + } + + /** + * @return RefreshResult + */ + abstract function refreshCredentials(); + + /** + * Get the toString of the credentials provider as the key. + * + * @return string + */ + abstract function key(); +} diff --git a/vendor/alibabacloud/credentials/src/Providers/StaticAKCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/StaticAKCredentialsProvider.php new file mode 100644 index 0000000..7e73cd0 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/StaticAKCredentialsProvider.php @@ -0,0 +1,78 @@ +filterAK($params); + } + + private function filterAK(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_ACCESS_KEY_ID')) { + $this->accessKeyId = Helper::env('ALIBABA_CLOUD_ACCESS_KEY_ID'); + } + + if (Helper::envNotEmpty('ALIBABA_CLOUD_ACCESS_KEY_SECRET')) { + $this->accessKeySecret = Helper::env('ALIBABA_CLOUD_ACCESS_KEY_SECRET'); + } + + if (isset($params['accessKeyId'])) { + $this->accessKeyId = $params['accessKeyId']; + } + if (isset($params['accessKeySecret'])) { + $this->accessKeySecret = $params['accessKeySecret']; + } + + Filter::accessKey($this->accessKeyId, $this->accessKeySecret); + } + + /** + * Get credential. + * + * @return Credentials + */ + public function getCredentials() + { + return new Credentials([ + 'accessKeyId' => $this->accessKeyId, + 'accessKeySecret' => $this->accessKeySecret, + 'providerName' => $this->getProviderName(), + ]); + } + + /** + * @inheritDoc + */ + public function getProviderName() + { + return "static_ak"; + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/credentials/src/Providers/StaticSTSCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/StaticSTSCredentialsProvider.php new file mode 100644 index 0000000..957b25d --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/StaticSTSCredentialsProvider.php @@ -0,0 +1,92 @@ +filterSTS($params); + } + + private function filterSTS(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_ACCESS_KEY_ID')) { + $this->accessKeyId = Helper::env('ALIBABA_CLOUD_ACCESS_KEY_ID'); + } + + if (Helper::envNotEmpty('ALIBABA_CLOUD_ACCESS_KEY_SECRET')) { + $this->accessKeySecret = Helper::env('ALIBABA_CLOUD_ACCESS_KEY_SECRET'); + } + + if (Helper::envNotEmpty('ALIBABA_CLOUD_SECURITY_TOKEN')) { + $this->securityToken = Helper::env('ALIBABA_CLOUD_SECURITY_TOKEN'); + } + + if (isset($params['accessKeyId'])) { + $this->accessKeyId = $params['accessKeyId']; + } + if (isset($params['accessKeySecret'])) { + $this->accessKeySecret = $params['accessKeySecret']; + } + if (isset($params['securityToken'])) { + $this->securityToken = $params['securityToken']; + } + + Filter::accessKey($this->accessKeyId, $this->accessKeySecret); + Filter::securityToken($this->securityToken); + } + + /** + * Get credential. + * + * @return Credentials + */ + public function getCredentials() + { + return new Credentials([ + 'accessKeyId' => $this->accessKeyId, + 'accessKeySecret' => $this->accessKeySecret, + 'securityToken' => $this->securityToken, + 'providerName' => $this->getProviderName(), + ]); + } + + /** + * @inheritDoc + */ + public function getProviderName() + { + return "static_sts"; + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/credentials/src/Providers/URLCredentialsProvider.php b/vendor/alibabacloud/credentials/src/Providers/URLCredentialsProvider.php new file mode 100644 index 0000000..617c19f --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/URLCredentialsProvider.php @@ -0,0 +1,126 @@ +filterOptions($options); + $this->filterCredentialsURI($params); + } + + private function filterOptions(array $options) + { + if (isset($options['connectTimeout'])) { + $this->connectTimeout = $options['connectTimeout']; + } + + if (isset($options['readTimeout'])) { + $this->readTimeout = $options['readTimeout']; + } + + Filter::timeout($this->connectTimeout, $this->readTimeout); + } + + private function filterCredentialsURI(array $params) + { + if (Helper::envNotEmpty('ALIBABA_CLOUD_CREDENTIALS_URI')) { + $this->credentialsURI = Helper::env('ALIBABA_CLOUD_CREDENTIALS_URI'); + } + + if (isset($params['credentialsURI'])) { + $this->credentialsURI = $params['credentialsURI']; + } + + Filter::credentialsURI($this->credentialsURI); + } + + /** + * Get credentials by request. + * + * @return RefreshResult + * @throws InvalidArgumentException + * @throws RuntimeException + * @throws GuzzleException + */ + public function refreshCredentials() + { + $options = Request::commonOptions(); + $options['read_timeout'] = $this->readTimeout; + $options['connect_timeout'] = $this->connectTimeout; + + $result = Request::createClient()->request('GET', $this->credentialsURI, $options); + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Error refreshing credentials from credentialsURI, statusCode: ' . $result->getStatusCode() . ', result: ' . (string) $result); + } + + $credentials = $result->toArray(); + + if (!isset($credentials['AccessKeyId']) || !isset($credentials['AccessKeySecret']) || !isset($credentials['SecurityToken']) || !isset($credentials['Expiration'])) { + throw new RuntimeException('Error retrieving credentials from credentialsURI result:' . $result->toJson()); + } + + return new RefreshResult(new Credentials([ + 'accessKeyId' => $credentials['AccessKeyId'], + 'accessKeySecret' => $credentials['AccessKeySecret'], + 'securityToken' => $credentials['SecurityToken'], + 'expiration' => \strtotime($credentials['Expiration']), + 'providerName' => $this->getProviderName(), + ]), $this->getStaleTime(strtotime($credentials['Expiration']))); + } + + + /** + * @return string + */ + public function key() + { + return 'credential_uri#' . $this->credentialsURI; + } + + /** + * @return string + */ + public function getProviderName() + { + return 'credential_uri'; + } +} diff --git a/vendor/alibabacloud/credentials/src/RamRoleArnCredential.php b/vendor/alibabacloud/credentials/src/RamRoleArnCredential.php new file mode 100644 index 0000000..ed75640 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/RamRoleArnCredential.php @@ -0,0 +1,242 @@ +filterParameters($credential); + $this->filterPolicy($credential); + + Filter::accessKey($credential['access_key_id'], $credential['access_key_secret']); + + $this->config = $config; + $this->accessKeyId = $credential['access_key_id']; + $this->accessKeySecret = $credential['access_key_secret']; + $this->roleArn = $credential['role_arn']; + $this->roleSessionName = $credential['role_session_name']; + } + + /** + * @param array $credential + */ + private function filterParameters(array $credential) + { + if (!isset($credential['access_key_id'])) { + throw new InvalidArgumentException('Missing required access_key_id option in config for ram_role_arn'); + } + + if (!isset($credential['access_key_secret'])) { + throw new InvalidArgumentException('Missing required access_key_secret option in config for ram_role_arn'); + } + + if (!isset($credential['role_arn'])) { + throw new InvalidArgumentException('Missing required role_arn option in config for ram_role_arn'); + } + + if (!isset($credential['role_session_name'])) { + throw new InvalidArgumentException('Missing required role_session_name option in config for ram_role_arn'); + } + } + + /** + * @param array $credential + */ + private function filterPolicy(array $credential) + { + if (isset($credential['policy'])) { + if (is_string($credential['policy'])) { + $this->policy = $credential['policy']; + } + + if (is_array($credential['policy'])) { + $this->policy = json_encode($credential['policy']); + } + } + } + + /** + * @return array + */ + public function getConfig() + { + return $this->config; + } + + /** + * @return string + */ + public function getRoleArn() + { + return $this->roleArn; + } + + /** + * @return string + */ + public function getRoleSessionName() + { + return $this->roleSessionName; + } + + /** + * @return string + */ + public function getPolicy() + { + return $this->policy; + } + + /** + * @return string + */ + public function __toString() + { + return "$this->accessKeyId#$this->accessKeySecret#$this->roleArn#$this->roleSessionName"; + } + + /** + * @return ShaHmac1Signature + */ + public function getSignature() + { + return new ShaHmac1Signature(); + } + + /** + * @return string + */ + public function getOriginalAccessKeyId() + { + return $this->accessKeyId; + } + + /** + * @return string + */ + public function getOriginalAccessKeySecret() + { + return $this->accessKeySecret; + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeyId() + { + return $this->getSessionCredential()->getAccessKeyId(); + } + + /** + * @return AlibabaCloud\Credentials\Providers\Credentials + * @throws Exception + * @throws GuzzleException + */ + protected function getSessionCredential() + { + $params = [ + 'accessKeyId' => $this->accessKeyId, + 'accessKeySecret' => $this->accessKeyId, + 'roleArn' => $this->roleArn, + 'roleSessionName' => $this->roleSessionName, + 'policy' => $this->policy, + ]; + return (new RamRoleArnCredentialsProvider($params))->getCredentials(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeySecret() + { + return $this->getSessionCredential()->getAccessKeySecret(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getSecurityToken() + { + return $this->getSessionCredential()->getSecurityToken(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getExpiration() + { + return $this->getSessionCredential()->getExpiration(); + } + + /** + * @inheritDoc + */ + public function getCredential() + { + $credentials = $this->getSessionCredential(); + return new CredentialModel([ + 'accessKeyId' => $credentials->getAccessKeyId(), + 'accessKeySecret' => $credentials->getAccessKeySecret(), + 'securityToken' => $credentials->getSecurityToken(), + 'type' => 'ram_role_arn', + ]); + } +} diff --git a/vendor/alibabacloud/credentials/src/Request/Request.php b/vendor/alibabacloud/credentials/src/Request/Request.php new file mode 100644 index 0000000..f0ba62f --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Request/Request.php @@ -0,0 +1,167 @@ + $value) { + $canonicalized .= '&' . self::percentEncode($key) . '=' . self::percentEncode($value); + } + + return $method . '&%2F&' . self::percentEncode(substr($canonicalized, 1)); + } + + /** + * @param string $string + * @param string $accessKeySecret + * + * @return string + */ + public static function shaHmac1sign($string, $accessKeySecret) + { + return base64_encode(hash_hmac('sha1', $string, $accessKeySecret, true)); + } + + /** + * @param string $string + * @param string $accessKeySecret + * + * @return string + */ + public static function shaHmac256sign($string, $accessKeySecret) + { + return base64_encode(hash_hmac('sha256', $string, $accessKeySecret, true)); + } + + /** + * @param string $string + * @param string $privateKey + * + * @return string + */ + public static function shaHmac256WithRsasign($string, $privateKey) + { + $binarySignature = ''; + try { + openssl_sign( + $string, + $binarySignature, + $privateKey, + \OPENSSL_ALGO_SHA256 + ); + } catch (Exception $exception) { + throw new InvalidArgumentException( + $exception->getMessage() + ); + } + + return base64_encode($binarySignature); + } + + /** + * @param string $string + * + * @return null|string|string[] + */ + private static function percentEncode($string) + { + $result = rawurlencode($string); + $result = str_replace(['+', '*'], ['%20', '%2A'], $result); + $result = preg_replace('/%7E/', '~', $result); + + return $result; + } + + /** + * @return Client + * @throws Exception + */ + public static function createClient() + { + if (Credentials::hasMock()) { + $stack = HandlerStack::create(Credentials::getMock()); + $history = Credentials::getHandlerHistory(); + $stack->push($history); + } else { + $stack = HandlerStack::create(); + } + + $stack->push(Middleware::mapResponse(static function (ResponseInterface $response) { + return new Response($response); + })); + + self::$config['handler'] = $stack; + + return new Client(self::$config); + } +} diff --git a/vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php b/vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php new file mode 100644 index 0000000..12e719e --- /dev/null +++ b/vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php @@ -0,0 +1,185 @@ +publicKeyId = $public_key_id; + $this->privateKeyFile = $private_key_file; + $this->config = $config; + try { + $this->privateKey = file_get_contents($private_key_file); + } catch (Exception $exception) { + throw new InvalidArgumentException($exception->getMessage()); + } + } + + /** + * @return array + */ + public function getConfig() + { + return $this->config; + } + + /** + * @return string + */ + public function getOriginalAccessKeyId() + { + return $this->getPublicKeyId(); + } + + /** + * @return string + */ + public function getPublicKeyId() + { + return $this->publicKeyId; + } + + /** + * @return string + */ + public function getOriginalAccessKeySecret() + { + return $this->getPrivateKey(); + } + + /** + * @return mixed + */ + public function getPrivateKey() + { + return $this->privateKey; + } + + /** + * @return string + */ + public function __toString() + { + return "publicKeyId#$this->publicKeyId"; + } + + /** + * @return ShaHmac1Signature + */ + public function getSignature() + { + return new ShaHmac1Signature(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeyId() + { + return $this->getSessionCredential()->getAccessKeyId(); + } + + /** + * @return AlibabaCloud\Credentials\Providers\Credentials + * @throws Exception + * @throws GuzzleException + */ + protected function getSessionCredential() + { + $params = [ + 'publicKeyId' => $this->publicKeyId, + 'privateKeyFile' => $this->privateKeyFile, + ]; + return (new RsaKeyPairCredentialsProvider($params))->getCredentials(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeySecret() + { + return $this->getSessionCredential()->getAccessKeySecret(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getSecurityToken() + { + return $this->getSessionCredential()->getSecurityToken(); + } + + /** + * @return int + * @throws Exception + * @throws GuzzleException + */ + public function getExpiration() + { + return $this->getSessionCredential()->getExpiration(); + } + + /** + * @inheritDoc + */ + public function getCredential() + { + $credentials = $this->getSessionCredential(); + return new CredentialModel([ + 'accessKeyId' => $credentials->getAccessKeyId(), + 'accessKeySecret' => $credentials->getAccessKeySecret(), + 'securityToken' => $credentials->getSecurityToken(), + 'type' => 'rsa_key_pair', + ]); + } +} diff --git a/vendor/alibabacloud/credentials/src/Signature/BearerTokenSignature.php b/vendor/alibabacloud/credentials/src/Signature/BearerTokenSignature.php new file mode 100644 index 0000000..1d67a80 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Signature/BearerTokenSignature.php @@ -0,0 +1,47 @@ +getMessage() + ); + } + + return base64_encode($binarySignature); + } +} diff --git a/vendor/alibabacloud/credentials/src/Signature/SignatureInterface.php b/vendor/alibabacloud/credentials/src/Signature/SignatureInterface.php new file mode 100644 index 0000000..9dfb73b --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Signature/SignatureInterface.php @@ -0,0 +1,34 @@ +accessKeyId = $access_key_id; + $this->accessKeySecret = $access_key_secret; + $this->expiration = $expiration; + $this->securityToken = $security_token; + } + + /** + * @return int + */ + public function getExpiration() + { + return $this->expiration; + } + + /** + * @return string + */ + public function getAccessKeyId() + { + return $this->accessKeyId; + } + + /** + * @return string + */ + public function getAccessKeySecret() + { + return $this->accessKeySecret; + } + + /** + * @return string + */ + public function getSecurityToken() + { + return $this->securityToken; + } + + /** + * @return string + */ + public function __toString() + { + return "$this->accessKeyId#$this->accessKeySecret#$this->securityToken"; + } + + /** + * @return ShaHmac1Signature + */ + public function getSignature() + { + return new ShaHmac1Signature(); + } + + /** + * @inheritDoc + */ + public function getCredential() + { + return new CredentialModel([ + 'accessKeyId' => $this->accessKeyId, + 'accessKeySecret' => $this->accessKeySecret, + 'securityToken' => $this->securityToken, + 'type' => 'sts', + ]); + } + +} diff --git a/vendor/alibabacloud/credentials/src/Utils/Filter.php b/vendor/alibabacloud/credentials/src/Utils/Filter.php new file mode 100644 index 0000000..959fd8f --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Utils/Filter.php @@ -0,0 +1,233 @@ + $value) { + if (is_int($key)) { + $result[] = $value; + continue; + } + + if (isset($result[$key]) && is_array($result[$key])) { + $result[$key] = self::merge( + [$result[$key], $value] + ); + continue; + } + + $result[$key] = $value; + } + } + + return $result; + } + + /** + * @param $filename + * + * @return bool + */ + public static function inOpenBasedir($filename) + { + $open_basedir = ini_get('open_basedir'); + if (!$open_basedir) { + return true; + } + if (0 === strpos($filename, vfsStream::SCHEME)) { + // 虚拟文件忽略 + return true; + } + + $dirs = explode(PATH_SEPARATOR, $open_basedir); + + return empty($dirs) || self::inDir($filename, $dirs); + } + + /** + * @param string $filename + * @param array $dirs + * + * @return bool + */ + public static function inDir($filename, array $dirs) + { + foreach ($dirs as $dir) { + if ($dir[strlen($dir) - 1] !== DIRECTORY_SEPARATOR) { + $dir .= DIRECTORY_SEPARATOR; + } + + if (0 === strpos($filename, $dir)) { + return true; + } + } + + return false; + } + + /** + * @return bool + */ + public static function isWindows() + { + return PATH_SEPARATOR === ';'; + } + + /** + * @param $key + * + * @return bool|mixed + */ + public static function envNotEmpty($key) + { + $value = self::env($key, false); + if ($value) { + return $value; + } + + return false; + } + + /** + * Gets the value of an environment variable. + * + * @param string $key + * @param mixed $default + * + * @return mixed + */ + public static function env($key, $default = null) + { + $value = getenv($key); + + if ($value === false) { + return self::value($default); + } + + if (self::envSubstr($value)) { + return substr($value, 1, -1); + } + + return self::envConversion($value); + } + + /** + * Return the default value of the given value. + * + * @param mixed $value + * + * @return mixed + */ + public static function value($value) + { + return $value instanceof Closure ? $value() : $value; + } + + /** + * @param $value + * + * @return bool + */ + public static function envSubstr($value) + { + return ($valueLength = strlen($value)) > 1 + && strpos($value, '"') === 0 + && $value[$valueLength - 1] === '"'; + } + + /** + * @param $value + * + * @return bool|string|null + */ + public static function envConversion($value) + { + $key = strtolower($value); + + if ($key === 'null' || $key === '(null)') { + return null; + } + + $list = [ + 'true' => true, + '(true)' => true, + 'false' => false, + '(false)' => false, + 'empty' => '', + '(empty)' => '', + ]; + + return isset($list[$key]) ? $list[$key] : $value; + } + + /** + * Gets the environment's HOME directory. + * + * @return null|string + */ + public static function getHomeDirectory() + { + if (getenv('HOME')) { + return getenv('HOME'); + } + + return (getenv('HOMEDRIVE') && getenv('HOMEPATH')) + ? getenv('HOMEDRIVE') . getenv('HOMEPATH') + : null; + } + + /** + * @param mixed ...$parameters + * + * @codeCoverageIgnore + */ + public static function dd(...$parameters) + { + dump(...$parameters); + exit; + } + + /** + * Snake to camel case. + * + * @param string $str + * + * @return string + */ + public static function snakeToCamelCase($str) + { + $components = explode('_', $str); + $camelCaseStr = $components[0]; + for ($i = 1; $i < count($components); $i++) { + $camelCaseStr .= ucfirst($components[$i]); + } + return $camelCaseStr; + } + + /** + * Get user agent. + * + * @param string $userAgent + * + * @return string + */ + public static function getUserAgent() + { + return sprintf('AlibabaCloud (%s; %s) PHP/%s Credentials/%s TeaDSL/1', PHP_OS, \PHP_SAPI, PHP_VERSION, Credential::VERSION); + } + + /** + * @param array $arrays + * @param string $key + * + * @return mix + */ + public static function unsetReturnNull(array $arrays, $key) + { + if(isset($arrays[$key])) { + return $arrays[$key]; + } + return null; + } +} diff --git a/vendor/alibabacloud/credentials/src/Utils/MockTrait.php b/vendor/alibabacloud/credentials/src/Utils/MockTrait.php new file mode 100644 index 0000000..cc07119 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Utils/MockTrait.php @@ -0,0 +1,120 @@ +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/darabonba/CHANGELOG.md b/vendor/alibabacloud/darabonba/CHANGELOG.md new file mode 100644 index 0000000..cf008ad --- /dev/null +++ b/vendor/alibabacloud/darabonba/CHANGELOG.md @@ -0,0 +1,86 @@ +# CHANGELOG + +## [1.0.4] - 2025-12-15 + +### Changed +- Improved PHP version compatibility for multi-version support (PHP 5.6 - 8.x) +- Refactored FileFormStream implementation with separate classes for different PHP versions +- Updated test environment to use alibabacloud.com domains +- Improved test assertions to verify HTTP status codes +- Updated all code comments to English + +### Fixed +- Fixed PHP 7.0 compatibility issues with nullable types and void return types +- Fixed trait and interface return type conflicts +- Fixed test assertions for random values in RandomBackoffPolicy +- Fixed StreamUtil JSON parsing for HTML content + +### Added +- Added FileFormStreamTrait for shared stream implementation +- Added FileFormStreamTyped for PHP 7.1+ with type declarations +- Added comprehensive test coverage improvements + +## [1.0.3] - 2025-11-27 + +### Fixed +- Fixed psr/http-message dependency version constraint +- Locked psr/http-message to ^1.0 for PHP 5.5+ compatibility + +### Changed +- Updated test domains from jsonplaceholder.typicode.com to alibabacloud.com +- Updated API endpoints to use api.alibabacloud.com +- Improved test validation to focus on HTTP status codes + +## [1.0.2] - 2025-10-23 + +### Fixed +- Fixed StreamUtil methods for better stream handling +- Fixed stream reading and parsing functionality + +### Added +- Added StreamUtilTest with comprehensive test coverage + +### Changed +- Updated DaraRetryException.php (2025-07-30) + +## [1.0.1] - 2025-06-12 + +### Changed +- Removed monolog dependency to reduce package size and simplify dependencies +- Refactored Console class to remove monolog dependency +- Improved console output handling with custom stream support + +### Added +- Added ConsoleTest for comprehensive console functionality testing + +## [1.0.0] - 2025-01-15 + +### Added +- Initial release of Alibaba Cloud Darabonba SDK for PHP +- Core SDK functionality for Alibaba Cloud Tea +- Request/Response handling with PSR-7 compatibility +- Model validation and serialization +- Retry policy with multiple backoff strategies: + - FixedBackoffPolicy + - RandomBackoffPolicy + - ExponentialBackoffPolicy + - EqualJitterBackoffPolicy + - FullJitterBackoffPolicy +- Exception handling: + - DaraException + - DaraRespException + - DaraRetryException + - DaraUnableRetryException +- Utility modules: + - Date and time utilities + - File operations support + - Stream utilities + - XML and form data handling + - URL manipulation + - String and byte utilities + - Math utilities +- Comprehensive test suite with PHPUnit +- CI/CD integration with GitHub Actions +- Code style configuration with PHP CS Fixer +- Support for PHP 5.5+ +- Guzzle HTTP client integration (^6.3|^7.0) diff --git a/vendor/alibabacloud/darabonba/LICENSE.md b/vendor/alibabacloud/darabonba/LICENSE.md new file mode 100644 index 0000000..ec13fcc --- /dev/null +++ b/vendor/alibabacloud/darabonba/LICENSE.md @@ -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/darabonba/README.md b/vendor/alibabacloud/darabonba/README.md new file mode 100644 index 0000000..cb21cfe --- /dev/null +++ b/vendor/alibabacloud/darabonba/README.md @@ -0,0 +1,27 @@ + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud Tea for Java + +[![CI](https://github.com/aliyun/tea-php/actions/workflows/ci.yml/badge.svg)](https://github.com/aliyun/tea-php/actions/workflows/ci.yml) +[![codecov](https://codecov.io/gh/aliyun/tea-php/branch/master/graph/badge.svg)](https://codecov.io/gh/aliyun/tea-php) +[![Latest Stable Version](https://poser.pugx.org/alibabacloud/tea/v/stable)](https://packagist.org/packages/alibabacloud/tea) +[![License](https://poser.pugx.org/alibabacloud/tea/license)](https://packagist.org/packages/alibabacloud/tea) + +## Installation + +```sh +composer require alibabacloud/tea --optimize-autoloader +``` + +> Some users may not be able to install due to network problems, you can try to switch the Composer mirror. + +## Changelog + +Detailed changes for each release are documented in the [release notes](CHANGELOG.md). + +## License + +[Apache-2.0](LICENSE.md) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/darabonba/composer.json b/vendor/alibabacloud/darabonba/composer.json new file mode 100644 index 0000000..4601982 --- /dev/null +++ b/vendor/alibabacloud/darabonba/composer.json @@ -0,0 +1,77 @@ +{ + "name": "alibabacloud/darabonba", + "homepage": "https://www.alibabacloud.com/", + "description": "Client of Darabonba for PHP", + "keywords": [ + "tea", + "client", + "alibabacloud", + "cloud" + ], + "type": "library", + "license": "Apache-2.0", + "support": { + "source": "https://github.com/aliyun/tea-php", + "issues": "https://github.com/aliyun/tea-php/issues" + }, + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "require": { + "php": ">=5.5", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "adbario/php-dot-notation": "^2.4", + "alibabacloud/tea": "^3.2", + "guzzlehttp/guzzle": "^6.3|^7.0" + }, + "require-dev": { + "symfony/dotenv": "^3.4", + "phpunit/phpunit": "^4.8.35|^5.4.3|^9.3", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\Dara\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "AlibabaCloud\\Dara\\Tests\\": "tests" + } + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true, + "minimum-stability": "dev", + "scripts": { + "cs": "phpcs --standard=PSR2 -n ./", + "cbf": "phpcbf --standard=PSR2 -n ./", + "fixer": "php-cs-fixer fix ./", + "unit": [ + "@clearCache", + "XDEBUG_MODE=coverage phpunit --testsuite=Unit --colors=always --coverage-xml ./coverage/xml --coverage-html ./coverage/html --coverage-clover ./coverage/coverage.clover" + ], + "feature": [ + "@clearCache", + "phpunit --testsuite=Feature --colors=always" + ], + "clearCache": "rm -rf cache/*", + "coverage": "open cache/coverage/index.html" + } +} diff --git a/vendor/alibabacloud/darabonba/src/Dara.php b/vendor/alibabacloud/darabonba/src/Dara.php new file mode 100644 index 0000000..36f470d --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Dara.php @@ -0,0 +1,372 @@ +getPsrRequest(); + } + + $config = self::resolveConfig($config); + $res = self::client()->send( + $request, + $config + ); + + return new Response($res); + } + + /** + * @return PromiseInterface + */ + public static function sendAsync(RequestInterface $request, array $config = []) + { + if (method_exists($request, 'getPsrRequest')) { + $request = $request->getPsrRequest(); + } + + $config = self::resolveConfig($config); + + return self::client()->sendAsync( + $request, + $config + ); + } + + /** + * @return Client + */ + public static function client(array $config = []) + { + if (isset(self::$config['handler'])) { + $stack = self::$config['handler']; + } else { + $stack = HandlerStack::create(); + $stack->push(Middleware::mapResponse(static function (ResponseInterface $response) { + return new Response($response); + })); + } + + self::$config['handler'] = $stack; + + if (!isset(self::$config['on_stats'])) { + self::$config['on_stats'] = function (TransferStats $stats) { + Response::$info = $stats->getHandlerStats(); + }; + } + + $new_config = Helper::merge([self::$config, $config]); + return new Client($new_config); + } + + /** + * @param string $method + * @param string|UriInterface $uri + * @param array $options + * + * @throws GuzzleException + * + * @return ResponseInterface + */ + public static function request($method, $uri, $options = []) + { + return self::client()->request($method, $uri, $options); + } + + /** + * @param string $method + * @param string $uri + * @param array $options + * + * @throws GuzzleException + * + * @return string + */ + public static function string($method, $uri, $options = []) + { + return (string) self::client()->request($method, $uri, $options) + ->getBody(); + } + + /** + * @param string $method + * @param string|UriInterface $uri + * @param array $options + * + * @return PromiseInterface + */ + public static function requestAsync($method, $uri, $options = []) + { + return self::client()->requestAsync($method, $uri, $options); + } + + /** + * @param string|UriInterface $uri + * @param array $options + * + * @throws GuzzleException + * + * @return null|mixed + */ + public static function getHeaders($uri, $options = []) + { + return self::request('HEAD', $uri, $options)->getHeaders(); + } + + /** + * @param string|UriInterface $uri + * @param string $key + * @param null|mixed $default + * + * @throws GuzzleException + * + * @return null|mixed + */ + public static function getHeader($uri, $key, $default = null) + { + $headers = self::getHeaders($uri); + + return isset($headers[$key][0]) ? $headers[$key][0] : $default; + } + + /** + * @param int $retryTimes + * @param float $now + * + * @return bool + */ + public static function allowRetry(array $runtime, $retryTimes, $now) + { + unset($now); + if (!isset($retryTimes) || null === $retryTimes || !\is_numeric($retryTimes)) { + return false; + } + if ($retryTimes > 0 && (empty($runtime) || !isset($runtime['retryable']) || !$runtime['retryable'] || !isset($runtime['maxAttempts']))) { + return false; + } + $maxAttempts = $runtime['maxAttempts']; + $retry = empty($maxAttempts) ? 0 : (int) $maxAttempts; + + return $retry >= $retryTimes; + } + + /** + * @param int $retryTimes + * + * @return int + */ + public static function getBackoffTime(array $runtime, $retryTimes) + { + $backOffTime = 0; + $policy = isset($runtime['policy']) ? $runtime['policy'] : ''; + + if (empty($policy) || 'no' == $policy) { + return $backOffTime; + } + + $period = isset($runtime['period']) ? $runtime['period'] : ''; + if (null !== $period && '' !== $period) { + $backOffTime = (int) $period; + if ($backOffTime <= 0) { + return $retryTimes; + } + } + + return $backOffTime; + } + + public static function sleep($time) + { + sleep($time); + } + + public static function isRetryable($retry, $retryTimes = 0) + { + if ($retry instanceof DaraException) { + return true; + } + if (\is_array($retry)) { + $max = isset($retry['maxAttempts']) ? (int) ($retry['maxAttempts']) : 3; + + return $retryTimes <= $max; + } + + return false; + } + + + /** + * + * @param RetryOptions $options + * @param RetryPolicyContext $optctxions + * @return bool + */ + public static function shouldRetry($options, $ctx) { + if($ctx->getRetryCount() === 0) { + return true; + } + + if (!$options || !$options->getRetryable()) { + return false; + } + + $retriesAttempted = $ctx->getRetryCount(); + $ex = $ctx->getException(); + $conditions = $options->getNoRetryCondition(); + + foreach ($conditions as $condition) { + if (in_array($ex->getName(), $condition->getException()) || in_array($ex->getErrCode(), $condition->getErrorCode())) { + return false; + } + } + + $conditions = $options->getRetryCondition(); + foreach ($conditions as $condition) { + if (!in_array($ex->getName(), $condition->getException()) && !in_array($ex->getErrCode(), $condition->getErrorCode())) { + continue; + } + if ($retriesAttempted >= $condition->getMaxAttempts()) { + return false; + } + return true; + } + return false; + } + + /** + * + * @param RetryOptions $options + * @param RetryPolicyContext $optctxions + * @return int + */ + public static function getBackoffDelay($options, $ctx) { + $ex = $ctx->getException(); + $fullClassName = get_class($ex); + $classNameParts = explode('\\', $fullClassName); + $className = end($classNameParts); + $conditions = $options->getRetryCondition(); + foreach ($conditions as $condition) { + + if (!in_array($className, $condition->getException()) && !in_array($ex->getErrCode(), $condition->getErrorCode())) { + continue; + } + + $maxDelay = $condition->getMaxDelay() ?: self::MAX_DELAY_TIME; + $retryAfter = method_exists($ex, 'getRetryAfter') ? $ex->getRetryAfter() : null; + + if ($retryAfter !== null) { + return min($retryAfter, $maxDelay); + } + + + $backoff = $condition->getBackoff(); + if (!isset($backoff) || null === $backoff) { + return self::MIN_DELAY_TIME; + } + + return min($backoff->getDelayTime($ctx), $maxDelay); + } + + return self::MIN_DELAY_TIME; + } + + /** + * @param mixed|Model[] ...$item + * + * @return mixed + */ + public static function merge(...$item) + { + $tmp = []; + $n = 0; + foreach ($item as $i) { + if (\is_object($i)) { + if ($i instanceof Model) { + $i = $i->toMap(); + } else { + $i = json_decode(json_encode($i), true); + } + } + if (null === $i) { + continue; + } + if (\is_array($i)) { + $tmp[$n++] = $i; + } + } + + if (\count($tmp)) { + return \call_user_func_array('array_merge', $tmp); + } + + return []; + } + + private static function resolveConfig(array $config = []) + { + $options = new Dot(['http_errors' => false]); + if (isset($config['httpProxy']) && !empty($config['httpProxy'])) { + $options->set('proxy.http', $config['httpProxy']); + } + if (isset($config['httpsProxy']) && !empty($config['httpsProxy'])) { + $options->set('proxy.https', $config['httpsProxy']); + } + if (isset($config['noProxy']) && !empty($config['noProxy'])) { + $options->set('proxy.no', $config['noProxy']); + } + if (isset($config['ignoreSSL']) && !empty($config['ignoreSSL'])) { + $options->set('verify',!((bool)$config['ignoreSSL'])); + } + if (isset($config['stream']) && !empty($config['stream'])) { + $options->set(RequestOptions::STREAM, (bool)$config['stream']); + } + // readTimeout&connectTimeout unit is millisecond + $read_timeout = isset($config['readTimeout']) && !empty($config['readTimeout']) ? (int) $config['readTimeout'] : 3000; + $con_timeout = isset($config['connectTimeout']) && !empty($config['connectTimeout']) ? (int) $config['connectTimeout'] : 3000; + // timeout unit is second + $options->set('timeout', ($read_timeout + $con_timeout) / 1000); + + return $options->all(); + } +} diff --git a/vendor/alibabacloud/darabonba/src/Date.php b/vendor/alibabacloud/darabonba/src/Date.php new file mode 100644 index 0000000..8201e25 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Date.php @@ -0,0 +1,148 @@ +date = (new DateTime())->setTimestamp($date); + } elseif (preg_match($pattern, $date, $matches)) { + $timeStr = $matches[1]; + $tzStr = isset($matches[2]) ? $matches[2] : null; + + if ($tzStr) { + $timezone = new DateTimeZone($this->convertTzOffsetToTzString($tzStr)); + $this->date = DateTime::createFromFormat('Y-m-d H:i:s.u', $timeStr, $timezone); + } else { + $this->date = new DateTime($timeStr); + } + } else { + $this->date = new DateTime($date); + } + if($this->date === false || is_null($this->date)) { + throw new DaraException([], $date . ' is not a valid time str.'); + } + } + + private function convertTzOffsetToTzString($offset) { + $sign = (intval($offset) >= 0) ? '+' : '-'; + $hours = substr($offset, 0, 2); + $minutes = substr($offset, 2, 2); + return $sign . $hours . ':' . $minutes; + } + + public function format($layout) { + $layout = strtr($layout, [ + 'yyyy' => 'Y', 'yy' => 'y', + 'MM' => 'm', 'M' => 'n', + 'DD' => 'd', 'D' => 'j', + 'HH' => 'H', 'H' => 'G', + 'hh' => 'h', 'h' => 'g', + 'mm' => 'i', 'm' => 'i', + 'ss' => 's', 's' => 's', + 'A' => 'A', 'a' => 'a', + 'E' => 'N', 'YYYY' => 'Y', + ]); + return $this->date->format($layout); + } + + public function UTC($time = null) + { + $utcDate = clone $this->date; + $utcDate->setTimezone(new DateTimeZone('UTC')); + return $utcDate->format('Y-m-d H:i:s.u O \\U\\T\\C'); + } + + public function unix() { + $date = $this->date; + return $date->getTimestamp(); + } + + public function sub($unit, $amount) { + $interval = new DateInterval('P' . strtoupper($amount) . strtoupper((string)$unit)); + $this->date->sub($interval); + return $this; + } + + public function add($unit, $amount) { + $interval = new DateInterval('P' . strtoupper($amount) . strtoupper((string)$unit)); + $this->date->add($interval); + return $this; + } + + public function diff($diffDate, $unit = null) { + $interval = $this->date->diff($diffDate->getDateObject()); + switch ($unit) { + case 'year': + return $interval->y; + case 'month': + return $interval->m; + case 'day': + return $interval->d; + case 'hour': + return $interval->h; + case 'minute': + return $interval->i; + case 'second': + return $interval->s; + default: + return ($interval->days * 24 * 60 * 60) + + ($interval->h * 60 * 60) + + ($interval->i * 60) + + $interval->s; + } + } + + public function hour() { + return (int)$this->date->format('H'); + } + + public function minute() { + return (int)$this->date->format('i'); + } + + public function second() { + return (int)$this->date->format('s'); + } + + public function month() { + return (int)$this->date->format('n'); + } + + public function year() { + return (int)$this->date->format('Y'); + } + + public function dayOfMonth() { + return (int)$this->date->format('j'); + } + + public function dayOfWeek() { + $weekday = (int)$this->date->format('w'); + return $weekday === 0 ? 7 : $weekday; + } + + public function weekOfYear() { + $week = (int)$this->date->format('W'); + $weekday = (int)$this->date->format('w'); + + if ($weekday === 0 && $this->date->format('z') === (string)($this->date->format('L') ? '365' : '364')) { + return (int)$this->date->sub(new DateInterval('P1D'))->format('W'); + } + + return $week; + } + + public function getDateObject() { + return clone $this->date; + } +} diff --git a/vendor/alibabacloud/darabonba/src/Exception/DaraException.php b/vendor/alibabacloud/darabonba/src/Exception/DaraException.php new file mode 100644 index 0000000..73f2ece --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Exception/DaraException.php @@ -0,0 +1,67 @@ +errorInfo = $errorInfo; + $this->name = 'BaseError'; + if (!empty($errorInfo)) { + $properties = ['name', 'message', 'errCode', 'data', 'description', 'accessDeniedDetail']; + foreach ($properties as $property) { + if (isset($errorInfo[$property])) { + $this->{$property} = $errorInfo[$property]; + } + } + } + } + + /** + * @return array + */ + public function getName() + { + return $this->name; + } + + /** + * @return string + */ + public function getErrCode() + { + return $this->errCode; + } + + /** + * @return array + */ + public function getErrorInfo() + { + return $this->errorInfo; + } +} diff --git a/vendor/alibabacloud/darabonba/src/Exception/DaraRespException.php b/vendor/alibabacloud/darabonba/src/Exception/DaraRespException.php new file mode 100644 index 0000000..7da8e78 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Exception/DaraRespException.php @@ -0,0 +1,88 @@ +name = 'ResponseError'; + if (!empty($errorInfo)) { + $properties = ['retryAfter', 'statusCode', 'data', 'description', 'accessDeniedDetail']; + foreach ($properties as $property) { + if (isset($errorInfo[$property])) { + $this->{$property} = $errorInfo[$property]; + if ($property === 'data' && isset($errorInfo['data']['statusCode'])) { + $this->statusCode = $errorInfo['data']['statusCode']; + } + } + } + } + } + + /** + * @return array + */ + public function getErrorInfo() + { + return $this->errorInfo; + } + + /** + * @return int + */ + public function getStatusCode() + { + return $this->statusCode; + } + + /** + * @return int + */ + public function getRetryAfter() + { + return $this->retryAfter; + } + + /** + * @return array + */ + public function getAccessDeniedDetail() + { + return $this->accessDeniedDetail; + } + + /** + * @return string + */ + public function getDescription() + { + return $this->description; + } + + /** + * @return array + */ + public function getData() + { + return $this->data; + } +} diff --git a/vendor/alibabacloud/darabonba/src/Exception/DaraRetryException.php b/vendor/alibabacloud/darabonba/src/Exception/DaraRetryException.php new file mode 100644 index 0000000..7426737 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Exception/DaraRetryException.php @@ -0,0 +1,21 @@ +getException(); + $lastRequest = $lastRequest->getHttpRequest(); + } + $error_info = []; + if (null !== $lastException && $lastException instanceof DaraException) { + $error_info = $lastException->getErrorInfo(); + } + parent::__construct($error_info, $lastException->getMessage(), $lastException->getCode(), $lastException); + $this->lastRequest = $lastRequest; + $this->lastException = $lastException; + } + + public function getLastRequest() + { + return $this->lastRequest; + } + + public function getLastException() + { + return $this->lastException; + } +} diff --git a/vendor/alibabacloud/darabonba/src/File.php b/vendor/alibabacloud/darabonba/src/File.php new file mode 100644 index 0000000..118b56e --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/File.php @@ -0,0 +1,116 @@ +_path = $path; + } + + public function path() { + return $this->_path; + } + + public function createTime() { + if (!$this->_stat) { + $this->_stat = stat($this->_path); + } + return new Date($this->_stat['ctime']); + } + + public function modifyTime() { + if (!$this->_stat) { + $this->_stat = stat($this->_path); + } + return new Date($this->_stat['mtime']); + } + + public function length() { + if (!$this->_stat) { + $this->_stat = stat($this->_path); + } + return $this->_stat['size']; + } + + public function read($size) { + if (!$this->_fd) { + $this->_fd = fopen($this->_path, 'a+'); + } + $position = ftell($this->_fd); + $position = ftell($this->_fd); + fseek($this->_fd, $this->_position); + $data = fread($this->_fd, $size); + $bytesRead = strlen($data); + if (!$bytesRead) { + return null; + } + $this->_position += $bytesRead; + return $data; + } + + public function write($data) { + if (!$this->_fd) { + $this->_fd = fopen($this->_path, 'a+'); + } + + fwrite($this->_fd, $data); + fflush($this->_fd); + clearstatcache(); + $this->_stat = stat($this->_path); + } + + public function close() { + if ($this->_fd) { + fclose($this->_fd); + $this->_fd = false; + } + } + + /** + * + * @param string $path + * @return bool + */ + public static function exists($path) { + return file_exists($path); + } + + /** + * + * @param string $path + * @return Stream + */ + public static function createReadStream($path) { + try { + $stream = Utils::streamFor(fopen($path, 'r')); + return $stream; + } catch (Exception $e) { + throw new DaraException([], "Unable to open file for reading: " . $e->getMessage()); + } + } + + /** + * + * @param string $path + * @return Stream + */ + public static function createWriteStream($path) { + try { + $stream = Utils::streamFor(fopen($path, 'a+')); + return $stream; + } catch (Exception $e) { + throw new DaraException([], "Unable to open file for writing: " . $e->getMessage()); + } + } +} diff --git a/vendor/alibabacloud/darabonba/src/Helper.php b/vendor/alibabacloud/darabonba/src/Helper.php new file mode 100644 index 0000000..77e8cdc --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Helper.php @@ -0,0 +1,112 @@ + $ord) { + if ($k !== $i) { + return false; + } + if (!\is_int($ord)) { + return false; + } + if ($ord < 0 || $ord > 255) { + return false; + } + ++$i; + } + + return true; + } + + /** + * Convert a bytes to string(utf8). + * + * @param array $bytes + * + * @return string the return string + */ + public static function toString($bytes) + { + $str = ''; + foreach ($bytes as $ch) { + $str .= \chr($ch); + } + + return $str; + } + + /** + * @return array + */ + public static function merge(array $arrays) + { + $result = []; + foreach ($arrays as $array) { + foreach ($array as $key => $value) { + if (\is_int($key)) { + $result[] = $value; + + continue; + } + + if (isset($result[$key]) && \is_array($result[$key])) { + $result[$key] = self::merge( + [$result[$key], $value] + ); + + continue; + } + + $result[$key] = $value; + } + } + + return $result; + } +} diff --git a/vendor/alibabacloud/darabonba/src/Model.php b/vendor/alibabacloud/darabonba/src/Model.php new file mode 100644 index 0000000..10d8d83 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Model.php @@ -0,0 +1,138 @@ + $v) { + $this->{$k} = $v; + } + } + } + + public function getName($name = null) + { + if (null === $name) { + return $this->_name; + } + + return isset($this->_name[$name]) ? $this->_name[$name] : $name; + } + + public function toMap() + { + $map = get_object_vars($this); + foreach ($map as $k => $m) { + if (0 === strpos($k, '_')) { + unset($map[$k]); + } + } + $res = []; + foreach ($map as $k => $v) { + $name = isset($this->_name[$k]) ? $this->_name[$k] : $k; + $res[$name] = $v; + } + + return $res; + } + + public function validate() + { + $vars = get_object_vars($this); + foreach ($vars as $k => $v) { + if (isset($this->_required[$k]) && $this->_required[$k] && empty($v)) { + throw new \InvalidArgumentException("{$k} is required."); + } + } + } + + public function copyWithoutStream() { + $map = $this->toArray(true); + $calledClass = get_called_class(); + + if (method_exists($calledClass, 'fromMap')) { + return $calledClass::fromMap($map); + } + return null; + } + + public static function validateRequired($fieldName, $field, $val = null) + { + if (true === $val && null === $field) { + throw new \InvalidArgumentException($fieldName . ' is required'); + } + } + + public static function validateMaxLength($fieldName, $field, $val = null) + { + if (null !== $field && \strlen($field) > (int) $val) { + throw new \InvalidArgumentException($fieldName . ' is exceed max-length: ' . $val); + } + } + + public static function validateMinLength($fieldName, $field, $val = null) + { + if (null !== $field && \strlen($field) < (int) $val) { + throw new \InvalidArgumentException($fieldName . ' is less than min-length: ' . $val); + } + } + + public static function validatePattern($fieldName, $field, $regex = '') + { + if (null !== $field && '' !== $field && !preg_match("/^{$regex}$/", $field)) { + throw new \InvalidArgumentException($fieldName . ' is not match ' . $regex); + } + } + + public static function validateMaximum($fieldName, $field, $val) + { + if (null !== $field && $field > $val) { + throw new \InvalidArgumentException($fieldName . ' cannot be greater than ' . $val); + } + } + + public static function validateMinimum($fieldName, $field, $val) + { + if (null !== $field && $field < $val) { + throw new \InvalidArgumentException($fieldName . ' cannot be less than ' . $val); + } + } + + public static function validateArray($arr) + { + if (null === $arr) { + return; + } + foreach($arr as $item) { + if($item instanceof Model) { + $item->validate(); + } else if(is_array($item)){ + self::validateArray($item); + } + } + } + + /** + * @param array $map + * @param Model $model + * + * @return mixed + */ + public static function toModel($map, $model) + { + $names = $model->getName(); + $names = array_flip($names); + foreach ($map as $key => $value) { + $name = isset($names[$key]) ? $names[$key] : $key; + $model->{$name} = $value; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/darabonba/src/Models/ExtendsParameters.php b/vendor/alibabacloud/darabonba/src/Models/ExtendsParameters.php new file mode 100644 index 0000000..f32e82c --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Models/ExtendsParameters.php @@ -0,0 +1,39 @@ +headers) { + $res['headers'] = $this->headers; + } + + if (null !== $this->queries) { + $res['queries'] = $this->queries; + } + return $res; + } + /** + * @param array $map + * @return ExtendsParameters + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['headers'])){ + $model->headers = $map['headers']; + } + + if(isset($map['queries'])){ + $model->queries = $map['queries']; + } + return $model; + } + +} \ No newline at end of file diff --git a/vendor/alibabacloud/darabonba/src/Models/FileField.php b/vendor/alibabacloud/darabonba/src/Models/FileField.php new file mode 100644 index 0000000..f39e185 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Models/FileField.php @@ -0,0 +1,22 @@ +_required = [ + 'filename' => true, + 'contentType' => true, + 'content' => true, + ]; + parent::__construct($config); + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/darabonba/src/Models/RuntimeOptions.php b/vendor/alibabacloud/darabonba/src/Models/RuntimeOptions.php new file mode 100644 index 0000000..aeb029a --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Models/RuntimeOptions.php @@ -0,0 +1,273 @@ + 'autoretry', + 'ignoreSSL' => 'ignoreSSL', + 'key' => 'key', + 'cert' => 'cert', + 'ca' => 'ca', + 'maxAttempts' => 'max_attempts', + 'backoffPolicy' => 'backoff_policy', + 'backoffPeriod' => 'backoff_period', + 'readTimeout' => 'readTimeout', + 'connectTimeout' => 'connectTimeout', + 'httpProxy' => 'httpProxy', + 'httpsProxy' => 'httpsProxy', + 'noProxy' => 'noProxy', + 'maxIdleConns' => 'maxIdleConns', + 'localAddr' => 'localAddr', + 'socks5Proxy' => 'socks5Proxy', + 'socks5NetWork' => 'socks5NetWork', + 'keepAlive' => 'keepAlive', + ]; + 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->key) { + $res['key'] = $this->key; + } + if (null !== $this->cert) { + $res['cert'] = $this->cert; + } + if (null !== $this->ca) { + $res['ca'] = $this->ca; + } + if (null !== $this->maxAttempts) { + $res['max_attempts'] = $this->maxAttempts; + } + if (null !== $this->backoffPolicy) { + $res['backoff_policy'] = $this->backoffPolicy; + } + if (null !== $this->backoffPeriod) { + $res['backoff_period'] = $this->backoffPeriod; + } + if (null !== $this->readTimeout) { + $res['readTimeout'] = $this->readTimeout; + } + if (null !== $this->connectTimeout) { + $res['connectTimeout'] = $this->connectTimeout; + } + 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->localAddr) { + $res['localAddr'] = $this->localAddr; + } + if (null !== $this->socks5Proxy) { + $res['socks5Proxy'] = $this->socks5Proxy; + } + if (null !== $this->socks5NetWork) { + $res['socks5NetWork'] = $this->socks5NetWork; + } + if (null !== $this->keepAlive) { + $res['keepAlive'] = $this->keepAlive; + } + if (null !== $this->extendsParameters) { + $res['extendsParameters'] = null !== $this->extendsParameters ? $this->extendsParameters->toMap() : null; + } + 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['key'])){ + $model->key = $map['key']; + } + if(isset($map['cert'])){ + $model->cert = $map['cert']; + } + if(isset($map['ca'])){ + $model->ca = $map['ca']; + } + if(isset($map['max_attempts'])){ + $model->maxAttempts = $map['max_attempts']; + } + if(isset($map['backoff_policy'])){ + $model->backoffPolicy = $map['backoff_policy']; + } + if(isset($map['backoff_period'])){ + $model->backoffPeriod = $map['backoff_period']; + } + if(isset($map['readTimeout'])){ + $model->readTimeout = $map['readTimeout']; + } + if(isset($map['connectTimeout'])){ + $model->connectTimeout = $map['connectTimeout']; + } + 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['localAddr'])){ + $model->localAddr = $map['localAddr']; + } + if(isset($map['socks5Proxy'])){ + $model->socks5Proxy = $map['socks5Proxy']; + } + if(isset($map['socks5NetWork'])){ + $model->socks5NetWork = $map['socks5NetWork']; + } + if(isset($map['keepAlive'])){ + $model->keepAlive = $map['keepAlive']; + } + if(isset($map['extendsParameters'])){ + $model->extendsParameters = ExtendsParameters::fromMap($map['extendsParameters']); + } + return $model; + } + /** + * @description whether to try again + * @var bool + */ + public $autoretry; + + /** + * @description ignore SSL validation + * @var bool + */ + public $ignoreSSL; + + /** + * @description privite key for client certificate + * @var string + */ + public $key; + + /** + * @description client certificate + * @var string + */ + public $cert; + + /** + * @description server certificate + * @var string + */ + public $ca; + + /** + * @description maximum number of retries + * @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 http proxy url + * @var string + */ + public $httpProxy; + + /** + * @description https Proxy url + * @var string + */ + public $httpsProxy; + + /** + * @description agent blacklist + * @var string + */ + public $noProxy; + + /** + * @description maximum number of connections + * @var int + */ + public $maxIdleConns; + + /** + * @description local addr + * @var string + */ + public $localAddr; + + /** + * @description SOCKS5 proxy + * @var string + */ + public $socks5Proxy; + + /** + * @description SOCKS5 netWork + * @var string + */ + public $socks5NetWork; + + /** + * @description whether to enable keep-alive + * @var bool + */ + public $keepAlive; + + /** + * @description Extends Parameters + * @var ExtendsParameters + */ + public $extendsParameters; + +} \ No newline at end of file diff --git a/vendor/alibabacloud/darabonba/src/Models/SSEEvent.php b/vendor/alibabacloud/darabonba/src/Models/SSEEvent.php new file mode 100644 index 0000000..68e25ae --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Models/SSEEvent.php @@ -0,0 +1,76 @@ +data = isset($data['data']) ? $data['data'] : null; + $this->id = isset($data['id']) ? $data['id'] : null; + $this->event = isset($data['event']) ? $data['event'] : null; + $this->retry = isset($data['retry']) ? $data['retry'] : null; + } + + public function validate() { } + + public function toArray() + { + $res = []; + if (null !== $this->data) { + $res['data'] = $this->data; + } + + if (null !== $this->id) { + $res['id'] = $this->id; + } + + if (null !== $this->event) { + $res['event'] = $this->event; + } + + if (null !== $this->retry) { + $res['retry'] = $this->retry; + } + + return $res; + } + + public function toMap() + { + return $this->toArray(); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['data'])) { + if(!empty($map['data'])){ + $model->data = []; + foreach($map['data'] as $key => $value) { + $model->data[$key] = $value; + } + } + } + + if (isset($map['id'])) { + $model->id = $map['id']; + } + + if (isset($map['event'])) { + $model->event = $map['event']; + } + + if (isset($map['retry'])) { + $model->retry = $map['retry']; + } + + return $res; + } + +} \ No newline at end of file diff --git a/vendor/alibabacloud/darabonba/src/Parameter.php b/vendor/alibabacloud/darabonba/src/Parameter.php new file mode 100644 index 0000000..949dd30 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Parameter.php @@ -0,0 +1,50 @@ +toArray()); + } + + /** + * @return array + */ + public function getRealParameters() + { + $array = []; + $obj = new ReflectionObject($this); + $properties = $obj->getProperties(); + + foreach ($properties as $property) { + $docComment = $property->getDocComment(); + $key = trim(Helper::findFromString($docComment, '@real', "\n")); + $value = $property->getValue($this); + $array[$key] = $value; + } + + return $array; + } + + /** + * @return array + */ + public function toArray() + { + return $this->getRealParameters(); + } +} diff --git a/vendor/alibabacloud/darabonba/src/Request.php b/vendor/alibabacloud/darabonba/src/Request.php new file mode 100644 index 0000000..74aef42 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Request.php @@ -0,0 +1,123 @@ +method = $method; + } + + /** + * These fields are compatible if you define other fields. + * Mainly for compatibility situations where the code generator cannot generate set properties. + * + * @return PsrRequest + */ + public function getPsrRequest() + { + $this->assertQuery($this->query); + + $request = clone $this; + + $uri = $request->getUri(); + if ($this->query) { + $uri = $uri->withQuery(http_build_query($this->query)); + } + + if ($this->port) { + $uri = $uri->withPort($this->port); + } + + if ($this->protocol) { + $uri = $uri->withScheme($this->protocol); + } + + if ($this->pathname) { + $uri = $uri->withPath($this->pathname); + } + + if (isset($this->headers['host'])) { + $uri = $uri->withHost($this->headers['host']); + } + + $request = $request->withUri($uri); + $request = $request->withMethod($this->method); + + if ('' !== $this->body && null !== $this->body) { + if ($this->body instanceof StreamInterface) { + $request = $request->withBody($this->body); + } else { + $body = $this->body; + if (Helper::isBytes($this->body)) { + $body = Helper::toString($this->body); + } + if (\function_exists('\GuzzleHttp\Psr7\stream_for')) { + // @deprecated stream_for will be removed in guzzlehttp/psr7:2.0 + $request = $request->withBody(\GuzzleHttp\Psr7\stream_for($body)); + } else { + $request = $request->withBody(\GuzzleHttp\Psr7\Utils::streamFor($body)); + } + } + } + + if ($this->headers) { + foreach ($this->headers as $key => $value) { + $request = $request->withHeader($key, $value); + } + } + + return $request; + } + + /** + * @param array $query + */ + private function assertQuery($query) + { + if (!\is_array($query) && $query !== null) { + throw new InvalidArgumentException('Query must be array.'); + } + } +} diff --git a/vendor/alibabacloud/darabonba/src/Response.php b/vendor/alibabacloud/darabonba/src/Response.php new file mode 100644 index 0000000..d53ae08 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Response.php @@ -0,0 +1,379 @@ +getStatusCode(), + $response->getHeaders(), + $response->getBody(), + $response->getProtocolVersion(), + $response->getReasonPhrase() + ); + $this->headers = $response->getHeaders(); + $this->body = $response->getBody(); + $this->statusCode = $response->getStatusCode(); + if ($this->body->isSeekable()) { + $this->body->seek(0); + } + + $contentType = $this->getHeaderLine('Content-Type'); + + if(StringUtil::hasPrefix($contentType, 'text/event-stream')) { + return; + } + + if (Helper::isJson((string) $this->getBody())) { + $this->dot = new Dot($this->toArray()); + } else { + $this->dot = new Dot(); + } + } + + /** + * @return string + */ + public function __toString() + { + return (string) $this->getBody(); + } + + /** + * @param string $name + * + * @return null|mixed + */ + public function __get($name) + { + $data = $this->dot->all(); + if (!isset($data[$name])) { + return null; + } + + return json_decode(json_encode($data))->{$name}; + } + + /** + * @param string $name + * @param mixed $value + */ + public function __set($name, $value) + { + $this->dot->set($name, $value); + } + + /** + * @param string $name + * + * @return bool + */ + public function __isset($name) + { + return $this->dot->has($name); + } + + /** + * @param $offset + */ + public function __unset($offset) + { + $this->dot->delete($offset); + } + + /** + * @return array + */ + public function toArray() + { + return \GuzzleHttp\json_decode((string) $this->getBody(), true); + } + + /** + * @param array|int|string $keys + * @param mixed $value + */ + public function add($keys, $value = null) + { + return $this->dot->add($keys, $value); + } + + /** + * @return array + */ + public function all() + { + return $this->dot->all(); + } + + /** + * @param null|array|int|string $keys + */ + public function clear($keys = null) + { + return $this->dot->clear($keys); + } + + /** + * @param array|int|string $keys + */ + public function delete($keys) + { + return $this->dot->delete($keys); + } + + /** + * @param string $delimiter + * @param null|array $items + * @param string $prepend + * + * @return array + */ + public function flatten($delimiter = '.', $items = null, $prepend = '') + { + return $this->dot->flatten($delimiter, $items, $prepend); + } + + /** + * @param null|int|string $key + * @param mixed $default + * + * @return mixed + */ + public function get($key = null, $default = null) + { + return $this->dot->get($key, $default); + } + + /** + * @param array|int|string $keys + * + * @return bool + */ + public function has($keys) + { + return $this->dot->has($keys); + } + + /** + * @param null|array|int|string $keys + * + * @return bool + */ + public function isEmpty($keys = null) + { + return $this->dot->isEmpty($keys); + } + + /** + * @param array|self|string $key + * @param array|self $value + */ + public function merge($key, $value = []) + { + return $this->dot->merge($key, $value); + } + + /** + * @param array|self|string $key + * @param array|self $value + */ + public function mergeRecursive($key, $value = []) + { + return $this->dot->mergeRecursive($key, $value); + } + + /** + * @param array|self|string $key + * @param array|self $value + */ + public function mergeRecursiveDistinct($key, $value = []) + { + return $this->dot->mergeRecursiveDistinct($key, $value); + } + + /** + * @param null|int|string $key + * @param mixed $default + * + * @return mixed + */ + public function pull($key = null, $default = null) + { + return $this->dot->pull($key, $default); + } + + /** + * @param null|int|string $key + * @param mixed $value + * + * @return mixed + */ + public function push($key = null, $value = null) + { + return $this->dot->push($key, $value); + } + + /** + * Replace all values or values within the given key + * with an array or Dot object. + * + * @param array|self|string $key + * @param array|self $value + */ + public function replace($key, $value = []) + { + return $this->dot->replace($key, $value); + } + + /** + * Set a given key / value pair or pairs. + * + * @param array|int|string $keys + * @param mixed $value + */ + public function set($keys, $value = null) + { + return $this->dot->set($keys, $value); + } + + /** + * Replace all items with a given array. + * + * @param mixed $items + */ + public function setArray($items) + { + return $this->dot->setArray($items); + } + + /** + * Replace all items with a given array as a reference. + */ + public function setReference(array &$items) + { + return $this->dot->setReference($items); + } + + /** + * Return the value of a given key or all the values as JSON. + * + * @param mixed $key + * @param int $options + * + * @return string + */ + public function toJson($key = null, $options = 0) + { + return $this->dot->toJson($key, $options); + } + + /** + * Retrieve an external iterator. + */ + #[\ReturnTypeWillChange] + public function getIterator() + { + return $this->dot->getIterator(); + } + + /** + * Whether a offset exists. + * + * @param $offset + * + * @return bool + */ + #[\ReturnTypeWillChange] + public function offsetExists($offset) + { + return $this->dot->offsetExists($offset); + } + + /** + * Offset to retrieve. + * + * @param $offset + * + * @return mixed + */ + #[\ReturnTypeWillChange] + public function offsetGet($offset) + { + return $this->dot->offsetGet($offset); + } + + /** + * Offset to set. + * + * @param $offset + * @param $value + */ + #[\ReturnTypeWillChange] + public function offsetSet($offset, $value) + { + $this->dot->offsetSet($offset, $value); + } + + /** + * Offset to unset. + * + * @param $offset + */ + #[\ReturnTypeWillChange] + public function offsetUnset($offset) + { + $this->dot->offsetUnset($offset); + } + + /** + * Count elements of an object. + * + * @param null $key + * + * @return int + */ + #[\ReturnTypeWillChange] + public function count($key = null) + { + return $this->dot->count($key); + } +} diff --git a/vendor/alibabacloud/darabonba/src/RetryPolicy/BackoffPolicy.php b/vendor/alibabacloud/darabonba/src/RetryPolicy/BackoffPolicy.php new file mode 100644 index 0000000..6d3d42e --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/RetryPolicy/BackoffPolicy.php @@ -0,0 +1,46 @@ +policy = $option['policy']; + } + + abstract public function getDelayTime($ctx); + + public static function newBackoffPolicy($option) { + switch($option['policy']) { + case 'Fixed': + return new FixedBackoffPolicy($option); + case 'Random': + return new RandomBackoffPolicy($option); + case 'Exponential': + return new ExponentialBackoffPolicy($option); + case 'EqualJitter': + case 'ExponentialWithEqualJitter': + return new EqualJitterBackoffPolicy($option); + case 'FullJitter': + case 'ExponentialWithFullJitter': + return new FullJitterBackoffPolicy($option); + default: + throw new DaraException([], "Invalid backoff policy"); + } + } +} + diff --git a/vendor/alibabacloud/darabonba/src/RetryPolicy/EqualJitterBackoffPolicy.php b/vendor/alibabacloud/darabonba/src/RetryPolicy/EqualJitterBackoffPolicy.php new file mode 100644 index 0000000..3bb76b0 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/RetryPolicy/EqualJitterBackoffPolicy.php @@ -0,0 +1,27 @@ +period = $option['period']; + // Default: 3 days + $this->cap = isset($option['cap']) ? $option['cap'] : 3 * 24 * 60 * 60 * 1000; + } + + public function getDelayTime($ctx) { + $ceil = min(pow(2, $ctx->getRetryCount() * $this->period), $this->cap); + return $ceil / 2 + mt_rand(0, $ceil / 2); + } +} diff --git a/vendor/alibabacloud/darabonba/src/RetryPolicy/ExponentialBackoffPolicy.php b/vendor/alibabacloud/darabonba/src/RetryPolicy/ExponentialBackoffPolicy.php new file mode 100644 index 0000000..f12431a --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/RetryPolicy/ExponentialBackoffPolicy.php @@ -0,0 +1,27 @@ +period = $option['period']; + // Default: 3 days + $this->cap = isset($option['cap']) ? $option['cap'] : 3 * 24 * 60 * 60 * 1000; + } + + public function getDelayTime($ctx) { + $randomTime = pow(2, $ctx->getRetryCount() * $this->period); + return ($randomTime > $this->cap) ? $this->cap : $randomTime; + } +} diff --git a/vendor/alibabacloud/darabonba/src/RetryPolicy/FixedBackoffPolicy.php b/vendor/alibabacloud/darabonba/src/RetryPolicy/FixedBackoffPolicy.php new file mode 100644 index 0000000..6e2610c --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/RetryPolicy/FixedBackoffPolicy.php @@ -0,0 +1,24 @@ +period = $option['period']; + } + + public function getDelayTime($ctx) { + return $this->period; + } +} + diff --git a/vendor/alibabacloud/darabonba/src/RetryPolicy/FullJitterBackoffPolicy.php b/vendor/alibabacloud/darabonba/src/RetryPolicy/FullJitterBackoffPolicy.php new file mode 100644 index 0000000..87e824d --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/RetryPolicy/FullJitterBackoffPolicy.php @@ -0,0 +1,27 @@ +period = $option['period']; + // Default: 3 days + $this->cap = isset($option['cap']) ? $option['cap'] : 3 * 24 * 60 * 60 * 1000; + } + + public function getDelayTime($ctx) { + $ceil = min(pow(2, $ctx->getRetryCount() * $this->period), $this->cap); + return mt_rand(0, $ceil); + } +} diff --git a/vendor/alibabacloud/darabonba/src/RetryPolicy/RandomBackoffPolicy.php b/vendor/alibabacloud/darabonba/src/RetryPolicy/RandomBackoffPolicy.php new file mode 100644 index 0000000..41f21ad --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/RetryPolicy/RandomBackoffPolicy.php @@ -0,0 +1,26 @@ +period = $option['period']; + $this->cap = isset($option['cap']) ? $option['cap'] : 20000; + } + + public function getDelayTime($ctx) { + $randomTime = mt_rand(0, $ctx->getRetryCount() * $this->period); + return ($randomTime > $this->cap) ? $this->cap : $randomTime; + } +} diff --git a/vendor/alibabacloud/darabonba/src/RetryPolicy/RetryCondition.php b/vendor/alibabacloud/darabonba/src/RetryPolicy/RetryCondition.php new file mode 100644 index 0000000..cfff649 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/RetryPolicy/RetryCondition.php @@ -0,0 +1,62 @@ +maxAttempts = $condition['maxAttempts']; + } + + $this->backoff = isset($condition['backoff']) ? $condition['backoff'] : null; + $this->exception = isset($condition['exception']) ? $condition['exception'] : []; + $this->errorCode = isset($condition['errorCode']) ? $condition['errorCode'] : []; + $this->maxDelay = isset($condition['maxDelay']) ? $condition['maxDelay'] : []; + } + + + /** + * @return int + */ + public function getMaxAttempts() { + return $this->maxAttempts; + } + + /** + * @return BackoffPolicy + */ + public function getBackoff() { + return $this->backoff; + } + + /** + * @return string[] + */ + public function getException() { + return $this->exception; + } + + /** + * @return string[] + */ + public function getErrorCode() { + return $this->errorCode; + } + + /** + * @return int + */ + public function getMaxDelay() { + return $this->maxDelay; + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/darabonba/src/RetryPolicy/RetryOptions.php b/vendor/alibabacloud/darabonba/src/RetryPolicy/RetryOptions.php new file mode 100644 index 0000000..9b5c516 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/RetryPolicy/RetryOptions.php @@ -0,0 +1,50 @@ +retryable = $options['retryable']; + $this->retryCondition = array_map(function ($condition) { + if($condition instanceof RetryCondition) { + return $condition; + } + return new RetryCondition($condition); + }, isset($options['retryCondition']) ? $options['retryCondition'] : []); + + $this->noRetryCondition = array_map(function ($condition) { + if($condition instanceof RetryCondition) { + return $condition; + } + return new RetryCondition($condition); + }, isset($options['noRetryCondition']) ? $options['noRetryCondition'] : []); + } + + /** + * @return bool + */ + public function getRetryable() { + return $this->retryable; + } + + /** + * @return RetryCondition[] + */ + public function getRetryCondition() { + return $this->retryCondition; + } + + /** + * @return RetryCondition[] + */ + public function getNoRetryCondition() { + return $this->noRetryCondition; + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/darabonba/src/RetryPolicy/RetryPolicyContext.php b/vendor/alibabacloud/darabonba/src/RetryPolicy/RetryPolicyContext.php new file mode 100644 index 0000000..a349a7c --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/RetryPolicy/RetryPolicyContext.php @@ -0,0 +1,64 @@ +key = isset($options['key']) ? $options['key'] : ''; + $this->retriesAttempted = isset($options['retriesAttempted']) ? $options['retriesAttempted'] : 0; + $this->httpRequest = isset($options['httpRequest']) ? $options['httpRequest'] : null; + $this->httpResponse = isset($options['httpResponse']) ? $options['httpResponse'] : null; + $this->exception = isset($options['exception']) ? $options['exception'] : null; + } + + /** + * + * @return int + */ + public function getRetryCount(){ + return $this->retriesAttempted; + } + + /** + * + * @return string + */ + public function getKey() { + return $this->key; + } + + /** + * + * @return Request + */ + public function getHttpRequest() { + return $this->httpRequest; + } + + /** + * + * @return Response + */ + public function getHttpResponse() { + return $this->httpResponse; + } + + /** + * + * @return DaraException + */ + public function getException() { + return $this->exception; + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/darabonba/src/Url.php b/vendor/alibabacloud/darabonba/src/Url.php new file mode 100644 index 0000000..28b569f --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Url.php @@ -0,0 +1,152 @@ +url = $str; + } + + public function path() { + if(empty($this->path)) { + return ; + } + $pathname = $this->pathname(); + $query = $this->search(); + $this->path = $pathname . '?' . $query; + return $this->path; + } + + public function pathname() { + if(empty($this->pathname)) { + return $this->pathname; + } + $this->pathname = parse_url($ref, PHP_URL_PATH); + return $this->pathname; + } + + public function protocol() { + if(empty($this->protocol)) { + return $this->protocol; + } + $this->protocol = parse_url($ref, PHP_URL_SCHEME); + return $this->protocol; + } + + public function hostname() { + if(empty($this->hostname)) { + return $this->hostname; + } + $this->hostname = parse_url($ref, PHP_URL_HOST); + return $this->hostname; + } + + public function host() { + if(empty($this->host)) { + return ; + } + $hostname = $this->hostname(); + $port = $this->port(); + $this->host = $hostname . $port; + return $this->host; + } + + public function port() { + if(empty($this->port)) { + return $this->port; + } + $this->port = parse_url($ref, PHP_URL_PORT); + return $this->port; + } + + public function hash() { + if(empty($this->hash)) { + return $this->hash; + } + $this->hash = parse_url($ref, PHP_URL_FRAGMENT); + return $this->hash; + } + + public function search() { + if(empty($this->search)) { + return $this->search; + } + $this->search = parse_url($ref, PHP_URL_QUERY); + return $this->search; + } + + public function href() { + return $this->href; + } + + public function auth() { + if(empty($this->auth)) { + return $this->auth; + } + $username = parse_url($ref, PHP_URL_USER); + $password = parse_url($ref, PHP_URL_PASS); + $this->auth = $username . ':' . $password; + return $this->auth; + } + + public static function parse($url) { + return new self($url); + } + + public static function urlEncode($url) { + if (empty($raw)) { + throw new \InvalidArgumentException('not a valid value for parameter'); + } + $str = urlencode($raw); + $str = str_replace("%20", "+", $str); + $str = str_replace("%2A", "*", $str); + return $str; + } + + public static function percentEncode($raw) { + if($raw === null) { + return null; + } + $encoded = urlencode($raw); + $encoded = str_replace('+', '%20', $encoded); + $encoded = str_replace('*', '%2A', $encoded); + $encoded = str_replace('%7E', '~', $encoded); + return $encoded; + } + + public static function pathEncode($path) { + if (empty($raw) || $raw === '/') { + return $raw; + } + $arr = explode('/', $raw); + $ret = ''; + foreach ($arr as $i => $path) { + $str = self::percentEncode($path); + $ret .= "$str/"; + } + return substr($ret, 0, -1); + } + +} diff --git a/vendor/alibabacloud/darabonba/src/Util/ArrayToXml.php b/vendor/alibabacloud/darabonba/src/Util/ArrayToXml.php new file mode 100644 index 0000000..693e363 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Util/ArrayToXml.php @@ -0,0 +1,151 @@ +version = $xmlVersion; + $this->encoding = $xmlEncoding; + } + + /** + * Build an XML Data Set. + * + * @param array $data Associative Array containing values to be parsed into an XML Data Set(s) + * @param string $startElement Root Opening Tag, default data + * + * @return string XML String containing values + * @return mixed Boolean false on failure, string XML result on success + */ + public function buildXML($data, $startElement = 'data') + { + if (!\is_array($data)) { + $err = 'Invalid variable type supplied, expected array not found on line ' . __LINE__ . ' in Class: ' . __CLASS__ . ' Method: ' . __METHOD__; + trigger_error($err); + + return false; //return false error occurred + } + $xml = new XmlWriter(); + $xml->openMemory(); + $xml->startDocument($this->version, $this->encoding); + $xml->startElement($startElement); + $data = $this->writeAttr($xml, $data); + $this->writeEl($xml, $data); + $xml->endElement(); //write end element + //returns the XML results + return $xml->outputMemory(true); + } + + /** + * Write keys in $data prefixed with @ as XML attributes, if $data is an array. + * When an @ prefixed key is found, a '%' key is expected to indicate the element itself, + * and '#' prefixed key indicates CDATA content. + * + * @param XMLWriter $xml object + * @param array $data with attributes filtered out + * + * @return array $data | $nonAttributes + */ + protected function writeAttr(XMLWriter $xml, $data) + { + if (\is_array($data)) { + $nonAttributes = []; + foreach ($data as $key => $val) { + //handle an attribute with elements + if ('@' == $key[0]) { + $xml->writeAttribute(substr($key, 1), $val); + } elseif ('%' == $key[0]) { + if (\is_array($val)) { + $nonAttributes = $val; + } else { + $xml->text($val); + } + } elseif ('#' == $key[0]) { + if (\is_array($val)) { + $nonAttributes = $val; + } else { + $xml->startElement(substr($key, 1)); + $xml->writeCData($val); + $xml->endElement(); + } + } elseif ('!' == $key[0]) { + if (\is_array($val)) { + $nonAttributes = $val; + } else { + $xml->writeCData($val); + } + } //ignore normal elements + else { + $nonAttributes[$key] = $val; + } + } + + return $nonAttributes; + } + + return $data; + } + + /** + * Write XML as per Associative Array. + * + * @param XMLWriter $xml object + * @param array $data Associative Data Array + */ + protected function writeEl(XMLWriter $xml, $data) + { + foreach ($data as $key => $value) { + if (\is_array($value) && !$this->isAssoc($value)) { //numeric array + foreach ($value as $itemValue) { + if (\is_array($itemValue)) { + $xml->startElement($key); + $itemValue = $this->writeAttr($xml, $itemValue); + $this->writeEl($xml, $itemValue); + $xml->endElement(); + } else { + $itemValue = $this->writeAttr($xml, $itemValue); + $xml->writeElement($key, "{$itemValue}"); + } + } + } elseif (\is_array($value)) { //associative array + $xml->startElement($key); + $value = $this->writeAttr($xml, $value); + $this->writeEl($xml, $value); + $xml->endElement(); + } else { //scalar + $value = $this->writeAttr($xml, $value); + $xml->writeElement($key, "{$value}"); + } + } + } + + /** + * Check if array is associative with string based keys + * FROM: http://stackoverflow.com/questions/173400/php-arrays-a-good-way-to-check-if-an-array-is-associative-or-sequential/4254008#4254008. + * + * @param array $array Array to check + * + * @return bool + */ + protected function isAssoc($array) + { + return (bool) \count(array_filter(array_keys($array), 'is_string')); + } +} diff --git a/vendor/alibabacloud/darabonba/src/Util/BytesUtil.php b/vendor/alibabacloud/darabonba/src/Util/BytesUtil.php new file mode 100644 index 0000000..75ea625 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Util/BytesUtil.php @@ -0,0 +1,96 @@ + $ord) { + if ($k !== $i) { + return false; + } + if (!\is_int($ord)) { + return false; + } + if ($ord < 0 || $ord > 255) { + return false; + } + ++$i; + } + + return true; + } + + public static function from($input, $encoding = 'utf-8') + { + $buffer = ''; + + if (self::is_bytes($input)) { + return $input; + } elseif (is_string($input)) { + switch (strtolower($encoding)) { + case 'utf-8': + case 'utf8': + $buffer = $input; + break; + case 'base64': + $decoded = base64_decode($input); + if ($decoded === false) { + throw new DaraException([], 'Invalid base64 input.'); + } + $buffer = $decoded; + break; + case 'hex': + $decoded = hex2bin($input); + if ($decoded === false) { + throw new DaraException([], 'Invalid hex input.'); + } + $buffer = $decoded; + break; + default: + throw new DaraException([], 'Unsupported encoding type.'); + } + } else { + throw new DaraException([], 'Input must be an bytes or a string.'); + } + + $result = []; + for ($i = 0, $len = strlen($buffer); $i < $len; $i++) { + $result[] = ord($buffer[$i]); + } + + return $result; + } + /** + * + * @param int[] $bytes + * @return string + */ + public static function toString($bytes, $type = 'utf8') + { + if (\is_string($bytes)) { + return $bytes; + } + $str = ''; + foreach ($bytes as $ch) { + $str .= \chr($ch); + } + + if($type == 'hex') { + return bin2hex($str); + } + + if($type == 'base64') { + return base64_encode($str); + } + + return $str; + } +} diff --git a/vendor/alibabacloud/darabonba/src/Util/Console.php b/vendor/alibabacloud/darabonba/src/Util/Console.php new file mode 100644 index 0000000..165db25 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Util/Console.php @@ -0,0 +1,116 @@ += 70100) { + // PHP 7.1+ supports return type declarations and nullable types + require_once __DIR__ . '/FileFormStreamTyped.php'; + + if (!class_exists('AlibabaCloud\\Dara\\Util\\FileFormStream', false)) { + class_alias('AlibabaCloud\\Dara\\Util\\FileFormStreamTyped', 'AlibabaCloud\\Dara\\Util\\FileFormStream'); + } +} else { + // PHP 5.6-7.0 does not support void and nullable type declarations + /** + * @internal + * @coversNothing + */ + class FileFormStream implements StreamInterface + { + use FileFormStreamTrait; + + public function __toString() { return $this->__toStringImpl(); } + public function getContents() { return $this->getContentsImpl(); } + public function close() { $this->closeImpl(); } + public function detach() { return $this->detachImpl(); } + public function getSize() { return $this->getSizeImpl(); } + public function tell() { return $this->tellImpl(); } + public function eof() { return $this->eofImpl(); } + public function isSeekable() { return $this->isSeekableImpl(); } + public function seek($offset, $whence = SEEK_SET) { $this->seekImpl($offset, $whence); } + public function rewind() { $this->rewindImpl(); } + public function isWritable() { return $this->isWritableImpl(); } + public function write($string) { return $this->writeImpl($string); } + public function isReadable() { return $this->isReadableImpl(); } + public function read($length) { return $this->readImpl($length); } + public function getMetadata($key = null) { return $this->getMetadataImpl($key); } + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/darabonba/src/Util/FileFormStreamTrait.php b/vendor/alibabacloud/darabonba/src/Util/FileFormStreamTrait.php new file mode 100644 index 0000000..e2f6f34 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Util/FileFormStreamTrait.php @@ -0,0 +1,284 @@ +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(); + } + + /** + * @return string + */ + protected function __toStringImpl() + { + 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) { + $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; + } + + protected function getContentsImpl() + { + 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; + } + + protected function closeImpl() + { + if (isset($this->stream)) { + if (\is_resource($this->stream)) { + fclose($this->stream); + } + $this->detach(); + } + } + + protected function detachImpl() + { + if (!isset($this->stream)) { + return null; + } + $result = $this->stream; + unset($this->stream); + $this->size = $this->uri = null; + return $result; + } + + protected function getSizeImpl() + { + if (null !== $this->size) { + return $this->size; + } + if (!isset($this->stream)) { + return null; + } + if ($this->uri) { + clearstatcache(true, $this->uri); + } + $stats = fstat($this->stream); + if (isset($stats['size'])) { + $this->size = $stats['size']; + return $this->size; + } + return null; + } + + protected function isReadableImpl() + { + return $this->readable; + } + + protected function isWritableImpl() + { + return $this->writable; + } + + protected function isSeekableImpl() + { + return $this->seekable; + } + + protected function eofImpl() + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + return feof($this->stream); + } + + protected function tellImpl() + { + 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; + } + + protected function rewindImpl() + { + $this->seek(0); + } + + protected function seekImpl($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)); + } + } + + protected function readImpl($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; + } + + protected function writeImpl($string) + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + if (!$this->writable) { + throw new \RuntimeException('Cannot write to a non-writable stream'); + } + $this->size = null; + $result = fwrite($this->stream, $string); + if (false === $result) { + throw new \RuntimeException('Unable to write to stream'); + } + return $result; + } + + protected function getMetadataImpl($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/darabonba/src/Util/FileFormStreamTyped.php b/vendor/alibabacloud/darabonba/src/Util/FileFormStreamTyped.php new file mode 100644 index 0000000..8df0fd7 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Util/FileFormStreamTyped.php @@ -0,0 +1,31 @@ +__toStringImpl(); } + public function getContents(): string { return $this->getContentsImpl(); } + public function close(): void { $this->closeImpl(); } + public function detach() { return $this->detachImpl(); } + public function getSize(): ?int { return $this->getSizeImpl(); } + public function tell(): int { return $this->tellImpl(); } + public function eof(): bool { return $this->eofImpl(); } + public function isSeekable(): bool { return $this->isSeekableImpl(); } + public function seek($offset, $whence = SEEK_SET): void { $this->seekImpl($offset, $whence); } + public function rewind(): void { $this->rewindImpl(); } + public function isWritable(): bool { return $this->isWritableImpl(); } + public function write($string): int { return $this->writeImpl($string); } + public function isReadable(): bool { return $this->isReadableImpl(); } + public function read($length): string { return $this->readImpl($length); } + public function getMetadata($key = null) { return $this->getMetadataImpl($key); } +} diff --git a/vendor/alibabacloud/darabonba/src/Util/FormUtil.php b/vendor/alibabacloud/darabonba/src/Util/FormUtil.php new file mode 100644 index 0000000..6fa7de2 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Util/FormUtil.php @@ -0,0 +1,46 @@ +toArray(); + } + + return str_replace('+', '%20', http_build_query($query)); + } + + /** + * + * @return string + */ + public static function getBoundary() + { + return (string) (mt_rand(10000000000000, 99999999999999)); + } + + /** + * + * @param array $map + * @param string $boundary + * @return string + */ + public static function toFileForm($map, $boundary) + { + return new FileFormStream($map, $boundary); + } +} diff --git a/vendor/alibabacloud/darabonba/src/Util/MathUtil.php b/vendor/alibabacloud/darabonba/src/Util/MathUtil.php new file mode 100644 index 0000000..661e08c --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Util/MathUtil.php @@ -0,0 +1,15 @@ +isSeekable()) { + $stream->rewind(); + } + + return $stream->getContents(); + } + + private static function tryGetEvents($head, $chunk) { + $all = $head . $chunk; + if(empty($all)) { + return []; + } + $start = 0; + $events = []; + $lines = explode("\n", $all); + $event = new SSEEvent(); + for ($i = 0; $i < strlen($all) - 1; $i++) { + $c = $all[$i]; + $c2 = $all[$i + 1]; + if ($c === "\n" && $c2 === "\n") { + $part = substr($all, $start, $i - $start); + $lines = explode("\n", $part); + $event = new SSEEvent(); + + foreach ($lines as $line) { + if ('' === trim($line)) { + continue; + } elseif (0 === strpos($line, 'data:')) { + $data = substr($line, 5); + $event->data .= trim($data); + } elseif (0 === strpos($line, 'event:')) { + $eventLine = substr($line, 6); + $event->event = trim($eventLine); + } elseif (0 === strpos($line, 'id:')) { + $id = substr($line, 3); + $event->id = trim($id); + } elseif (0 === strpos($line, 'retry:')) { + $retry = substr($line, 6); + $retry = trim($retry); + if (ctype_digit($retry)) { + $event->retry = intval($retry, 10); + } + } elseif (isset($line[0]) && $line[0] === ':') { + // Lines starting with ':' are comments and ignored. + } + } + array_push($events, $event); + $start = $i + 2; + } + } + $remain = substr($all, $start); + return ['events' => $events, 'remain' => $remain]; + } + + /** + * @param Stream $stream + * + * @return string + */ + public static function readAsSSE($stream) + { + $rest = ''; + while (!$stream->eof()) { + $chunk = $stream->read(4096); + $result = self::tryGetEvents($rest, $chunk); + if(empty($result)) { + continue; + } + $events = $result['events']; + $rest = $result['remain']; + + foreach ($events as $event) { + yield $event; + } + } + + // If there is any remaining data that qualifies as an event, yield it as well + if ($rest !== '' && $rest !== false) { + $lastEvent = new SSEEvent(); + $lastEvent->data = $rest; + yield $lastEvent; + } + } + + /** + * Create and return a Guzzle Stream from various inputs. + * + * @param mixed $str string|resource|callable|\GuzzleHttp\Psr7\Stream|object + * @return Stream + * @throws \InvalidArgumentException|\RuntimeException + */ + public static function streamFor($str) + { + if (!class_exists('\GuzzleHttp\Psr7\Stream')) { + throw new \RuntimeException('guzzlehttp/psr7 is required for streamFor'); + } + + // Already a Guzzle Stream + if ($str instanceof Stream) { + return $str; + } + + // If callable, call and recurse + if (is_callable($str)) { + return self::streamFor($str()); + } + + // If resource (stream), wrap directly + if (is_resource($str)) { + if (get_resource_type($str) !== 'stream') { + throw new \InvalidArgumentException('Provided resource is not a stream'); + } + return new Stream($str); + } + + // If object with __toString, cast it + if (is_object($str) && method_exists($str, '__toString')) { + $str = (string)$str; + } + + // Must be string (or scalar convertible) + if (!is_string($str) && !is_scalar($str) && !is_null($str)) { + throw new \InvalidArgumentException('Unsupported type for streamFor: ' . gettype($str)); + } + + $content = $str === null ? '' : (string)$str; + + $resource = @fopen('php://temp', 'w+b'); + if ($resource === false) { + throw new \RuntimeException('Failed to open temporary stream'); + } + + if ($content !== '') { + fwrite($resource, $content); + rewind($resource); + } + + return new Stream($resource); + } + +} diff --git a/vendor/alibabacloud/darabonba/src/Util/StringUtil.php b/vendor/alibabacloud/darabonba/src/Util/StringUtil.php new file mode 100644 index 0000000..17eafc0 --- /dev/null +++ b/vendor/alibabacloud/darabonba/src/Util/StringUtil.php @@ -0,0 +1,61 @@ + $v) { + if (isset($prop[$k])) { + $target[$k] = $v; + } + } + return $target; + } + } + + public static function toXML($array) + { + $arrayToXml = new ArrayToXml(); + if (\is_object($array)) { + $tmp = explode('\\', \get_class($array)); + $rootName = $tmp[\count($tmp) - 1]; + $data = json_decode(json_encode($array), true); + } else { + $tmp = $array; + reset($tmp); + $rootName = key($tmp); + $data = $array[$rootName]; + } + ksort($data); + + return $arrayToXml->buildXML($data, $rootName); + } + + private static function parse($xml) + { + if (\PHP_VERSION_ID < 80000) { + libxml_disable_entity_loader(true); + } + + return json_decode( + json_encode( + simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA) + ), + true + ); + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/dysmsapi-20170525/.gitignore b/vendor/alibabacloud/dysmsapi-20170525/.gitignore new file mode 100644 index 0000000..89c7aa5 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/.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/dysmsapi-20170525/.php-cs-fixer.dist.php b/vendor/alibabacloud/dysmsapi-20170525/.php-cs-fixer.dist.php new file mode 100644 index 0000000..7e23a2a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/.php-cs-fixer.dist.php @@ -0,0 +1,66 @@ +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, + 'phpdoc_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'include' => true, + 'lowercase_cast' => 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, + 'blank_lines_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' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_blank_lines' => [ + 'tokens' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ] + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + (new Finder()) + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ) +; diff --git a/vendor/alibabacloud/dysmsapi-20170525/ChangeLog.md b/vendor/alibabacloud/dysmsapi-20170525/ChangeLog.md new file mode 100644 index 0000000..2d8f21e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/ChangeLog.md @@ -0,0 +1,222 @@ +2026-07-01 Version: 4.6.0 +- Support API AddRcsSignMenu. +- Support API CreateRCSMobileCapableTask. +- Support API CreateRCSTemplate. +- Support API GetRCSSignature. +- Support API QueryRCSMobileCapable. +- Support API QueryRCSMobileCapableTaskResult. +- Support API QueryRCSTemplate. +- Support API QueryRcsSignMenuByVersion. +- Support API SendRCS. +- Support API SendRCSReply. +- Support API UpdateRCSSignature. +- Support API UpgradeToRCSSignature. +- Update API CreateSmsAppIcpRecord: add request parameters AppRuntimePic. +- Update API CreateSmsAppIcpRecord: add request parameters AppStoreDownloadPic. +- Update API QuerySmsAppIcpRecord: add response parameters Body.Data.$.AppRuntimePic. +- Update API QuerySmsAppIcpRecord: add response parameters Body.Data.$.AppRuntimePicUrl. +- Update API QuerySmsAppIcpRecord: add response parameters Body.Data.$.AppStoreDownloadPic. +- Update API QuerySmsAppIcpRecord: add response parameters Body.Data.$.AppStoreDownloadPicUrl. + + +2026-04-07 Version: 4.5.1 +- Update API GetSmsTemplate: add response parameters Body.SignList. +- Update API GetSmsTemplateList: add response parameters Body.Data.List.$.TemplateContent. + + +2026-02-10 Version: 4.5.0 +- Support API CreateDigitalSignOrder. +- Support API CreateDigitalSmsTemplate. +- Support API QueryDigitalSignByName. + + +2026-01-05 Version: 4.4.0 +- Support API CreateSmsAppIcpRecord. +- Support API CreateSmsTrademark. +- Support API GetSmsTemplateList. +- Support API QuerySmsAppIcpRecord. +- Support API QuerySmsTrademark. + + +2025-12-11 Version: 4.3.1 +- Update API CreateSmsSign: add request parameters AppIcpRecordId. +- Update API CreateSmsSign: add request parameters TrademarkId. +- Update API GetSmsSign: add response parameters Body.AppIcpRecordId. +- Update API GetSmsSign: add response parameters Body.TrademarkId. +- Update API QuerySmsSignList: add response parameters Body.SmsSignList.$.AppIcpRecordId. +- Update API QuerySmsSignList: add response parameters Body.SmsSignList.$.TrademarkId. +- Update API UpdateSmsSign: add request parameters AppIcpRecordId. +- Update API UpdateSmsSign: add request parameters TrademarkId. + + +2025-11-27 Version: 4.3.0 +- Support API GetSmsOcrOssInfo. +- Update API QuerySmsTemplateList: add response parameters Body.SmsTemplateList.$.TrafficDriving. + + +2025-09-17 Version: 4.2.0 +- Support API SendLogisticsSms. +- Support API VerifyLogisticsSmsMailNo. + + +2025-09-11 Version: 4.1.3 +- Update API CreateSmsTemplate: add request parameters TrafficDriving. +- Update API QuerySmsTemplateList: add response parameters Body.SmsTemplateList.$.SignatureName. +- Update API UpdateSmsTemplate: add request parameters TrafficDriving. + + +2025-09-11 Version: 4.1.3 +- Update API CreateSmsTemplate: add request parameters TrafficDriving. +- Update API QuerySmsTemplateList: add response parameters Body.SmsTemplateList.$.SignatureName. +- Update API UpdateSmsTemplate: add request parameters TrafficDriving. + + +2025-06-30 Version: 4.1.2 +- Update API GetSmsSign: add response parameters Body.SignIspRegisterDetailList. + + +2025-05-27 Version: 4.1.1 +- Update API QueryMobilesCardSupport: add request parameters EncryptType. + + +2025-04-23 Version: 4.1.0 +- Support API DeleteSmsQualification. +- Support API QuerySingleSmsQualification. +- Support API QuerySmsQualificationRecord. +- Support API RequiredPhoneCode. +- Support API SubmitSmsQualification. +- Support API UpdateSmsQualification. +- Support API ValidPhoneCode. + + +2025-04-22 Version: 4.0.0 +- Support API ChangeSignatureQualification. +- Support API CreateSmsAuthorizationLetter. +- Support API GetQualificationOssInfo. +- Support API QuerySmsAuthorizationLetter. +- Update API CreateSmsSign: update request parameters AuthorizationLetterId' type has changed. +- Update API CreateSmsSign: update request parameters AuthorizationLetterId' format has changed. +- Update API GetSmsSign: update response parameters Body.AuthorizationLetterId' type has changed. +- Update API GetSmsSign: update response parameters Body.AuthorizationLetterId' format has changed. +- Update API QuerySmsSignList: update response parameters Body.SmsSignList.$.AuthorizationLetterId' type has changed. +- Update API QuerySmsSignList: update response parameters Body.SmsSignList.$.AuthorizationLetterId' format has changed. +- Update API UpdateSmsSign: update request parameters AuthorizationLetterId' type has changed. +- Update API UpdateSmsSign: update request parameters AuthorizationLetterId' format has changed. + + +2025-04-16 Version: 3.1.3 +- Update API CreateSmsSign: add request parameters AuthorizationLetterId. +- Update API GetSmsSign: add response parameters Body.AuthorizationLetterAuditPass. +- Update API GetSmsSign: add response parameters Body.AuthorizationLetterId. +- Update API QuerySmsSignList: add response parameters Body.SmsSignList.$.AuthorizationLetterId. +- Update API QuerySmsSignList: add response parameters Body.SmsSignList.$.authorizationLetterAuditPass. +- Update API UpdateSmsSign: add request parameters AuthorizationLetterId. + + +2025-03-26 Version: 3.1.2 +- Update API GetSmsTemplate: add response parameters Body.VendorAuditStatus. + + +2025-01-03 Version: 3.1.1 +- Update API GetSmsSign: update response param. +- Update API QueryExtCodeSign: update param ExtCode. +- Update API QueryExtCodeSign: update param SignName. + + +2024-10-24 Version: 3.1.0 +- Support API AddExtCodeSign. +- Support API DeleteExtCodeSign. +- Support API GetCardSmsDetails. +- Support API QueryExtCodeSign. +- Support API UpdateExtCodeSign. + + +2024-06-25 Version: 3.0.0 +- Support API CreateSmsSign. +- Support API CreateSmsTemplate. +- Support API GetOSSInfoForUploadFile. +- Support API GetSmsSign. +- Support API GetSmsTemplate. +- Support API UpdateSmsSign. +- Support API UpdateSmsTemplate. +- Update API CreateSmartShortUrl: add param OutId. +- Update API CreateSmartShortUrl: delete param Expiration. +- Update API CreateSmartShortUrl: delete param SourceName. +- Update API CreateSmartShortUrl: update param PhoneNumbers. +- Update API CreateSmartShortUrl: update param SourceUrl. +- Update API QueryPageSmartShortUrlLog: delete param ClickState. +- Update API QueryPageSmartShortUrlLog: delete param EndId. +- Update API QueryPageSmartShortUrlLog: delete param ShortName. +- Update API QueryPageSmartShortUrlLog: delete param StartId. +- Update API QueryPageSmartShortUrlLog: update param CreateDateEnd. +- Update API QueryPageSmartShortUrlLog: update param CreateDateStart. +- Update API QueryPageSmartShortUrlLog: update param PageNo. +- Update API QueryPageSmartShortUrlLog: update param PageSize. + + +2023-07-04 Version: 2.0.24 +- Add CreateSmartShortUrl api. + +2022-11-29 Version: 2.0.23 +- Add custom content for QueryCardSmsTemplateReport. + +2022-10-11 Version: 2.0.22 +- Add custom content for QueryCardSmsTemplateReport. + +2022-09-30 Version: 2.0.21 +- Add custom content for SendBatchSms. + +2022-09-29 Version: 2.0.20 +- Add outId for SendBatchSms. + +2022-09-28 Version: 2.0.19 +- Upgrade formdata for CheckMobilesCardTemplateSupport. + +2022-08-11 Version: 2.0.18 +- Upgrade formdata for SendBatchSms. + +2022-08-03 Version: 2.0.17 +- Upgrade Service for SmsStatistics. + +2022-07-14 Version: 2.0.16 +- Upgrade Service for SmsTemplate. + +2022-07-06 Version: 2.0.15 +- Upgrade Service for SmsSign. + +2022-07-06 Version: 2.0.14 +- Upgrade Service for SmsSign. + +2022-07-04 Version: 2.0.13 +- Upgrade Service for CardSms. + +2022-06-29 Version: 2.0.12 +- Upgrade Service for Template and Sign. + +2022-06-17 Version: 2.0.10 +- Upgrade Service for CARDSMS. + +2022-01-24 Version: 2.0.9 +- Generated php 2017-05-25 for Dysmsapi. + +2021-11-29 Version: 2.0.8 +- Upgrade Service for SMS. + +2021-11-16 Version: 2.0.7 +- Upgrade Service for SMS. + +2021-10-26 Version: 2.0.6 +- Support Short Url for SMS. + +2021-09-01 Version: 1.0.3 +- Generated php 2017-05-25 for Dysmsapi. + +2021-07-15 Version: 1.0.2 +- Generated php 2017-05-25 for Dysmsapi. + +2021-01-04 Version: 1.0.1 +- AMP Version Change. + +2020-12-29 Version: 1.0.0 +- AMP Version Change. + diff --git a/vendor/alibabacloud/dysmsapi-20170525/LICENSE b/vendor/alibabacloud/dysmsapi-20170525/LICENSE new file mode 100644 index 0000000..0c44dce --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/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/dysmsapi-20170525/README-CN.md b/vendor/alibabacloud/dysmsapi-20170525/README-CN.md new file mode 100644 index 0000000..88f0eb6 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/README-CN.md @@ -0,0 +1,35 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +# Alibaba Cloud Dysmsapi SDK for PHP + +## 安装 + +### Composer + +```bash +composer require alibabacloud/dysmsapi-20170525 +``` + +## 问题 + +[提交 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/dysmsapi-20170525/README.md b/vendor/alibabacloud/dysmsapi-20170525/README.md new file mode 100644 index 0000000..b43be03 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/README.md @@ -0,0 +1,35 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +# Alibaba Cloud Dysmsapi SDK for PHP + +## Installation + +### Composer + +```bash +composer require alibabacloud/dysmsapi-20170525 +``` + +## 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/dysmsapi-20170525/autoload.php b/vendor/alibabacloud/dysmsapi-20170525/autoload.php new file mode 100644 index 0000000..6013a91 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/autoload.php @@ -0,0 +1,17 @@ +5.5", + "alibabacloud/darabonba": "^1.0.0", + "alibabacloud/openapi-core": "^1.0.0" + }, + "prefer-stable": true +} \ No newline at end of file diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Dysmsapi.php b/vendor/alibabacloud/dysmsapi-20170525/src/Dysmsapi.php new file mode 100644 index 0000000..2bf0c4b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Dysmsapi.php @@ -0,0 +1,7497 @@ +_endpointRule = 'central'; + $this->_endpointMap = [ + 'ap-southeast-1' => 'dysmsapi.ap-southeast-1.aliyuncs.com', + 'ap-southeast-5' => 'dysmsapi.ap-southeast-5.aliyuncs.com', + 'cn-beijing' => 'dysmsapi-proxy.cn-beijing.aliyuncs.com', + 'cn-hongkong' => 'dysmsapi-xman.cn-hongkong.aliyuncs.com', + 'eu-central-1' => 'dysmsapi.eu-central-1.aliyuncs.com', + 'us-east-1' => 'dysmsapi.us-east-1.aliyuncs.com', + 'cn-zhangjiakou' => 'dysmsapi.aliyuncs.com', + 'cn-shenzhen-finance-1' => 'dysmsapi.aliyuncs.com', + 'cn-shenzhen' => 'dysmsapi.aliyuncs.com', + 'cn-shanghai-finance-1' => 'dysmsapi.aliyuncs.com', + 'cn-qingdao' => 'dysmsapi.aliyuncs.com', + 'cn-north-2-gov-1' => 'dysmsapi.aliyuncs.com', + 'cn-huhehaote' => 'dysmsapi.aliyuncs.com', + 'cn-hangzhou-finance' => 'dysmsapi.aliyuncs.com', + 'cn-hangzhou' => 'dysmsapi.aliyuncs.com', + 'cn-chengdu' => 'dysmsapi.aliyuncs.com', + 'cn-beijing-finance-1' => 'dysmsapi.aliyuncs.com', + ]; + $this->checkConfig($config); + $this->_endpoint = $this->getEndpoint('dysmsapi', $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 (null !== $endpoint) { + return $endpoint; + } + + if (null !== $endpointMap && null !== @$endpointMap[$regionId]) { + return @$endpointMap[$regionId]; + } + + return Utils::getEndpointRules($productId, $regionId, $endpointRule, $network, $suffix); + } + + /** + * 添加验证码签名信息. + * + * @param request - AddExtCodeSignRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns AddExtCodeSignResponse + * + * @param AddExtCodeSignRequest $request + * @param RuntimeOptions $runtime + * + * @return AddExtCodeSignResponse + */ + public function addExtCodeSignWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->extCode) { + @$query['ExtCode'] = $request->extCode; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'AddExtCodeSign', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddExtCodeSignResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 添加验证码签名信息. + * + * @param request - AddExtCodeSignRequest + * + * @returns AddExtCodeSignResponse + * + * @param AddExtCodeSignRequest $request + * + * @return AddExtCodeSignResponse + */ + public function addExtCodeSign($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addExtCodeSignWithOptions($request, $runtime); + } + + /** + * 创建/编辑5G消息固定菜单. + * + * @param request - AddRcsSignMenuRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns AddRcsSignMenuResponse + * + * @param AddRcsSignMenuRequest $request + * @param RuntimeOptions $runtime + * + * @return AddRcsSignMenuResponse + */ + public function addRcsSignMenuWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->menuContent) { + @$query['MenuContent'] = $request->menuContent; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'AddRcsSignMenu', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddRcsSignMenuResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 创建/编辑5G消息固定菜单. + * + * @param request - AddRcsSignMenuRequest + * + * @returns AddRcsSignMenuResponse + * + * @param AddRcsSignMenuRequest $request + * + * @return AddRcsSignMenuResponse + */ + public function addRcsSignMenu($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addRcsSignMenuWithOptions($request, $runtime); + } + + /** + * Creates a short URL. + * + * @remarks + * >Notice: + * Short Message Service does not currently support this API operation. + * - You can create up to 3,000 short URLs per calendar day. + * - After a short URL is generated, it must pass a security review, which typically takes 10 minutes to 2 hours. You cannot access the short URL until it passes this review. + * + * @param request - AddShortUrlRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns AddShortUrlResponse + * + * @param AddShortUrlRequest $request + * @param RuntimeOptions $runtime + * + * @return AddShortUrlResponse + */ + public function addShortUrlWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $body = []; + if (null !== $request->effectiveDays) { + @$body['EffectiveDays'] = $request->effectiveDays; + } + + if (null !== $request->shortUrlName) { + @$body['ShortUrlName'] = $request->shortUrlName; + } + + if (null !== $request->sourceUrl) { + @$body['SourceUrl'] = $request->sourceUrl; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + 'body' => Utils::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'AddShortUrl', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddShortUrlResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Creates a short URL. + * + * @remarks + * >Notice: + * Short Message Service does not currently support this API operation. + * - You can create up to 3,000 short URLs per calendar day. + * - After a short URL is generated, it must pass a security review, which typically takes 10 minutes to 2 hours. You cannot access the short URL until it passes this review. + * + * @param request - AddShortUrlRequest + * + * @returns AddShortUrlResponse + * + * @param AddShortUrlRequest $request + * + * @return AddShortUrlResponse + */ + public function addShortUrl($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addShortUrlWithOptions($request, $runtime); + } + + /** + * This API has been discontinued. + * + * @remarks + * - In accordance with the regulations of the Ministry of Industry and Information Technology (MIIT) and the [relevant requirements](https://help.aliyun.com/document_detail/2806975.html) of carriers, Alibaba Cloud has made functional modifications to signature-related APIs. To improve the review efficiency and approval rate of your signatures, use the new API [CreateSmsSign - Apply for an SMS signature](https://help.aliyun.com/document_detail/2807427.html). + * - An individual user can apply for one signature per natural day under the same Alibaba Cloud account. Enterprise users have no limit on the number of applications. For details about the differences in rights and interests between individual users and enterprise users, see [Usage notes](https://help.aliyun.com/document_detail/55324.html). + * - The signature information applied for through the API is synchronized to the SMS console. For operations on signatures in the console, see [SMS signatures](https://help.aliyun.com/document_detail/108073.html). + * - After you submit a signature application, you can call the [QuerySmsSign](https://help.aliyun.com/document_detail/419283.html) API to query the review status and details of the signature. You can also [configure receipt messages](https://help.aliyun.com/document_detail/101508.html) and use [SignSmsReport](https://help.aliyun.com/document_detail/120998.html) to obtain signature review status messages. + * ### QPS limit + * The single-user QPS limit for this API is 1 call per second. If the limit is exceeded, API calls will be throttled, which may affect your business. Call this API at a reasonable rate. + * + * @param request - AddSmsSignRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns AddSmsSignResponse + * + * @param AddSmsSignRequest $request + * @param RuntimeOptions $runtime + * + * @return AddSmsSignResponse + */ + public function addSmsSignWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->remark) { + @$query['Remark'] = $request->remark; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->signSource) { + @$query['SignSource'] = $request->signSource; + } + + if (null !== $request->signType) { + @$query['SignType'] = $request->signType; + } + + $body = []; + if (null !== $request->signFileList) { + @$body['SignFileList'] = $request->signFileList; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + 'body' => Utils::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'AddSmsSign', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddSmsSignResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * This API has been discontinued. + * + * @remarks + * - In accordance with the regulations of the Ministry of Industry and Information Technology (MIIT) and the [relevant requirements](https://help.aliyun.com/document_detail/2806975.html) of carriers, Alibaba Cloud has made functional modifications to signature-related APIs. To improve the review efficiency and approval rate of your signatures, use the new API [CreateSmsSign - Apply for an SMS signature](https://help.aliyun.com/document_detail/2807427.html). + * - An individual user can apply for one signature per natural day under the same Alibaba Cloud account. Enterprise users have no limit on the number of applications. For details about the differences in rights and interests between individual users and enterprise users, see [Usage notes](https://help.aliyun.com/document_detail/55324.html). + * - The signature information applied for through the API is synchronized to the SMS console. For operations on signatures in the console, see [SMS signatures](https://help.aliyun.com/document_detail/108073.html). + * - After you submit a signature application, you can call the [QuerySmsSign](https://help.aliyun.com/document_detail/419283.html) API to query the review status and details of the signature. You can also [configure receipt messages](https://help.aliyun.com/document_detail/101508.html) and use [SignSmsReport](https://help.aliyun.com/document_detail/120998.html) to obtain signature review status messages. + * ### QPS limit + * The single-user QPS limit for this API is 1 call per second. If the limit is exceeded, API calls will be throttled, which may affect your business. Call this API at a reasonable rate. + * + * @param request - AddSmsSignRequest + * + * @returns AddSmsSignResponse + * + * @param AddSmsSignRequest $request + * + * @return AddSmsSignResponse + */ + public function addSmsSign($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addSmsSignWithOptions($request, $runtime); + } + + /** + * An SMS template is the detailed content received by the recipient, including variables and template content. You can apply for verification code, notification, or promotional SMS templates based on your business needs. SMS can only be sent after the template is approved. + * + * @remarks + * - In accordance with the regulations of the Ministry of Industry and Information Technology and the [related requirements](https://help.aliyun.com/document_detail/2806975.html) of carriers, Alibaba Cloud has revamped the functionality of template-related APIs. To improve the review efficiency and approval rate of your templates, please use the new operation [CreateSmsTemplate - Apply for SMS template](https://help.aliyun.com/document_detail/2807431.html). + * - You can submit a maximum of 100 SMS template applications per natural day via the API. It is recommended that each application be submitted at intervals of at least 30 seconds. There is no limit on the number of submissions when applying for SMS templates through the [console](https://dysms.console.aliyun.com/domestic/text/template). + * - Template information applied for through the API is synchronized to the SMS service console. For related template operations in the console, see [SMS templates](https://help.aliyun.com/document_detail/108085.html). + * - After submitting the template application, you can query the template review status and details through the [QuerySmsTemplate](https://help.aliyun.com/document_detail/419289.html) operation. You can also [configure receipt messages](https://help.aliyun.com/document_detail/101508.html) and obtain the template review status messages through [TemplateSmsReport](https://help.aliyun.com/document_detail/120999.html). + * - Domestic SMS templates and international/Hong Kong, Macao, and Taiwan SMS templates are not interchangeable (cannot be mixed). Please apply for templates based on your business usage scenarios. + * - Only enterprise-verified users can apply for promotional SMS and international/Hong Kong, Macao, and Taiwan messages. For details about the differences between individual and enterprise user privileges, see [Usage notes](https://help.aliyun.com/document_detail/55324.html). + * ### QPS limits + * The per-user QPS limit for this operation is 1,000 calls per second. If the limit is exceeded, API calls will be throttled, which may affect your business. Please call the operation reasonably. + * + * @deprecated openAPI AddSmsTemplate is deprecated, please use Dysmsapi::2017-05-25::CreateSmsTemplate instead + * + * @param request - AddSmsTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns AddSmsTemplateResponse + * + * @param AddSmsTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return AddSmsTemplateResponse + */ + public function addSmsTemplateWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->remark) { + @$query['Remark'] = $request->remark; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->templateContent) { + @$query['TemplateContent'] = $request->templateContent; + } + + if (null !== $request->templateName) { + @$query['TemplateName'] = $request->templateName; + } + + if (null !== $request->templateType) { + @$query['TemplateType'] = $request->templateType; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'AddSmsTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddSmsTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + // Deprecated + /** + * An SMS template is the detailed content received by the recipient, including variables and template content. You can apply for verification code, notification, or promotional SMS templates based on your business needs. SMS can only be sent after the template is approved. + * + * @remarks + * - In accordance with the regulations of the Ministry of Industry and Information Technology and the [related requirements](https://help.aliyun.com/document_detail/2806975.html) of carriers, Alibaba Cloud has revamped the functionality of template-related APIs. To improve the review efficiency and approval rate of your templates, please use the new operation [CreateSmsTemplate - Apply for SMS template](https://help.aliyun.com/document_detail/2807431.html). + * - You can submit a maximum of 100 SMS template applications per natural day via the API. It is recommended that each application be submitted at intervals of at least 30 seconds. There is no limit on the number of submissions when applying for SMS templates through the [console](https://dysms.console.aliyun.com/domestic/text/template). + * - Template information applied for through the API is synchronized to the SMS service console. For related template operations in the console, see [SMS templates](https://help.aliyun.com/document_detail/108085.html). + * - After submitting the template application, you can query the template review status and details through the [QuerySmsTemplate](https://help.aliyun.com/document_detail/419289.html) operation. You can also [configure receipt messages](https://help.aliyun.com/document_detail/101508.html) and obtain the template review status messages through [TemplateSmsReport](https://help.aliyun.com/document_detail/120999.html). + * - Domestic SMS templates and international/Hong Kong, Macao, and Taiwan SMS templates are not interchangeable (cannot be mixed). Please apply for templates based on your business usage scenarios. + * - Only enterprise-verified users can apply for promotional SMS and international/Hong Kong, Macao, and Taiwan messages. For details about the differences between individual and enterprise user privileges, see [Usage notes](https://help.aliyun.com/document_detail/55324.html). + * ### QPS limits + * The per-user QPS limit for this operation is 1,000 calls per second. If the limit is exceeded, API calls will be throttled, which may affect your business. Please call the operation reasonably. + * + * @deprecated openAPI AddSmsTemplate is deprecated, please use Dysmsapi::2017-05-25::CreateSmsTemplate instead + * + * @param request - AddSmsTemplateRequest + * + * @returns AddSmsTemplateResponse + * + * @param AddSmsTemplateRequest $request + * + * @return AddSmsTemplateResponse + */ + public function addSmsTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addSmsTemplateWithOptions($request, $runtime); + } + + /** + * Updates the qualification and authorization letter for a signature. + * + * @param request - ChangeSignatureQualificationRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns ChangeSignatureQualificationResponse + * + * @param ChangeSignatureQualificationRequest $request + * @param RuntimeOptions $runtime + * + * @return ChangeSignatureQualificationResponse + */ + public function changeSignatureQualificationWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->authorizationLetterId) { + @$query['AuthorizationLetterId'] = $request->authorizationLetterId; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->qualificationId) { + @$query['QualificationId'] = $request->qualificationId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signatureName) { + @$query['SignatureName'] = $request->signatureName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'ChangeSignatureQualification', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ChangeSignatureQualificationResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Updates the qualification and authorization letter for a signature. + * + * @param request - ChangeSignatureQualificationRequest + * + * @returns ChangeSignatureQualificationResponse + * + * @param ChangeSignatureQualificationRequest $request + * + * @return ChangeSignatureQualificationResponse + */ + public function changeSignatureQualification($request) + { + $runtime = new RuntimeOptions([]); + + return $this->changeSignatureQualificationWithOptions($request, $runtime); + } + + /** + * Checks whether phone numbers support card SMS. + * + * @remarks + * - Alibaba Cloud accounts that have not activated card SMS cannot call this API. + * - Card SMS is currently in the internal invitation phase. Contact your Alibaba Cloud account manager to apply for activation or [contact Alibaba Cloud pre-sales](https://help.aliyun.com/document_detail/464625.html). + * - We recommend that you use the new API [QueryMobilesCardSupport](~~QueryMobilesCardSupport~~) to query whether phone numbers support card SMS. + * ### QPS limit + * The per-user QPS limit for this API is 2,000 calls per second. If the limit is exceeded, API calls are throttled, which may affect your business. Make calls reasonably. + * + * @param request - CheckMobilesCardSupportRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CheckMobilesCardSupportResponse + * + * @param CheckMobilesCardSupportRequest $request + * @param RuntimeOptions $runtime + * + * @return CheckMobilesCardSupportResponse + */ + public function checkMobilesCardSupportWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->mobiles) { + @$query['Mobiles'] = $request->mobiles; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CheckMobilesCardSupport', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CheckMobilesCardSupportResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Checks whether phone numbers support card SMS. + * + * @remarks + * - Alibaba Cloud accounts that have not activated card SMS cannot call this API. + * - Card SMS is currently in the internal invitation phase. Contact your Alibaba Cloud account manager to apply for activation or [contact Alibaba Cloud pre-sales](https://help.aliyun.com/document_detail/464625.html). + * - We recommend that you use the new API [QueryMobilesCardSupport](~~QueryMobilesCardSupport~~) to query whether phone numbers support card SMS. + * ### QPS limit + * The per-user QPS limit for this API is 2,000 calls per second. If the limit is exceeded, API calls are throttled, which may affect your business. Make calls reasonably. + * + * @param request - CheckMobilesCardSupportRequest + * + * @returns CheckMobilesCardSupportResponse + * + * @param CheckMobilesCardSupportRequest $request + * + * @return CheckMobilesCardSupportResponse + */ + public function checkMobilesCardSupport($request) + { + $runtime = new RuntimeOptions([]); + + return $this->checkMobilesCardSupportWithOptions($request, $runtime); + } + + /** + * Reports SMS conversion rate statistics to the Alibaba Cloud SMS platform. + * + * @remarks + * 指标说明:转化率=OTP 转化量/OTP 发送量。 + * - OTP发送量:验证码发送量。 + * - OTP转化量:验证码转换量。(用户成功获取验证码,并进行回传) + * >转化率反馈功能会对业务系统有一定的侵入性,为了防止调用转化率 API 的抖动影响业务逻辑,请考虑: + * >- 使用异步模式(例如:队列或事件驱动)调用 API。 + * >- 添加可降级的方案保护业务逻辑(例如:手动降级开工或者使用断路器自动降级)。 + * + * @param request - ConversionDataIntlRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns ConversionDataIntlResponse + * + * @param ConversionDataIntlRequest $request + * @param RuntimeOptions $runtime + * + * @return ConversionDataIntlResponse + */ + public function conversionDataIntlWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->conversionRate) { + @$query['ConversionRate'] = $request->conversionRate; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->reportTime) { + @$query['ReportTime'] = $request->reportTime; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'ConversionDataIntl', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ConversionDataIntlResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Reports SMS conversion rate statistics to the Alibaba Cloud SMS platform. + * + * @remarks + * 指标说明:转化率=OTP 转化量/OTP 发送量。 + * - OTP发送量:验证码发送量。 + * - OTP转化量:验证码转换量。(用户成功获取验证码,并进行回传) + * >转化率反馈功能会对业务系统有一定的侵入性,为了防止调用转化率 API 的抖动影响业务逻辑,请考虑: + * >- 使用异步模式(例如:队列或事件驱动)调用 API。 + * >- 添加可降级的方案保护业务逻辑(例如:手动降级开工或者使用断路器自动降级)。 + * + * @param request - ConversionDataIntlRequest + * + * @returns ConversionDataIntlResponse + * + * @param ConversionDataIntlRequest $request + * + * @return ConversionDataIntlResponse + */ + public function conversionDataIntl($request) + { + $runtime = new RuntimeOptions([]); + + return $this->conversionDataIntlWithOptions($request, $runtime); + } + + /** + * Creates a card SMS template. + * + * @remarks + * - The card SMS feature is currently available by invitation only. To enable this feature, contact your Alibaba Cloud business manager or our [pre-sales consultation](https://help.aliyun.com/document_detail/464625.html?spm=a2c4g.11186623.0.0.213273d4Xe6UEu#section-81n-72q-ybm) team. + * - This operation saves a card SMS template, submits it to mobile phone vendors for review, and returns a template code. + * - If a card SMS template contains a type or event that a vendor does not support, the system does not submit the template to that vendor for review. For more information, see [Supported template types by vendor](https://help.aliyun.com/document_detail/434611.html). + * - For more examples of card SMS templates, see [Card SMS template examples](https://help.aliyun.com/document_detail/435361.html). + * ### QPS limit + * The QPS limit for a single user is 300. API calls that exceed this limit are throttled, which may impact your business. Plan your calls accordingly. + * + * @param tmpReq - CreateCardSmsTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CreateCardSmsTemplateResponse + * + * @param CreateCardSmsTemplateRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return CreateCardSmsTemplateResponse + */ + public function createCardSmsTemplateWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new CreateCardSmsTemplateShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->template) { + $request->templateShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->template, 'Template', 'json'); + } + + $query = []; + if (null !== $request->factorys) { + @$query['Factorys'] = $request->factorys; + } + + if (null !== $request->memo) { + @$query['Memo'] = $request->memo; + } + + if (null !== $request->templateShrink) { + @$query['Template'] = $request->templateShrink; + } + + if (null !== $request->templateName) { + @$query['TemplateName'] = $request->templateName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CreateCardSmsTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateCardSmsTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Creates a card SMS template. + * + * @remarks + * - The card SMS feature is currently available by invitation only. To enable this feature, contact your Alibaba Cloud business manager or our [pre-sales consultation](https://help.aliyun.com/document_detail/464625.html?spm=a2c4g.11186623.0.0.213273d4Xe6UEu#section-81n-72q-ybm) team. + * - This operation saves a card SMS template, submits it to mobile phone vendors for review, and returns a template code. + * - If a card SMS template contains a type or event that a vendor does not support, the system does not submit the template to that vendor for review. For more information, see [Supported template types by vendor](https://help.aliyun.com/document_detail/434611.html). + * - For more examples of card SMS templates, see [Card SMS template examples](https://help.aliyun.com/document_detail/435361.html). + * ### QPS limit + * The QPS limit for a single user is 300. API calls that exceed this limit are throttled, which may impact your business. Plan your calls accordingly. + * + * @param request - CreateCardSmsTemplateRequest + * + * @returns CreateCardSmsTemplateResponse + * + * @param CreateCardSmsTemplateRequest $request + * + * @return CreateCardSmsTemplateResponse + */ + public function createCardSmsTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createCardSmsTemplateWithOptions($request, $runtime); + } + + /** + * Creates an order to add, update, or delete a digital message signature. + * + * @remarks + * Creates, updates, or deletes a signature. + * + * @param tmpReq - CreateDigitalSignOrderRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CreateDigitalSignOrderResponse + * + * @param CreateDigitalSignOrderRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return CreateDigitalSignOrderResponse + */ + public function createDigitalSignOrderWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new CreateDigitalSignOrderShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->orderContext) { + $request->orderContextShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->orderContext, 'OrderContext', 'json'); + } + + $query = []; + if (null !== $request->extendMessage) { + @$query['ExtendMessage'] = $request->extendMessage; + } + + if (null !== $request->orderContextShrink) { + @$query['OrderContext'] = $request->orderContextShrink; + } + + if (null !== $request->orderType) { + @$query['OrderType'] = $request->orderType; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->qualificationId) { + @$query['QualificationId'] = $request->qualificationId; + } + + if (null !== $request->qualificationVersion) { + @$query['QualificationVersion'] = $request->qualificationVersion; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signId) { + @$query['SignId'] = $request->signId; + } + + if (null !== $request->signIndustry) { + @$query['SignIndustry'] = $request->signIndustry; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->signSource) { + @$query['SignSource'] = $request->signSource; + } + + if (null !== $request->submitter) { + @$query['Submitter'] = $request->submitter; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CreateDigitalSignOrder', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateDigitalSignOrderResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Creates an order to add, update, or delete a digital message signature. + * + * @remarks + * Creates, updates, or deletes a signature. + * + * @param request - CreateDigitalSignOrderRequest + * + * @returns CreateDigitalSignOrderResponse + * + * @param CreateDigitalSignOrderRequest $request + * + * @return CreateDigitalSignOrderResponse + */ + public function createDigitalSignOrder($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createDigitalSignOrderWithOptions($request, $runtime); + } + + /** + * Creates a digital SMS template. + * + * @remarks + * Use this operation to create a reusable template for your digital SMS messages. + * + * @param request - CreateDigitalSmsTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CreateDigitalSmsTemplateResponse + * + * @param CreateDigitalSmsTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateDigitalSmsTemplateResponse + */ + public function createDigitalSmsTemplateWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->remark) { + @$query['Remark'] = $request->remark; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->templateContents) { + @$query['TemplateContents'] = $request->templateContents; + } + + if (null !== $request->templateName) { + @$query['TemplateName'] = $request->templateName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CreateDigitalSmsTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateDigitalSmsTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Creates a digital SMS template. + * + * @remarks + * Use this operation to create a reusable template for your digital SMS messages. + * + * @param request - CreateDigitalSmsTemplateRequest + * + * @returns CreateDigitalSmsTemplateResponse + * + * @param CreateDigitalSmsTemplateRequest $request + * + * @return CreateDigitalSmsTemplateResponse + */ + public function createDigitalSmsTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createDigitalSmsTemplateWithOptions($request, $runtime); + } + + /** + * 创建终端5G适配情况查询任务 + * + * @param request - CreateRCSMobileCapableTaskRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CreateRCSMobileCapableTaskResponse + * + * @param CreateRCSMobileCapableTaskRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateRCSMobileCapableTaskResponse + */ + public function createRCSMobileCapableTaskWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->phoneNumbersFile) { + @$query['PhoneNumbersFile'] = $request->phoneNumbersFile; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CreateRCSMobileCapableTask', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateRCSMobileCapableTaskResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 创建终端5G适配情况查询任务 + * + * @param request - CreateRCSMobileCapableTaskRequest + * + * @returns CreateRCSMobileCapableTaskResponse + * + * @param CreateRCSMobileCapableTaskRequest $request + * + * @return CreateRCSMobileCapableTaskResponse + */ + public function createRCSMobileCapableTask($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createRCSMobileCapableTaskWithOptions($request, $runtime); + } + + /** + * 创建5G消息模板 + * + * @param request - CreateRCSTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CreateRCSTemplateResponse + * + * @param CreateRCSTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateRCSTemplateResponse + */ + public function createRCSTemplateWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->relatedSignNames) { + @$query['RelatedSignNames'] = $request->relatedSignNames; + } + + if (null !== $request->templateContent) { + @$query['TemplateContent'] = $request->templateContent; + } + + if (null !== $request->templateFormat) { + @$query['TemplateFormat'] = $request->templateFormat; + } + + if (null !== $request->templateMenu) { + @$query['TemplateMenu'] = $request->templateMenu; + } + + if (null !== $request->templateName) { + @$query['TemplateName'] = $request->templateName; + } + + if (null !== $request->templateRule) { + @$query['TemplateRule'] = $request->templateRule; + } + + if (null !== $request->templateType) { + @$query['TemplateType'] = $request->templateType; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CreateRCSTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateRCSTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 创建5G消息模板 + * + * @param request - CreateRCSTemplateRequest + * + * @returns CreateRCSTemplateResponse + * + * @param CreateRCSTemplateRequest $request + * + * @return CreateRCSTemplateResponse + */ + public function createRCSTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createRCSTemplateWithOptions($request, $runtime); + } + + /** + * 创建短链. + * + * @param request - CreateSmartShortUrlRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CreateSmartShortUrlResponse + * + * @param CreateSmartShortUrlRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateSmartShortUrlResponse + */ + public function createSmartShortUrlWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->outId) { + @$query['OutId'] = $request->outId; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->phoneNumbers) { + @$query['PhoneNumbers'] = $request->phoneNumbers; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->sourceUrl) { + @$query['SourceUrl'] = $request->sourceUrl; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CreateSmartShortUrl', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateSmartShortUrlResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 创建短链. + * + * @param request - CreateSmartShortUrlRequest + * + * @returns CreateSmartShortUrlResponse + * + * @param CreateSmartShortUrlRequest $request + * + * @return CreateSmartShortUrlResponse + */ + public function createSmartShortUrl($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createSmartShortUrlWithOptions($request, $runtime); + } + + /** + * The process for using a live app as a signature source has changed. If you use an app as the signature source, you must call this operation to create an ICP filing record for it. + * + * @remarks + * >Notice: To use a **live app** as a signature source, you must now provide its ICP filing information. This requires you to upload a screenshot of the app\\"s ICP filing. + * + * @param request - CreateSmsAppIcpRecordRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CreateSmsAppIcpRecordResponse + * + * @param CreateSmsAppIcpRecordRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateSmsAppIcpRecordResponse + */ + public function createSmsAppIcpRecordWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->appApprovalDate) { + @$query['AppApprovalDate'] = $request->appApprovalDate; + } + + if (null !== $request->appIcpLicenseNumber) { + @$query['AppIcpLicenseNumber'] = $request->appIcpLicenseNumber; + } + + if (null !== $request->appIcpRecordPic) { + @$query['AppIcpRecordPic'] = $request->appIcpRecordPic; + } + + if (null !== $request->appPrincipalUnitName) { + @$query['AppPrincipalUnitName'] = $request->appPrincipalUnitName; + } + + if (null !== $request->appRuntimePic) { + @$query['AppRuntimePic'] = $request->appRuntimePic; + } + + if (null !== $request->appServiceName) { + @$query['AppServiceName'] = $request->appServiceName; + } + + if (null !== $request->appStoreDownloadPic) { + @$query['AppStoreDownloadPic'] = $request->appStoreDownloadPic; + } + + if (null !== $request->domain) { + @$query['Domain'] = $request->domain; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CreateSmsAppIcpRecord', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateSmsAppIcpRecordResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * The process for using a live app as a signature source has changed. If you use an app as the signature source, you must call this operation to create an ICP filing record for it. + * + * @remarks + * >Notice: To use a **live app** as a signature source, you must now provide its ICP filing information. This requires you to upload a screenshot of the app\\"s ICP filing. + * + * @param request - CreateSmsAppIcpRecordRequest + * + * @returns CreateSmsAppIcpRecordResponse + * + * @param CreateSmsAppIcpRecordRequest $request + * + * @return CreateSmsAppIcpRecordResponse + */ + public function createSmsAppIcpRecord($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createSmsAppIcpRecordWithOptions($request, $runtime); + } + + /** + * If the qualification is intended for use by a third party or the requested signature involves third-party rights, you must obtain third-party authorization and create an authorization letter before submitting the application. + * + * @remarks + * - Before use, please read the [Authorization Letter Specifications](https://help.aliyun.com/document_detail/56741.html). Download the [Authorization Letter Template](https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20250414/bvpcmo/%E6%8E%88%E6%9D%83%E5%A7%94%E6%89%98%E4%B9%A6%E6%A8%A1%E7%89%88.doc), fill it out and stamp it according to the specifications, and then upload it. + * - The authorization letter you create can be used when applying for SMS qualifications or SMS signatures. If your qualification or signature is intended for use by a third party, you must create and submit an authorization letter. + * - After creating an authorization letter, you can call [QuerySmsAuthorizationLetter](~~QuerySmsAuthorizationLetter~~) to query the details of the created authorization letter. Authorization letter information created through the API is synchronized to the Short Message Service console. + * + * @param tmpReq - CreateSmsAuthorizationLetterRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CreateSmsAuthorizationLetterResponse + * + * @param CreateSmsAuthorizationLetterRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return CreateSmsAuthorizationLetterResponse + */ + public function createSmsAuthorizationLetterWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new CreateSmsAuthorizationLetterShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->signList) { + $request->signListShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->signList, 'SignList', 'json'); + } + + $query = []; + if (null !== $request->authorization) { + @$query['Authorization'] = $request->authorization; + } + + if (null !== $request->authorizationLetterExpDate) { + @$query['AuthorizationLetterExpDate'] = $request->authorizationLetterExpDate; + } + + if (null !== $request->authorizationLetterName) { + @$query['AuthorizationLetterName'] = $request->authorizationLetterName; + } + + if (null !== $request->authorizationLetterPic) { + @$query['AuthorizationLetterPic'] = $request->authorizationLetterPic; + } + + if (null !== $request->organizationCode) { + @$query['OrganizationCode'] = $request->organizationCode; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->proxyAuthorization) { + @$query['ProxyAuthorization'] = $request->proxyAuthorization; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signListShrink) { + @$query['SignList'] = $request->signListShrink; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CreateSmsAuthorizationLetter', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateSmsAuthorizationLetterResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * If the qualification is intended for use by a third party or the requested signature involves third-party rights, you must obtain third-party authorization and create an authorization letter before submitting the application. + * + * @remarks + * - Before use, please read the [Authorization Letter Specifications](https://help.aliyun.com/document_detail/56741.html). Download the [Authorization Letter Template](https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20250414/bvpcmo/%E6%8E%88%E6%9D%83%E5%A7%94%E6%89%98%E4%B9%A6%E6%A8%A1%E7%89%88.doc), fill it out and stamp it according to the specifications, and then upload it. + * - The authorization letter you create can be used when applying for SMS qualifications or SMS signatures. If your qualification or signature is intended for use by a third party, you must create and submit an authorization letter. + * - After creating an authorization letter, you can call [QuerySmsAuthorizationLetter](~~QuerySmsAuthorizationLetter~~) to query the details of the created authorization letter. Authorization letter information created through the API is synchronized to the Short Message Service console. + * + * @param request - CreateSmsAuthorizationLetterRequest + * + * @returns CreateSmsAuthorizationLetterResponse + * + * @param CreateSmsAuthorizationLetterRequest $request + * + * @return CreateSmsAuthorizationLetterResponse + */ + public function createSmsAuthorizationLetter($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createSmsAuthorizationLetterWithOptions($request, $runtime); + } + + /** + * An SMS signature identifies the sender of an SMS message. Before sending SMS messages, you must apply for a signature and a template. The system prepends the approved SMS signature to the message content and sends them together to the recipient. + * + * @remarks + * - For details about the changes between the new and original operations, see [Announcement on updating signature and template operations for Short Message Service](https://help.aliyun.com/document_detail/2806975.html). + * - Users who verify your identity - Individual account can apply for one formal signature per calendar day per Alibaba Cloud account. Users who verify your identity - Enterprise account currently have no such limit. For details about the differences between individual and enterprise user privileges, see [Before you begin](https://help.aliyun.com/document_detail/55324.html). + * - Read the [Signature specifications](https://help.aliyun.com/document_detail/108076.html) to learn about the SMS signature review standards. + * - Signatures applied for through the API are synchronized to the Short Message Service console. For console-related operations, see [SMS signatures](https://help.aliyun.com/document_detail/108073.html). + * - After you submit a signature application, you can call the [GetSmsSign](https://help.aliyun.com/document_detail/2807429.html) operation to query the signature review status and details. You can also [configure receipt messages](https://help.aliyun.com/document_detail/101508.html) and use [SignSmsReport](https://help.aliyun.com/document_detail/120998.html) to obtain the signature review status messages. + * + * @param tmpReq - CreateSmsSignRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CreateSmsSignResponse + * + * @param CreateSmsSignRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return CreateSmsSignResponse + */ + public function createSmsSignWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new CreateSmsSignShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->moreData) { + $request->moreDataShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->moreData, 'MoreData', 'json'); + } + + $query = []; + if (null !== $request->appIcpRecordId) { + @$query['AppIcpRecordId'] = $request->appIcpRecordId; + } + + if (null !== $request->applySceneContent) { + @$query['ApplySceneContent'] = $request->applySceneContent; + } + + if (null !== $request->authorizationLetterId) { + @$query['AuthorizationLetterId'] = $request->authorizationLetterId; + } + + if (null !== $request->moreDataShrink) { + @$query['MoreData'] = $request->moreDataShrink; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->qualificationId) { + @$query['QualificationId'] = $request->qualificationId; + } + + if (null !== $request->remark) { + @$query['Remark'] = $request->remark; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->signSource) { + @$query['SignSource'] = $request->signSource; + } + + if (null !== $request->signType) { + @$query['SignType'] = $request->signType; + } + + if (null !== $request->thirdParty) { + @$query['ThirdParty'] = $request->thirdParty; + } + + if (null !== $request->trademarkId) { + @$query['TrademarkId'] = $request->trademarkId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CreateSmsSign', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateSmsSignResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * An SMS signature identifies the sender of an SMS message. Before sending SMS messages, you must apply for a signature and a template. The system prepends the approved SMS signature to the message content and sends them together to the recipient. + * + * @remarks + * - For details about the changes between the new and original operations, see [Announcement on updating signature and template operations for Short Message Service](https://help.aliyun.com/document_detail/2806975.html). + * - Users who verify your identity - Individual account can apply for one formal signature per calendar day per Alibaba Cloud account. Users who verify your identity - Enterprise account currently have no such limit. For details about the differences between individual and enterprise user privileges, see [Before you begin](https://help.aliyun.com/document_detail/55324.html). + * - Read the [Signature specifications](https://help.aliyun.com/document_detail/108076.html) to learn about the SMS signature review standards. + * - Signatures applied for through the API are synchronized to the Short Message Service console. For console-related operations, see [SMS signatures](https://help.aliyun.com/document_detail/108073.html). + * - After you submit a signature application, you can call the [GetSmsSign](https://help.aliyun.com/document_detail/2807429.html) operation to query the signature review status and details. You can also [configure receipt messages](https://help.aliyun.com/document_detail/101508.html) and use [SignSmsReport](https://help.aliyun.com/document_detail/120998.html) to obtain the signature review status messages. + * + * @param request - CreateSmsSignRequest + * + * @returns CreateSmsSignResponse + * + * @param CreateSmsSignRequest $request + * + * @return CreateSmsSignResponse + */ + public function createSmsSign($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createSmsSignWithOptions($request, $runtime); + } + + /** + * A message template defines the content of an SMS message. This content includes the message text and any variables. You can create templates for various business needs, such as sending verification codes, notifications, or promotional messages. A template must be approved before you can use it to send messages. + * + * @remarks + * - For details on the API changes for signatures and templates, see the [Announcement on Signature and Template API Updates for Short Message Service](https://help.aliyun.com/document_detail/2806975.html). + * - Wait at least 30 seconds between API calls when applying for a message template. + * - Message templates you apply for via the API are synchronized to the Short Message Service console. For details on how to manage message templates in the console, see [Message templates](https://help.aliyun.com/document_detail/108085.html). + * - After you submit a template for review, you can call the [GetSmsTemplate](https://help.aliyun.com/document_detail/2807433.html) API to query the template\\"s review status and details. You can also [configure status reports](https://help.aliyun.com/document_detail/101508.html) to receive the template\\"s review status through [TemplateSmsReport](https://help.aliyun.com/document_detail/120999.html). + * - Message templates for Chinese mainland messages and international messages are not interchangeable. Apply for message templates based on your use case. + * - Only enterprise-verified users can apply for message templates for promotional messages and international messages. For details on the permission differences between individual and enterprise users, see [Usage notes](https://help.aliyun.com/document_detail/55324.html). + * + * @param tmpReq - CreateSmsTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CreateSmsTemplateResponse + * + * @param CreateSmsTemplateRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return CreateSmsTemplateResponse + */ + public function createSmsTemplateWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new CreateSmsTemplateShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->moreData) { + $request->moreDataShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->moreData, 'MoreData', 'json'); + } + + $query = []; + if (null !== $request->applySceneContent) { + @$query['ApplySceneContent'] = $request->applySceneContent; + } + + if (null !== $request->intlType) { + @$query['IntlType'] = $request->intlType; + } + + if (null !== $request->moreDataShrink) { + @$query['MoreData'] = $request->moreDataShrink; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->relatedSignName) { + @$query['RelatedSignName'] = $request->relatedSignName; + } + + if (null !== $request->remark) { + @$query['Remark'] = $request->remark; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->templateContent) { + @$query['TemplateContent'] = $request->templateContent; + } + + if (null !== $request->templateName) { + @$query['TemplateName'] = $request->templateName; + } + + if (null !== $request->templateRule) { + @$query['TemplateRule'] = $request->templateRule; + } + + if (null !== $request->templateType) { + @$query['TemplateType'] = $request->templateType; + } + + if (null !== $request->trafficDriving) { + @$query['TrafficDriving'] = $request->trafficDriving; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CreateSmsTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateSmsTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * A message template defines the content of an SMS message. This content includes the message text and any variables. You can create templates for various business needs, such as sending verification codes, notifications, or promotional messages. A template must be approved before you can use it to send messages. + * + * @remarks + * - For details on the API changes for signatures and templates, see the [Announcement on Signature and Template API Updates for Short Message Service](https://help.aliyun.com/document_detail/2806975.html). + * - Wait at least 30 seconds between API calls when applying for a message template. + * - Message templates you apply for via the API are synchronized to the Short Message Service console. For details on how to manage message templates in the console, see [Message templates](https://help.aliyun.com/document_detail/108085.html). + * - After you submit a template for review, you can call the [GetSmsTemplate](https://help.aliyun.com/document_detail/2807433.html) API to query the template\\"s review status and details. You can also [configure status reports](https://help.aliyun.com/document_detail/101508.html) to receive the template\\"s review status through [TemplateSmsReport](https://help.aliyun.com/document_detail/120999.html). + * - Message templates for Chinese mainland messages and international messages are not interchangeable. Apply for message templates based on your use case. + * - Only enterprise-verified users can apply for message templates for promotional messages and international messages. For details on the permission differences between individual and enterprise users, see [Usage notes](https://help.aliyun.com/document_detail/55324.html). + * + * @param request - CreateSmsTemplateRequest + * + * @returns CreateSmsTemplateResponse + * + * @param CreateSmsTemplateRequest $request + * + * @return CreateSmsTemplateResponse + */ + public function createSmsTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createSmsTemplateWithOptions($request, $runtime); + } + + /** + * Creates a trademark entity. This operation is used when you need to upload trademark information when the signature source is set to trademark. + * + * @remarks + * The trademark must be searchable on the China Trademark Network of the Trademark Office of the China National Intellectual Property Administration, and the trademark owner must match the enterprise name. + * + * @param request - CreateSmsTrademarkRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns CreateSmsTrademarkResponse + * + * @param CreateSmsTrademarkRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateSmsTrademarkResponse + */ + public function createSmsTrademarkWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->trademarkApplicantName) { + @$query['TrademarkApplicantName'] = $request->trademarkApplicantName; + } + + if (null !== $request->trademarkEffExpDate) { + @$query['TrademarkEffExpDate'] = $request->trademarkEffExpDate; + } + + if (null !== $request->trademarkName) { + @$query['TrademarkName'] = $request->trademarkName; + } + + if (null !== $request->trademarkPic) { + @$query['TrademarkPic'] = $request->trademarkPic; + } + + if (null !== $request->trademarkRegistrationNumber) { + @$query['TrademarkRegistrationNumber'] = $request->trademarkRegistrationNumber; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'CreateSmsTrademark', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateSmsTrademarkResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Creates a trademark entity. This operation is used when you need to upload trademark information when the signature source is set to trademark. + * + * @remarks + * The trademark must be searchable on the China Trademark Network of the Trademark Office of the China National Intellectual Property Administration, and the trademark owner must match the enterprise name. + * + * @param request - CreateSmsTrademarkRequest + * + * @returns CreateSmsTrademarkResponse + * + * @param CreateSmsTrademarkRequest $request + * + * @return CreateSmsTrademarkResponse + */ + public function createSmsTrademark($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createSmsTrademarkWithOptions($request, $runtime); + } + + /** + * 删除验证码签名. + * + * @param request - DeleteExtCodeSignRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns DeleteExtCodeSignResponse + * + * @param DeleteExtCodeSignRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteExtCodeSignResponse + */ + public function deleteExtCodeSignWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->extCode) { + @$query['ExtCode'] = $request->extCode; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteExtCodeSign', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteExtCodeSignResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 删除验证码签名. + * + * @param request - DeleteExtCodeSignRequest + * + * @returns DeleteExtCodeSignResponse + * + * @param DeleteExtCodeSignRequest $request + * + * @return DeleteExtCodeSignResponse + */ + public function deleteExtCodeSign($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteExtCodeSignWithOptions($request, $runtime); + } + + /** + * Deletes a short URL. After deletion, the short URL is no longer usable and cannot be resolved to the source URL. + * + * @remarks + * >Notice: + * Short Message Service does not currently support this API operation. + * ### QPS limit + * The QPS limit for a single user is 100. Calls that exceed this limit are subject to rate limiting, which may affect your business. To prevent disruptions, call this operation at a reasonable frequency. + * + * @param request - DeleteShortUrlRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns DeleteShortUrlResponse + * + * @param DeleteShortUrlRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteShortUrlResponse + */ + public function deleteShortUrlWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $body = []; + if (null !== $request->sourceUrl) { + @$body['SourceUrl'] = $request->sourceUrl; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + 'body' => Utils::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'DeleteShortUrl', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteShortUrlResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Deletes a short URL. After deletion, the short URL is no longer usable and cannot be resolved to the source URL. + * + * @remarks + * >Notice: + * Short Message Service does not currently support this API operation. + * ### QPS limit + * The QPS limit for a single user is 100. Calls that exceed this limit are subject to rate limiting, which may affect your business. To prevent disruptions, call this operation at a reasonable frequency. + * + * @param request - DeleteShortUrlRequest + * + * @returns DeleteShortUrlResponse + * + * @param DeleteShortUrlRequest $request + * + * @return DeleteShortUrlResponse + */ + public function deleteShortUrl($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteShortUrlWithOptions($request, $runtime); + } + + /** + * If you no longer use an SMS qualification or need to delete it for other reasons, call this API or delete the SMS qualification in the Short Message Service console. + * + * @remarks + * >Warning: Once a qualification is deleted, it cannot be restored or selected when you apply for signatures later. Proceed with caution. + * - Qualifications under review cannot be modified or deleted. You can withdraw the application in the Short Message Service [console](https://dysms.console.aliyun.com/domestic/text/qualification) before performing the operation. + * - Approved qualifications that have been bound to signatures cannot be deleted. + * - Rejected qualifications can be directly resubmitted for review after you [modify the qualification information](~~UpdateSmsQualification~~). + * + * @param request - DeleteSmsQualificationRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns DeleteSmsQualificationResponse + * + * @param DeleteSmsQualificationRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteSmsQualificationResponse + */ + public function deleteSmsQualificationWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->orderId) { + @$query['OrderId'] = $request->orderId; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->qualificationGroupId) { + @$query['QualificationGroupId'] = $request->qualificationGroupId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteSmsQualification', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteSmsQualificationResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * If you no longer use an SMS qualification or need to delete it for other reasons, call this API or delete the SMS qualification in the Short Message Service console. + * + * @remarks + * >Warning: Once a qualification is deleted, it cannot be restored or selected when you apply for signatures later. Proceed with caution. + * - Qualifications under review cannot be modified or deleted. You can withdraw the application in the Short Message Service [console](https://dysms.console.aliyun.com/domestic/text/qualification) before performing the operation. + * - Approved qualifications that have been bound to signatures cannot be deleted. + * - Rejected qualifications can be directly resubmitted for review after you [modify the qualification information](~~UpdateSmsQualification~~). + * + * @param request - DeleteSmsQualificationRequest + * + * @returns DeleteSmsQualificationResponse + * + * @param DeleteSmsQualificationRequest $request + * + * @return DeleteSmsQualificationResponse + */ + public function deleteSmsQualification($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteSmsQualificationWithOptions($request, $runtime); + } + + /** + * If you no longer use an SMS signature and need to delete it, call this operation or delete the SMS signature in the SMS Service console. + * + * @remarks + * - You can delete signatures that are in the Withdrawn, Failed, or Approved state. You cannot delete signatures that are in the Pending Approval state. + * - Deleted SMS signatures cannot be recovered, and the signature can no longer be used to send SMS messages. Proceed with caution. + * - Signature deletion operations performed via the API are synchronized to the SMS Service console. For information about how to manage templates in the console, see [SMS signatures](https://help.aliyun.com/document_detail/108073.html). + * + * @param request - DeleteSmsSignRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns DeleteSmsSignResponse + * + * @param DeleteSmsSignRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteSmsSignResponse + */ + public function deleteSmsSignWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteSmsSign', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteSmsSignResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * If you no longer use an SMS signature and need to delete it, call this operation or delete the SMS signature in the SMS Service console. + * + * @remarks + * - You can delete signatures that are in the Withdrawn, Failed, or Approved state. You cannot delete signatures that are in the Pending Approval state. + * - Deleted SMS signatures cannot be recovered, and the signature can no longer be used to send SMS messages. Proceed with caution. + * - Signature deletion operations performed via the API are synchronized to the SMS Service console. For information about how to manage templates in the console, see [SMS signatures](https://help.aliyun.com/document_detail/108073.html). + * + * @param request - DeleteSmsSignRequest + * + * @returns DeleteSmsSignResponse + * + * @param DeleteSmsSignRequest $request + * + * @return DeleteSmsSignResponse + */ + public function deleteSmsSign($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteSmsSignWithOptions($request, $runtime); + } + + /** + * Deletes an SMS template that you no longer need. + * + * @remarks + * - 支持删除已撤回、审核失败或审核通过的模板,审核中的短信模板不支持删除。 + * - 删除短信模板后不可恢复,且后续不可再使用该模板发送短信,请谨慎操作。 + * - 通过接口删除模板的操作会在短信服务控制台同步,在控制台对模板的相关操作,请参见[短信模板](https://help.aliyun.com/document_detail/108085.html)。 + * ### QPS限制 + * 本接口的单用户QPS限制为1000次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @param request - DeleteSmsTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns DeleteSmsTemplateResponse + * + * @param DeleteSmsTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteSmsTemplateResponse + */ + public function deleteSmsTemplateWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteSmsTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteSmsTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Deletes an SMS template that you no longer need. + * + * @remarks + * - 支持删除已撤回、审核失败或审核通过的模板,审核中的短信模板不支持删除。 + * - 删除短信模板后不可恢复,且后续不可再使用该模板发送短信,请谨慎操作。 + * - 通过接口删除模板的操作会在短信服务控制台同步,在控制台对模板的相关操作,请参见[短信模板](https://help.aliyun.com/document_detail/108085.html)。 + * ### QPS限制 + * 本接口的单用户QPS限制为1000次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @param request - DeleteSmsTemplateRequest + * + * @returns DeleteSmsTemplateResponse + * + * @param DeleteSmsTemplateRequest $request + * + * @return DeleteSmsTemplateResponse + */ + public function deleteSmsTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteSmsTemplateWithOptions($request, $runtime); + } + + /** + * Queries the card SMS sending records and sending status of a single phone number. + * + * @param request - GetCardSmsDetailsRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns GetCardSmsDetailsResponse + * + * @param GetCardSmsDetailsRequest $request + * @param RuntimeOptions $runtime + * + * @return GetCardSmsDetailsResponse + */ + public function getCardSmsDetailsWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->bizCardId) { + @$query['BizCardId'] = $request->bizCardId; + } + + if (null !== $request->bizDigitId) { + @$query['BizDigitId'] = $request->bizDigitId; + } + + if (null !== $request->bizSmsId) { + @$query['BizSmsId'] = $request->bizSmsId; + } + + if (null !== $request->currentPage) { + @$query['CurrentPage'] = $request->currentPage; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->pageSize) { + @$query['PageSize'] = $request->pageSize; + } + + if (null !== $request->phoneNumber) { + @$query['PhoneNumber'] = $request->phoneNumber; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->sendDate) { + @$query['SendDate'] = $request->sendDate; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'GetCardSmsDetails', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetCardSmsDetailsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries the card SMS sending records and sending status of a single phone number. + * + * @param request - GetCardSmsDetailsRequest + * + * @returns GetCardSmsDetailsResponse + * + * @param GetCardSmsDetailsRequest $request + * + * @return GetCardSmsDetailsResponse + */ + public function getCardSmsDetails($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getCardSmsDetailsWithOptions($request, $runtime); + } + + /** + * Retrieves the short URL for a card message. + * + * @remarks + * - 目前卡片短信在内部邀约阶段,请联系您的阿里云商务经理申请开通或联系[阿里云售前咨询](https://help.aliyun.com/document_detail/464625.html?spm=a2c4g.11186623.0.0.213273d4Xe6UEu#section-81n-72q-ybm)。 + * ### QPS限制 + * - 本接口的单用户QPS限制为1000次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @param request - GetCardSmsLinkRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns GetCardSmsLinkResponse + * + * @param GetCardSmsLinkRequest $request + * @param RuntimeOptions $runtime + * + * @return GetCardSmsLinkResponse + */ + public function getCardSmsLinkWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->cardCodeType) { + @$query['CardCodeType'] = $request->cardCodeType; + } + + if (null !== $request->cardLinkType) { + @$query['CardLinkType'] = $request->cardLinkType; + } + + if (null !== $request->cardTemplateCode) { + @$query['CardTemplateCode'] = $request->cardTemplateCode; + } + + if (null !== $request->cardTemplateParamJson) { + @$query['CardTemplateParamJson'] = $request->cardTemplateParamJson; + } + + if (null !== $request->customShortCodeJson) { + @$query['CustomShortCodeJson'] = $request->customShortCodeJson; + } + + if (null !== $request->domain) { + @$query['Domain'] = $request->domain; + } + + if (null !== $request->outId) { + @$query['OutId'] = $request->outId; + } + + if (null !== $request->phoneNumberJson) { + @$query['PhoneNumberJson'] = $request->phoneNumberJson; + } + + if (null !== $request->signNameJson) { + @$query['SignNameJson'] = $request->signNameJson; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'GetCardSmsLink', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetCardSmsLinkResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Retrieves the short URL for a card message. + * + * @remarks + * - 目前卡片短信在内部邀约阶段,请联系您的阿里云商务经理申请开通或联系[阿里云售前咨询](https://help.aliyun.com/document_detail/464625.html?spm=a2c4g.11186623.0.0.213273d4Xe6UEu#section-81n-72q-ybm)。 + * ### QPS限制 + * - 本接口的单用户QPS限制为1000次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @param request - GetCardSmsLinkRequest + * + * @returns GetCardSmsLinkResponse + * + * @param GetCardSmsLinkRequest $request + * + * @return GetCardSmsLinkResponse + */ + public function getCardSmsLink($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getCardSmsLinkWithOptions($request, $runtime); + } + + /** + * Converts images and videos uploaded to OSS storage for card SMS into resource data for unified management, and returns a resource ID. You can manage the returned resource ID as needed. + * + * @remarks + * ### QPS限制 + * 本接口的单用户QPS限制为300次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @param request - GetMediaResourceIdRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns GetMediaResourceIdResponse + * + * @param GetMediaResourceIdRequest $request + * @param RuntimeOptions $runtime + * + * @return GetMediaResourceIdResponse + */ + public function getMediaResourceIdWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->extendInfo) { + @$query['ExtendInfo'] = $request->extendInfo; + } + + if (null !== $request->fileSize) { + @$query['FileSize'] = $request->fileSize; + } + + if (null !== $request->memo) { + @$query['Memo'] = $request->memo; + } + + if (null !== $request->ossKey) { + @$query['OssKey'] = $request->ossKey; + } + + if (null !== $request->resourceType) { + @$query['ResourceType'] = $request->resourceType; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'GetMediaResourceId', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetMediaResourceIdResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Converts images and videos uploaded to OSS storage for card SMS into resource data for unified management, and returns a resource ID. You can manage the returned resource ID as needed. + * + * @remarks + * ### QPS限制 + * 本接口的单用户QPS限制为300次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @param request - GetMediaResourceIdRequest + * + * @returns GetMediaResourceIdResponse + * + * @param GetMediaResourceIdRequest $request + * + * @return GetMediaResourceIdResponse + */ + public function getMediaResourceId($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getMediaResourceIdWithOptions($request, $runtime); + } + + /** + * Retrieves the OSS resource configuration information for card messages. This information is used for subsequent OSS file upload operations. + * + * @remarks + * - 您在调用卡片短信相关API接口前,首先需要开通卡片短信功能,目前卡片短信在内部邀约阶段,请联系您的阿里云商务经理申请开通或联系[阿里云售前咨询](https://help.aliyun.com/document_detail/464625.html)。 + * - 卡片短信模板中使用的图片、视频等素材资源可上传到OSS文件系统保存。文件上传操作,请参见[OSS文件上传](https://help.aliyun.com/document_detail/437303.html)。 + * ### QPS限制 + * 本接口的单用户QPS限制为300次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns GetOSSInfoForCardTemplateResponse + * + * @param RuntimeOptions $runtime + * + * @return GetOSSInfoForCardTemplateResponse + */ + public function getOSSInfoForCardTemplateWithOptions($runtime) + { + $req = new OpenApiRequest([]); + $params = new Params([ + 'action' => 'GetOSSInfoForCardTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetOSSInfoForCardTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Retrieves the OSS resource configuration information for card messages. This information is used for subsequent OSS file upload operations. + * + * @remarks + * - 您在调用卡片短信相关API接口前,首先需要开通卡片短信功能,目前卡片短信在内部邀约阶段,请联系您的阿里云商务经理申请开通或联系[阿里云售前咨询](https://help.aliyun.com/document_detail/464625.html)。 + * - 卡片短信模板中使用的图片、视频等素材资源可上传到OSS文件系统保存。文件上传操作,请参见[OSS文件上传](https://help.aliyun.com/document_detail/437303.html)。 + * ### QPS限制 + * 本接口的单用户QPS限制为300次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @returns GetOSSInfoForCardTemplateResponse + * + * @return GetOSSInfoForCardTemplateResponse + */ + public function getOSSInfoForCardTemplate() + { + $runtime = new RuntimeOptions([]); + + return $this->getOSSInfoForCardTemplateWithOptions($runtime); + } + + /** + * Obtains OSS resource configuration information, which will be used for subsequent OSS file upload operations. + * + * @remarks + * - When you create a signature or template, you can upload materials such as login pages with links, backend page screenshots, software copyrights, and supplementary agreements. These materials help reviewers understand the details of your business. If you have multiple materials, you can combine them into one file. The supported formats are png, jpg, jpeg, doc, docx, and pdf. + * - Additional materials required for creating a signature or template can be uploaded to the OSS file system for storage. For information about file upload operations, see [Upload files to OSS](https://help.aliyun.com/document_detail/2833114.html). + * + * @param request - GetOSSInfoForUploadFileRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns GetOSSInfoForUploadFileResponse + * + * @param GetOSSInfoForUploadFileRequest $request + * @param RuntimeOptions $runtime + * + * @return GetOSSInfoForUploadFileResponse + */ + public function getOSSInfoForUploadFileWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->bizType) { + @$query['BizType'] = $request->bizType; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'GetOSSInfoForUploadFile', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetOSSInfoForUploadFileResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Obtains OSS resource configuration information, which will be used for subsequent OSS file upload operations. + * + * @remarks + * - When you create a signature or template, you can upload materials such as login pages with links, backend page screenshots, software copyrights, and supplementary agreements. These materials help reviewers understand the details of your business. If you have multiple materials, you can combine them into one file. The supported formats are png, jpg, jpeg, doc, docx, and pdf. + * - Additional materials required for creating a signature or template can be uploaded to the OSS file system for storage. For information about file upload operations, see [Upload files to OSS](https://help.aliyun.com/document_detail/2833114.html). + * + * @param request - GetOSSInfoForUploadFileRequest + * + * @returns GetOSSInfoForUploadFileResponse + * + * @param GetOSSInfoForUploadFileRequest $request + * + * @return GetOSSInfoForUploadFileResponse + */ + public function getOSSInfoForUploadFile($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getOSSInfoForUploadFileWithOptions($request, $runtime); + } + + /** + * Obtains the OSS resource configuration information for qualification materials. This configuration information will be used for subsequent uploads of qualification files such as authorization letters and enterprise certificates. + * + * @remarks + * - When you apply for a qualification or signature, if the purpose is for other use or involves a third party, you must provide an [authorization letter](https://help.aliyun.com/document_detail/56741.html). + * - After you use this API to obtain the OSS resource configuration information, upload the related qualification materials through OSS. For more information, see [Upload files through OSS](https://help.aliyun.com/document_detail/2833114.html). + * - The names of files to be uploaded cannot contain Chinese characters or special symbols. + * + * @param request - GetQualificationOssInfoRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns GetQualificationOssInfoResponse + * + * @param GetQualificationOssInfoRequest $request + * @param RuntimeOptions $runtime + * + * @return GetQualificationOssInfoResponse + */ + public function getQualificationOssInfoWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->bizType) { + @$query['BizType'] = $request->bizType; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'GetQualificationOssInfo', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetQualificationOssInfoResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Obtains the OSS resource configuration information for qualification materials. This configuration information will be used for subsequent uploads of qualification files such as authorization letters and enterprise certificates. + * + * @remarks + * - When you apply for a qualification or signature, if the purpose is for other use or involves a third party, you must provide an [authorization letter](https://help.aliyun.com/document_detail/56741.html). + * - After you use this API to obtain the OSS resource configuration information, upload the related qualification materials through OSS. For more information, see [Upload files through OSS](https://help.aliyun.com/document_detail/2833114.html). + * - The names of files to be uploaded cannot contain Chinese characters or special symbols. + * + * @param request - GetQualificationOssInfoRequest + * + * @returns GetQualificationOssInfoResponse + * + * @param GetQualificationOssInfoRequest $request + * + * @return GetQualificationOssInfoResponse + */ + public function getQualificationOssInfo($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getQualificationOssInfoWithOptions($request, $runtime); + } + + /** + * 查询5g短信详情. + * + * @param request - GetRCSSignatureRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns GetRCSSignatureResponse + * + * @param GetRCSSignatureRequest $request + * @param RuntimeOptions $runtime + * + * @return GetRCSSignatureResponse + */ + public function getRCSSignatureWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'GetRCSSignature', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetRCSSignatureResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 查询5g短信详情. + * + * @param request - GetRCSSignatureRequest + * + * @returns GetRCSSignatureResponse + * + * @param GetRCSSignatureRequest $request + * + * @return GetRCSSignatureResponse + */ + public function getRCSSignature($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getRCSSignatureWithOptions($request, $runtime); + } + + /** + * Retrieves the OSS information for OCR. + * + * @param request - GetSmsOcrOssInfoRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns GetSmsOcrOssInfoResponse + * + * @param GetSmsOcrOssInfoRequest $request + * @param RuntimeOptions $runtime + * + * @return GetSmsOcrOssInfoResponse + */ + public function getSmsOcrOssInfoWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->taskType) { + @$query['TaskType'] = $request->taskType; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'GetSmsOcrOssInfo', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetSmsOcrOssInfoResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Retrieves the OSS information for OCR. + * + * @param request - GetSmsOcrOssInfoRequest + * + * @returns GetSmsOcrOssInfoResponse + * + * @param GetSmsOcrOssInfoRequest $request + * + * @return GetSmsOcrOssInfoResponse + */ + public function getSmsOcrOssInfo($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getSmsOcrOssInfoWithOptions($request, $runtime); + } + + /** + * Queries the review details of a signature after you apply for it. + * + * @remarks + * - 仅可查询**首次创建**的签名资料或者**最新审核通过**的资料。 + * - 新接口和原接口变更的公告详情请参见[关于短信服务更新签名&模板接口的公告](https://help.aliyun.com/document_detail/2806975.html)。 + * - 审核时间:一般情况下,签名提交后,阿里云预计在 2 个小时内审核完成(审核工作时间:周一至周日 9:00~21:00,法定节假日顺延)。 + * - 如果签名未通过审核,会返回审核失败的原因,请参考[短信审核失败的处理建议](https://help.aliyun.com/document_detail/65990.html),调用[UpdateSmsSign](https://help.aliyun.com/document_detail/2807428.html)接口或在[签名管理](https://dysms.console.aliyun.com/domestic/text/sign)页面修改未审核通过的短信签名。 + * - [QuerySmsSignList](~~QuerySmsSignList~~)接口可以查询您账号下的所有签名,包括签名审核状态、签名类型、签名名称等。 + * - 本接口的单用户QPS限制为150次/秒。超过限制,API调用将会被限流,这可能会影响您的业务,请合理调用。 + * + * @param request - GetSmsSignRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns GetSmsSignResponse + * + * @param GetSmsSignRequest $request + * @param RuntimeOptions $runtime + * + * @return GetSmsSignResponse + */ + public function getSmsSignWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'GetSmsSign', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetSmsSignResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries the review details of a signature after you apply for it. + * + * @remarks + * - 仅可查询**首次创建**的签名资料或者**最新审核通过**的资料。 + * - 新接口和原接口变更的公告详情请参见[关于短信服务更新签名&模板接口的公告](https://help.aliyun.com/document_detail/2806975.html)。 + * - 审核时间:一般情况下,签名提交后,阿里云预计在 2 个小时内审核完成(审核工作时间:周一至周日 9:00~21:00,法定节假日顺延)。 + * - 如果签名未通过审核,会返回审核失败的原因,请参考[短信审核失败的处理建议](https://help.aliyun.com/document_detail/65990.html),调用[UpdateSmsSign](https://help.aliyun.com/document_detail/2807428.html)接口或在[签名管理](https://dysms.console.aliyun.com/domestic/text/sign)页面修改未审核通过的短信签名。 + * - [QuerySmsSignList](~~QuerySmsSignList~~)接口可以查询您账号下的所有签名,包括签名审核状态、签名类型、签名名称等。 + * - 本接口的单用户QPS限制为150次/秒。超过限制,API调用将会被限流,这可能会影响您的业务,请合理调用。 + * + * @param request - GetSmsSignRequest + * + * @returns GetSmsSignResponse + * + * @param GetSmsSignRequest $request + * + * @return GetSmsSignResponse + */ + public function getSmsSign($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getSmsSignWithOptions($request, $runtime); + } + + /** + * Queries the approval details of a template after you submit a template application. You can view the approval status of the template. + * + * @remarks + * - 新接口和原接口变更的公告详情请参见[关于短信服务更新签名&模板接口的公告](https://help.aliyun.com/document_detail/2806975.html)。 + * - 审核时间:一般情况下,模板提交后,阿里云预计在2个小时内审核完成(审核工作时间:周一至周日9:00~21:00,法定节假日顺延)。 + * - 如果模板未通过审核,会返回审核失败的原因,请参考[短信审核失败的处理建议](https://help.aliyun.com/document_detail/65990.html),调用[UpdateSmsTemplate](~~UpdateSmsTemplate~~)接口或在[模板管理](https://dysms.console.aliyun.com/domestic/text/template)页面修改短信模板。 + * - 当前接口是通过模板Code查询单个模板的审核详情。[QuerySmsTemplateList](https://help.aliyun.com/document_detail/419288.html)接口可以查询您当前账号下所有模板的模板详情。 + * + * @param request - GetSmsTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns GetSmsTemplateResponse + * + * @param GetSmsTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return GetSmsTemplateResponse + */ + public function getSmsTemplateWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'GetSmsTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetSmsTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries the approval details of a template after you submit a template application. You can view the approval status of the template. + * + * @remarks + * - 新接口和原接口变更的公告详情请参见[关于短信服务更新签名&模板接口的公告](https://help.aliyun.com/document_detail/2806975.html)。 + * - 审核时间:一般情况下,模板提交后,阿里云预计在2个小时内审核完成(审核工作时间:周一至周日9:00~21:00,法定节假日顺延)。 + * - 如果模板未通过审核,会返回审核失败的原因,请参考[短信审核失败的处理建议](https://help.aliyun.com/document_detail/65990.html),调用[UpdateSmsTemplate](~~UpdateSmsTemplate~~)接口或在[模板管理](https://dysms.console.aliyun.com/domestic/text/template)页面修改短信模板。 + * - 当前接口是通过模板Code查询单个模板的审核详情。[QuerySmsTemplateList](https://help.aliyun.com/document_detail/419288.html)接口可以查询您当前账号下所有模板的模板详情。 + * + * @param request - GetSmsTemplateRequest + * + * @returns GetSmsTemplateResponse + * + * @param GetSmsTemplateRequest $request + * + * @return GetSmsTemplateResponse + */ + public function getSmsTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getSmsTemplateWithOptions($request, $runtime); + } + + /** + * 查询模板列表详情(新接口). + * + * @param tmpReq - GetSmsTemplateListRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns GetSmsTemplateListResponse + * + * @param GetSmsTemplateListRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return GetSmsTemplateListResponse + */ + public function getSmsTemplateListWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new GetSmsTemplateListShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->usableStateList) { + $request->usableStateListShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->usableStateList, 'UsableStateList', 'json'); + } + + $query = []; + if (null !== $request->auditStatus) { + @$query['AuditStatus'] = $request->auditStatus; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->pageIndex) { + @$query['PageIndex'] = $request->pageIndex; + } + + if (null !== $request->pageSize) { + @$query['PageSize'] = $request->pageSize; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + if (null !== $request->templateName) { + @$query['TemplateName'] = $request->templateName; + } + + if (null !== $request->templateTag) { + @$query['TemplateTag'] = $request->templateTag; + } + + if (null !== $request->templateType) { + @$query['TemplateType'] = $request->templateType; + } + + if (null !== $request->usableStateListShrink) { + @$query['UsableStateList'] = $request->usableStateListShrink; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'GetSmsTemplateList', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetSmsTemplateListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 查询模板列表详情(新接口). + * + * @param request - GetSmsTemplateListRequest + * + * @returns GetSmsTemplateListResponse + * + * @param GetSmsTemplateListRequest $request + * + * @return GetSmsTemplateListResponse + */ + public function getSmsTemplateList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getSmsTemplateListWithOptions($request, $runtime); + } + + /** + * Tags are markers that you add to templates. Each tag consists of a key-value pair (Key-Value). You can query the template codes bound to a tag key-value pair, or query all tags bound to a specific template. + * + * @remarks + * You can log on to the Short Message Service (SMS) console and go to the [Template Management](https://dysms.console.aliyun.com/domestic/text/template) page to filter SMS templates that are bound to tag key-value pairs, or click **Details** in the Actions column to view the tags that are bound to the current template. + * ### QPS limit + * The per-user QPS limit of this operation is 50 calls per second. If the limit is exceeded, API calls will be throttled, which may affect your business. Call this operation properly. + * + * @param request - ListTagResourcesRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns ListTagResourcesResponse + * + * @param ListTagResourcesRequest $request + * @param RuntimeOptions $runtime + * + * @return ListTagResourcesResponse + */ + public function listTagResourcesWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->nextToken) { + @$query['NextToken'] = $request->nextToken; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->pageSize) { + @$query['PageSize'] = $request->pageSize; + } + + if (null !== $request->prodCode) { + @$query['ProdCode'] = $request->prodCode; + } + + if (null !== $request->regionId) { + @$query['RegionId'] = $request->regionId; + } + + if (null !== $request->resourceId) { + @$query['ResourceId'] = $request->resourceId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->resourceType) { + @$query['ResourceType'] = $request->resourceType; + } + + if (null !== $request->tag) { + @$query['Tag'] = $request->tag; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'ListTagResources', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ListTagResourcesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Tags are markers that you add to templates. Each tag consists of a key-value pair (Key-Value). You can query the template codes bound to a tag key-value pair, or query all tags bound to a specific template. + * + * @remarks + * You can log on to the Short Message Service (SMS) console and go to the [Template Management](https://dysms.console.aliyun.com/domestic/text/template) page to filter SMS templates that are bound to tag key-value pairs, or click **Details** in the Actions column to view the tags that are bound to the current template. + * ### QPS limit + * The per-user QPS limit of this operation is 50 calls per second. If the limit is exceeded, API calls will be throttled, which may affect your business. Call this operation properly. + * + * @param request - ListTagResourcesRequest + * + * @returns ListTagResourcesResponse + * + * @param ListTagResourcesRequest $request + * + * @return ListTagResourcesResponse + */ + public function listTagResources($request) + { + $runtime = new RuntimeOptions([]); + + return $this->listTagResourcesWithOptions($request, $runtime); + } + + /** + * This operation is discontinued. + * + * @remarks + * - 根据工信部规定与运营商[相关要求](https://help.aliyun.com/document_detail/2806975.html),阿里云进行了签名相关API的功能改造。为提升您签名的审核效率和审核通过率,请您使用新接口[UpdateSmsSign-修改短信签名](https://help.aliyun.com/document_detail/2807428.html)。 + * - 仅支持修改未通过审核的签名,请参考[短信审核失败的处理建议](https://help.aliyun.com/document_detail/65990.html),调用此接口修改后自动提交审核,签名进入待审核状态。 + * - 通过接口修改签名的操作会在短信服务控制台同步,在控制台对签名的相关操作,请参见[短信签名](https://help.aliyun.com/document_detail/108073.html)。 + * + * @param request - ModifySmsSignRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns ModifySmsSignResponse + * + * @param ModifySmsSignRequest $request + * @param RuntimeOptions $runtime + * + * @return ModifySmsSignResponse + */ + public function modifySmsSignWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->remark) { + @$query['Remark'] = $request->remark; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->signSource) { + @$query['SignSource'] = $request->signSource; + } + + if (null !== $request->signType) { + @$query['SignType'] = $request->signType; + } + + $body = []; + if (null !== $request->signFileList) { + @$body['SignFileList'] = $request->signFileList; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + 'body' => Utils::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'ModifySmsSign', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ModifySmsSignResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * This operation is discontinued. + * + * @remarks + * - 根据工信部规定与运营商[相关要求](https://help.aliyun.com/document_detail/2806975.html),阿里云进行了签名相关API的功能改造。为提升您签名的审核效率和审核通过率,请您使用新接口[UpdateSmsSign-修改短信签名](https://help.aliyun.com/document_detail/2807428.html)。 + * - 仅支持修改未通过审核的签名,请参考[短信审核失败的处理建议](https://help.aliyun.com/document_detail/65990.html),调用此接口修改后自动提交审核,签名进入待审核状态。 + * - 通过接口修改签名的操作会在短信服务控制台同步,在控制台对签名的相关操作,请参见[短信签名](https://help.aliyun.com/document_detail/108073.html)。 + * + * @param request - ModifySmsSignRequest + * + * @returns ModifySmsSignResponse + * + * @param ModifySmsSignRequest $request + * + * @return ModifySmsSignResponse + */ + public function modifySmsSign($request) + { + $runtime = new RuntimeOptions([]); + + return $this->modifySmsSignWithOptions($request, $runtime); + } + + /** + * This operation is discontinued. + * + * @remarks + * - 根据工信部规定与运营商[相关要求](https://help.aliyun.com/document_detail/2806975.html),阿里云进行了模板相关API的功能改造。为提升您模板的审核效率和审核通过率,请您使用新接口[UpdateSmsTemplate-修改短信模板](https://help.aliyun.com/document_detail/2807432.html)。 + * - 仅支持修改未通过审核的模板,请参考[短信审核失败的处理建议](https://help.aliyun.com/document_detail/65990.html),调用此接口修改后重新提交审核。 + * - 通过接口修改模板的操作会在短信服务控制台同步,在控制台对模板的相关操作,请参见[短信模板](https://help.aliyun.com/document_detail/108085.html)。 + * ### QPS限制 + * 本接口的单用户QPS限制为1000次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @deprecated openAPI ModifySmsTemplate is deprecated, please use Dysmsapi::2017-05-25::UpdateSmsTemplate instead + * + * @param request - ModifySmsTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns ModifySmsTemplateResponse + * + * @param ModifySmsTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return ModifySmsTemplateResponse + */ + public function modifySmsTemplateWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->remark) { + @$query['Remark'] = $request->remark; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + if (null !== $request->templateContent) { + @$query['TemplateContent'] = $request->templateContent; + } + + if (null !== $request->templateName) { + @$query['TemplateName'] = $request->templateName; + } + + if (null !== $request->templateType) { + @$query['TemplateType'] = $request->templateType; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'ModifySmsTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ModifySmsTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + // Deprecated + /** + * This operation is discontinued. + * + * @remarks + * - 根据工信部规定与运营商[相关要求](https://help.aliyun.com/document_detail/2806975.html),阿里云进行了模板相关API的功能改造。为提升您模板的审核效率和审核通过率,请您使用新接口[UpdateSmsTemplate-修改短信模板](https://help.aliyun.com/document_detail/2807432.html)。 + * - 仅支持修改未通过审核的模板,请参考[短信审核失败的处理建议](https://help.aliyun.com/document_detail/65990.html),调用此接口修改后重新提交审核。 + * - 通过接口修改模板的操作会在短信服务控制台同步,在控制台对模板的相关操作,请参见[短信模板](https://help.aliyun.com/document_detail/108085.html)。 + * ### QPS限制 + * 本接口的单用户QPS限制为1000次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @deprecated openAPI ModifySmsTemplate is deprecated, please use Dysmsapi::2017-05-25::UpdateSmsTemplate instead + * + * @param request - ModifySmsTemplateRequest + * + * @returns ModifySmsTemplateResponse + * + * @param ModifySmsTemplateRequest $request + * + * @return ModifySmsTemplateResponse + */ + public function modifySmsTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->modifySmsTemplateWithOptions($request, $runtime); + } + + /** + * Queries the review status of a card SMS template and returns information about the review by mobile phone vendors. + * + * @remarks + * - Alibaba Cloud accounts that have not activated the card SMS service cannot call this API. + * - The card SMS service is currently in the internal invitation phase. Contact your Alibaba Cloud business manager to apply for activation or [contact Alibaba Cloud pre-sales consultation](https://help.aliyun.com/document_detail/464625.html). + * - You can also log on to the [Domestic Card SMS](https://dysms.console.aliyun.com/domestic/card) page in the console and query the review status of card SMS templates on the Template Management tab. + * ### QPS limit + * The per-user QPS limit for this operation is 300 calls per second. If the limit is exceeded, API calls are throttled, which may affect your business. Call this operation responsibly. + * + * @param request - QueryCardSmsTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QueryCardSmsTemplateResponse + * + * @param QueryCardSmsTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return QueryCardSmsTemplateResponse + */ + public function queryCardSmsTemplateWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QueryCardSmsTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryCardSmsTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries the review status of a card SMS template and returns information about the review by mobile phone vendors. + * + * @remarks + * - Alibaba Cloud accounts that have not activated the card SMS service cannot call this API. + * - The card SMS service is currently in the internal invitation phase. Contact your Alibaba Cloud business manager to apply for activation or [contact Alibaba Cloud pre-sales consultation](https://help.aliyun.com/document_detail/464625.html). + * - You can also log on to the [Domestic Card SMS](https://dysms.console.aliyun.com/domestic/card) page in the console and query the review status of card SMS templates on the Template Management tab. + * ### QPS limit + * The per-user QPS limit for this operation is 300 calls per second. If the limit is exceeded, API calls are throttled, which may affect your business. Call this operation responsibly. + * + * @param request - QueryCardSmsTemplateRequest + * + * @returns QueryCardSmsTemplateResponse + * + * @param QueryCardSmsTemplateRequest $request + * + * @return QueryCardSmsTemplateResponse + */ + public function queryCardSmsTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryCardSmsTemplateWithOptions($request, $runtime); + } + + /** + * Queries the parsing data of a specified card SMS template. The parsing data includes the number of successful SMS parsing receipts, the number of message exposures, and the number of message clicks. + * + * @remarks + * ### QPS limit + * The QPS limit on this operation is 300 calls per second per user. If the number of calls per second exceeds the limit, throttling is triggered. This may affect your business. Call this operation at a reasonable pace. + * + * @param request - QueryCardSmsTemplateReportRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QueryCardSmsTemplateReportResponse + * + * @param QueryCardSmsTemplateReportRequest $request + * @param RuntimeOptions $runtime + * + * @return QueryCardSmsTemplateReportResponse + */ + public function queryCardSmsTemplateReportWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->endDate) { + @$query['EndDate'] = $request->endDate; + } + + if (null !== $request->startDate) { + @$query['StartDate'] = $request->startDate; + } + + if (null !== $request->templateCodes) { + @$query['TemplateCodes'] = $request->templateCodes; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QueryCardSmsTemplateReport', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryCardSmsTemplateReportResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries the parsing data of a specified card SMS template. The parsing data includes the number of successful SMS parsing receipts, the number of message exposures, and the number of message clicks. + * + * @remarks + * ### QPS limit + * The QPS limit on this operation is 300 calls per second per user. If the number of calls per second exceeds the limit, throttling is triggered. This may affect your business. Call this operation at a reasonable pace. + * + * @param request - QueryCardSmsTemplateReportRequest + * + * @returns QueryCardSmsTemplateReportResponse + * + * @param QueryCardSmsTemplateReportRequest $request + * + * @return QueryCardSmsTemplateReportResponse + */ + public function queryCardSmsTemplateReport($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryCardSmsTemplateReportWithOptions($request, $runtime); + } + + /** + * Retrieves the details of a digital SMS signature by its name. + * + * @remarks + * You can query only the digital SMS signatures that belong to your Alibaba Cloud account. + * + * @param request - QueryDigitalSignByNameRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QueryDigitalSignByNameResponse + * + * @param QueryDigitalSignByNameRequest $request + * @param RuntimeOptions $runtime + * + * @return QueryDigitalSignByNameResponse + */ + public function queryDigitalSignByNameWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QueryDigitalSignByName', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryDigitalSignByNameResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Retrieves the details of a digital SMS signature by its name. + * + * @remarks + * You can query only the digital SMS signatures that belong to your Alibaba Cloud account. + * + * @param request - QueryDigitalSignByNameRequest + * + * @returns QueryDigitalSignByNameResponse + * + * @param QueryDigitalSignByNameRequest $request + * + * @return QueryDigitalSignByNameResponse + */ + public function queryDigitalSignByName($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryDigitalSignByNameWithOptions($request, $runtime); + } + + /** + * 查询验证码签名. + * + * @param request - QueryExtCodeSignRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QueryExtCodeSignResponse + * + * @param QueryExtCodeSignRequest $request + * @param RuntimeOptions $runtime + * + * @return QueryExtCodeSignResponse + */ + public function queryExtCodeSignWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->extCode) { + @$query['ExtCode'] = $request->extCode; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->pageNo) { + @$query['PageNo'] = $request->pageNo; + } + + if (null !== $request->pageSize) { + @$query['PageSize'] = $request->pageSize; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QueryExtCodeSign', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryExtCodeSignResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 查询验证码签名. + * + * @param request - QueryExtCodeSignRequest + * + * @returns QueryExtCodeSignResponse + * + * @param QueryExtCodeSignRequest $request + * + * @return QueryExtCodeSignResponse + */ + public function queryExtCodeSign($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryExtCodeSignWithOptions($request, $runtime); + } + + /** + * Queries whether a phone number supports card SMS messages. + * + * @remarks + * - 未开通卡片短信业务的阿里云账号无法调用此API。 + * - 目前卡片短信在内部邀约阶段,请联系您的阿里云商务经理申请开通或[联系阿里云售前咨询](https://help.aliyun.com/document_detail/464625.html)。 + * + * @param tmpReq - QueryMobilesCardSupportRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QueryMobilesCardSupportResponse + * + * @param QueryMobilesCardSupportRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return QueryMobilesCardSupportResponse + */ + public function queryMobilesCardSupportWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new QueryMobilesCardSupportShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->mobiles) { + $request->mobilesShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->mobiles, 'Mobiles', 'json'); + } + + $query = []; + if (null !== $request->encryptType) { + @$query['EncryptType'] = $request->encryptType; + } + + if (null !== $request->mobilesShrink) { + @$query['Mobiles'] = $request->mobilesShrink; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QueryMobilesCardSupport', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryMobilesCardSupportResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries whether a phone number supports card SMS messages. + * + * @remarks + * - 未开通卡片短信业务的阿里云账号无法调用此API。 + * - 目前卡片短信在内部邀约阶段,请联系您的阿里云商务经理申请开通或[联系阿里云售前咨询](https://help.aliyun.com/document_detail/464625.html)。 + * + * @param request - QueryMobilesCardSupportRequest + * + * @returns QueryMobilesCardSupportResponse + * + * @param QueryMobilesCardSupportRequest $request + * + * @return QueryMobilesCardSupportResponse + */ + public function queryMobilesCardSupport($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryMobilesCardSupportWithOptions($request, $runtime); + } + + /** + * 点击明细查询. + * + * @param request - QueryPageSmartShortUrlLogRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QueryPageSmartShortUrlLogResponse + * + * @param QueryPageSmartShortUrlLogRequest $request + * @param RuntimeOptions $runtime + * + * @return QueryPageSmartShortUrlLogResponse + */ + public function queryPageSmartShortUrlLogWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->createDateEnd) { + @$query['CreateDateEnd'] = $request->createDateEnd; + } + + if (null !== $request->createDateStart) { + @$query['CreateDateStart'] = $request->createDateStart; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->pageNo) { + @$query['PageNo'] = $request->pageNo; + } + + if (null !== $request->pageSize) { + @$query['PageSize'] = $request->pageSize; + } + + if (null !== $request->phoneNumber) { + @$query['PhoneNumber'] = $request->phoneNumber; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->shortUrl) { + @$query['ShortUrl'] = $request->shortUrl; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QueryPageSmartShortUrlLog', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryPageSmartShortUrlLogResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 点击明细查询. + * + * @param request - QueryPageSmartShortUrlLogRequest + * + * @returns QueryPageSmartShortUrlLogResponse + * + * @param QueryPageSmartShortUrlLogRequest $request + * + * @return QueryPageSmartShortUrlLogResponse + */ + public function queryPageSmartShortUrlLog($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryPageSmartShortUrlLogWithOptions($request, $runtime); + } + + /** + * 批量查询终端5G适配情况. + * + * @param request - QueryRCSMobileCapableRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QueryRCSMobileCapableResponse + * + * @param QueryRCSMobileCapableRequest $request + * @param RuntimeOptions $runtime + * + * @return QueryRCSMobileCapableResponse + */ + public function queryRCSMobileCapableWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->phoneNumbers) { + @$query['PhoneNumbers'] = $request->phoneNumbers; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QueryRCSMobileCapable', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryRCSMobileCapableResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 批量查询终端5G适配情况. + * + * @param request - QueryRCSMobileCapableRequest + * + * @returns QueryRCSMobileCapableResponse + * + * @param QueryRCSMobileCapableRequest $request + * + * @return QueryRCSMobileCapableResponse + */ + public function queryRCSMobileCapable($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryRCSMobileCapableWithOptions($request, $runtime); + } + + /** + * 查询终端5G适配情况任务结果. + * + * @param request - QueryRCSMobileCapableTaskResultRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QueryRCSMobileCapableTaskResultResponse + * + * @param QueryRCSMobileCapableTaskResultRequest $request + * @param RuntimeOptions $runtime + * + * @return QueryRCSMobileCapableTaskResultResponse + */ + public function queryRCSMobileCapableTaskResultWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->taskId) { + @$query['TaskId'] = $request->taskId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QueryRCSMobileCapableTaskResult', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryRCSMobileCapableTaskResultResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 查询终端5G适配情况任务结果. + * + * @param request - QueryRCSMobileCapableTaskResultRequest + * + * @returns QueryRCSMobileCapableTaskResultResponse + * + * @param QueryRCSMobileCapableTaskResultRequest $request + * + * @return QueryRCSMobileCapableTaskResultResponse + */ + public function queryRCSMobileCapableTaskResult($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryRCSMobileCapableTaskResultWithOptions($request, $runtime); + } + + /** + * 查询5G模板详情. + * + * @param request - QueryRCSTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QueryRCSTemplateResponse + * + * @param QueryRCSTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return QueryRCSTemplateResponse + */ + public function queryRCSTemplateWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QueryRCSTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryRCSTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 查询5G模板详情. + * + * @param request - QueryRCSTemplateRequest + * + * @returns QueryRCSTemplateResponse + * + * @param QueryRCSTemplateRequest $request + * + * @return QueryRCSTemplateResponse + */ + public function queryRCSTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryRCSTemplateWithOptions($request, $runtime); + } + + /** + * 指定版本查看5G消息固定菜单详情. + * + * @param request - QueryRcsSignMenuByVersionRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QueryRcsSignMenuByVersionResponse + * + * @param QueryRcsSignMenuByVersionRequest $request + * @param RuntimeOptions $runtime + * + * @return QueryRcsSignMenuByVersionResponse + */ + public function queryRcsSignMenuByVersionWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->rcsMenuVersion) { + @$query['RcsMenuVersion'] = $request->rcsMenuVersion; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QueryRcsSignMenuByVersion', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryRcsSignMenuByVersionResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 指定版本查看5G消息固定菜单详情. + * + * @param request - QueryRcsSignMenuByVersionRequest + * + * @returns QueryRcsSignMenuByVersionResponse + * + * @param QueryRcsSignMenuByVersionRequest $request + * + * @return QueryRcsSignMenuByVersionResponse + */ + public function queryRcsSignMenuByVersion($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryRcsSignMenuByVersionWithOptions($request, $runtime); + } + + /** + * Queries the delivery records and status of SMS messages sent to a single phone number. + * + * @remarks + * - This operation queries the details of SMS messages sent to a specific phone number on a given date. You can also provide the `BizId` to query a specific delivery record. + * - This operation queries delivery details for a single phone number at a time. To view delivery details in bulk, use the [QuerySendStatistics](https://help.aliyun.com/document_detail/419276.html) operation to query delivery statistics, or log in to the [Delivery Receipts](https://dysms.console.aliyun.com/record) page in the console. + * ### QPS limit + * The QPS limit for this operation is 5,000 requests per second per user. Calls that exceed this limit are throttled. + * + * @param request - QuerySendDetailsRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QuerySendDetailsResponse + * + * @param QuerySendDetailsRequest $request + * @param RuntimeOptions $runtime + * + * @return QuerySendDetailsResponse + */ + public function querySendDetailsWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->bizId) { + @$query['BizId'] = $request->bizId; + } + + if (null !== $request->currentPage) { + @$query['CurrentPage'] = $request->currentPage; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->pageSize) { + @$query['PageSize'] = $request->pageSize; + } + + if (null !== $request->phoneNumber) { + @$query['PhoneNumber'] = $request->phoneNumber; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->sendDate) { + @$query['SendDate'] = $request->sendDate; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySendDetails', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySendDetailsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries the delivery records and status of SMS messages sent to a single phone number. + * + * @remarks + * - This operation queries the details of SMS messages sent to a specific phone number on a given date. You can also provide the `BizId` to query a specific delivery record. + * - This operation queries delivery details for a single phone number at a time. To view delivery details in bulk, use the [QuerySendStatistics](https://help.aliyun.com/document_detail/419276.html) operation to query delivery statistics, or log in to the [Delivery Receipts](https://dysms.console.aliyun.com/record) page in the console. + * ### QPS limit + * The QPS limit for this operation is 5,000 requests per second per user. Calls that exceed this limit are throttled. + * + * @param request - QuerySendDetailsRequest + * + * @returns QuerySendDetailsResponse + * + * @param QuerySendDetailsRequest $request + * + * @return QuerySendDetailsResponse + */ + public function querySendDetails($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySendDetailsWithOptions($request, $runtime); + } + + /** + * Queries message delivery statistics, including send dates, the number of successfully sent messages, and the number of received delivery receipts. + * + * @remarks + * - If you query data over a long time range, the results are paginated. You can specify the page size and page number to navigate through the Delivery Logs. + * - You can also view delivery details by logging in to the [Short Message Service console](https://dysms.console.aliyun.com/dysms.htm#/overview) and navigating to the **Business Statistics** > **Delivery Logs** page. + * + * @param request - QuerySendStatisticsRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QuerySendStatisticsResponse + * + * @param QuerySendStatisticsRequest $request + * @param RuntimeOptions $runtime + * + * @return QuerySendStatisticsResponse + */ + public function querySendStatisticsWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->endDate) { + @$query['EndDate'] = $request->endDate; + } + + if (null !== $request->isGlobe) { + @$query['IsGlobe'] = $request->isGlobe; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->pageIndex) { + @$query['PageIndex'] = $request->pageIndex; + } + + if (null !== $request->pageSize) { + @$query['PageSize'] = $request->pageSize; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->startDate) { + @$query['StartDate'] = $request->startDate; + } + + if (null !== $request->templateType) { + @$query['TemplateType'] = $request->templateType; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySendStatistics', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySendStatisticsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries message delivery statistics, including send dates, the number of successfully sent messages, and the number of received delivery receipts. + * + * @remarks + * - If you query data over a long time range, the results are paginated. You can specify the page size and page number to navigate through the Delivery Logs. + * - You can also view delivery details by logging in to the [Short Message Service console](https://dysms.console.aliyun.com/dysms.htm#/overview) and navigating to the **Business Statistics** > **Delivery Logs** page. + * + * @param request - QuerySendStatisticsRequest + * + * @returns QuerySendStatisticsResponse + * + * @param QuerySendStatisticsRequest $request + * + * @return QuerySendStatisticsResponse + */ + public function querySendStatistics($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySendStatisticsWithOptions($request, $runtime); + } + + /** + * Checks the status and availability of a short link. + * + * @remarks + * >Notice: + * This API is not currently supported by Short Message Service. + * ### QPS limit + * The QPS limit for this API is 20 queries per second per user. API calls that exceed this limit are rate-limited, which can impact your business. Plan your calls accordingly. + * + * @param request - QueryShortUrlRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QueryShortUrlResponse + * + * @param QueryShortUrlRequest $request + * @param RuntimeOptions $runtime + * + * @return QueryShortUrlResponse + */ + public function queryShortUrlWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $body = []; + if (null !== $request->shortUrl) { + @$body['ShortUrl'] = $request->shortUrl; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + 'body' => Utils::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'QueryShortUrl', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryShortUrlResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Checks the status and availability of a short link. + * + * @remarks + * >Notice: + * This API is not currently supported by Short Message Service. + * ### QPS limit + * The QPS limit for this API is 20 queries per second per user. API calls that exceed this limit are rate-limited, which can impact your business. Plan your calls accordingly. + * + * @param request - QueryShortUrlRequest + * + * @returns QueryShortUrlResponse + * + * @param QueryShortUrlRequest $request + * + * @return QueryShortUrlResponse + */ + public function queryShortUrl($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryShortUrlWithOptions($request, $runtime); + } + + /** + * After you apply for SMS qualifications, you can call this operation to query the details of a single qualification. + * + * @remarks + * - This API queries the details of a single qualification (enterprise information, legal representative information, and administrator information). + * - To query all qualification information under your current account, or to query review details, call the [QuerySmsQualificationRecord](~~QuerySmsQualificationRecord~~) operation. + * - Affected by the SMS signature real-name registration requirements, the volume of qualification review tickets is growing rapidly, and the review time may be extended. Please be patient. The review is expected to be completed within 2 business days (review hours: Monday to Sunday 9:00-21:00, postponed for legal holidays). In special cases, the review time may be extended. Please be patient. + * + * @param request - QuerySingleSmsQualificationRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QuerySingleSmsQualificationResponse + * + * @param QuerySingleSmsQualificationRequest $request + * @param RuntimeOptions $runtime + * + * @return QuerySingleSmsQualificationResponse + */ + public function querySingleSmsQualificationWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->orderId) { + @$query['OrderId'] = $request->orderId; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->qualificationGroupId) { + @$query['QualificationGroupId'] = $request->qualificationGroupId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySingleSmsQualification', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySingleSmsQualificationResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * After you apply for SMS qualifications, you can call this operation to query the details of a single qualification. + * + * @remarks + * - This API queries the details of a single qualification (enterprise information, legal representative information, and administrator information). + * - To query all qualification information under your current account, or to query review details, call the [QuerySmsQualificationRecord](~~QuerySmsQualificationRecord~~) operation. + * - Affected by the SMS signature real-name registration requirements, the volume of qualification review tickets is growing rapidly, and the review time may be extended. Please be patient. The review is expected to be completed within 2 business days (review hours: Monday to Sunday 9:00-21:00, postponed for legal holidays). In special cases, the review time may be extended. Please be patient. + * + * @param request - QuerySingleSmsQualificationRequest + * + * @returns QuerySingleSmsQualificationResponse + * + * @param QuerySingleSmsQualificationRequest $request + * + * @return QuerySingleSmsQualificationResponse + */ + public function querySingleSmsQualification($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySingleSmsQualificationWithOptions($request, $runtime); + } + + /** + * Queries icp record details. + * + * @remarks + * Pass a list of icp record IDs to retrieve their details. + * For example, call the QuerySmsSignList or GetSmsSign API to obtain the required icp record IDs. + * + * @param tmpReq - QuerySmsAppIcpRecordRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QuerySmsAppIcpRecordResponse + * + * @param QuerySmsAppIcpRecordRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return QuerySmsAppIcpRecordResponse + */ + public function querySmsAppIcpRecordWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new QuerySmsAppIcpRecordShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->appIcpRecordIdList) { + $request->appIcpRecordIdListShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->appIcpRecordIdList, 'AppIcpRecordIdList', 'json'); + } + + $query = []; + if (null !== $request->appIcpRecordIdListShrink) { + @$query['AppIcpRecordIdList'] = $request->appIcpRecordIdListShrink; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySmsAppIcpRecord', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySmsAppIcpRecordResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries icp record details. + * + * @remarks + * Pass a list of icp record IDs to retrieve their details. + * For example, call the QuerySmsSignList or GetSmsSign API to obtain the required icp record IDs. + * + * @param request - QuerySmsAppIcpRecordRequest + * + * @returns QuerySmsAppIcpRecordResponse + * + * @param QuerySmsAppIcpRecordRequest $request + * + * @return QuerySmsAppIcpRecordResponse + */ + public function querySmsAppIcpRecord($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySmsAppIcpRecordWithOptions($request, $runtime); + } + + /** + * Queries created letters of authorization. You can view the review status and authorized signature scope of the letters. + * + * @remarks + * - Supports full query or conditional query: + * - **Full query**: Queries the information of all letters of authorization under your current account. No parameters need to be passed. Full query is performed by default. + * - **Conditional query**: Supports queries by letter of authorization ID, signature name, and review status of the letter of authorization. Pass the parameters by which you want to filter. + * - Review duration: Affected by the real-name registration requirements for SMS signatures, the volume of qualification review tickets is currently increasing rapidly, and the review duration may be extended. Please wait patiently. The review is expected to be completed within 2 working days. SMS signatures and templates are expected to be reviewed within 2 hours after submission. Reviews involving governments and enterprises are generally completed within 2 working days. If verification upgrades, a large number of review tasks, or non-working hours are encountered, the review duration may be extended. Please wait patiently. (Review working hours: Monday to Sunday, 9:00–21:00, postponed for statutory holidays.) + * + * @param tmpReq - QuerySmsAuthorizationLetterRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QuerySmsAuthorizationLetterResponse + * + * @param QuerySmsAuthorizationLetterRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return QuerySmsAuthorizationLetterResponse + */ + public function querySmsAuthorizationLetterWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new QuerySmsAuthorizationLetterShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->authorizationLetterIdList) { + $request->authorizationLetterIdListShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->authorizationLetterIdList, 'AuthorizationLetterIdList', 'json'); + } + + $query = []; + if (null !== $request->authorizationLetterIdListShrink) { + @$query['AuthorizationLetterIdList'] = $request->authorizationLetterIdListShrink; + } + + if (null !== $request->organizationCode) { + @$query['OrganizationCode'] = $request->organizationCode; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->state) { + @$query['State'] = $request->state; + } + + if (null !== $request->status) { + @$query['Status'] = $request->status; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySmsAuthorizationLetter', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySmsAuthorizationLetterResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries created letters of authorization. You can view the review status and authorized signature scope of the letters. + * + * @remarks + * - Supports full query or conditional query: + * - **Full query**: Queries the information of all letters of authorization under your current account. No parameters need to be passed. Full query is performed by default. + * - **Conditional query**: Supports queries by letter of authorization ID, signature name, and review status of the letter of authorization. Pass the parameters by which you want to filter. + * - Review duration: Affected by the real-name registration requirements for SMS signatures, the volume of qualification review tickets is currently increasing rapidly, and the review duration may be extended. Please wait patiently. The review is expected to be completed within 2 working days. SMS signatures and templates are expected to be reviewed within 2 hours after submission. Reviews involving governments and enterprises are generally completed within 2 working days. If verification upgrades, a large number of review tasks, or non-working hours are encountered, the review duration may be extended. Please wait patiently. (Review working hours: Monday to Sunday, 9:00–21:00, postponed for statutory holidays.) + * + * @param request - QuerySmsAuthorizationLetterRequest + * + * @returns QuerySmsAuthorizationLetterResponse + * + * @param QuerySmsAuthorizationLetterRequest $request + * + * @return QuerySmsAuthorizationLetterResponse + */ + public function querySmsAuthorizationLetter($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySmsAuthorizationLetterWithOptions($request, $runtime); + } + + /** + * Queries a list of SMS qualifications and their review details after you submit qualification applications. This operation supports filtered query. + * + * @remarks + * - 支持全量查询或条件查询: + * - **全量查询**:查询您当前帐户下所有短信资质,无需传参。默认全量查询。 + * - **条件查询**:支持根据资质名称、企业名称、法人姓名、审核状态、审核工单ID、资质用途进行查询,传入您希望筛选的参数即可。 + * - 本接口用于查询资质及其审核信息,如果需要查询单个资质的具体信息(企业信息、法人信息、管理员信息),请调用[查询单个资质详情](~~QuerySingleSmsQualification~~)接口。 + * - 受短信签名实名制报备要求影响,当前资质审核工单量增长快速,审核时间可能会延长,请耐心等待,预计2个工作日内完成(审核工作时间:周一至周日 9:00~21:00,法定节假日顺延)。特殊情况可能延长审核时间,请耐心等待。 + * - 如果资质未通过审核,审核备注`AuditRemark`会返回审核失败的原因,请参考[审核失败的处理建议](~~2384377#a96cc318b94x1~~),调用[修改短信资质](~~UpdateSmsQualification~~)接口或在控制台[资质管理](https://dysms.console.aliyun.com/domestic/text/qualification)页面修改资质信息后,重新发起审核。 + * + * @param request - QuerySmsQualificationRecordRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QuerySmsQualificationRecordResponse + * + * @param QuerySmsQualificationRecordRequest $request + * @param RuntimeOptions $runtime + * + * @return QuerySmsQualificationRecordResponse + */ + public function querySmsQualificationRecordWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->companyName) { + @$query['CompanyName'] = $request->companyName; + } + + if (null !== $request->legalPersonName) { + @$query['LegalPersonName'] = $request->legalPersonName; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->pageNo) { + @$query['PageNo'] = $request->pageNo; + } + + if (null !== $request->pageSize) { + @$query['PageSize'] = $request->pageSize; + } + + if (null !== $request->qualificationGroupName) { + @$query['QualificationGroupName'] = $request->qualificationGroupName; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->state) { + @$query['State'] = $request->state; + } + + if (null !== $request->useBySelf) { + @$query['UseBySelf'] = $request->useBySelf; + } + + if (null !== $request->workOrderId) { + @$query['WorkOrderId'] = $request->workOrderId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySmsQualificationRecord', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySmsQualificationRecordResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries a list of SMS qualifications and their review details after you submit qualification applications. This operation supports filtered query. + * + * @remarks + * - 支持全量查询或条件查询: + * - **全量查询**:查询您当前帐户下所有短信资质,无需传参。默认全量查询。 + * - **条件查询**:支持根据资质名称、企业名称、法人姓名、审核状态、审核工单ID、资质用途进行查询,传入您希望筛选的参数即可。 + * - 本接口用于查询资质及其审核信息,如果需要查询单个资质的具体信息(企业信息、法人信息、管理员信息),请调用[查询单个资质详情](~~QuerySingleSmsQualification~~)接口。 + * - 受短信签名实名制报备要求影响,当前资质审核工单量增长快速,审核时间可能会延长,请耐心等待,预计2个工作日内完成(审核工作时间:周一至周日 9:00~21:00,法定节假日顺延)。特殊情况可能延长审核时间,请耐心等待。 + * - 如果资质未通过审核,审核备注`AuditRemark`会返回审核失败的原因,请参考[审核失败的处理建议](~~2384377#a96cc318b94x1~~),调用[修改短信资质](~~UpdateSmsQualification~~)接口或在控制台[资质管理](https://dysms.console.aliyun.com/domestic/text/qualification)页面修改资质信息后,重新发起审核。 + * + * @param request - QuerySmsQualificationRecordRequest + * + * @returns QuerySmsQualificationRecordResponse + * + * @param QuerySmsQualificationRecordRequest $request + * + * @return QuerySmsQualificationRecordResponse + */ + public function querySmsQualificationRecord($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySmsQualificationRecordWithOptions($request, $runtime); + } + + /** + * Queries the review status of an SMS signature. + * + * @remarks + * - To comply with regulations from the Ministry of Industry and Information Technology (MIIT) and [related requirements](https://help.aliyun.com/document_detail/2806975.html) from carriers, Alibaba Cloud has upgraded its SMS signature management APIs. We recommend using the new [GetSmsSign - Query Signature Details](https://help.aliyun.com/document_detail/2807429.html) API, which returns more detailed information about signatures than this API. + * - We typically review signatures within two hours of submission. The review service is available from 9:00 to 21:00, Monday to Sunday. Reviews may be delayed during public holidays. We recommend submitting your application before 18:00 for a timely review. + * - If a signature is rejected, the response includes the review reason. For troubleshooting information, see [Troubleshooting Signature Review Failures](https://help.aliyun.com/document_detail/65990.html). You can then call the [ModifySmsTemplate](https://help.aliyun.com/document_detail/419287.html) API or modify the SMS signature on the [Signature Management](https://dysms.console.aliyun.com/domestic/text) page. + * - This API queries the review details for a single signature by name. To query all signatures in your account, call the [QuerySmsSignList](https://help.aliyun.com/document_detail/419288.html) API. + * + * @param request - QuerySmsSignRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QuerySmsSignResponse + * + * @param QuerySmsSignRequest $request + * @param RuntimeOptions $runtime + * + * @return QuerySmsSignResponse + */ + public function querySmsSignWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySmsSign', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySmsSignResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries the review status of an SMS signature. + * + * @remarks + * - To comply with regulations from the Ministry of Industry and Information Technology (MIIT) and [related requirements](https://help.aliyun.com/document_detail/2806975.html) from carriers, Alibaba Cloud has upgraded its SMS signature management APIs. We recommend using the new [GetSmsSign - Query Signature Details](https://help.aliyun.com/document_detail/2807429.html) API, which returns more detailed information about signatures than this API. + * - We typically review signatures within two hours of submission. The review service is available from 9:00 to 21:00, Monday to Sunday. Reviews may be delayed during public holidays. We recommend submitting your application before 18:00 for a timely review. + * - If a signature is rejected, the response includes the review reason. For troubleshooting information, see [Troubleshooting Signature Review Failures](https://help.aliyun.com/document_detail/65990.html). You can then call the [ModifySmsTemplate](https://help.aliyun.com/document_detail/419287.html) API or modify the SMS signature on the [Signature Management](https://dysms.console.aliyun.com/domestic/text) page. + * - This API queries the review details for a single signature by name. To query all signatures in your account, call the [QuerySmsSignList](https://help.aliyun.com/document_detail/419288.html) API. + * + * @param request - QuerySmsSignRequest + * + * @returns QuerySmsSignResponse + * + * @param QuerySmsSignRequest $request + * + * @return QuerySmsSignResponse + */ + public function querySmsSign($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySmsSignWithOptions($request, $runtime); + } + + /** + * You can call this operation to query all signatures under your account, including signature audit status, signature type, and signature name. + * + * @remarks + * This operation queries the signature information that was **first created** or the **most recently approved** signature details under your current account. If you need to query more information such as application scenario content or files uploaded during application, you can call the [GetSmsSign](~~GetSmsSign~~) operation to query the audit details of a single signature by signature name. + * + * @param request - QuerySmsSignListRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QuerySmsSignListResponse + * + * @param QuerySmsSignListRequest $request + * @param RuntimeOptions $runtime + * + * @return QuerySmsSignListResponse + */ + public function querySmsSignListWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->pageIndex) { + @$query['PageIndex'] = $request->pageIndex; + } + + if (null !== $request->pageSize) { + @$query['PageSize'] = $request->pageSize; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySmsSignList', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySmsSignListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * You can call this operation to query all signatures under your account, including signature audit status, signature type, and signature name. + * + * @remarks + * This operation queries the signature information that was **first created** or the **most recently approved** signature details under your current account. If you need to query more information such as application scenario content or files uploaded during application, you can call the [GetSmsSign](~~GetSmsSign~~) operation to query the audit details of a single signature by signature name. + * + * @param request - QuerySmsSignListRequest + * + * @returns QuerySmsSignListResponse + * + * @param QuerySmsSignListRequest $request + * + * @return QuerySmsSignListResponse + */ + public function querySmsSignList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySmsSignListWithOptions($request, $runtime); + } + + /** + * This API has been deprecated. + * + * @remarks + * - Alibaba Cloud has updated its template-related APIs to comply with regulatory and [carrier requirements](https://help.aliyun.com/document_detail/2806975.html). We recommend that you use the new [GetSmsTemplate - Query template review details](https://help.aliyun.com/document_detail/2807433.html) API. The new API returns more detailed template information in its response. + * - Review timeline: After you submit a template, Alibaba Cloud typically completes the review within two hours. Review hours are 9:00 to 21:00 (UTC+8) from Monday to Sunday. Reviews are postponed during public holidays. We recommend that you submit your templates before 18:00 (UTC+8). + * - If a template fails review, the response includes the reason for the rejection. For more information, see [Suggestions for handling a failed review](https://help.aliyun.com/document_detail/65990.html). You can then call the [ModifySmsTemplate](https://help.aliyun.com/document_detail/419287.html) API or modify the template on the [Template Management](https://dysms.console.aliyun.com/domestic/text/template) page. + * - QuerySmsTemplate queries the review details of a single template by its template code. To query the details of all templates in your account, call the [QuerySmsTemplateList](https://help.aliyun.com/document_detail/419288.html) API. + * + * @deprecated openAPI QuerySmsTemplate is deprecated, please use Dysmsapi::2017-05-25::GetSmsTemplate instead + * + * @param request - QuerySmsTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QuerySmsTemplateResponse + * + * @param QuerySmsTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return QuerySmsTemplateResponse + */ + public function querySmsTemplateWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySmsTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySmsTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + // Deprecated + /** + * This API has been deprecated. + * + * @remarks + * - Alibaba Cloud has updated its template-related APIs to comply with regulatory and [carrier requirements](https://help.aliyun.com/document_detail/2806975.html). We recommend that you use the new [GetSmsTemplate - Query template review details](https://help.aliyun.com/document_detail/2807433.html) API. The new API returns more detailed template information in its response. + * - Review timeline: After you submit a template, Alibaba Cloud typically completes the review within two hours. Review hours are 9:00 to 21:00 (UTC+8) from Monday to Sunday. Reviews are postponed during public holidays. We recommend that you submit your templates before 18:00 (UTC+8). + * - If a template fails review, the response includes the reason for the rejection. For more information, see [Suggestions for handling a failed review](https://help.aliyun.com/document_detail/65990.html). You can then call the [ModifySmsTemplate](https://help.aliyun.com/document_detail/419287.html) API or modify the template on the [Template Management](https://dysms.console.aliyun.com/domestic/text/template) page. + * - QuerySmsTemplate queries the review details of a single template by its template code. To query the details of all templates in your account, call the [QuerySmsTemplateList](https://help.aliyun.com/document_detail/419288.html) API. + * + * @deprecated openAPI QuerySmsTemplate is deprecated, please use Dysmsapi::2017-05-25::GetSmsTemplate instead + * + * @param request - QuerySmsTemplateRequest + * + * @returns QuerySmsTemplateResponse + * + * @param QuerySmsTemplateRequest $request + * + * @return QuerySmsTemplateResponse + */ + public function querySmsTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySmsTemplateWithOptions($request, $runtime); + } + + /** + * You can call this operation to query all templates under your account. This way, you can view template details, including the template approval status, template type, and template content. + * + * @remarks + * - This operation queries the template details of all templates under your current account. To query more details such as the template variable content and the file information uploaded during application, you can call the [GetSmsTemplate](~~GetSmsTemplate~~) operation to query the approval details of a single template by template code. + * - You can also log on to the Short Message Service (SMS) console and view the template details of all templates under your current account on the [Template Management](https://dysms.console.aliyun.com/domestic/text/template) page. + * + * @param request - QuerySmsTemplateListRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QuerySmsTemplateListResponse + * + * @param QuerySmsTemplateListRequest $request + * @param RuntimeOptions $runtime + * + * @return QuerySmsTemplateListResponse + */ + public function querySmsTemplateListWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->pageIndex) { + @$query['PageIndex'] = $request->pageIndex; + } + + if (null !== $request->pageSize) { + @$query['PageSize'] = $request->pageSize; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySmsTemplateList', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySmsTemplateListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * You can call this operation to query all templates under your account. This way, you can view template details, including the template approval status, template type, and template content. + * + * @remarks + * - This operation queries the template details of all templates under your current account. To query more details such as the template variable content and the file information uploaded during application, you can call the [GetSmsTemplate](~~GetSmsTemplate~~) operation to query the approval details of a single template by template code. + * - You can also log on to the Short Message Service (SMS) console and view the template details of all templates under your current account on the [Template Management](https://dysms.console.aliyun.com/domestic/text/template) page. + * + * @param request - QuerySmsTemplateListRequest + * + * @returns QuerySmsTemplateListResponse + * + * @param QuerySmsTemplateListRequest $request + * + * @return QuerySmsTemplateListResponse + */ + public function querySmsTemplateList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySmsTemplateListWithOptions($request, $runtime); + } + + /** + * Queries the details of one or more trademarks. + * + * @remarks + * This operation retrieves the details of trademarks by using a list of trademark IDs. + * For example, you can obtain trademark IDs by calling signature query operations such as `QuerySmsSignList` or `GetSmsSign`. You can then use this operation to retrieve the details of each trademark. + * + * @param tmpReq - QuerySmsTrademarkRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns QuerySmsTrademarkResponse + * + * @param QuerySmsTrademarkRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return QuerySmsTrademarkResponse + */ + public function querySmsTrademarkWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new QuerySmsTrademarkShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->trademarkIdList) { + $request->trademarkIdListShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->trademarkIdList, 'TrademarkIdList', 'json'); + } + + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->trademarkIdListShrink) { + @$query['TrademarkIdList'] = $request->trademarkIdListShrink; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySmsTrademark', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySmsTrademarkResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Queries the details of one or more trademarks. + * + * @remarks + * This operation retrieves the details of trademarks by using a list of trademark IDs. + * For example, you can obtain trademark IDs by calling signature query operations such as `QuerySmsSignList` or `GetSmsSign`. You can then use this operation to retrieve the details of each trademark. + * + * @param request - QuerySmsTrademarkRequest + * + * @returns QuerySmsTrademarkResponse + * + * @param QuerySmsTrademarkRequest $request + * + * @return QuerySmsTrademarkResponse + */ + public function querySmsTrademark($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySmsTrademarkWithOptions($request, $runtime); + } + + /** + * When applying for SMS qualification, the administrator\\"s phone number must be verified. Use this operation to obtain an SMS verification code. + * + * @remarks + * - After you receive the phone verification code, pass it to the `CertifyCode` parameter of the [SubmitSmsQualification](~~SubmitSmsQualification~~) or [UpdateSmsQualification](~~UpdateSmsQualification~~) operation. + * - You can call the [ValidPhoneCode](~~ValidPhoneCode~~) operation to verify whether the SMS verification code is correct. + * - This operation is subject to [throttling](~~44335#section-0wh-xn6-0t7~~). Do not call it too frequently. For the same phone number, a maximum of 1 message per minute, 5 messages per hour, and 10 messages per day are supported. + * + * @param request - RequiredPhoneCodeRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns RequiredPhoneCodeResponse + * + * @param RequiredPhoneCodeRequest $request + * @param RuntimeOptions $runtime + * + * @return RequiredPhoneCodeResponse + */ + public function requiredPhoneCodeWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->phoneNo) { + @$query['PhoneNo'] = $request->phoneNo; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'RequiredPhoneCode', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RequiredPhoneCodeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * When applying for SMS qualification, the administrator\\"s phone number must be verified. Use this operation to obtain an SMS verification code. + * + * @remarks + * - After you receive the phone verification code, pass it to the `CertifyCode` parameter of the [SubmitSmsQualification](~~SubmitSmsQualification~~) or [UpdateSmsQualification](~~UpdateSmsQualification~~) operation. + * - You can call the [ValidPhoneCode](~~ValidPhoneCode~~) operation to verify whether the SMS verification code is correct. + * - This operation is subject to [throttling](~~44335#section-0wh-xn6-0t7~~). Do not call it too frequently. For the same phone number, a maximum of 1 message per minute, 5 messages per hour, and 10 messages per day are supported. + * + * @param request - RequiredPhoneCodeRequest + * + * @returns RequiredPhoneCodeResponse + * + * @param RequiredPhoneCodeRequest $request + * + * @return RequiredPhoneCodeResponse + */ + public function requiredPhoneCode($request) + { + $runtime = new RuntimeOptions([]); + + return $this->requiredPhoneCodeWithOptions($request, $runtime); + } + + /** + * Sends card SMS messages in batches. + * + * @remarks + * - Sending card SMS messages is a billable operation. You are not charged if a card SMS message fails to be sent or rendered. For more information, see [Multimedia SMS pricing](https://help.aliyun.com/document_detail/437951.html). + * - The card SMS feature is currently in the internal invitation phase. Contact your Alibaba Cloud business manager to apply for activation, or contact [Alibaba Cloud pre-sales consulting](https://help.aliyun.com/document_detail/464625.html?spm=a2c4g.11186623.0.0.213219fcSn2Ykj#section-81n-72q-ybm). + * - We recommend that you set the timeout period for card SMS messages to a value greater than or equal to 3 seconds. If a timeout failure occurs, we recommend that you check the delivery status before deciding whether to retry. We also recommend that you do not enable SDK retry logic when calling this operation; otherwise, multiple sending attempts may occur. For more information about timeout and retry settings, see [Timeout mechanism](https://help.aliyun.com/document_detail/262079.html) and [Retry mechanism](https://help.aliyun.com/document_detail/262080.html). + * - Domestic SMS, international SMS, and multimedia SMS do not currently support idempotency. Implement idempotency control to prevent duplicate operations caused by multiple retries. + * - Before you send a card SMS message, you must add and obtain approval for a card SMS template. When this operation is called to send an SMS message, the system checks whether the phone number supports card SMS messages. If the phone number does not support card SMS messages, you can configure whether to accept fallback to digital SMS or text SMS in the operation to improve the delivery rate. + * - When you send card SMS messages in batches, each phone number can use a different signature and a different fallback. In a single request, you can send card SMS messages to a maximum of 100 phone numbers. + * ### QPS limit + * The QPS limit per user for this operation is 1,000 calls per second. If the limit is exceeded, API calls are throttled, which may affect your business. Call this operation in a reasonable manner. + * + * @param request - SendBatchCardSmsRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns SendBatchCardSmsResponse + * + * @param SendBatchCardSmsRequest $request + * @param RuntimeOptions $runtime + * + * @return SendBatchCardSmsResponse + */ + public function sendBatchCardSmsWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->cardTemplateCode) { + @$query['CardTemplateCode'] = $request->cardTemplateCode; + } + + if (null !== $request->cardTemplateParamJson) { + @$query['CardTemplateParamJson'] = $request->cardTemplateParamJson; + } + + if (null !== $request->digitalTemplateCode) { + @$query['DigitalTemplateCode'] = $request->digitalTemplateCode; + } + + if (null !== $request->digitalTemplateParamJson) { + @$query['DigitalTemplateParamJson'] = $request->digitalTemplateParamJson; + } + + if (null !== $request->fallbackType) { + @$query['FallbackType'] = $request->fallbackType; + } + + if (null !== $request->outId) { + @$query['OutId'] = $request->outId; + } + + if (null !== $request->phoneNumberJson) { + @$query['PhoneNumberJson'] = $request->phoneNumberJson; + } + + if (null !== $request->signNameJson) { + @$query['SignNameJson'] = $request->signNameJson; + } + + if (null !== $request->smsTemplateCode) { + @$query['SmsTemplateCode'] = $request->smsTemplateCode; + } + + if (null !== $request->smsTemplateParamJson) { + @$query['SmsTemplateParamJson'] = $request->smsTemplateParamJson; + } + + if (null !== $request->smsUpExtendCodeJson) { + @$query['SmsUpExtendCodeJson'] = $request->smsUpExtendCodeJson; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + if (null !== $request->templateParamJson) { + @$query['TemplateParamJson'] = $request->templateParamJson; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'SendBatchCardSms', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendBatchCardSmsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Sends card SMS messages in batches. + * + * @remarks + * - Sending card SMS messages is a billable operation. You are not charged if a card SMS message fails to be sent or rendered. For more information, see [Multimedia SMS pricing](https://help.aliyun.com/document_detail/437951.html). + * - The card SMS feature is currently in the internal invitation phase. Contact your Alibaba Cloud business manager to apply for activation, or contact [Alibaba Cloud pre-sales consulting](https://help.aliyun.com/document_detail/464625.html?spm=a2c4g.11186623.0.0.213219fcSn2Ykj#section-81n-72q-ybm). + * - We recommend that you set the timeout period for card SMS messages to a value greater than or equal to 3 seconds. If a timeout failure occurs, we recommend that you check the delivery status before deciding whether to retry. We also recommend that you do not enable SDK retry logic when calling this operation; otherwise, multiple sending attempts may occur. For more information about timeout and retry settings, see [Timeout mechanism](https://help.aliyun.com/document_detail/262079.html) and [Retry mechanism](https://help.aliyun.com/document_detail/262080.html). + * - Domestic SMS, international SMS, and multimedia SMS do not currently support idempotency. Implement idempotency control to prevent duplicate operations caused by multiple retries. + * - Before you send a card SMS message, you must add and obtain approval for a card SMS template. When this operation is called to send an SMS message, the system checks whether the phone number supports card SMS messages. If the phone number does not support card SMS messages, you can configure whether to accept fallback to digital SMS or text SMS in the operation to improve the delivery rate. + * - When you send card SMS messages in batches, each phone number can use a different signature and a different fallback. In a single request, you can send card SMS messages to a maximum of 100 phone numbers. + * ### QPS limit + * The QPS limit per user for this operation is 1,000 calls per second. If the limit is exceeded, API calls are throttled, which may affect your business. Call this operation in a reasonable manner. + * + * @param request - SendBatchCardSmsRequest + * + * @returns SendBatchCardSmsResponse + * + * @param SendBatchCardSmsRequest $request + * + * @return SendBatchCardSmsResponse + */ + public function sendBatchCardSms($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendBatchCardSmsWithOptions($request, $runtime); + } + + /** + * This operation sends messages to different phone numbers using a single template, with different signatures and template variables for each recipient. + * + * @remarks + * ### Basic information + * - You can send messages to a maximum of 100 phone numbers in a single call. + * - The global [endpoint](https://help.aliyun.com/document_detail/419270.html) is `dysmsapi.aliyuncs.com`. For a list of region-specific endpoints, see [Endpoints](https://help.aliyun.com/document_detail/419270.html). + * ### API calls + * - We recommend calling this operation using an SDK. For more information, see [Make your first API call](https://help.aliyun.com/document_detail/2841024.html). + * - To send messages from the console, see [Send group messages](https://help.aliyun.com/document_detail/108266.html). + * - To build your own API requests, see [V3 request body and signature mechanism](https://help.aliyun.com/document_detail/2593177.html). + * ### Usage notes + * - For domestic SMS, we recommend setting the timeout period to 1 second or longer. If a timeout occurs, check the delivery receipt status before you retry the request. For more information about timeout and retry settings, see [timeout mechanism](https://help.aliyun.com/document_detail/262079.html) and [retry mechanism](https://help.aliyun.com/document_detail/262080.html). + * - This operation does not support idempotence for domestic SMS, international SMS, or Multimedia Messaging Service (MMS) messages. You must implement your own idempotence controls to prevent duplicate operations caused by multiple retries. + * - This is a billable operation. For domestic SMS, you are charged based on the delivery receipt status from the carrier. You are not charged for messages that are successfully submitted but fail carrier delivery. For more information, see [Billing overview](https://help.aliyun.com/document_detail/44340.html). + * >Warning: + * Batch message delivery may be delayed due to system capacity limits. For time-sensitive messages, such as verification codes or alert notifications, use the SendSms operation to send messages individually. + * + * ### QPS limit + * The Queries Per Second (QPS) limit for a single user is 5,000. Calls that exceed this limit are throttled. Plan your usage accordingly. + * + * @param request - SendBatchSmsRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns SendBatchSmsResponse + * + * @param SendBatchSmsRequest $request + * @param RuntimeOptions $runtime + * + * @return SendBatchSmsResponse + */ + public function sendBatchSmsWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->outId) { + @$query['OutId'] = $request->outId; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + $body = []; + if (null !== $request->phoneNumberJson) { + @$body['PhoneNumberJson'] = $request->phoneNumberJson; + } + + if (null !== $request->signNameJson) { + @$body['SignNameJson'] = $request->signNameJson; + } + + if (null !== $request->smsUpExtendCodeJson) { + @$body['SmsUpExtendCodeJson'] = $request->smsUpExtendCodeJson; + } + + if (null !== $request->templateParamJson) { + @$body['TemplateParamJson'] = $request->templateParamJson; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + 'body' => Utils::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'SendBatchSms', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendBatchSmsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * This operation sends messages to different phone numbers using a single template, with different signatures and template variables for each recipient. + * + * @remarks + * ### Basic information + * - You can send messages to a maximum of 100 phone numbers in a single call. + * - The global [endpoint](https://help.aliyun.com/document_detail/419270.html) is `dysmsapi.aliyuncs.com`. For a list of region-specific endpoints, see [Endpoints](https://help.aliyun.com/document_detail/419270.html). + * ### API calls + * - We recommend calling this operation using an SDK. For more information, see [Make your first API call](https://help.aliyun.com/document_detail/2841024.html). + * - To send messages from the console, see [Send group messages](https://help.aliyun.com/document_detail/108266.html). + * - To build your own API requests, see [V3 request body and signature mechanism](https://help.aliyun.com/document_detail/2593177.html). + * ### Usage notes + * - For domestic SMS, we recommend setting the timeout period to 1 second or longer. If a timeout occurs, check the delivery receipt status before you retry the request. For more information about timeout and retry settings, see [timeout mechanism](https://help.aliyun.com/document_detail/262079.html) and [retry mechanism](https://help.aliyun.com/document_detail/262080.html). + * - This operation does not support idempotence for domestic SMS, international SMS, or Multimedia Messaging Service (MMS) messages. You must implement your own idempotence controls to prevent duplicate operations caused by multiple retries. + * - This is a billable operation. For domestic SMS, you are charged based on the delivery receipt status from the carrier. You are not charged for messages that are successfully submitted but fail carrier delivery. For more information, see [Billing overview](https://help.aliyun.com/document_detail/44340.html). + * >Warning: + * Batch message delivery may be delayed due to system capacity limits. For time-sensitive messages, such as verification codes or alert notifications, use the SendSms operation to send messages individually. + * + * ### QPS limit + * The Queries Per Second (QPS) limit for a single user is 5,000. Calls that exceed this limit are throttled. Plan your usage accordingly. + * + * @param request - SendBatchSmsRequest + * + * @returns SendBatchSmsResponse + * + * @param SendBatchSmsRequest $request + * + * @return SendBatchSmsResponse + */ + public function sendBatchSms($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendBatchSmsWithOptions($request, $runtime); + } + + /** + * Sends a card message. + * + * @remarks + * - 发送卡片短信为计费接口,卡片短信发送失败或渲染失败时不计费,详情请参见[多媒体短信定价](https://help.aliyun.com/document_detail/437951.html)。 + * - 目前卡片短信在内部邀约阶段,请联系您的阿里云商务经理申请开通或联系[阿里云售前咨询](https://help.aliyun.com/document_detail/464625.html?spm=a2c4g.11186623.0.0.213219fcSn2Ykj#section-81n-72q-ybm)。 + * - 卡片短信超时时间建议设置为≥3S;发生超时失败的情况时,建议查看回执状态后再判断是否重试。同时建议您在调用此接口时,不要开启SDK重试逻辑,否则可能会造成多次发送的情况。超时和重试的相关设置,请参见[超时机制](https://help.aliyun.com/document_detail/262079.html)、[重试机制](https://help.aliyun.com/document_detail/262080.html)。 + * - 国内短信、国际短信及多媒体短信目前均不支持幂等的能力,请您做好幂等控制,防止因多次重试而导致的重复操作问题。 + * - 发送卡片短信前需添加卡片短信模板且模板审核通过。本接口在发送短信时,会校验号码是否支持卡片短信。如果该手机号不支持发送卡片短信,可在接口中设置是否接受数字短信和文本短信的回落,提升发送的触达率。 + * ### QPS限制 + * 本接口的单用户QPS限制为1000次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @param request - SendCardSmsRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns SendCardSmsResponse + * + * @param SendCardSmsRequest $request + * @param RuntimeOptions $runtime + * + * @return SendCardSmsResponse + */ + public function sendCardSmsWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->cardObjects) { + @$query['CardObjects'] = $request->cardObjects; + } + + if (null !== $request->cardTemplateCode) { + @$query['CardTemplateCode'] = $request->cardTemplateCode; + } + + if (null !== $request->digitalTemplateCode) { + @$query['DigitalTemplateCode'] = $request->digitalTemplateCode; + } + + if (null !== $request->digitalTemplateParam) { + @$query['DigitalTemplateParam'] = $request->digitalTemplateParam; + } + + if (null !== $request->fallbackType) { + @$query['FallbackType'] = $request->fallbackType; + } + + if (null !== $request->outId) { + @$query['OutId'] = $request->outId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->smsTemplateCode) { + @$query['SmsTemplateCode'] = $request->smsTemplateCode; + } + + if (null !== $request->smsTemplateParam) { + @$query['SmsTemplateParam'] = $request->smsTemplateParam; + } + + if (null !== $request->smsUpExtendCode) { + @$query['SmsUpExtendCode'] = $request->smsUpExtendCode; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + if (null !== $request->templateParam) { + @$query['TemplateParam'] = $request->templateParam; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'SendCardSms', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendCardSmsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Sends a card message. + * + * @remarks + * - 发送卡片短信为计费接口,卡片短信发送失败或渲染失败时不计费,详情请参见[多媒体短信定价](https://help.aliyun.com/document_detail/437951.html)。 + * - 目前卡片短信在内部邀约阶段,请联系您的阿里云商务经理申请开通或联系[阿里云售前咨询](https://help.aliyun.com/document_detail/464625.html?spm=a2c4g.11186623.0.0.213219fcSn2Ykj#section-81n-72q-ybm)。 + * - 卡片短信超时时间建议设置为≥3S;发生超时失败的情况时,建议查看回执状态后再判断是否重试。同时建议您在调用此接口时,不要开启SDK重试逻辑,否则可能会造成多次发送的情况。超时和重试的相关设置,请参见[超时机制](https://help.aliyun.com/document_detail/262079.html)、[重试机制](https://help.aliyun.com/document_detail/262080.html)。 + * - 国内短信、国际短信及多媒体短信目前均不支持幂等的能力,请您做好幂等控制,防止因多次重试而导致的重复操作问题。 + * - 发送卡片短信前需添加卡片短信模板且模板审核通过。本接口在发送短信时,会校验号码是否支持卡片短信。如果该手机号不支持发送卡片短信,可在接口中设置是否接受数字短信和文本短信的回落,提升发送的触达率。 + * ### QPS限制 + * 本接口的单用户QPS限制为1000次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。 + * + * @param request - SendCardSmsRequest + * + * @returns SendCardSmsResponse + * + * @param SendCardSmsRequest $request + * + * @return SendCardSmsResponse + */ + public function sendCardSms($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendCardSmsWithOptions($request, $runtime); + } + + /** + * 发送物流短信 + * + * @param request - SendLogisticsSmsRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns SendLogisticsSmsResponse + * + * @param SendLogisticsSmsRequest $request + * @param RuntimeOptions $runtime + * + * @return SendLogisticsSmsResponse + */ + public function sendLogisticsSmsWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->expressCompanyCode) { + @$query['ExpressCompanyCode'] = $request->expressCompanyCode; + } + + if (null !== $request->mailNo) { + @$query['MailNo'] = $request->mailNo; + } + + if (null !== $request->outId) { + @$query['OutId'] = $request->outId; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->platformCompanyCode) { + @$query['PlatformCompanyCode'] = $request->platformCompanyCode; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + if (null !== $request->templateParam) { + @$query['TemplateParam'] = $request->templateParam; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'SendLogisticsSms', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendLogisticsSmsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 发送物流短信 + * + * @param request - SendLogisticsSmsRequest + * + * @returns SendLogisticsSmsResponse + * + * @param SendLogisticsSmsRequest $request + * + * @return SendLogisticsSmsResponse + */ + public function sendLogisticsSms($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendLogisticsSmsWithOptions($request, $runtime); + } + + /** + * 5G消息首次下行. + * + * @param request - SendRCSRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns SendRCSResponse + * + * @param SendRCSRequest $request + * @param RuntimeOptions $runtime + * + * @return SendRCSResponse + */ + public function sendRCSWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->outId) { + @$query['OutId'] = $request->outId; + } + + if (null !== $request->phoneNumbers) { + @$query['PhoneNumbers'] = $request->phoneNumbers; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + if (null !== $request->templateParam) { + @$query['TemplateParam'] = $request->templateParam; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'SendRCS', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendRCSResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 5G消息首次下行. + * + * @param request - SendRCSRequest + * + * @returns SendRCSResponse + * + * @param SendRCSRequest $request + * + * @return SendRCSResponse + */ + public function sendRCS($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendRCSWithOptions($request, $runtime); + } + + /** + * 5G消息交互下行. + * + * @param request - SendRCSReplyRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns SendRCSReplyResponse + * + * @param SendRCSReplyRequest $request + * @param RuntimeOptions $runtime + * + * @return SendRCSReplyResponse + */ + public function sendRCSReplyWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->inReplyToRcsID) { + @$query['InReplyToRcsID'] = $request->inReplyToRcsID; + } + + if (null !== $request->outId) { + @$query['OutId'] = $request->outId; + } + + if (null !== $request->phoneNumbers) { + @$query['PhoneNumbers'] = $request->phoneNumbers; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + if (null !== $request->templateParam) { + @$query['TemplateParam'] = $request->templateParam; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'SendRCSReply', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendRCSReplyResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 5G消息交互下行. + * + * @param request - SendRCSReplyRequest + * + * @returns SendRCSReplyResponse + * + * @param SendRCSReplyRequest $request + * + * @return SendRCSReplyResponse + */ + public function sendRCSReply($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendRCSReplyWithOptions($request, $runtime); + } + + /** + * Sends an SMS message to one or more specified mobile numbers. + * + * @remarks + * Use this API to send an SMS message to a single mobile number. This API also supports sending messages with the same signature and template variables to multiple mobile numbers, up to 1,000 per request. Note that bulk sending may experience some latency. If you need to send messages with different signatures or template variables to multiple recipients, use the [SendBatchSms](https://help.aliyun.com/document_detail/419274.html) API, which supports up to 100 mobile numbers per request. + * ### Usage notes + * - For SMS messages sent to the Chinese mainland, we recommend setting the timeout period to 1 second or longer. If a timeout occurs, check the delivery receipt status before retrying the request. For more information about timeout and retry settings, see [Timeout mechanism](https://help.aliyun.com/document_detail/262079.html) and [Retry mechanism](https://help.aliyun.com/document_detail/262080.html). + * - This API does not support idempotence for domestic, international, or multimedia SMS messages. You must implement your own idempotence controls to prevent sending duplicate messages during retries. + * - This is a billable API. For messages sent to the Chinese mainland, billing is based on the delivery receipt status from the carrier. You are not charged if the API call is successful but the carrier fails to deliver the message. For more information, see [Billing](https://help.aliyun.com/document_detail/44340.html). + * ### QPS limit + * This API has a queries per second (QPS) limit of 5,000 for each user. The system throttles calls that exceed this limit. To avoid throttling, use this API within the specified limit. + * + * @param request - SendSmsRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns SendSmsResponse + * + * @param SendSmsRequest $request + * @param RuntimeOptions $runtime + * + * @return SendSmsResponse + */ + public function sendSmsWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->outId) { + @$query['OutId'] = $request->outId; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->phoneNumbers) { + @$query['PhoneNumbers'] = $request->phoneNumbers; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->smsUpExtendCode) { + @$query['SmsUpExtendCode'] = $request->smsUpExtendCode; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + if (null !== $request->templateParam) { + @$query['TemplateParam'] = $request->templateParam; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'SendSms', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendSmsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Sends an SMS message to one or more specified mobile numbers. + * + * @remarks + * Use this API to send an SMS message to a single mobile number. This API also supports sending messages with the same signature and template variables to multiple mobile numbers, up to 1,000 per request. Note that bulk sending may experience some latency. If you need to send messages with different signatures or template variables to multiple recipients, use the [SendBatchSms](https://help.aliyun.com/document_detail/419274.html) API, which supports up to 100 mobile numbers per request. + * ### Usage notes + * - For SMS messages sent to the Chinese mainland, we recommend setting the timeout period to 1 second or longer. If a timeout occurs, check the delivery receipt status before retrying the request. For more information about timeout and retry settings, see [Timeout mechanism](https://help.aliyun.com/document_detail/262079.html) and [Retry mechanism](https://help.aliyun.com/document_detail/262080.html). + * - This API does not support idempotence for domestic, international, or multimedia SMS messages. You must implement your own idempotence controls to prevent sending duplicate messages during retries. + * - This is a billable API. For messages sent to the Chinese mainland, billing is based on the delivery receipt status from the carrier. You are not charged if the API call is successful but the carrier fails to deliver the message. For more information, see [Billing](https://help.aliyun.com/document_detail/44340.html). + * ### QPS limit + * This API has a queries per second (QPS) limit of 5,000 for each user. The system throttles calls that exceed this limit. To avoid throttling, use this API within the specified limit. + * + * @param request - SendSmsRequest + * + * @returns SendSmsResponse + * + * @param SendSmsRequest $request + * + * @return SendSmsResponse + */ + public function sendSms($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendSmsWithOptions($request, $runtime); + } + + /** + * Feeds back the SMS delivery status corresponding to each message ID (MessageId) to the Alibaba Cloud International SMS platform. + * + * @remarks + * Metric definitions: + * - OTP send volume: the number of verification codes sent. + * - OTP conversion volume: the number of verification codes converted (the number of times a user successfully obtained a verification code and reported it back). + * Conversion rate = OTP conversion volume / OTP send volume. + * > The conversion rate feedback feature has a certain level of intrusiveness on the business system. To prevent jitter in conversion rate API calls from affecting business logic, please consider the following: - Call the API in asynchronous mode (for example, using a queue or event-driven approach). - Add a degradable solution to protect business logic (for example, manual degradation, or automatic degradation using a circuit breaker). + * + * @param request - SmsConversionIntlRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns SmsConversionIntlResponse + * + * @param SmsConversionIntlRequest $request + * @param RuntimeOptions $runtime + * + * @return SmsConversionIntlResponse + */ + public function smsConversionIntlWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->conversionTime) { + @$query['ConversionTime'] = $request->conversionTime; + } + + if (null !== $request->delivered) { + @$query['Delivered'] = $request->delivered; + } + + if (null !== $request->messageId) { + @$query['MessageId'] = $request->messageId; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'SmsConversionIntl', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SmsConversionIntlResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Feeds back the SMS delivery status corresponding to each message ID (MessageId) to the Alibaba Cloud International SMS platform. + * + * @remarks + * Metric definitions: + * - OTP send volume: the number of verification codes sent. + * - OTP conversion volume: the number of verification codes converted (the number of times a user successfully obtained a verification code and reported it back). + * Conversion rate = OTP conversion volume / OTP send volume. + * > The conversion rate feedback feature has a certain level of intrusiveness on the business system. To prevent jitter in conversion rate API calls from affecting business logic, please consider the following: - Call the API in asynchronous mode (for example, using a queue or event-driven approach). - Add a degradable solution to protect business logic (for example, manual degradation, or automatic degradation using a circuit breaker). + * + * @param request - SmsConversionIntlRequest + * + * @returns SmsConversionIntlResponse + * + * @param SmsConversionIntlRequest $request + * + * @return SmsConversionIntlResponse + */ + public function smsConversionIntl($request) + { + $runtime = new RuntimeOptions([]); + + return $this->smsConversionIntlWithOptions($request, $runtime); + } + + /** + * Submits an SMS qualification application. As required by the Ministry of Industry and Information Technology (MIIT) and carriers for real-name SMS sending, domestic SMS services require qualification credential information of the signature owner. Apply for an SMS qualification first, and then apply for signatures and templates. + * + * @remarks + * - Before submitting an application, read [Qualification material description](https://help.aliyun.com/document_detail/2384377.html) and prepare the required qualification materials. + * - Currently, only users who have completed **verify your identity - Enterprise account** can use the API to apply for SMS qualifications. If your Alibaba Cloud account has completed verify your identity - Individual account, apply for qualifications through the Short Message Service [console](https://dysms.console.aliyun.com/domestic/text/qualification/add), or [upgrade to verify your identity - Enterprise account](https://help.aliyun.com/document_detail/37178.html). [View my account verification type](https://myaccount.console.aliyun.com/cert-info) + * - Batch qualification applications are not supported. Wait at least 5 seconds between applications. + * + * @param tmpReq - SubmitSmsQualificationRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns SubmitSmsQualificationResponse + * + * @param SubmitSmsQualificationRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return SubmitSmsQualificationResponse + */ + public function submitSmsQualificationWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new SubmitSmsQualificationShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->businessLicensePics) { + $request->businessLicensePicsShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->businessLicensePics, 'BusinessLicensePics', 'json'); + } + + if (null !== $tmpReq->otherFiles) { + $request->otherFilesShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->otherFiles, 'OtherFiles', 'json'); + } + + $query = []; + if (null !== $request->adminIDCardExpDate) { + @$query['AdminIDCardExpDate'] = $request->adminIDCardExpDate; + } + + if (null !== $request->adminIDCardFrontFace) { + @$query['AdminIDCardFrontFace'] = $request->adminIDCardFrontFace; + } + + if (null !== $request->adminIDCardNo) { + @$query['AdminIDCardNo'] = $request->adminIDCardNo; + } + + if (null !== $request->adminIDCardPic) { + @$query['AdminIDCardPic'] = $request->adminIDCardPic; + } + + if (null !== $request->adminIDCardType) { + @$query['AdminIDCardType'] = $request->adminIDCardType; + } + + if (null !== $request->adminName) { + @$query['AdminName'] = $request->adminName; + } + + if (null !== $request->adminPhoneNo) { + @$query['AdminPhoneNo'] = $request->adminPhoneNo; + } + + if (null !== $request->businessLicensePicsShrink) { + @$query['BusinessLicensePics'] = $request->businessLicensePicsShrink; + } + + if (null !== $request->bussinessLicenseExpDate) { + @$query['BussinessLicenseExpDate'] = $request->bussinessLicenseExpDate; + } + + if (null !== $request->certifyCode) { + @$query['CertifyCode'] = $request->certifyCode; + } + + if (null !== $request->companyName) { + @$query['CompanyName'] = $request->companyName; + } + + if (null !== $request->companyType) { + @$query['CompanyType'] = $request->companyType; + } + + if (null !== $request->legalPersonIDCardNo) { + @$query['LegalPersonIDCardNo'] = $request->legalPersonIDCardNo; + } + + if (null !== $request->legalPersonIDCardType) { + @$query['LegalPersonIDCardType'] = $request->legalPersonIDCardType; + } + + if (null !== $request->legalPersonIdCardBackSide) { + @$query['LegalPersonIdCardBackSide'] = $request->legalPersonIdCardBackSide; + } + + if (null !== $request->legalPersonIdCardEffTime) { + @$query['LegalPersonIdCardEffTime'] = $request->legalPersonIdCardEffTime; + } + + if (null !== $request->legalPersonIdCardFrontSide) { + @$query['LegalPersonIdCardFrontSide'] = $request->legalPersonIdCardFrontSide; + } + + if (null !== $request->legalPersonName) { + @$query['LegalPersonName'] = $request->legalPersonName; + } + + if (null !== $request->organizationCode) { + @$query['OrganizationCode'] = $request->organizationCode; + } + + if (null !== $request->otherFilesShrink) { + @$query['OtherFiles'] = $request->otherFilesShrink; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->qualificationName) { + @$query['QualificationName'] = $request->qualificationName; + } + + if (null !== $request->remark) { + @$query['Remark'] = $request->remark; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->useBySelf) { + @$query['UseBySelf'] = $request->useBySelf; + } + + if (null !== $request->whetherShare) { + @$query['WhetherShare'] = $request->whetherShare; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'SubmitSmsQualification', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SubmitSmsQualificationResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Submits an SMS qualification application. As required by the Ministry of Industry and Information Technology (MIIT) and carriers for real-name SMS sending, domestic SMS services require qualification credential information of the signature owner. Apply for an SMS qualification first, and then apply for signatures and templates. + * + * @remarks + * - Before submitting an application, read [Qualification material description](https://help.aliyun.com/document_detail/2384377.html) and prepare the required qualification materials. + * - Currently, only users who have completed **verify your identity - Enterprise account** can use the API to apply for SMS qualifications. If your Alibaba Cloud account has completed verify your identity - Individual account, apply for qualifications through the Short Message Service [console](https://dysms.console.aliyun.com/domestic/text/qualification/add), or [upgrade to verify your identity - Enterprise account](https://help.aliyun.com/document_detail/37178.html). [View my account verification type](https://myaccount.console.aliyun.com/cert-info) + * - Batch qualification applications are not supported. Wait at least 5 seconds between applications. + * + * @param request - SubmitSmsQualificationRequest + * + * @returns SubmitSmsQualificationResponse + * + * @param SubmitSmsQualificationRequest $request + * + * @return SubmitSmsQualificationResponse + */ + public function submitSmsQualification($request) + { + $runtime = new RuntimeOptions([]); + + return $this->submitSmsQualificationWithOptions($request, $runtime); + } + + /** + * Tags can mark resources, allowing enterprises or individuals to classify templates of the same type for easier search and resource aggregation. Call this operation to bind tags to SMS templates. + * + * @remarks + * - Each template can be bound to up to 20 tags. + * - The tag key (Key) must be unique within the same template. If a template has two tags with the same Key but different Values, the new value overwrites the old value. + * - This feature is only available for domestic text messages of Short Message Service on the China site. + * ### QPS limit + * The per-user QPS limit of this operation is 50 calls per second. If the limit is exceeded, API calls are throttled, which may affect your business. Call this operation at a reasonable frequency. + * + * @param request - TagResourcesRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns TagResourcesResponse + * + * @param TagResourcesRequest $request + * @param RuntimeOptions $runtime + * + * @return TagResourcesResponse + */ + public function tagResourcesWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->prodCode) { + @$query['ProdCode'] = $request->prodCode; + } + + if (null !== $request->regionId) { + @$query['RegionId'] = $request->regionId; + } + + if (null !== $request->resourceId) { + @$query['ResourceId'] = $request->resourceId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->resourceType) { + @$query['ResourceType'] = $request->resourceType; + } + + if (null !== $request->tag) { + @$query['Tag'] = $request->tag; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'TagResources', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return TagResourcesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Tags can mark resources, allowing enterprises or individuals to classify templates of the same type for easier search and resource aggregation. Call this operation to bind tags to SMS templates. + * + * @remarks + * - Each template can be bound to up to 20 tags. + * - The tag key (Key) must be unique within the same template. If a template has two tags with the same Key but different Values, the new value overwrites the old value. + * - This feature is only available for domestic text messages of Short Message Service on the China site. + * ### QPS limit + * The per-user QPS limit of this operation is 50 calls per second. If the limit is exceeded, API calls are throttled, which may affect your business. Call this operation at a reasonable frequency. + * + * @param request - TagResourcesRequest + * + * @returns TagResourcesResponse + * + * @param TagResourcesRequest $request + * + * @return TagResourcesResponse + */ + public function tagResources($request) + { + $runtime = new RuntimeOptions([]); + + return $this->tagResourcesWithOptions($request, $runtime); + } + + /** + * Tags can mark resources, allowing enterprises or individuals to categorize templates of the same type for easier search and resource aggregation. If a template is no longer applicable to its currently bound tags, you can unbind the tags from the template. You can delete a single tag or delete tags in batches. + * + * @remarks + * ### QPS limit + * The QPS limit per user for this operation is 50 calls per second. If the limit is exceeded, API calls will be throttled, which may affect your business. Please call the operation reasonably. + * + * @param request - UntagResourcesRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns UntagResourcesResponse + * + * @param UntagResourcesRequest $request + * @param RuntimeOptions $runtime + * + * @return UntagResourcesResponse + */ + public function untagResourcesWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->all) { + @$query['All'] = $request->all; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->prodCode) { + @$query['ProdCode'] = $request->prodCode; + } + + if (null !== $request->regionId) { + @$query['RegionId'] = $request->regionId; + } + + if (null !== $request->resourceId) { + @$query['ResourceId'] = $request->resourceId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->resourceType) { + @$query['ResourceType'] = $request->resourceType; + } + + if (null !== $request->tagKey) { + @$query['TagKey'] = $request->tagKey; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'UntagResources', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UntagResourcesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * Tags can mark resources, allowing enterprises or individuals to categorize templates of the same type for easier search and resource aggregation. If a template is no longer applicable to its currently bound tags, you can unbind the tags from the template. You can delete a single tag or delete tags in batches. + * + * @remarks + * ### QPS limit + * The QPS limit per user for this operation is 50 calls per second. If the limit is exceeded, API calls will be throttled, which may affect your business. Please call the operation reasonably. + * + * @param request - UntagResourcesRequest + * + * @returns UntagResourcesResponse + * + * @param UntagResourcesRequest $request + * + * @return UntagResourcesResponse + */ + public function untagResources($request) + { + $runtime = new RuntimeOptions([]); + + return $this->untagResourcesWithOptions($request, $runtime); + } + + /** + * 修改验证码签名. + * + * @param request - UpdateExtCodeSignRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns UpdateExtCodeSignResponse + * + * @param UpdateExtCodeSignRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateExtCodeSignResponse + */ + public function updateExtCodeSignWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->existExtCode) { + @$query['ExistExtCode'] = $request->existExtCode; + } + + if (null !== $request->newExtCode) { + @$query['NewExtCode'] = $request->newExtCode; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateExtCodeSign', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateExtCodeSignResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 修改验证码签名. + * + * @param request - UpdateExtCodeSignRequest + * + * @returns UpdateExtCodeSignResponse + * + * @param UpdateExtCodeSignRequest $request + * + * @return UpdateExtCodeSignResponse + */ + public function updateExtCodeSign($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateExtCodeSignWithOptions($request, $runtime); + } + + /** + * 编辑5g签名. + * + * @param request - UpdateRCSSignatureRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns UpdateRCSSignatureResponse + * + * @param UpdateRCSSignatureRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateRCSSignatureResponse + */ + public function updateRCSSignatureWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->backgroundImage) { + @$query['BackgroundImage'] = $request->backgroundImage; + } + + if (null !== $request->bubbleColor) { + @$query['BubbleColor'] = $request->bubbleColor; + } + + if (null !== $request->category) { + @$query['Category'] = $request->category; + } + + if (null !== $request->description) { + @$query['Description'] = $request->description; + } + + if (null !== $request->latitude) { + @$query['Latitude'] = $request->latitude; + } + + if (null !== $request->logo) { + @$query['Logo'] = $request->logo; + } + + if (null !== $request->longitude) { + @$query['Longitude'] = $request->longitude; + } + + if (null !== $request->officeAddress) { + @$query['OfficeAddress'] = $request->officeAddress; + } + + if (null !== $request->serviceEmail) { + @$query['ServiceEmail'] = $request->serviceEmail; + } + + if (null !== $request->servicePhone) { + @$query['ServicePhone'] = $request->servicePhone; + } + + if (null !== $request->serviceTerms) { + @$query['ServiceTerms'] = $request->serviceTerms; + } + + if (null !== $request->serviceWebsite) { + @$query['ServiceWebsite'] = $request->serviceWebsite; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateRCSSignature', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateRCSSignatureResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 编辑5g签名. + * + * @param request - UpdateRCSSignatureRequest + * + * @returns UpdateRCSSignatureResponse + * + * @param UpdateRCSSignatureRequest $request + * + * @return UpdateRCSSignatureResponse + */ + public function updateRCSSignature($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateRCSSignatureWithOptions($request, $runtime); + } + + /** + * If you need to update SMS qualification information, you can submit a modification request through this API. After submission, it will re-enter the review process. + * + * @remarks + * - Qualifications under review do not support modification. Please wait for the review process to finish, or [withdraw the application](https://dysms.console.aliyun.com/domestic/text/qualification) in the SMS Service console before making modifications. + * - The modified SMS qualification **must be re-reviewed** (including qualifications that have already passed review). Please upload materials that meet the specifications according to the [Qualification Material Description](https://help.aliyun.com/document_detail/2384377.html). + * - **Modification is not supported** for the qualification name, application purpose, or unified social credit code. + * - Batch modification of SMS qualifications is not supported. It is recommended to leave at least 5 seconds between modifications. + * + * @param tmpReq - UpdateSmsQualificationRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns UpdateSmsQualificationResponse + * + * @param UpdateSmsQualificationRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return UpdateSmsQualificationResponse + */ + public function updateSmsQualificationWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new UpdateSmsQualificationShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->businessLicensePics) { + $request->businessLicensePicsShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->businessLicensePics, 'BusinessLicensePics', 'json'); + } + + if (null !== $tmpReq->otherFiles) { + $request->otherFilesShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->otherFiles, 'OtherFiles', 'json'); + } + + $query = []; + if (null !== $request->adminIDCardExpDate) { + @$query['AdminIDCardExpDate'] = $request->adminIDCardExpDate; + } + + if (null !== $request->adminIDCardFrontFace) { + @$query['AdminIDCardFrontFace'] = $request->adminIDCardFrontFace; + } + + if (null !== $request->adminIDCardNo) { + @$query['AdminIDCardNo'] = $request->adminIDCardNo; + } + + if (null !== $request->adminIDCardPic) { + @$query['AdminIDCardPic'] = $request->adminIDCardPic; + } + + if (null !== $request->adminIDCardType) { + @$query['AdminIDCardType'] = $request->adminIDCardType; + } + + if (null !== $request->adminName) { + @$query['AdminName'] = $request->adminName; + } + + if (null !== $request->adminPhoneNo) { + @$query['AdminPhoneNo'] = $request->adminPhoneNo; + } + + if (null !== $request->businessLicensePicsShrink) { + @$query['BusinessLicensePics'] = $request->businessLicensePicsShrink; + } + + if (null !== $request->bussinessLicenseExpDate) { + @$query['BussinessLicenseExpDate'] = $request->bussinessLicenseExpDate; + } + + if (null !== $request->certifyCode) { + @$query['CertifyCode'] = $request->certifyCode; + } + + if (null !== $request->companyName) { + @$query['CompanyName'] = $request->companyName; + } + + if (null !== $request->legalPersonIDCardNo) { + @$query['LegalPersonIDCardNo'] = $request->legalPersonIDCardNo; + } + + if (null !== $request->legalPersonIDCardType) { + @$query['LegalPersonIDCardType'] = $request->legalPersonIDCardType; + } + + if (null !== $request->legalPersonIdCardBackSide) { + @$query['LegalPersonIdCardBackSide'] = $request->legalPersonIdCardBackSide; + } + + if (null !== $request->legalPersonIdCardEffTime) { + @$query['LegalPersonIdCardEffTime'] = $request->legalPersonIdCardEffTime; + } + + if (null !== $request->legalPersonIdCardFrontSide) { + @$query['LegalPersonIdCardFrontSide'] = $request->legalPersonIdCardFrontSide; + } + + if (null !== $request->legalPersonName) { + @$query['LegalPersonName'] = $request->legalPersonName; + } + + if (null !== $request->orderId) { + @$query['OrderId'] = $request->orderId; + } + + if (null !== $request->otherFilesShrink) { + @$query['OtherFiles'] = $request->otherFilesShrink; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->qualificationGroupId) { + @$query['QualificationGroupId'] = $request->qualificationGroupId; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateSmsQualification', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateSmsQualificationResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * If you need to update SMS qualification information, you can submit a modification request through this API. After submission, it will re-enter the review process. + * + * @remarks + * - Qualifications under review do not support modification. Please wait for the review process to finish, or [withdraw the application](https://dysms.console.aliyun.com/domestic/text/qualification) in the SMS Service console before making modifications. + * - The modified SMS qualification **must be re-reviewed** (including qualifications that have already passed review). Please upload materials that meet the specifications according to the [Qualification Material Description](https://help.aliyun.com/document_detail/2384377.html). + * - **Modification is not supported** for the qualification name, application purpose, or unified social credit code. + * - Batch modification of SMS qualifications is not supported. It is recommended to leave at least 5 seconds between modifications. + * + * @param request - UpdateSmsQualificationRequest + * + * @returns UpdateSmsQualificationResponse + * + * @param UpdateSmsQualificationRequest $request + * + * @return UpdateSmsQualificationResponse + */ + public function updateSmsQualification($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateSmsQualificationWithOptions($request, $runtime); + } + + /** + * You can modify rejected or approved signatures. A modified signature is automatically submitted for review, and its status changes to pending review. + * + * @remarks + * - For details about the updates to the signature and template APIs, see [Announcement on Updating Signature & Template APIs for Short Message Service](https://help.aliyun.com/document_detail/2806975.html). + * - You can modify signatures that are either **rejected** or **approved**. For guidance on handling review failures, see [Handling signature review failures](https://help.aliyun.com/document_detail/65990.html). Call this API to modify and resubmit the signature for review. + * - You cannot use this API to edit the name of a **rejected** signature. To edit the name, go to the [Short Message Service console](https://dysms.console.aliyun.com/domestic/text/sign). + * - Signatures you request using this API are synchronized with the Short Message Service console. For information on managing signatures in the console, see [Signatures](https://help.aliyun.com/document_detail/108073.html). + * + * @param tmpReq - UpdateSmsSignRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns UpdateSmsSignResponse + * + * @param UpdateSmsSignRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return UpdateSmsSignResponse + */ + public function updateSmsSignWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new UpdateSmsSignShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->moreData) { + $request->moreDataShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->moreData, 'MoreData', 'json'); + } + + $query = []; + if (null !== $request->appIcpRecordId) { + @$query['AppIcpRecordId'] = $request->appIcpRecordId; + } + + if (null !== $request->applySceneContent) { + @$query['ApplySceneContent'] = $request->applySceneContent; + } + + if (null !== $request->authorizationLetterId) { + @$query['AuthorizationLetterId'] = $request->authorizationLetterId; + } + + if (null !== $request->moreDataShrink) { + @$query['MoreData'] = $request->moreDataShrink; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->qualificationId) { + @$query['QualificationId'] = $request->qualificationId; + } + + if (null !== $request->remark) { + @$query['Remark'] = $request->remark; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + if (null !== $request->signSource) { + @$query['SignSource'] = $request->signSource; + } + + if (null !== $request->signType) { + @$query['SignType'] = $request->signType; + } + + if (null !== $request->thirdParty) { + @$query['ThirdParty'] = $request->thirdParty; + } + + if (null !== $request->trademarkId) { + @$query['TrademarkId'] = $request->trademarkId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateSmsSign', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateSmsSignResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * You can modify rejected or approved signatures. A modified signature is automatically submitted for review, and its status changes to pending review. + * + * @remarks + * - For details about the updates to the signature and template APIs, see [Announcement on Updating Signature & Template APIs for Short Message Service](https://help.aliyun.com/document_detail/2806975.html). + * - You can modify signatures that are either **rejected** or **approved**. For guidance on handling review failures, see [Handling signature review failures](https://help.aliyun.com/document_detail/65990.html). Call this API to modify and resubmit the signature for review. + * - You cannot use this API to edit the name of a **rejected** signature. To edit the name, go to the [Short Message Service console](https://dysms.console.aliyun.com/domestic/text/sign). + * - Signatures you request using this API are synchronized with the Short Message Service console. For information on managing signatures in the console, see [Signatures](https://help.aliyun.com/document_detail/108073.html). + * + * @param request - UpdateSmsSignRequest + * + * @returns UpdateSmsSignResponse + * + * @param UpdateSmsSignRequest $request + * + * @return UpdateSmsSignResponse + */ + public function updateSmsSign($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateSmsSignWithOptions($request, $runtime); + } + + /** + * This API modifies a template that failed review and automatically resubmits it. + * + * @remarks + * - For details about the changes to the signature and template APIs, see [Announcement on Updating Signature & Template APIs for Short Message Service](https://help.aliyun.com/document_detail/2806975.html). + * - You can only modify templates that have failed review. For troubleshooting, see [Suggestions for handling failed SMS template reviews](https://help.aliyun.com/document_detail/65990.html). After modifying a template with this API, you must resubmit it for review. + * - Template changes made using this API are synchronized with the Short Message Service console. To learn more about managing templates in the console, see [SMS templates](https://help.aliyun.com/document_detail/108085.html). + * ### QPS limit + * The QPS limit for this API is 1,000 queries per second per user. If you exceed this limit, your API calls will be throttled. This can affect your business, so please use the API responsibly. + * + * @param tmpReq - UpdateSmsTemplateRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns UpdateSmsTemplateResponse + * + * @param UpdateSmsTemplateRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return UpdateSmsTemplateResponse + */ + public function updateSmsTemplateWithOptions($tmpReq, $runtime) + { + $tmpReq->validate(); + $request = new UpdateSmsTemplateShrinkRequest([]); + Utils::convert($tmpReq, $request); + if (null !== $tmpReq->moreData) { + $request->moreDataShrink = Utils::arrayToStringWithSpecifiedStyle($tmpReq->moreData, 'MoreData', 'json'); + } + + $query = []; + if (null !== $request->applySceneContent) { + @$query['ApplySceneContent'] = $request->applySceneContent; + } + + if (null !== $request->intlType) { + @$query['IntlType'] = $request->intlType; + } + + if (null !== $request->moreDataShrink) { + @$query['MoreData'] = $request->moreDataShrink; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->relatedSignName) { + @$query['RelatedSignName'] = $request->relatedSignName; + } + + if (null !== $request->remark) { + @$query['Remark'] = $request->remark; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + if (null !== $request->templateCode) { + @$query['TemplateCode'] = $request->templateCode; + } + + if (null !== $request->templateContent) { + @$query['TemplateContent'] = $request->templateContent; + } + + if (null !== $request->templateName) { + @$query['TemplateName'] = $request->templateName; + } + + if (null !== $request->templateRule) { + @$query['TemplateRule'] = $request->templateRule; + } + + if (null !== $request->templateType) { + @$query['TemplateType'] = $request->templateType; + } + + if (null !== $request->trafficDriving) { + @$query['TrafficDriving'] = $request->trafficDriving; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateSmsTemplate', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateSmsTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * This API modifies a template that failed review and automatically resubmits it. + * + * @remarks + * - For details about the changes to the signature and template APIs, see [Announcement on Updating Signature & Template APIs for Short Message Service](https://help.aliyun.com/document_detail/2806975.html). + * - You can only modify templates that have failed review. For troubleshooting, see [Suggestions for handling failed SMS template reviews](https://help.aliyun.com/document_detail/65990.html). After modifying a template with this API, you must resubmit it for review. + * - Template changes made using this API are synchronized with the Short Message Service console. To learn more about managing templates in the console, see [SMS templates](https://help.aliyun.com/document_detail/108085.html). + * ### QPS limit + * The QPS limit for this API is 1,000 queries per second per user. If you exceed this limit, your API calls will be throttled. This can affect your business, so please use the API responsibly. + * + * @param request - UpdateSmsTemplateRequest + * + * @returns UpdateSmsTemplateResponse + * + * @param UpdateSmsTemplateRequest $request + * + * @return UpdateSmsTemplateResponse + */ + public function updateSmsTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateSmsTemplateWithOptions($request, $runtime); + } + + /** + * 升级文本短信为5g签名. + * + * @param request - UpgradeToRCSSignatureRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns UpgradeToRCSSignatureResponse + * + * @param UpgradeToRCSSignatureRequest $request + * @param RuntimeOptions $runtime + * + * @return UpgradeToRCSSignatureResponse + */ + public function upgradeToRCSSignatureWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->backgroundImage) { + @$query['BackgroundImage'] = $request->backgroundImage; + } + + if (null !== $request->bubbleColor) { + @$query['BubbleColor'] = $request->bubbleColor; + } + + if (null !== $request->category) { + @$query['Category'] = $request->category; + } + + if (null !== $request->description) { + @$query['Description'] = $request->description; + } + + if (null !== $request->latitude) { + @$query['Latitude'] = $request->latitude; + } + + if (null !== $request->logo) { + @$query['Logo'] = $request->logo; + } + + if (null !== $request->longitude) { + @$query['Longitude'] = $request->longitude; + } + + if (null !== $request->officeAddress) { + @$query['OfficeAddress'] = $request->officeAddress; + } + + if (null !== $request->serviceEmail) { + @$query['ServiceEmail'] = $request->serviceEmail; + } + + if (null !== $request->servicePhone) { + @$query['ServicePhone'] = $request->servicePhone; + } + + if (null !== $request->serviceTerms) { + @$query['ServiceTerms'] = $request->serviceTerms; + } + + if (null !== $request->serviceWebsite) { + @$query['ServiceWebsite'] = $request->serviceWebsite; + } + + if (null !== $request->signName) { + @$query['SignName'] = $request->signName; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'UpgradeToRCSSignature', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpgradeToRCSSignatureResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 升级文本短信为5g签名. + * + * @param request - UpgradeToRCSSignatureRequest + * + * @returns UpgradeToRCSSignatureResponse + * + * @param UpgradeToRCSSignatureRequest $request + * + * @return UpgradeToRCSSignatureResponse + */ + public function upgradeToRCSSignature($request) + { + $runtime = new RuntimeOptions([]); + + return $this->upgradeToRCSSignatureWithOptions($request, $runtime); + } + + /** + * When applying for SMS qualification, the administrator\\"s phone number must be verified. This operation verifies the phone number and the received verification code. + * + * @remarks + * - Call the [RequiredPhoneCode](~~RequiredPhoneCode~~) operation first. Alibaba Cloud sends an SMS verification code to the phone number that you provided. + * - This operation does not affect the SMS qualification application process and is used only to verify the SMS verification code. When you submit the actual application, pass the verification code into the `CertifyCode` parameter of the [SubmitSmsQualification](~~SubmitSmsQualification~~) operation. + * + * @param request - ValidPhoneCodeRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns ValidPhoneCodeResponse + * + * @param ValidPhoneCodeRequest $request + * @param RuntimeOptions $runtime + * + * @return ValidPhoneCodeResponse + */ + public function validPhoneCodeWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->certifyCode) { + @$query['CertifyCode'] = $request->certifyCode; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->phoneNo) { + @$query['PhoneNo'] = $request->phoneNo; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'ValidPhoneCode', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ValidPhoneCodeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * When applying for SMS qualification, the administrator\\"s phone number must be verified. This operation verifies the phone number and the received verification code. + * + * @remarks + * - Call the [RequiredPhoneCode](~~RequiredPhoneCode~~) operation first. Alibaba Cloud sends an SMS verification code to the phone number that you provided. + * - This operation does not affect the SMS qualification application process and is used only to verify the SMS verification code. When you submit the actual application, pass the verification code into the `CertifyCode` parameter of the [SubmitSmsQualification](~~SubmitSmsQualification~~) operation. + * + * @param request - ValidPhoneCodeRequest + * + * @returns ValidPhoneCodeResponse + * + * @param ValidPhoneCodeRequest $request + * + * @return ValidPhoneCodeResponse + */ + public function validPhoneCode($request) + { + $runtime = new RuntimeOptions([]); + + return $this->validPhoneCodeWithOptions($request, $runtime); + } + + /** + * 物流短信运单号校验. + * + * @param request - VerifyLogisticsSmsMailNoRequest + * @param runtime - runtime options for this request RuntimeOptions + * + * @returns VerifyLogisticsSmsMailNoResponse + * + * @param VerifyLogisticsSmsMailNoRequest $request + * @param RuntimeOptions $runtime + * + * @return VerifyLogisticsSmsMailNoResponse + */ + public function verifyLogisticsSmsMailNoWithOptions($request, $runtime) + { + $request->validate(); + $query = []; + if (null !== $request->expressCompanyCode) { + @$query['ExpressCompanyCode'] = $request->expressCompanyCode; + } + + if (null !== $request->mailNo) { + @$query['MailNo'] = $request->mailNo; + } + + if (null !== $request->ownerId) { + @$query['OwnerId'] = $request->ownerId; + } + + if (null !== $request->platformCompanyCode) { + @$query['PlatformCompanyCode'] = $request->platformCompanyCode; + } + + if (null !== $request->resourceOwnerAccount) { + @$query['ResourceOwnerAccount'] = $request->resourceOwnerAccount; + } + + if (null !== $request->resourceOwnerId) { + @$query['ResourceOwnerId'] = $request->resourceOwnerId; + } + + $req = new OpenApiRequest([ + 'query' => Utils::query($query), + ]); + $params = new Params([ + 'action' => 'VerifyLogisticsSmsMailNo', + 'version' => '2017-05-25', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return VerifyLogisticsSmsMailNoResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * 物流短信运单号校验. + * + * @param request - VerifyLogisticsSmsMailNoRequest + * + * @returns VerifyLogisticsSmsMailNoResponse + * + * @param VerifyLogisticsSmsMailNoRequest $request + * + * @return VerifyLogisticsSmsMailNoResponse + */ + public function verifyLogisticsSmsMailNo($request) + { + $runtime = new RuntimeOptions([]); + + return $this->verifyLogisticsSmsMailNoWithOptions($request, $runtime); + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddExtCodeSignRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddExtCodeSignRequest.php new file mode 100644 index 0000000..63f5040 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddExtCodeSignRequest.php @@ -0,0 +1,104 @@ + 'ExtCode', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->extCode) { + $res['ExtCode'] = $this->extCode; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ExtCode'])) { + $model->extCode = $map['ExtCode']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddExtCodeSignResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddExtCodeSignResponse.php new file mode 100644 index 0000000..ded5166 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddExtCodeSignResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = AddExtCodeSignResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddExtCodeSignResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddExtCodeSignResponseBody.php new file mode 100644 index 0000000..9e64ea3 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddExtCodeSignResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddRcsSignMenuRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddRcsSignMenuRequest.php new file mode 100644 index 0000000..9ee62ea --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddRcsSignMenuRequest.php @@ -0,0 +1,62 @@ + 'MenuContent', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->menuContent) { + $res['MenuContent'] = $this->menuContent; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MenuContent'])) { + $model->menuContent = $map['MenuContent']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddRcsSignMenuResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddRcsSignMenuResponse.php new file mode 100644 index 0000000..a82cc0d --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddRcsSignMenuResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = AddRcsSignMenuResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddRcsSignMenuResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddRcsSignMenuResponseBody.php new file mode 100644 index 0000000..2806e9c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddRcsSignMenuResponseBody.php @@ -0,0 +1,131 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + foreach ($this->data as $key1 => $value1) { + $res['Data'][$key1] = $value1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + foreach ($map['Data'] as $key1 => $value1) { + $model->data[$key1] = $value1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlRequest.php new file mode 100644 index 0000000..4c65167 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlRequest.php @@ -0,0 +1,118 @@ + 'EffectiveDays', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'shortUrlName' => 'ShortUrlName', + 'sourceUrl' => 'SourceUrl', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->effectiveDays) { + $res['EffectiveDays'] = $this->effectiveDays; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->shortUrlName) { + $res['ShortUrlName'] = $this->shortUrlName; + } + + if (null !== $this->sourceUrl) { + $res['SourceUrl'] = $this->sourceUrl; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EffectiveDays'])) { + $model->effectiveDays = $map['EffectiveDays']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['ShortUrlName'])) { + $model->shortUrlName = $map['ShortUrlName']; + } + + if (isset($map['SourceUrl'])) { + $model->sourceUrl = $map['SourceUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponse.php new file mode 100644 index 0000000..cb1dabe --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = AddShortUrlResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponseBody.php new file mode 100644 index 0000000..0055130 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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/dysmsapi-20170525/src/Models/AddShortUrlResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponseBody/data.php new file mode 100644 index 0000000..168c46c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponseBody/data.php @@ -0,0 +1,76 @@ + 'ExpireDate', + 'shortUrl' => 'ShortUrl', + 'sourceUrl' => 'SourceUrl', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->expireDate) { + $res['ExpireDate'] = $this->expireDate; + } + + if (null !== $this->shortUrl) { + $res['ShortUrl'] = $this->shortUrl; + } + + if (null !== $this->sourceUrl) { + $res['SourceUrl'] = $this->sourceUrl; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ExpireDate'])) { + $model->expireDate = $map['ExpireDate']; + } + + if (isset($map['ShortUrl'])) { + $model->shortUrl = $map['ShortUrl']; + } + + if (isset($map['SourceUrl'])) { + $model->sourceUrl = $map['SourceUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignRequest.php new file mode 100644 index 0000000..4cd93aa --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignRequest.php @@ -0,0 +1,164 @@ + 'OwnerId', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signFileList' => 'SignFileList', + 'signName' => 'SignName', + 'signSource' => 'SignSource', + 'signType' => 'SignType', + ]; + + public function validate() + { + if (\is_array($this->signFileList)) { + Model::validateArray($this->signFileList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signFileList) { + if (\is_array($this->signFileList)) { + $res['SignFileList'] = []; + $n1 = 0; + foreach ($this->signFileList as $item1) { + $res['SignFileList'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->signSource) { + $res['SignSource'] = $this->signSource; + } + + if (null !== $this->signType) { + $res['SignType'] = $this->signType; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignFileList'])) { + if (!empty($map['SignFileList'])) { + $model->signFileList = []; + $n1 = 0; + foreach ($map['SignFileList'] as $item1) { + $model->signFileList[$n1] = signFileList::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SignSource'])) { + $model->signSource = $map['SignSource']; + } + + if (isset($map['SignType'])) { + $model->signType = $map['SignType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignRequest/signFileList.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignRequest/signFileList.php new file mode 100644 index 0000000..cf7ad20 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignRequest/signFileList.php @@ -0,0 +1,62 @@ + 'FileContents', + 'fileSuffix' => 'FileSuffix', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->fileContents) { + $res['FileContents'] = $this->fileContents; + } + + if (null !== $this->fileSuffix) { + $res['FileSuffix'] = $this->fileSuffix; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FileContents'])) { + $model->fileContents = $map['FileContents']; + } + + if (isset($map['FileSuffix'])) { + $model->fileSuffix = $map['FileSuffix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignResponse.php new file mode 100644 index 0000000..8746057 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = AddSmsSignResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignResponseBody.php new file mode 100644 index 0000000..db7da41 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignResponseBody.php @@ -0,0 +1,90 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateRequest.php new file mode 100644 index 0000000..2ff5b59 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateRequest.php @@ -0,0 +1,132 @@ + 'OwnerId', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'templateContent' => 'TemplateContent', + 'templateName' => 'TemplateName', + 'templateType' => 'TemplateType', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->templateContent) { + $res['TemplateContent'] = $this->templateContent; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TemplateContent'])) { + $model->templateContent = $map['TemplateContent']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateResponse.php new file mode 100644 index 0000000..27b4272 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = AddSmsTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateResponseBody.php new file mode 100644 index 0000000..a88e518 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateResponseBody.php @@ -0,0 +1,90 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationRequest.php new file mode 100644 index 0000000..28e133f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationRequest.php @@ -0,0 +1,118 @@ + 'AuthorizationLetterId', + 'ownerId' => 'OwnerId', + 'qualificationId' => 'QualificationId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signatureName' => 'SignatureName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->authorizationLetterId) { + $res['AuthorizationLetterId'] = $this->authorizationLetterId; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationId) { + $res['QualificationId'] = $this->qualificationId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signatureName) { + $res['SignatureName'] = $this->signatureName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AuthorizationLetterId'])) { + $model->authorizationLetterId = $map['AuthorizationLetterId']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationId'])) { + $model->qualificationId = $map['QualificationId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignatureName'])) { + $model->signatureName = $map['SignatureName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationResponse.php new file mode 100644 index 0000000..3dbc334 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = ChangeSignatureQualificationResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationResponseBody.php new file mode 100644 index 0000000..e914043 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationResponseBody/data.php new file mode 100644 index 0000000..d29c13d --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ChangeSignatureQualificationResponseBody/data.php @@ -0,0 +1,103 @@ + 'Data', + 'errCode' => 'ErrCode', + 'errMessage' => 'ErrMessage', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + foreach ($this->data as $key1 => $value1) { + $res['Data'][$key1] = $value1; + } + } + } + + if (null !== $this->errCode) { + $res['ErrCode'] = $this->errCode; + } + + if (null !== $this->errMessage) { + $res['ErrMessage'] = $this->errMessage; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + foreach ($map['Data'] as $key1 => $value1) { + $model->data[$key1] = $value1; + } + } + } + + if (isset($map['ErrCode'])) { + $model->errCode = $map['ErrCode']; + } + + if (isset($map['ErrMessage'])) { + $model->errMessage = $map['ErrMessage']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportRequest.php new file mode 100644 index 0000000..e1479b2 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportRequest.php @@ -0,0 +1,89 @@ + 'Mobiles', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + if (\is_array($this->mobiles)) { + Model::validateArray($this->mobiles); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->mobiles) { + if (\is_array($this->mobiles)) { + $res['Mobiles'] = []; + $n1 = 0; + foreach ($this->mobiles as $item1) { + if (\is_array($item1)) { + $res['Mobiles'][$n1] = []; + foreach ($item1 as $key2 => $value2) { + $res['Mobiles'][$n1][$key2] = $value2; + } + } + ++$n1; + } + } + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Mobiles'])) { + if (!empty($map['Mobiles'])) { + $model->mobiles = []; + $n1 = 0; + foreach ($map['Mobiles'] as $item1) { + if (!empty($item1)) { + $model->mobiles[$n1] = []; + foreach ($item1 as $key2 => $value2) { + $model->mobiles[$n1][$key2] = $value2; + } + } + ++$n1; + } + } + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponse.php new file mode 100644 index 0000000..1253baa --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CheckMobilesCardSupportResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponseBody.php new file mode 100644 index 0000000..2fa8a14 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponseBody/data.php new file mode 100644 index 0000000..6bf5196 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponseBody/data.php @@ -0,0 +1,66 @@ + 'queryResult', + ]; + + public function validate() + { + if (\is_array($this->queryResult)) { + Model::validateArray($this->queryResult); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->queryResult) { + if (\is_array($this->queryResult)) { + $res['queryResult'] = []; + $n1 = 0; + foreach ($this->queryResult as $item1) { + $res['queryResult'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['queryResult'])) { + if (!empty($map['queryResult'])) { + $model->queryResult = []; + $n1 = 0; + foreach ($map['queryResult'] as $item1) { + $model->queryResult[$n1] = queryResult::fromMap($item1); + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponseBody/data/queryResult.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponseBody/data/queryResult.php new file mode 100644 index 0000000..7b5fe4c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponseBody/data/queryResult.php @@ -0,0 +1,62 @@ + 'mobile', + 'support' => 'support', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->mobile) { + $res['mobile'] = $this->mobile; + } + + if (null !== $this->support) { + $res['support'] = $this->support; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['mobile'])) { + $model->mobile = $map['mobile']; + } + + if (isset($map['support'])) { + $model->support = $map['support']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ConversionDataIntlRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ConversionDataIntlRequest.php new file mode 100644 index 0000000..bce461f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ConversionDataIntlRequest.php @@ -0,0 +1,104 @@ + 'ConversionRate', + 'ownerId' => 'OwnerId', + 'reportTime' => 'ReportTime', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->conversionRate) { + $res['ConversionRate'] = $this->conversionRate; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->reportTime) { + $res['ReportTime'] = $this->reportTime; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ConversionRate'])) { + $model->conversionRate = $map['ConversionRate']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ReportTime'])) { + $model->reportTime = $map['ReportTime']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ConversionDataIntlResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ConversionDataIntlResponse.php new file mode 100644 index 0000000..c6080c2 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ConversionDataIntlResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = ConversionDataIntlResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ConversionDataIntlResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ConversionDataIntlResponseBody.php new file mode 100644 index 0000000..24f90f6 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ConversionDataIntlResponseBody.php @@ -0,0 +1,76 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateRequest.php new file mode 100644 index 0000000..5f03c99 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateRequest.php @@ -0,0 +1,103 @@ + 'Factorys', + 'memo' => 'Memo', + 'template' => 'Template', + 'templateName' => 'TemplateName', + ]; + + public function validate() + { + if (\is_array($this->template)) { + Model::validateArray($this->template); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->factorys) { + $res['Factorys'] = $this->factorys; + } + + if (null !== $this->memo) { + $res['Memo'] = $this->memo; + } + + if (null !== $this->template) { + if (\is_array($this->template)) { + $res['Template'] = []; + foreach ($this->template as $key1 => $value1) { + $res['Template'][$key1] = $value1; + } + } + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Factorys'])) { + $model->factorys = $map['Factorys']; + } + + if (isset($map['Memo'])) { + $model->memo = $map['Memo']; + } + + if (isset($map['Template'])) { + if (!empty($map['Template'])) { + $model->template = []; + foreach ($map['Template'] as $key1 => $value1) { + $model->template[$key1] = $value1; + } + } + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponse.php new file mode 100644 index 0000000..7a6469b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CreateCardSmsTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponseBody.php new file mode 100644 index 0000000..6528a80 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponseBody/data.php new file mode 100644 index 0000000..6fd00b1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponseBody/data.php @@ -0,0 +1,48 @@ + 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateShrinkRequest.php new file mode 100644 index 0000000..7372399 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateShrinkRequest.php @@ -0,0 +1,90 @@ + 'Factorys', + 'memo' => 'Memo', + 'templateShrink' => 'Template', + 'templateName' => 'TemplateName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->factorys) { + $res['Factorys'] = $this->factorys; + } + + if (null !== $this->memo) { + $res['Memo'] = $this->memo; + } + + if (null !== $this->templateShrink) { + $res['Template'] = $this->templateShrink; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Factorys'])) { + $model->factorys = $map['Factorys']; + } + + if (isset($map['Memo'])) { + $model->memo = $map['Memo']; + } + + if (isset($map['Template'])) { + $model->templateShrink = $map['Template']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderRequest.php new file mode 100644 index 0000000..5583dd8 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderRequest.php @@ -0,0 +1,229 @@ + 'ExtendMessage', + 'orderContext' => 'OrderContext', + 'orderType' => 'OrderType', + 'ownerId' => 'OwnerId', + 'qualificationId' => 'QualificationId', + 'qualificationVersion' => 'QualificationVersion', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signId' => 'SignId', + 'signIndustry' => 'SignIndustry', + 'signName' => 'SignName', + 'signSource' => 'SignSource', + 'submitter' => 'Submitter', + ]; + + public function validate() + { + if (\is_array($this->orderContext)) { + Model::validateArray($this->orderContext); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->extendMessage) { + $res['ExtendMessage'] = $this->extendMessage; + } + + if (null !== $this->orderContext) { + if (\is_array($this->orderContext)) { + $res['OrderContext'] = []; + foreach ($this->orderContext as $key1 => $value1) { + $res['OrderContext'][$key1] = $value1; + } + } + } + + if (null !== $this->orderType) { + $res['OrderType'] = $this->orderType; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationId) { + $res['QualificationId'] = $this->qualificationId; + } + + if (null !== $this->qualificationVersion) { + $res['QualificationVersion'] = $this->qualificationVersion; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signId) { + $res['SignId'] = $this->signId; + } + + if (null !== $this->signIndustry) { + $res['SignIndustry'] = $this->signIndustry; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->signSource) { + $res['SignSource'] = $this->signSource; + } + + if (null !== $this->submitter) { + $res['Submitter'] = $this->submitter; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ExtendMessage'])) { + $model->extendMessage = $map['ExtendMessage']; + } + + if (isset($map['OrderContext'])) { + if (!empty($map['OrderContext'])) { + $model->orderContext = []; + foreach ($map['OrderContext'] as $key1 => $value1) { + $model->orderContext[$key1] = $value1; + } + } + } + + if (isset($map['OrderType'])) { + $model->orderType = $map['OrderType']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationId'])) { + $model->qualificationId = $map['QualificationId']; + } + + if (isset($map['QualificationVersion'])) { + $model->qualificationVersion = $map['QualificationVersion']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignId'])) { + $model->signId = $map['SignId']; + } + + if (isset($map['SignIndustry'])) { + $model->signIndustry = $map['SignIndustry']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SignSource'])) { + $model->signSource = $map['SignSource']; + } + + if (isset($map['Submitter'])) { + $model->submitter = $map['Submitter']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderResponse.php new file mode 100644 index 0000000..ea6a7fe --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CreateDigitalSignOrderResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderResponseBody.php new file mode 100644 index 0000000..4c63bd0 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderResponseBody.php @@ -0,0 +1,131 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + foreach ($this->data as $key1 => $value1) { + $res['Data'][$key1] = $value1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + foreach ($map['Data'] as $key1 => $value1) { + $model->data[$key1] = $value1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderShrinkRequest.php new file mode 100644 index 0000000..70b8f56 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSignOrderShrinkRequest.php @@ -0,0 +1,216 @@ + 'ExtendMessage', + 'orderContextShrink' => 'OrderContext', + 'orderType' => 'OrderType', + 'ownerId' => 'OwnerId', + 'qualificationId' => 'QualificationId', + 'qualificationVersion' => 'QualificationVersion', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signId' => 'SignId', + 'signIndustry' => 'SignIndustry', + 'signName' => 'SignName', + 'signSource' => 'SignSource', + 'submitter' => 'Submitter', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->extendMessage) { + $res['ExtendMessage'] = $this->extendMessage; + } + + if (null !== $this->orderContextShrink) { + $res['OrderContext'] = $this->orderContextShrink; + } + + if (null !== $this->orderType) { + $res['OrderType'] = $this->orderType; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationId) { + $res['QualificationId'] = $this->qualificationId; + } + + if (null !== $this->qualificationVersion) { + $res['QualificationVersion'] = $this->qualificationVersion; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signId) { + $res['SignId'] = $this->signId; + } + + if (null !== $this->signIndustry) { + $res['SignIndustry'] = $this->signIndustry; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->signSource) { + $res['SignSource'] = $this->signSource; + } + + if (null !== $this->submitter) { + $res['Submitter'] = $this->submitter; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ExtendMessage'])) { + $model->extendMessage = $map['ExtendMessage']; + } + + if (isset($map['OrderContext'])) { + $model->orderContextShrink = $map['OrderContext']; + } + + if (isset($map['OrderType'])) { + $model->orderType = $map['OrderType']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationId'])) { + $model->qualificationId = $map['QualificationId']; + } + + if (isset($map['QualificationVersion'])) { + $model->qualificationVersion = $map['QualificationVersion']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignId'])) { + $model->signId = $map['SignId']; + } + + if (isset($map['SignIndustry'])) { + $model->signIndustry = $map['SignIndustry']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SignSource'])) { + $model->signSource = $map['SignSource']; + } + + if (isset($map['Submitter'])) { + $model->submitter = $map['Submitter']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateRequest.php new file mode 100644 index 0000000..31893fd --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateRequest.php @@ -0,0 +1,150 @@ + 'OwnerId', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'templateContents' => 'TemplateContents', + 'templateName' => 'TemplateName', + ]; + + public function validate() + { + if (\is_array($this->templateContents)) { + Model::validateArray($this->templateContents); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->templateContents) { + if (\is_array($this->templateContents)) { + $res['TemplateContents'] = []; + $n1 = 0; + foreach ($this->templateContents as $item1) { + $res['TemplateContents'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['TemplateContents'])) { + if (!empty($map['TemplateContents'])) { + $model->templateContents = []; + $n1 = 0; + foreach ($map['TemplateContents'] as $item1) { + $model->templateContents[$n1] = templateContents::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateRequest/templateContents.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateRequest/templateContents.php new file mode 100644 index 0000000..2af12dc --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateRequest/templateContents.php @@ -0,0 +1,90 @@ + 'FileContents', + 'fileName' => 'FileName', + 'fileSize' => 'FileSize', + 'fileSuffix' => 'FileSuffix', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->fileContents) { + $res['FileContents'] = $this->fileContents; + } + + if (null !== $this->fileName) { + $res['FileName'] = $this->fileName; + } + + if (null !== $this->fileSize) { + $res['FileSize'] = $this->fileSize; + } + + if (null !== $this->fileSuffix) { + $res['FileSuffix'] = $this->fileSuffix; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FileContents'])) { + $model->fileContents = $map['FileContents']; + } + + if (isset($map['FileName'])) { + $model->fileName = $map['FileName']; + } + + if (isset($map['FileSize'])) { + $model->fileSize = $map['FileSize']; + } + + if (isset($map['FileSuffix'])) { + $model->fileSuffix = $map['FileSuffix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateResponse.php new file mode 100644 index 0000000..e803d13 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CreateDigitalSmsTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateResponseBody.php new file mode 100644 index 0000000..e760947 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateDigitalSmsTemplateResponseBody.php @@ -0,0 +1,90 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSMobileCapableTaskRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSMobileCapableTaskRequest.php new file mode 100644 index 0000000..7112a35 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSMobileCapableTaskRequest.php @@ -0,0 +1,76 @@ + 'PhoneNumbersFile', + 'signName' => 'SignName', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->phoneNumbersFile) { + $res['PhoneNumbersFile'] = $this->phoneNumbersFile; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PhoneNumbersFile'])) { + $model->phoneNumbersFile = $map['PhoneNumbersFile']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSMobileCapableTaskResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSMobileCapableTaskResponse.php new file mode 100644 index 0000000..27a83eb --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSMobileCapableTaskResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CreateRCSMobileCapableTaskResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSMobileCapableTaskResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSMobileCapableTaskResponseBody.php new file mode 100644 index 0000000..a9860ee --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSMobileCapableTaskResponseBody.php @@ -0,0 +1,131 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + foreach ($this->data as $key1 => $value1) { + $res['Data'][$key1] = $value1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + foreach ($map['Data'] as $key1 => $value1) { + $model->data[$key1] = $value1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSTemplateRequest.php new file mode 100644 index 0000000..3647dae --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSTemplateRequest.php @@ -0,0 +1,132 @@ + 'RelatedSignNames', + 'templateContent' => 'TemplateContent', + 'templateFormat' => 'TemplateFormat', + 'templateMenu' => 'TemplateMenu', + 'templateName' => 'TemplateName', + 'templateRule' => 'TemplateRule', + 'templateType' => 'TemplateType', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->relatedSignNames) { + $res['RelatedSignNames'] = $this->relatedSignNames; + } + + if (null !== $this->templateContent) { + $res['TemplateContent'] = $this->templateContent; + } + + if (null !== $this->templateFormat) { + $res['TemplateFormat'] = $this->templateFormat; + } + + if (null !== $this->templateMenu) { + $res['TemplateMenu'] = $this->templateMenu; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateRule) { + $res['TemplateRule'] = $this->templateRule; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RelatedSignNames'])) { + $model->relatedSignNames = $map['RelatedSignNames']; + } + + if (isset($map['TemplateContent'])) { + $model->templateContent = $map['TemplateContent']; + } + + if (isset($map['TemplateFormat'])) { + $model->templateFormat = $map['TemplateFormat']; + } + + if (isset($map['TemplateMenu'])) { + $model->templateMenu = $map['TemplateMenu']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateRule'])) { + $model->templateRule = $map['TemplateRule']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSTemplateResponse.php new file mode 100644 index 0000000..d076ca7 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CreateRCSTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSTemplateResponseBody.php new file mode 100644 index 0000000..0dae642 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateRCSTemplateResponseBody.php @@ -0,0 +1,131 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + foreach ($this->data as $key1 => $value1) { + $res['Data'][$key1] = $value1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + foreach ($map['Data'] as $key1 => $value1) { + $model->data[$key1] = $value1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlRequest.php new file mode 100644 index 0000000..c4dbadc --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlRequest.php @@ -0,0 +1,118 @@ + 'OutId', + 'ownerId' => 'OwnerId', + 'phoneNumbers' => 'PhoneNumbers', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'sourceUrl' => 'SourceUrl', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->outId) { + $res['OutId'] = $this->outId; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->phoneNumbers) { + $res['PhoneNumbers'] = $this->phoneNumbers; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->sourceUrl) { + $res['SourceUrl'] = $this->sourceUrl; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OutId'])) { + $model->outId = $map['OutId']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PhoneNumbers'])) { + $model->phoneNumbers = $map['PhoneNumbers']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SourceUrl'])) { + $model->sourceUrl = $map['SourceUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlResponse.php new file mode 100644 index 0000000..82f9b2b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CreateSmartShortUrlResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlResponseBody.php new file mode 100644 index 0000000..cfabb69 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlResponseBody.php @@ -0,0 +1,108 @@ + 'Code', + 'message' => 'Message', + 'model' => 'Model', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + if (\is_array($this->model)) { + Model::validateArray($this->model); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->model) { + if (\is_array($this->model)) { + $res['Model'] = []; + $n1 = 0; + foreach ($this->model as $item1) { + $res['Model'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['Model'])) { + if (!empty($map['Model'])) { + $model->model = []; + $n1 = 0; + foreach ($map['Model'] as $item1) { + $model->model[$n1] = model_::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlResponseBody/model_.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlResponseBody/model_.php new file mode 100644 index 0000000..849a020 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmartShortUrlResponseBody/model_.php @@ -0,0 +1,104 @@ + 'Domain', + 'expiration' => 'Expiration', + 'phoneNumber' => 'PhoneNumber', + 'shortName' => 'ShortName', + 'shortUrl' => 'ShortUrl', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + + if (null !== $this->expiration) { + $res['Expiration'] = $this->expiration; + } + + if (null !== $this->phoneNumber) { + $res['PhoneNumber'] = $this->phoneNumber; + } + + if (null !== $this->shortName) { + $res['ShortName'] = $this->shortName; + } + + if (null !== $this->shortUrl) { + $res['ShortUrl'] = $this->shortUrl; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + + if (isset($map['Expiration'])) { + $model->expiration = $map['Expiration']; + } + + if (isset($map['PhoneNumber'])) { + $model->phoneNumber = $map['PhoneNumber']; + } + + if (isset($map['ShortName'])) { + $model->shortName = $map['ShortName']; + } + + if (isset($map['ShortUrl'])) { + $model->shortUrl = $map['ShortUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAppIcpRecordRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAppIcpRecordRequest.php new file mode 100644 index 0000000..f9fc8f2 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAppIcpRecordRequest.php @@ -0,0 +1,188 @@ + 'AppApprovalDate', + 'appIcpLicenseNumber' => 'AppIcpLicenseNumber', + 'appIcpRecordPic' => 'AppIcpRecordPic', + 'appPrincipalUnitName' => 'AppPrincipalUnitName', + 'appRuntimePic' => 'AppRuntimePic', + 'appServiceName' => 'AppServiceName', + 'appStoreDownloadPic' => 'AppStoreDownloadPic', + 'domain' => 'Domain', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->appApprovalDate) { + $res['AppApprovalDate'] = $this->appApprovalDate; + } + + if (null !== $this->appIcpLicenseNumber) { + $res['AppIcpLicenseNumber'] = $this->appIcpLicenseNumber; + } + + if (null !== $this->appIcpRecordPic) { + $res['AppIcpRecordPic'] = $this->appIcpRecordPic; + } + + if (null !== $this->appPrincipalUnitName) { + $res['AppPrincipalUnitName'] = $this->appPrincipalUnitName; + } + + if (null !== $this->appRuntimePic) { + $res['AppRuntimePic'] = $this->appRuntimePic; + } + + if (null !== $this->appServiceName) { + $res['AppServiceName'] = $this->appServiceName; + } + + if (null !== $this->appStoreDownloadPic) { + $res['AppStoreDownloadPic'] = $this->appStoreDownloadPic; + } + + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppApprovalDate'])) { + $model->appApprovalDate = $map['AppApprovalDate']; + } + + if (isset($map['AppIcpLicenseNumber'])) { + $model->appIcpLicenseNumber = $map['AppIcpLicenseNumber']; + } + + if (isset($map['AppIcpRecordPic'])) { + $model->appIcpRecordPic = $map['AppIcpRecordPic']; + } + + if (isset($map['AppPrincipalUnitName'])) { + $model->appPrincipalUnitName = $map['AppPrincipalUnitName']; + } + + if (isset($map['AppRuntimePic'])) { + $model->appRuntimePic = $map['AppRuntimePic']; + } + + if (isset($map['AppServiceName'])) { + $model->appServiceName = $map['AppServiceName']; + } + + if (isset($map['AppStoreDownloadPic'])) { + $model->appStoreDownloadPic = $map['AppStoreDownloadPic']; + } + + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAppIcpRecordResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAppIcpRecordResponse.php new file mode 100644 index 0000000..5a57ca4 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAppIcpRecordResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CreateSmsAppIcpRecordResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAppIcpRecordResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAppIcpRecordResponseBody.php new file mode 100644 index 0000000..1246867 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAppIcpRecordResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterRequest.php new file mode 100644 index 0000000..58ce3e8 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterRequest.php @@ -0,0 +1,191 @@ + 'Authorization', + 'authorizationLetterExpDate' => 'AuthorizationLetterExpDate', + 'authorizationLetterName' => 'AuthorizationLetterName', + 'authorizationLetterPic' => 'AuthorizationLetterPic', + 'organizationCode' => 'OrganizationCode', + 'ownerId' => 'OwnerId', + 'proxyAuthorization' => 'ProxyAuthorization', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signList' => 'SignList', + ]; + + public function validate() + { + if (\is_array($this->signList)) { + Model::validateArray($this->signList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->authorization) { + $res['Authorization'] = $this->authorization; + } + + if (null !== $this->authorizationLetterExpDate) { + $res['AuthorizationLetterExpDate'] = $this->authorizationLetterExpDate; + } + + if (null !== $this->authorizationLetterName) { + $res['AuthorizationLetterName'] = $this->authorizationLetterName; + } + + if (null !== $this->authorizationLetterPic) { + $res['AuthorizationLetterPic'] = $this->authorizationLetterPic; + } + + if (null !== $this->organizationCode) { + $res['OrganizationCode'] = $this->organizationCode; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->proxyAuthorization) { + $res['ProxyAuthorization'] = $this->proxyAuthorization; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signList) { + if (\is_array($this->signList)) { + $res['SignList'] = []; + $n1 = 0; + foreach ($this->signList as $item1) { + $res['SignList'][$n1] = $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Authorization'])) { + $model->authorization = $map['Authorization']; + } + + if (isset($map['AuthorizationLetterExpDate'])) { + $model->authorizationLetterExpDate = $map['AuthorizationLetterExpDate']; + } + + if (isset($map['AuthorizationLetterName'])) { + $model->authorizationLetterName = $map['AuthorizationLetterName']; + } + + if (isset($map['AuthorizationLetterPic'])) { + $model->authorizationLetterPic = $map['AuthorizationLetterPic']; + } + + if (isset($map['OrganizationCode'])) { + $model->organizationCode = $map['OrganizationCode']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ProxyAuthorization'])) { + $model->proxyAuthorization = $map['ProxyAuthorization']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignList'])) { + if (!empty($map['SignList'])) { + $model->signList = []; + $n1 = 0; + foreach ($map['SignList'] as $item1) { + $model->signList[$n1] = $item1; + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterResponse.php new file mode 100644 index 0000000..b3f261e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CreateSmsAuthorizationLetterResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterResponseBody.php new file mode 100644 index 0000000..4e1102f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterShrinkRequest.php new file mode 100644 index 0000000..ba0c1fe --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsAuthorizationLetterShrinkRequest.php @@ -0,0 +1,174 @@ + 'Authorization', + 'authorizationLetterExpDate' => 'AuthorizationLetterExpDate', + 'authorizationLetterName' => 'AuthorizationLetterName', + 'authorizationLetterPic' => 'AuthorizationLetterPic', + 'organizationCode' => 'OrganizationCode', + 'ownerId' => 'OwnerId', + 'proxyAuthorization' => 'ProxyAuthorization', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signListShrink' => 'SignList', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->authorization) { + $res['Authorization'] = $this->authorization; + } + + if (null !== $this->authorizationLetterExpDate) { + $res['AuthorizationLetterExpDate'] = $this->authorizationLetterExpDate; + } + + if (null !== $this->authorizationLetterName) { + $res['AuthorizationLetterName'] = $this->authorizationLetterName; + } + + if (null !== $this->authorizationLetterPic) { + $res['AuthorizationLetterPic'] = $this->authorizationLetterPic; + } + + if (null !== $this->organizationCode) { + $res['OrganizationCode'] = $this->organizationCode; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->proxyAuthorization) { + $res['ProxyAuthorization'] = $this->proxyAuthorization; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signListShrink) { + $res['SignList'] = $this->signListShrink; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Authorization'])) { + $model->authorization = $map['Authorization']; + } + + if (isset($map['AuthorizationLetterExpDate'])) { + $model->authorizationLetterExpDate = $map['AuthorizationLetterExpDate']; + } + + if (isset($map['AuthorizationLetterName'])) { + $model->authorizationLetterName = $map['AuthorizationLetterName']; + } + + if (isset($map['AuthorizationLetterPic'])) { + $model->authorizationLetterPic = $map['AuthorizationLetterPic']; + } + + if (isset($map['OrganizationCode'])) { + $model->organizationCode = $map['OrganizationCode']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ProxyAuthorization'])) { + $model->proxyAuthorization = $map['ProxyAuthorization']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignList'])) { + $model->signListShrink = $map['SignList']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignRequest.php new file mode 100644 index 0000000..c60d003 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignRequest.php @@ -0,0 +1,247 @@ + 'AppIcpRecordId', + 'applySceneContent' => 'ApplySceneContent', + 'authorizationLetterId' => 'AuthorizationLetterId', + 'moreData' => 'MoreData', + 'ownerId' => 'OwnerId', + 'qualificationId' => 'QualificationId', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'signSource' => 'SignSource', + 'signType' => 'SignType', + 'thirdParty' => 'ThirdParty', + 'trademarkId' => 'TrademarkId', + ]; + + public function validate() + { + if (\is_array($this->moreData)) { + Model::validateArray($this->moreData); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->appIcpRecordId) { + $res['AppIcpRecordId'] = $this->appIcpRecordId; + } + + if (null !== $this->applySceneContent) { + $res['ApplySceneContent'] = $this->applySceneContent; + } + + if (null !== $this->authorizationLetterId) { + $res['AuthorizationLetterId'] = $this->authorizationLetterId; + } + + if (null !== $this->moreData) { + if (\is_array($this->moreData)) { + $res['MoreData'] = []; + $n1 = 0; + foreach ($this->moreData as $item1) { + $res['MoreData'][$n1] = $item1; + ++$n1; + } + } + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationId) { + $res['QualificationId'] = $this->qualificationId; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->signSource) { + $res['SignSource'] = $this->signSource; + } + + if (null !== $this->signType) { + $res['SignType'] = $this->signType; + } + + if (null !== $this->thirdParty) { + $res['ThirdParty'] = $this->thirdParty; + } + + if (null !== $this->trademarkId) { + $res['TrademarkId'] = $this->trademarkId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppIcpRecordId'])) { + $model->appIcpRecordId = $map['AppIcpRecordId']; + } + + if (isset($map['ApplySceneContent'])) { + $model->applySceneContent = $map['ApplySceneContent']; + } + + if (isset($map['AuthorizationLetterId'])) { + $model->authorizationLetterId = $map['AuthorizationLetterId']; + } + + if (isset($map['MoreData'])) { + if (!empty($map['MoreData'])) { + $model->moreData = []; + $n1 = 0; + foreach ($map['MoreData'] as $item1) { + $model->moreData[$n1] = $item1; + ++$n1; + } + } + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationId'])) { + $model->qualificationId = $map['QualificationId']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SignSource'])) { + $model->signSource = $map['SignSource']; + } + + if (isset($map['SignType'])) { + $model->signType = $map['SignType']; + } + + if (isset($map['ThirdParty'])) { + $model->thirdParty = $map['ThirdParty']; + } + + if (isset($map['TrademarkId'])) { + $model->trademarkId = $map['TrademarkId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignResponse.php new file mode 100644 index 0000000..deb11f3 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CreateSmsSignResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignResponseBody.php new file mode 100644 index 0000000..d0f18e1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignResponseBody.php @@ -0,0 +1,104 @@ + 'Code', + 'message' => 'Message', + 'orderId' => 'OrderId', + 'requestId' => 'RequestId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignShrinkRequest.php new file mode 100644 index 0000000..457d3de --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsSignShrinkRequest.php @@ -0,0 +1,230 @@ + 'AppIcpRecordId', + 'applySceneContent' => 'ApplySceneContent', + 'authorizationLetterId' => 'AuthorizationLetterId', + 'moreDataShrink' => 'MoreData', + 'ownerId' => 'OwnerId', + 'qualificationId' => 'QualificationId', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'signSource' => 'SignSource', + 'signType' => 'SignType', + 'thirdParty' => 'ThirdParty', + 'trademarkId' => 'TrademarkId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->appIcpRecordId) { + $res['AppIcpRecordId'] = $this->appIcpRecordId; + } + + if (null !== $this->applySceneContent) { + $res['ApplySceneContent'] = $this->applySceneContent; + } + + if (null !== $this->authorizationLetterId) { + $res['AuthorizationLetterId'] = $this->authorizationLetterId; + } + + if (null !== $this->moreDataShrink) { + $res['MoreData'] = $this->moreDataShrink; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationId) { + $res['QualificationId'] = $this->qualificationId; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->signSource) { + $res['SignSource'] = $this->signSource; + } + + if (null !== $this->signType) { + $res['SignType'] = $this->signType; + } + + if (null !== $this->thirdParty) { + $res['ThirdParty'] = $this->thirdParty; + } + + if (null !== $this->trademarkId) { + $res['TrademarkId'] = $this->trademarkId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppIcpRecordId'])) { + $model->appIcpRecordId = $map['AppIcpRecordId']; + } + + if (isset($map['ApplySceneContent'])) { + $model->applySceneContent = $map['ApplySceneContent']; + } + + if (isset($map['AuthorizationLetterId'])) { + $model->authorizationLetterId = $map['AuthorizationLetterId']; + } + + if (isset($map['MoreData'])) { + $model->moreDataShrink = $map['MoreData']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationId'])) { + $model->qualificationId = $map['QualificationId']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SignSource'])) { + $model->signSource = $map['SignSource']; + } + + if (isset($map['SignType'])) { + $model->signType = $map['SignType']; + } + + if (isset($map['ThirdParty'])) { + $model->thirdParty = $map['ThirdParty']; + } + + if (isset($map['TrademarkId'])) { + $model->trademarkId = $map['TrademarkId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateRequest.php new file mode 100644 index 0000000..b47e86d --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateRequest.php @@ -0,0 +1,233 @@ + 'ApplySceneContent', + 'intlType' => 'IntlType', + 'moreData' => 'MoreData', + 'ownerId' => 'OwnerId', + 'relatedSignName' => 'RelatedSignName', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'templateContent' => 'TemplateContent', + 'templateName' => 'TemplateName', + 'templateRule' => 'TemplateRule', + 'templateType' => 'TemplateType', + 'trafficDriving' => 'TrafficDriving', + ]; + + public function validate() + { + if (\is_array($this->moreData)) { + Model::validateArray($this->moreData); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->applySceneContent) { + $res['ApplySceneContent'] = $this->applySceneContent; + } + + if (null !== $this->intlType) { + $res['IntlType'] = $this->intlType; + } + + if (null !== $this->moreData) { + if (\is_array($this->moreData)) { + $res['MoreData'] = []; + $n1 = 0; + foreach ($this->moreData as $item1) { + $res['MoreData'][$n1] = $item1; + ++$n1; + } + } + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->relatedSignName) { + $res['RelatedSignName'] = $this->relatedSignName; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->templateContent) { + $res['TemplateContent'] = $this->templateContent; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateRule) { + $res['TemplateRule'] = $this->templateRule; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + if (null !== $this->trafficDriving) { + $res['TrafficDriving'] = $this->trafficDriving; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ApplySceneContent'])) { + $model->applySceneContent = $map['ApplySceneContent']; + } + + if (isset($map['IntlType'])) { + $model->intlType = $map['IntlType']; + } + + if (isset($map['MoreData'])) { + if (!empty($map['MoreData'])) { + $model->moreData = []; + $n1 = 0; + foreach ($map['MoreData'] as $item1) { + $model->moreData[$n1] = $item1; + ++$n1; + } + } + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['RelatedSignName'])) { + $model->relatedSignName = $map['RelatedSignName']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TemplateContent'])) { + $model->templateContent = $map['TemplateContent']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateRule'])) { + $model->templateRule = $map['TemplateRule']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + if (isset($map['TrafficDriving'])) { + $model->trafficDriving = $map['TrafficDriving']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateResponse.php new file mode 100644 index 0000000..8ee1ac2 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CreateSmsTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateResponseBody.php new file mode 100644 index 0000000..689ab4a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateResponseBody.php @@ -0,0 +1,118 @@ + 'Code', + 'message' => 'Message', + 'orderId' => 'OrderId', + 'requestId' => 'RequestId', + 'templateCode' => 'TemplateCode', + 'templateName' => 'TemplateName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateShrinkRequest.php new file mode 100644 index 0000000..c7e5fe9 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTemplateShrinkRequest.php @@ -0,0 +1,216 @@ + 'ApplySceneContent', + 'intlType' => 'IntlType', + 'moreDataShrink' => 'MoreData', + 'ownerId' => 'OwnerId', + 'relatedSignName' => 'RelatedSignName', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'templateContent' => 'TemplateContent', + 'templateName' => 'TemplateName', + 'templateRule' => 'TemplateRule', + 'templateType' => 'TemplateType', + 'trafficDriving' => 'TrafficDriving', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->applySceneContent) { + $res['ApplySceneContent'] = $this->applySceneContent; + } + + if (null !== $this->intlType) { + $res['IntlType'] = $this->intlType; + } + + if (null !== $this->moreDataShrink) { + $res['MoreData'] = $this->moreDataShrink; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->relatedSignName) { + $res['RelatedSignName'] = $this->relatedSignName; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->templateContent) { + $res['TemplateContent'] = $this->templateContent; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateRule) { + $res['TemplateRule'] = $this->templateRule; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + if (null !== $this->trafficDriving) { + $res['TrafficDriving'] = $this->trafficDriving; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ApplySceneContent'])) { + $model->applySceneContent = $map['ApplySceneContent']; + } + + if (isset($map['IntlType'])) { + $model->intlType = $map['IntlType']; + } + + if (isset($map['MoreData'])) { + $model->moreDataShrink = $map['MoreData']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['RelatedSignName'])) { + $model->relatedSignName = $map['RelatedSignName']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TemplateContent'])) { + $model->templateContent = $map['TemplateContent']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateRule'])) { + $model->templateRule = $map['TemplateRule']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + if (isset($map['TrafficDriving'])) { + $model->trafficDriving = $map['TrafficDriving']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTrademarkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTrademarkRequest.php new file mode 100644 index 0000000..3ef9574 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTrademarkRequest.php @@ -0,0 +1,146 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'trademarkApplicantName' => 'TrademarkApplicantName', + 'trademarkEffExpDate' => 'TrademarkEffExpDate', + 'trademarkName' => 'TrademarkName', + 'trademarkPic' => 'TrademarkPic', + 'trademarkRegistrationNumber' => 'TrademarkRegistrationNumber', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->trademarkApplicantName) { + $res['TrademarkApplicantName'] = $this->trademarkApplicantName; + } + + if (null !== $this->trademarkEffExpDate) { + $res['TrademarkEffExpDate'] = $this->trademarkEffExpDate; + } + + if (null !== $this->trademarkName) { + $res['TrademarkName'] = $this->trademarkName; + } + + if (null !== $this->trademarkPic) { + $res['TrademarkPic'] = $this->trademarkPic; + } + + if (null !== $this->trademarkRegistrationNumber) { + $res['TrademarkRegistrationNumber'] = $this->trademarkRegistrationNumber; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TrademarkApplicantName'])) { + $model->trademarkApplicantName = $map['TrademarkApplicantName']; + } + + if (isset($map['TrademarkEffExpDate'])) { + $model->trademarkEffExpDate = $map['TrademarkEffExpDate']; + } + + if (isset($map['TrademarkName'])) { + $model->trademarkName = $map['TrademarkName']; + } + + if (isset($map['TrademarkPic'])) { + $model->trademarkPic = $map['TrademarkPic']; + } + + if (isset($map['TrademarkRegistrationNumber'])) { + $model->trademarkRegistrationNumber = $map['TrademarkRegistrationNumber']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTrademarkResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTrademarkResponse.php new file mode 100644 index 0000000..c60e490 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTrademarkResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = CreateSmsTrademarkResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTrademarkResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTrademarkResponseBody.php new file mode 100644 index 0000000..e8dc603 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateSmsTrademarkResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteExtCodeSignRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteExtCodeSignRequest.php new file mode 100644 index 0000000..95c99f4 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteExtCodeSignRequest.php @@ -0,0 +1,104 @@ + 'ExtCode', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->extCode) { + $res['ExtCode'] = $this->extCode; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ExtCode'])) { + $model->extCode = $map['ExtCode']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteExtCodeSignResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteExtCodeSignResponse.php new file mode 100644 index 0000000..c26c5af --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteExtCodeSignResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = DeleteExtCodeSignResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteExtCodeSignResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteExtCodeSignResponseBody.php new file mode 100644 index 0000000..7c63c47 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteExtCodeSignResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlRequest.php new file mode 100644 index 0000000..56845a9 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'sourceUrl' => 'SourceUrl', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->sourceUrl) { + $res['SourceUrl'] = $this->sourceUrl; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SourceUrl'])) { + $model->sourceUrl = $map['SourceUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlResponse.php new file mode 100644 index 0000000..f4a5706 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = DeleteShortUrlResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlResponseBody.php new file mode 100644 index 0000000..287f9af --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlResponseBody.php @@ -0,0 +1,76 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsQualificationRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsQualificationRequest.php new file mode 100644 index 0000000..a241bd1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsQualificationRequest.php @@ -0,0 +1,104 @@ + 'OrderId', + 'ownerId' => 'OwnerId', + 'qualificationGroupId' => 'QualificationGroupId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationGroupId) { + $res['QualificationGroupId'] = $this->qualificationGroupId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationGroupId'])) { + $model->qualificationGroupId = $map['QualificationGroupId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsQualificationResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsQualificationResponse.php new file mode 100644 index 0000000..23530df --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsQualificationResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = DeleteSmsQualificationResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsQualificationResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsQualificationResponseBody.php new file mode 100644 index 0000000..50781a9 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsQualificationResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignRequest.php new file mode 100644 index 0000000..1b3f2e5 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignResponse.php new file mode 100644 index 0000000..5059f0f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = DeleteSmsSignResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignResponseBody.php new file mode 100644 index 0000000..ba61323 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignResponseBody.php @@ -0,0 +1,90 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateRequest.php new file mode 100644 index 0000000..6262f7b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateResponse.php new file mode 100644 index 0000000..53f8211 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = DeleteSmsTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateResponseBody.php new file mode 100644 index 0000000..81a1cb2 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateResponseBody.php @@ -0,0 +1,90 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsRequest.php new file mode 100644 index 0000000..a574ccf --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsRequest.php @@ -0,0 +1,174 @@ + 'BizCardId', + 'bizDigitId' => 'BizDigitId', + 'bizSmsId' => 'BizSmsId', + 'currentPage' => 'CurrentPage', + 'ownerId' => 'OwnerId', + 'pageSize' => 'PageSize', + 'phoneNumber' => 'PhoneNumber', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'sendDate' => 'SendDate', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->bizCardId) { + $res['BizCardId'] = $this->bizCardId; + } + + if (null !== $this->bizDigitId) { + $res['BizDigitId'] = $this->bizDigitId; + } + + if (null !== $this->bizSmsId) { + $res['BizSmsId'] = $this->bizSmsId; + } + + if (null !== $this->currentPage) { + $res['CurrentPage'] = $this->currentPage; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->phoneNumber) { + $res['PhoneNumber'] = $this->phoneNumber; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->sendDate) { + $res['SendDate'] = $this->sendDate; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BizCardId'])) { + $model->bizCardId = $map['BizCardId']; + } + + if (isset($map['BizDigitId'])) { + $model->bizDigitId = $map['BizDigitId']; + } + + if (isset($map['BizSmsId'])) { + $model->bizSmsId = $map['BizSmsId']; + } + + if (isset($map['CurrentPage'])) { + $model->currentPage = $map['CurrentPage']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['PhoneNumber'])) { + $model->phoneNumber = $map['PhoneNumber']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SendDate'])) { + $model->sendDate = $map['SendDate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponse.php new file mode 100644 index 0000000..88622db --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = GetCardSmsDetailsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponseBody.php new file mode 100644 index 0000000..ea15bdc --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponseBody.php @@ -0,0 +1,108 @@ + 'AccessDeniedDetail', + 'cardSendDetailDTO' => 'CardSendDetailDTO', + 'code' => 'Code', + 'message' => 'Message', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->cardSendDetailDTO) { + $this->cardSendDetailDTO->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->cardSendDetailDTO) { + $res['CardSendDetailDTO'] = null !== $this->cardSendDetailDTO ? $this->cardSendDetailDTO->toArray($noStream) : $this->cardSendDetailDTO; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['CardSendDetailDTO'])) { + $model->cardSendDetailDTO = cardSendDetailDTO::fromMap($map['CardSendDetailDTO']); + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponseBody/cardSendDetailDTO.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponseBody/cardSendDetailDTO.php new file mode 100644 index 0000000..53ad91b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponseBody/cardSendDetailDTO.php @@ -0,0 +1,108 @@ + 'CurrentPage', + 'pageSize' => 'PageSize', + 'records' => 'Records', + 'totalCount' => 'TotalCount', + ]; + + public function validate() + { + if (\is_array($this->records)) { + Model::validateArray($this->records); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->currentPage) { + $res['CurrentPage'] = $this->currentPage; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->records) { + if (\is_array($this->records)) { + $res['Records'] = []; + $n1 = 0; + foreach ($this->records as $item1) { + $res['Records'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->totalCount) { + $res['TotalCount'] = $this->totalCount; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CurrentPage'])) { + $model->currentPage = $map['CurrentPage']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['Records'])) { + if (!empty($map['Records'])) { + $model->records = []; + $n1 = 0; + foreach ($map['Records'] as $item1) { + $model->records[$n1] = records::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['TotalCount'])) { + $model->totalCount = $map['TotalCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponseBody/cardSendDetailDTO/records.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponseBody/cardSendDetailDTO/records.php new file mode 100644 index 0000000..25f40ca --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsDetailsResponseBody/cardSendDetailDTO/records.php @@ -0,0 +1,188 @@ + 'ErrCode', + 'outId' => 'OutId', + 'phoneNumber' => 'PhoneNumber', + 'receiveDate' => 'ReceiveDate', + 'receiveType' => 'ReceiveType', + 'renderDate' => 'RenderDate', + 'renderStatus' => 'RenderStatus', + 'sendDate' => 'SendDate', + 'sendStatus' => 'SendStatus', + 'smsContent' => 'SmsContent', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->errCode) { + $res['ErrCode'] = $this->errCode; + } + + if (null !== $this->outId) { + $res['OutId'] = $this->outId; + } + + if (null !== $this->phoneNumber) { + $res['PhoneNumber'] = $this->phoneNumber; + } + + if (null !== $this->receiveDate) { + $res['ReceiveDate'] = $this->receiveDate; + } + + if (null !== $this->receiveType) { + $res['ReceiveType'] = $this->receiveType; + } + + if (null !== $this->renderDate) { + $res['RenderDate'] = $this->renderDate; + } + + if (null !== $this->renderStatus) { + $res['RenderStatus'] = $this->renderStatus; + } + + if (null !== $this->sendDate) { + $res['SendDate'] = $this->sendDate; + } + + if (null !== $this->sendStatus) { + $res['SendStatus'] = $this->sendStatus; + } + + if (null !== $this->smsContent) { + $res['SmsContent'] = $this->smsContent; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ErrCode'])) { + $model->errCode = $map['ErrCode']; + } + + if (isset($map['OutId'])) { + $model->outId = $map['OutId']; + } + + if (isset($map['PhoneNumber'])) { + $model->phoneNumber = $map['PhoneNumber']; + } + + if (isset($map['ReceiveDate'])) { + $model->receiveDate = $map['ReceiveDate']; + } + + if (isset($map['ReceiveType'])) { + $model->receiveType = $map['ReceiveType']; + } + + if (isset($map['RenderDate'])) { + $model->renderDate = $map['RenderDate']; + } + + if (isset($map['RenderStatus'])) { + $model->renderStatus = $map['RenderStatus']; + } + + if (isset($map['SendDate'])) { + $model->sendDate = $map['SendDate']; + } + + if (isset($map['SendStatus'])) { + $model->sendStatus = $map['SendStatus']; + } + + if (isset($map['SmsContent'])) { + $model->smsContent = $map['SmsContent']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkRequest.php new file mode 100644 index 0000000..f7c36dc --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkRequest.php @@ -0,0 +1,160 @@ + 'CardCodeType', + 'cardLinkType' => 'CardLinkType', + 'cardTemplateCode' => 'CardTemplateCode', + 'cardTemplateParamJson' => 'CardTemplateParamJson', + 'customShortCodeJson' => 'CustomShortCodeJson', + 'domain' => 'Domain', + 'outId' => 'OutId', + 'phoneNumberJson' => 'PhoneNumberJson', + 'signNameJson' => 'SignNameJson', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->cardCodeType) { + $res['CardCodeType'] = $this->cardCodeType; + } + + if (null !== $this->cardLinkType) { + $res['CardLinkType'] = $this->cardLinkType; + } + + if (null !== $this->cardTemplateCode) { + $res['CardTemplateCode'] = $this->cardTemplateCode; + } + + if (null !== $this->cardTemplateParamJson) { + $res['CardTemplateParamJson'] = $this->cardTemplateParamJson; + } + + if (null !== $this->customShortCodeJson) { + $res['CustomShortCodeJson'] = $this->customShortCodeJson; + } + + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + + if (null !== $this->outId) { + $res['OutId'] = $this->outId; + } + + if (null !== $this->phoneNumberJson) { + $res['PhoneNumberJson'] = $this->phoneNumberJson; + } + + if (null !== $this->signNameJson) { + $res['SignNameJson'] = $this->signNameJson; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CardCodeType'])) { + $model->cardCodeType = $map['CardCodeType']; + } + + if (isset($map['CardLinkType'])) { + $model->cardLinkType = $map['CardLinkType']; + } + + if (isset($map['CardTemplateCode'])) { + $model->cardTemplateCode = $map['CardTemplateCode']; + } + + if (isset($map['CardTemplateParamJson'])) { + $model->cardTemplateParamJson = $map['CardTemplateParamJson']; + } + + if (isset($map['CustomShortCodeJson'])) { + $model->customShortCodeJson = $map['CustomShortCodeJson']; + } + + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + + if (isset($map['OutId'])) { + $model->outId = $map['OutId']; + } + + if (isset($map['PhoneNumberJson'])) { + $model->phoneNumberJson = $map['PhoneNumberJson']; + } + + if (isset($map['SignNameJson'])) { + $model->signNameJson = $map['SignNameJson']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponse.php new file mode 100644 index 0000000..2b7e1ac --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = GetCardSmsLinkResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponseBody.php new file mode 100644 index 0000000..4740868 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponseBody/data.php new file mode 100644 index 0000000..583a87c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponseBody/data.php @@ -0,0 +1,104 @@ + 'CardPhoneNumbers', + 'cardSignNames' => 'CardSignNames', + 'cardSmsLinks' => 'CardSmsLinks', + 'cardTmpState' => 'CardTmpState', + 'notMediaMobiles' => 'NotMediaMobiles', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->cardPhoneNumbers) { + $res['CardPhoneNumbers'] = $this->cardPhoneNumbers; + } + + if (null !== $this->cardSignNames) { + $res['CardSignNames'] = $this->cardSignNames; + } + + if (null !== $this->cardSmsLinks) { + $res['CardSmsLinks'] = $this->cardSmsLinks; + } + + if (null !== $this->cardTmpState) { + $res['CardTmpState'] = $this->cardTmpState; + } + + if (null !== $this->notMediaMobiles) { + $res['NotMediaMobiles'] = $this->notMediaMobiles; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CardPhoneNumbers'])) { + $model->cardPhoneNumbers = $map['CardPhoneNumbers']; + } + + if (isset($map['CardSignNames'])) { + $model->cardSignNames = $map['CardSignNames']; + } + + if (isset($map['CardSmsLinks'])) { + $model->cardSmsLinks = $map['CardSmsLinks']; + } + + if (isset($map['CardTmpState'])) { + $model->cardTmpState = $map['CardTmpState']; + } + + if (isset($map['NotMediaMobiles'])) { + $model->notMediaMobiles = $map['NotMediaMobiles']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdRequest.php new file mode 100644 index 0000000..9fdb599 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdRequest.php @@ -0,0 +1,104 @@ + 'ExtendInfo', + 'fileSize' => 'FileSize', + 'memo' => 'Memo', + 'ossKey' => 'OssKey', + 'resourceType' => 'ResourceType', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->extendInfo) { + $res['ExtendInfo'] = $this->extendInfo; + } + + if (null !== $this->fileSize) { + $res['FileSize'] = $this->fileSize; + } + + if (null !== $this->memo) { + $res['Memo'] = $this->memo; + } + + if (null !== $this->ossKey) { + $res['OssKey'] = $this->ossKey; + } + + if (null !== $this->resourceType) { + $res['ResourceType'] = $this->resourceType; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ExtendInfo'])) { + $model->extendInfo = $map['ExtendInfo']; + } + + if (isset($map['FileSize'])) { + $model->fileSize = $map['FileSize']; + } + + if (isset($map['Memo'])) { + $model->memo = $map['Memo']; + } + + if (isset($map['OssKey'])) { + $model->ossKey = $map['OssKey']; + } + + if (isset($map['ResourceType'])) { + $model->resourceType = $map['ResourceType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponse.php new file mode 100644 index 0000000..e6ba1ca --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = GetMediaResourceIdResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponseBody.php new file mode 100644 index 0000000..4e7bfc9 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponseBody/data.php new file mode 100644 index 0000000..d2cf122 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponseBody/data.php @@ -0,0 +1,62 @@ + 'ResUrlDownload', + 'resourceId' => 'ResourceId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->resUrlDownload) { + $res['ResUrlDownload'] = $this->resUrlDownload; + } + + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ResUrlDownload'])) { + $model->resUrlDownload = $map['ResUrlDownload']; + } + + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponse.php new file mode 100644 index 0000000..51f128e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = GetOSSInfoForCardTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponseBody.php new file mode 100644 index 0000000..729a70f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponseBody/data.php new file mode 100644 index 0000000..0b8caf7 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponseBody/data.php @@ -0,0 +1,146 @@ + 'AccessKeyId', + 'aliUid' => 'AliUid', + 'bucket' => 'Bucket', + 'expireTime' => 'ExpireTime', + 'host' => 'Host', + 'policy' => 'Policy', + 'signature' => 'Signature', + 'startPath' => 'StartPath', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessKeyId) { + $res['AccessKeyId'] = $this->accessKeyId; + } + + if (null !== $this->aliUid) { + $res['AliUid'] = $this->aliUid; + } + + if (null !== $this->bucket) { + $res['Bucket'] = $this->bucket; + } + + if (null !== $this->expireTime) { + $res['ExpireTime'] = $this->expireTime; + } + + if (null !== $this->host) { + $res['Host'] = $this->host; + } + + if (null !== $this->policy) { + $res['Policy'] = $this->policy; + } + + if (null !== $this->signature) { + $res['Signature'] = $this->signature; + } + + if (null !== $this->startPath) { + $res['StartPath'] = $this->startPath; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessKeyId'])) { + $model->accessKeyId = $map['AccessKeyId']; + } + + if (isset($map['AliUid'])) { + $model->aliUid = $map['AliUid']; + } + + if (isset($map['Bucket'])) { + $model->bucket = $map['Bucket']; + } + + if (isset($map['ExpireTime'])) { + $model->expireTime = $map['ExpireTime']; + } + + if (isset($map['Host'])) { + $model->host = $map['Host']; + } + + if (isset($map['Policy'])) { + $model->policy = $map['Policy']; + } + + if (isset($map['Signature'])) { + $model->signature = $map['Signature']; + } + + if (isset($map['StartPath'])) { + $model->startPath = $map['StartPath']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileRequest.php new file mode 100644 index 0000000..e316fe6 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileRequest.php @@ -0,0 +1,90 @@ + 'BizType', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->bizType) { + $res['BizType'] = $this->bizType; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BizType'])) { + $model->bizType = $map['BizType']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileResponse.php new file mode 100644 index 0000000..3a3bc5b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = GetOSSInfoForUploadFileResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileResponseBody.php new file mode 100644 index 0000000..7c9fba8 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileResponseBody.php @@ -0,0 +1,108 @@ + 'Code', + 'message' => 'Message', + 'model' => 'Model', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->model) { + $this->model->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->model) { + $res['Model'] = null !== $this->model ? $this->model->toArray($noStream) : $this->model; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['Model'])) { + $model->model = model_::fromMap($map['Model']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileResponseBody/model_.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileResponseBody/model_.php new file mode 100644 index 0000000..399a031 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForUploadFileResponseBody/model_.php @@ -0,0 +1,118 @@ + 'AccessKeyId', + 'expireTime' => 'ExpireTime', + 'host' => 'Host', + 'policy' => 'Policy', + 'signature' => 'Signature', + 'startPath' => 'StartPath', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessKeyId) { + $res['AccessKeyId'] = $this->accessKeyId; + } + + if (null !== $this->expireTime) { + $res['ExpireTime'] = $this->expireTime; + } + + if (null !== $this->host) { + $res['Host'] = $this->host; + } + + if (null !== $this->policy) { + $res['Policy'] = $this->policy; + } + + if (null !== $this->signature) { + $res['Signature'] = $this->signature; + } + + if (null !== $this->startPath) { + $res['StartPath'] = $this->startPath; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessKeyId'])) { + $model->accessKeyId = $map['AccessKeyId']; + } + + if (isset($map['ExpireTime'])) { + $model->expireTime = $map['ExpireTime']; + } + + if (isset($map['Host'])) { + $model->host = $map['Host']; + } + + if (isset($map['Policy'])) { + $model->policy = $map['Policy']; + } + + if (isset($map['Signature'])) { + $model->signature = $map['Signature']; + } + + if (isset($map['StartPath'])) { + $model->startPath = $map['StartPath']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoRequest.php new file mode 100644 index 0000000..bbf01f9 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoRequest.php @@ -0,0 +1,90 @@ + 'BizType', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->bizType) { + $res['BizType'] = $this->bizType; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BizType'])) { + $model->bizType = $map['BizType']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoResponse.php new file mode 100644 index 0000000..d7680d5 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = GetQualificationOssInfoResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoResponseBody.php new file mode 100644 index 0000000..33033c2 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoResponseBody/data.php new file mode 100644 index 0000000..a33a400 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetQualificationOssInfoResponseBody/data.php @@ -0,0 +1,118 @@ + 'AccessKeyId', + 'expire' => 'Expire', + 'host' => 'Host', + 'policy' => 'Policy', + 'signature' => 'Signature', + 'startPath' => 'StartPath', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessKeyId) { + $res['AccessKeyId'] = $this->accessKeyId; + } + + if (null !== $this->expire) { + $res['Expire'] = $this->expire; + } + + if (null !== $this->host) { + $res['Host'] = $this->host; + } + + if (null !== $this->policy) { + $res['Policy'] = $this->policy; + } + + if (null !== $this->signature) { + $res['Signature'] = $this->signature; + } + + if (null !== $this->startPath) { + $res['StartPath'] = $this->startPath; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessKeyId'])) { + $model->accessKeyId = $map['AccessKeyId']; + } + + if (isset($map['Expire'])) { + $model->expire = $map['Expire']; + } + + if (isset($map['Host'])) { + $model->host = $map['Host']; + } + + if (isset($map['Policy'])) { + $model->policy = $map['Policy']; + } + + if (isset($map['Signature'])) { + $model->signature = $map['Signature']; + } + + if (isset($map['StartPath'])) { + $model->startPath = $map['StartPath']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureRequest.php new file mode 100644 index 0000000..4dd63d8 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureRequest.php @@ -0,0 +1,48 @@ + 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponse.php new file mode 100644 index 0000000..6872fec --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = GetRCSSignatureResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody.php new file mode 100644 index 0000000..8de3de0 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data.php new file mode 100644 index 0000000..22e6241 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data.php @@ -0,0 +1,322 @@ + 'BackgroundImage', + 'bubbleColor' => 'BubbleColor', + 'category' => 'Category', + 'chatbotCode' => 'ChatbotCode', + 'chatbotName' => 'ChatbotName', + 'description' => 'Description', + 'latitude' => 'Latitude', + 'logo' => 'Logo', + 'longitude' => 'Longitude', + 'officeAddress' => 'OfficeAddress', + 'registerResultList' => 'RegisterResultList', + 'serviceEmail' => 'ServiceEmail', + 'servicePhone' => 'ServicePhone', + 'serviceTerms' => 'ServiceTerms', + 'serviceWebsite' => 'ServiceWebsite', + 'shelfResultList' => 'ShelfResultList', + 'signId' => 'SignId', + 'signName' => 'SignName', + ]; + + public function validate() + { + if (\is_array($this->registerResultList)) { + Model::validateArray($this->registerResultList); + } + if (\is_array($this->shelfResultList)) { + Model::validateArray($this->shelfResultList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->backgroundImage) { + $res['BackgroundImage'] = $this->backgroundImage; + } + + if (null !== $this->bubbleColor) { + $res['BubbleColor'] = $this->bubbleColor; + } + + if (null !== $this->category) { + $res['Category'] = $this->category; + } + + if (null !== $this->chatbotCode) { + $res['ChatbotCode'] = $this->chatbotCode; + } + + if (null !== $this->chatbotName) { + $res['ChatbotName'] = $this->chatbotName; + } + + if (null !== $this->description) { + $res['Description'] = $this->description; + } + + if (null !== $this->latitude) { + $res['Latitude'] = $this->latitude; + } + + if (null !== $this->logo) { + $res['Logo'] = $this->logo; + } + + if (null !== $this->longitude) { + $res['Longitude'] = $this->longitude; + } + + if (null !== $this->officeAddress) { + $res['OfficeAddress'] = $this->officeAddress; + } + + if (null !== $this->registerResultList) { + if (\is_array($this->registerResultList)) { + $res['RegisterResultList'] = []; + $n1 = 0; + foreach ($this->registerResultList as $item1) { + $res['RegisterResultList'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->serviceEmail) { + $res['ServiceEmail'] = $this->serviceEmail; + } + + if (null !== $this->servicePhone) { + $res['ServicePhone'] = $this->servicePhone; + } + + if (null !== $this->serviceTerms) { + $res['ServiceTerms'] = $this->serviceTerms; + } + + if (null !== $this->serviceWebsite) { + $res['ServiceWebsite'] = $this->serviceWebsite; + } + + if (null !== $this->shelfResultList) { + if (\is_array($this->shelfResultList)) { + $res['ShelfResultList'] = []; + $n1 = 0; + foreach ($this->shelfResultList as $item1) { + $res['ShelfResultList'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->signId) { + $res['SignId'] = $this->signId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BackgroundImage'])) { + $model->backgroundImage = $map['BackgroundImage']; + } + + if (isset($map['BubbleColor'])) { + $model->bubbleColor = $map['BubbleColor']; + } + + if (isset($map['Category'])) { + $model->category = $map['Category']; + } + + if (isset($map['ChatbotCode'])) { + $model->chatbotCode = $map['ChatbotCode']; + } + + if (isset($map['ChatbotName'])) { + $model->chatbotName = $map['ChatbotName']; + } + + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + + if (isset($map['Latitude'])) { + $model->latitude = $map['Latitude']; + } + + if (isset($map['Logo'])) { + $model->logo = $map['Logo']; + } + + if (isset($map['Longitude'])) { + $model->longitude = $map['Longitude']; + } + + if (isset($map['OfficeAddress'])) { + $model->officeAddress = $map['OfficeAddress']; + } + + if (isset($map['RegisterResultList'])) { + if (!empty($map['RegisterResultList'])) { + $model->registerResultList = []; + $n1 = 0; + foreach ($map['RegisterResultList'] as $item1) { + $model->registerResultList[$n1] = registerResultList::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['ServiceEmail'])) { + $model->serviceEmail = $map['ServiceEmail']; + } + + if (isset($map['ServicePhone'])) { + $model->servicePhone = $map['ServicePhone']; + } + + if (isset($map['ServiceTerms'])) { + $model->serviceTerms = $map['ServiceTerms']; + } + + if (isset($map['ServiceWebsite'])) { + $model->serviceWebsite = $map['ServiceWebsite']; + } + + if (isset($map['ShelfResultList'])) { + if (!empty($map['ShelfResultList'])) { + $model->shelfResultList = []; + $n1 = 0; + foreach ($map['ShelfResultList'] as $item1) { + $model->shelfResultList[$n1] = shelfResultList::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['SignId'])) { + $model->signId = $map['SignId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/registerResultList.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/registerResultList.php new file mode 100644 index 0000000..870ee80 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/registerResultList.php @@ -0,0 +1,122 @@ + 'OperatorCode', + 'productType' => 'ProductType', + 'registerCompleteTime' => 'RegisterCompleteTime', + 'registerStatus' => 'RegisterStatus', + 'registerStatusReasons' => 'RegisterStatusReasons', + ]; + + public function validate() + { + if (\is_array($this->registerStatusReasons)) { + Model::validateArray($this->registerStatusReasons); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->operatorCode) { + $res['OperatorCode'] = $this->operatorCode; + } + + if (null !== $this->productType) { + $res['ProductType'] = $this->productType; + } + + if (null !== $this->registerCompleteTime) { + $res['RegisterCompleteTime'] = $this->registerCompleteTime; + } + + if (null !== $this->registerStatus) { + $res['RegisterStatus'] = $this->registerStatus; + } + + if (null !== $this->registerStatusReasons) { + if (\is_array($this->registerStatusReasons)) { + $res['RegisterStatusReasons'] = []; + $n1 = 0; + foreach ($this->registerStatusReasons as $item1) { + $res['RegisterStatusReasons'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OperatorCode'])) { + $model->operatorCode = $map['OperatorCode']; + } + + if (isset($map['ProductType'])) { + $model->productType = $map['ProductType']; + } + + if (isset($map['RegisterCompleteTime'])) { + $model->registerCompleteTime = $map['RegisterCompleteTime']; + } + + if (isset($map['RegisterStatus'])) { + $model->registerStatus = $map['RegisterStatus']; + } + + if (isset($map['RegisterStatusReasons'])) { + if (!empty($map['RegisterStatusReasons'])) { + $model->registerStatusReasons = []; + $n1 = 0; + foreach ($map['RegisterStatusReasons'] as $item1) { + $model->registerStatusReasons[$n1] = registerStatusReasons::fromMap($item1); + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/registerResultList/registerStatusReasons.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/registerResultList/registerStatusReasons.php new file mode 100644 index 0000000..610687e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/registerResultList/registerStatusReasons.php @@ -0,0 +1,79 @@ + 'ReasonCode', + 'reasonDescList' => 'ReasonDescList', + ]; + + public function validate() + { + if (\is_array($this->reasonDescList)) { + Model::validateArray($this->reasonDescList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->reasonCode) { + $res['ReasonCode'] = $this->reasonCode; + } + + if (null !== $this->reasonDescList) { + if (\is_array($this->reasonDescList)) { + $res['ReasonDescList'] = []; + $n1 = 0; + foreach ($this->reasonDescList as $item1) { + $res['ReasonDescList'][$n1] = $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ReasonCode'])) { + $model->reasonCode = $map['ReasonCode']; + } + + if (isset($map['ReasonDescList'])) { + if (!empty($map['ReasonDescList'])) { + $model->reasonDescList = []; + $n1 = 0; + foreach ($map['ReasonDescList'] as $item1) { + $model->reasonDescList[$n1] = $item1; + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/shelfResultList.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/shelfResultList.php new file mode 100644 index 0000000..3fae1e0 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/shelfResultList.php @@ -0,0 +1,108 @@ + 'OperatorCode', + 'productType' => 'ProductType', + 'shelfStatus' => 'ShelfStatus', + 'shelfStatusReasons' => 'ShelfStatusReasons', + ]; + + public function validate() + { + if (\is_array($this->shelfStatusReasons)) { + Model::validateArray($this->shelfStatusReasons); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->operatorCode) { + $res['OperatorCode'] = $this->operatorCode; + } + + if (null !== $this->productType) { + $res['ProductType'] = $this->productType; + } + + if (null !== $this->shelfStatus) { + $res['ShelfStatus'] = $this->shelfStatus; + } + + if (null !== $this->shelfStatusReasons) { + if (\is_array($this->shelfStatusReasons)) { + $res['ShelfStatusReasons'] = []; + $n1 = 0; + foreach ($this->shelfStatusReasons as $item1) { + $res['ShelfStatusReasons'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OperatorCode'])) { + $model->operatorCode = $map['OperatorCode']; + } + + if (isset($map['ProductType'])) { + $model->productType = $map['ProductType']; + } + + if (isset($map['ShelfStatus'])) { + $model->shelfStatus = $map['ShelfStatus']; + } + + if (isset($map['ShelfStatusReasons'])) { + if (!empty($map['ShelfStatusReasons'])) { + $model->shelfStatusReasons = []; + $n1 = 0; + foreach ($map['ShelfStatusReasons'] as $item1) { + $model->shelfStatusReasons[$n1] = shelfStatusReasons::fromMap($item1); + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/shelfResultList/shelfStatusReasons.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/shelfResultList/shelfStatusReasons.php new file mode 100644 index 0000000..cdfd4af --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetRCSSignatureResponseBody/data/shelfResultList/shelfStatusReasons.php @@ -0,0 +1,79 @@ + 'ReasonCode', + 'reasonDescList' => 'ReasonDescList', + ]; + + public function validate() + { + if (\is_array($this->reasonDescList)) { + Model::validateArray($this->reasonDescList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->reasonCode) { + $res['ReasonCode'] = $this->reasonCode; + } + + if (null !== $this->reasonDescList) { + if (\is_array($this->reasonDescList)) { + $res['ReasonDescList'] = []; + $n1 = 0; + foreach ($this->reasonDescList as $item1) { + $res['ReasonDescList'][$n1] = $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ReasonCode'])) { + $model->reasonCode = $map['ReasonCode']; + } + + if (isset($map['ReasonDescList'])) { + if (!empty($map['ReasonDescList'])) { + $model->reasonDescList = []; + $n1 = 0; + foreach ($map['ReasonDescList'] as $item1) { + $model->reasonDescList[$n1] = $item1; + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoRequest.php new file mode 100644 index 0000000..5d572ef --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'taskType' => 'TaskType', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->taskType) { + $res['TaskType'] = $this->taskType; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TaskType'])) { + $model->taskType = $map['TaskType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoResponse.php new file mode 100644 index 0000000..7a229ba --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = GetSmsOcrOssInfoResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoResponseBody.php new file mode 100644 index 0000000..1ea1388 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'message' => 'Message', + 'model' => 'Model', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->model) { + $this->model->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->model) { + $res['Model'] = null !== $this->model ? $this->model->toArray($noStream) : $this->model; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['Model'])) { + $model->model = model_::fromMap($map['Model']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoResponseBody/model_.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoResponseBody/model_.php new file mode 100644 index 0000000..35cdd7d --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsOcrOssInfoResponseBody/model_.php @@ -0,0 +1,132 @@ + 'AccessKeyId', + 'bucket' => 'Bucket', + 'expireTime' => 'ExpireTime', + 'host' => 'Host', + 'policy' => 'Policy', + 'signature' => 'Signature', + 'startPath' => 'StartPath', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessKeyId) { + $res['AccessKeyId'] = $this->accessKeyId; + } + + if (null !== $this->bucket) { + $res['Bucket'] = $this->bucket; + } + + if (null !== $this->expireTime) { + $res['ExpireTime'] = $this->expireTime; + } + + if (null !== $this->host) { + $res['Host'] = $this->host; + } + + if (null !== $this->policy) { + $res['Policy'] = $this->policy; + } + + if (null !== $this->signature) { + $res['Signature'] = $this->signature; + } + + if (null !== $this->startPath) { + $res['StartPath'] = $this->startPath; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + 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['ExpireTime'])) { + $model->expireTime = $map['ExpireTime']; + } + + if (isset($map['Host'])) { + $model->host = $map['Host']; + } + + if (isset($map['Policy'])) { + $model->policy = $map['Policy']; + } + + if (isset($map['Signature'])) { + $model->signature = $map['Signature']; + } + + if (isset($map['StartPath'])) { + $model->startPath = $map['StartPath']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignRequest.php new file mode 100644 index 0000000..a20117b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponse.php new file mode 100644 index 0000000..7eb191d --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = GetSmsSignResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody.php new file mode 100644 index 0000000..a722831 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody.php @@ -0,0 +1,381 @@ + 'AppIcpRecordId', + 'applyScene' => 'ApplyScene', + 'auditInfo' => 'AuditInfo', + 'authorizationLetterAuditPass' => 'AuthorizationLetterAuditPass', + 'authorizationLetterId' => 'AuthorizationLetterId', + 'code' => 'Code', + 'createDate' => 'CreateDate', + 'fileUrlList' => 'FileUrlList', + 'message' => 'Message', + 'orderId' => 'OrderId', + 'qualificationId' => 'QualificationId', + 'registerResult' => 'RegisterResult', + 'remark' => 'Remark', + 'requestId' => 'RequestId', + 'signCode' => 'SignCode', + 'signIspRegisterDetailList' => 'SignIspRegisterDetailList', + 'signName' => 'SignName', + 'signStatus' => 'SignStatus', + 'signTag' => 'SignTag', + 'signUsage' => 'SignUsage', + 'thirdParty' => 'ThirdParty', + 'trademarkId' => 'TrademarkId', + ]; + + public function validate() + { + if (null !== $this->auditInfo) { + $this->auditInfo->validate(); + } + if (\is_array($this->fileUrlList)) { + Model::validateArray($this->fileUrlList); + } + if (\is_array($this->signIspRegisterDetailList)) { + Model::validateArray($this->signIspRegisterDetailList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->appIcpRecordId) { + $res['AppIcpRecordId'] = $this->appIcpRecordId; + } + + if (null !== $this->applyScene) { + $res['ApplyScene'] = $this->applyScene; + } + + if (null !== $this->auditInfo) { + $res['AuditInfo'] = null !== $this->auditInfo ? $this->auditInfo->toArray($noStream) : $this->auditInfo; + } + + if (null !== $this->authorizationLetterAuditPass) { + $res['AuthorizationLetterAuditPass'] = $this->authorizationLetterAuditPass; + } + + if (null !== $this->authorizationLetterId) { + $res['AuthorizationLetterId'] = $this->authorizationLetterId; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->createDate) { + $res['CreateDate'] = $this->createDate; + } + + if (null !== $this->fileUrlList) { + if (\is_array($this->fileUrlList)) { + $res['FileUrlList'] = []; + $n1 = 0; + foreach ($this->fileUrlList as $item1) { + $res['FileUrlList'][$n1] = $item1; + ++$n1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->qualificationId) { + $res['QualificationId'] = $this->qualificationId; + } + + if (null !== $this->registerResult) { + $res['RegisterResult'] = $this->registerResult; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->signCode) { + $res['SignCode'] = $this->signCode; + } + + if (null !== $this->signIspRegisterDetailList) { + if (\is_array($this->signIspRegisterDetailList)) { + $res['SignIspRegisterDetailList'] = []; + $n1 = 0; + foreach ($this->signIspRegisterDetailList as $item1) { + $res['SignIspRegisterDetailList'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->signStatus) { + $res['SignStatus'] = $this->signStatus; + } + + if (null !== $this->signTag) { + $res['SignTag'] = $this->signTag; + } + + if (null !== $this->signUsage) { + $res['SignUsage'] = $this->signUsage; + } + + if (null !== $this->thirdParty) { + $res['ThirdParty'] = $this->thirdParty; + } + + if (null !== $this->trademarkId) { + $res['TrademarkId'] = $this->trademarkId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppIcpRecordId'])) { + $model->appIcpRecordId = $map['AppIcpRecordId']; + } + + if (isset($map['ApplyScene'])) { + $model->applyScene = $map['ApplyScene']; + } + + if (isset($map['AuditInfo'])) { + $model->auditInfo = auditInfo::fromMap($map['AuditInfo']); + } + + if (isset($map['AuthorizationLetterAuditPass'])) { + $model->authorizationLetterAuditPass = $map['AuthorizationLetterAuditPass']; + } + + if (isset($map['AuthorizationLetterId'])) { + $model->authorizationLetterId = $map['AuthorizationLetterId']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['CreateDate'])) { + $model->createDate = $map['CreateDate']; + } + + if (isset($map['FileUrlList'])) { + if (!empty($map['FileUrlList'])) { + $model->fileUrlList = []; + $n1 = 0; + foreach ($map['FileUrlList'] as $item1) { + $model->fileUrlList[$n1] = $item1; + ++$n1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['QualificationId'])) { + $model->qualificationId = $map['QualificationId']; + } + + if (isset($map['RegisterResult'])) { + $model->registerResult = $map['RegisterResult']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['SignCode'])) { + $model->signCode = $map['SignCode']; + } + + if (isset($map['SignIspRegisterDetailList'])) { + if (!empty($map['SignIspRegisterDetailList'])) { + $model->signIspRegisterDetailList = []; + $n1 = 0; + foreach ($map['SignIspRegisterDetailList'] as $item1) { + $model->signIspRegisterDetailList[$n1] = signIspRegisterDetailList::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SignStatus'])) { + $model->signStatus = $map['SignStatus']; + } + + if (isset($map['SignTag'])) { + $model->signTag = $map['SignTag']; + } + + if (isset($map['SignUsage'])) { + $model->signUsage = $map['SignUsage']; + } + + if (isset($map['ThirdParty'])) { + $model->thirdParty = $map['ThirdParty']; + } + + if (isset($map['TrademarkId'])) { + $model->trademarkId = $map['TrademarkId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody/auditInfo.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody/auditInfo.php new file mode 100644 index 0000000..daa962b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody/auditInfo.php @@ -0,0 +1,62 @@ + 'AuditDate', + 'rejectInfo' => 'RejectInfo', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->auditDate) { + $res['AuditDate'] = $this->auditDate; + } + + if (null !== $this->rejectInfo) { + $res['RejectInfo'] = $this->rejectInfo; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AuditDate'])) { + $model->auditDate = $map['AuditDate']; + } + + if (isset($map['RejectInfo'])) { + $model->rejectInfo = $map['RejectInfo']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody/signIspRegisterDetailList.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody/signIspRegisterDetailList.php new file mode 100644 index 0000000..266e0bd --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody/signIspRegisterDetailList.php @@ -0,0 +1,108 @@ + 'OperatorCode', + 'operatorCompleteTime' => 'OperatorCompleteTime', + 'registerStatus' => 'RegisterStatus', + 'registerStatusReasons' => 'RegisterStatusReasons', + ]; + + public function validate() + { + if (\is_array($this->registerStatusReasons)) { + Model::validateArray($this->registerStatusReasons); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->operatorCode) { + $res['OperatorCode'] = $this->operatorCode; + } + + if (null !== $this->operatorCompleteTime) { + $res['OperatorCompleteTime'] = $this->operatorCompleteTime; + } + + if (null !== $this->registerStatus) { + $res['RegisterStatus'] = $this->registerStatus; + } + + if (null !== $this->registerStatusReasons) { + if (\is_array($this->registerStatusReasons)) { + $res['RegisterStatusReasons'] = []; + $n1 = 0; + foreach ($this->registerStatusReasons as $item1) { + $res['RegisterStatusReasons'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OperatorCode'])) { + $model->operatorCode = $map['OperatorCode']; + } + + if (isset($map['OperatorCompleteTime'])) { + $model->operatorCompleteTime = $map['OperatorCompleteTime']; + } + + if (isset($map['RegisterStatus'])) { + $model->registerStatus = $map['RegisterStatus']; + } + + if (isset($map['RegisterStatusReasons'])) { + if (!empty($map['RegisterStatusReasons'])) { + $model->registerStatusReasons = []; + $n1 = 0; + foreach ($map['RegisterStatusReasons'] as $item1) { + $model->registerStatusReasons[$n1] = registerStatusReasons::fromMap($item1); + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody/signIspRegisterDetailList/registerStatusReasons.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody/signIspRegisterDetailList/registerStatusReasons.php new file mode 100644 index 0000000..a82471f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsSignResponseBody/signIspRegisterDetailList/registerStatusReasons.php @@ -0,0 +1,79 @@ + 'ReasonCode', + 'reasonDescList' => 'ReasonDescList', + ]; + + public function validate() + { + if (\is_array($this->reasonDescList)) { + Model::validateArray($this->reasonDescList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->reasonCode) { + $res['ReasonCode'] = $this->reasonCode; + } + + if (null !== $this->reasonDescList) { + if (\is_array($this->reasonDescList)) { + $res['ReasonDescList'] = []; + $n1 = 0; + foreach ($this->reasonDescList as $item1) { + $res['ReasonDescList'][$n1] = $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ReasonCode'])) { + $model->reasonCode = $map['ReasonCode']; + } + + if (isset($map['ReasonDescList'])) { + if (!empty($map['ReasonDescList'])) { + $model->reasonDescList = []; + $n1 = 0; + foreach ($map['ReasonDescList'] as $item1) { + $model->reasonDescList[$n1] = $item1; + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListRequest.php new file mode 100644 index 0000000..30ed691 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListRequest.php @@ -0,0 +1,219 @@ + 'AuditStatus', + 'ownerId' => 'OwnerId', + 'pageIndex' => 'PageIndex', + 'pageSize' => 'PageSize', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'templateCode' => 'TemplateCode', + 'templateName' => 'TemplateName', + 'templateTag' => 'TemplateTag', + 'templateType' => 'TemplateType', + 'usableStateList' => 'UsableStateList', + ]; + + public function validate() + { + if (\is_array($this->usableStateList)) { + Model::validateArray($this->usableStateList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->auditStatus) { + $res['AuditStatus'] = $this->auditStatus; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->pageIndex) { + $res['PageIndex'] = $this->pageIndex; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateTag) { + $res['TemplateTag'] = $this->templateTag; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + if (null !== $this->usableStateList) { + if (\is_array($this->usableStateList)) { + $res['UsableStateList'] = []; + $n1 = 0; + foreach ($this->usableStateList as $item1) { + $res['UsableStateList'][$n1] = $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AuditStatus'])) { + $model->auditStatus = $map['AuditStatus']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PageIndex'])) { + $model->pageIndex = $map['PageIndex']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateTag'])) { + $model->templateTag = $map['TemplateTag']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + if (isset($map['UsableStateList'])) { + if (!empty($map['UsableStateList'])) { + $model->usableStateList = []; + $n1 = 0; + foreach ($map['UsableStateList'] as $item1) { + $model->usableStateList[$n1] = $item1; + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponse.php new file mode 100644 index 0000000..ab655a5 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = GetSmsTemplateListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody.php new file mode 100644 index 0000000..9aa8483 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody/data.php new file mode 100644 index 0000000..e68132f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody/data.php @@ -0,0 +1,108 @@ + 'List', + 'pageNo' => 'PageNo', + 'pageSize' => 'PageSize', + 'total' => 'Total', + ]; + + public function validate() + { + if (\is_array($this->list)) { + Model::validateArray($this->list); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->list) { + if (\is_array($this->list)) { + $res['List'] = []; + $n1 = 0; + foreach ($this->list as $item1) { + $res['List'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->pageNo) { + $res['PageNo'] = $this->pageNo; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['List'])) { + if (!empty($map['List'])) { + $model->list = []; + $n1 = 0; + foreach ($map['List'] as $item1) { + $model->list[$n1] = list_::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['PageNo'])) { + $model->pageNo = $map['PageNo']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody/data/list_.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody/data/list_.php new file mode 100644 index 0000000..4953d6f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody/data/list_.php @@ -0,0 +1,209 @@ + 'AuditStatus', + 'gmtCreate' => 'GmtCreate', + 'signName' => 'SignName', + 'templateCode' => 'TemplateCode', + 'templateContent' => 'TemplateContent', + 'templateName' => 'TemplateName', + 'templateTag' => 'TemplateTag', + 'templateType' => 'TemplateType', + 'usableStateList' => 'UsableStateList', + 'workOrderId' => 'WorkOrderId', + ]; + + public function validate() + { + if (\is_array($this->templateTag)) { + Model::validateArray($this->templateTag); + } + if (\is_array($this->usableStateList)) { + Model::validateArray($this->usableStateList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->auditStatus) { + $res['AuditStatus'] = $this->auditStatus; + } + + if (null !== $this->gmtCreate) { + $res['GmtCreate'] = $this->gmtCreate; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateContent) { + $res['TemplateContent'] = $this->templateContent; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateTag) { + if (\is_array($this->templateTag)) { + $res['TemplateTag'] = []; + $n1 = 0; + foreach ($this->templateTag as $item1) { + $res['TemplateTag'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + if (null !== $this->usableStateList) { + if (\is_array($this->usableStateList)) { + $res['UsableStateList'] = []; + $n1 = 0; + foreach ($this->usableStateList as $item1) { + $res['UsableStateList'][$n1] = $item1; + ++$n1; + } + } + } + + if (null !== $this->workOrderId) { + $res['WorkOrderId'] = $this->workOrderId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AuditStatus'])) { + $model->auditStatus = $map['AuditStatus']; + } + + if (isset($map['GmtCreate'])) { + $model->gmtCreate = $map['GmtCreate']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateContent'])) { + $model->templateContent = $map['TemplateContent']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateTag'])) { + if (!empty($map['TemplateTag'])) { + $model->templateTag = []; + $n1 = 0; + foreach ($map['TemplateTag'] as $item1) { + $model->templateTag[$n1] = templateTag::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + if (isset($map['UsableStateList'])) { + if (!empty($map['UsableStateList'])) { + $model->usableStateList = []; + $n1 = 0; + foreach ($map['UsableStateList'] as $item1) { + $model->usableStateList[$n1] = $item1; + ++$n1; + } + } + } + + if (isset($map['WorkOrderId'])) { + $model->workOrderId = $map['WorkOrderId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody/data/list_/templateTag.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody/data/list_/templateTag.php new file mode 100644 index 0000000..d9dc2e2 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListResponseBody/data/list_/templateTag.php @@ -0,0 +1,62 @@ + 'TagKey', + 'tagValue' => 'TagValue', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->tagKey) { + $res['TagKey'] = $this->tagKey; + } + + if (null !== $this->tagValue) { + $res['TagValue'] = $this->tagValue; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TagKey'])) { + $model->tagKey = $map['TagKey']; + } + + if (isset($map['TagValue'])) { + $model->tagValue = $map['TagValue']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListShrinkRequest.php new file mode 100644 index 0000000..c73a8cf --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateListShrinkRequest.php @@ -0,0 +1,202 @@ + 'AuditStatus', + 'ownerId' => 'OwnerId', + 'pageIndex' => 'PageIndex', + 'pageSize' => 'PageSize', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'templateCode' => 'TemplateCode', + 'templateName' => 'TemplateName', + 'templateTag' => 'TemplateTag', + 'templateType' => 'TemplateType', + 'usableStateListShrink' => 'UsableStateList', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->auditStatus) { + $res['AuditStatus'] = $this->auditStatus; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->pageIndex) { + $res['PageIndex'] = $this->pageIndex; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateTag) { + $res['TemplateTag'] = $this->templateTag; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + if (null !== $this->usableStateListShrink) { + $res['UsableStateList'] = $this->usableStateListShrink; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AuditStatus'])) { + $model->auditStatus = $map['AuditStatus']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PageIndex'])) { + $model->pageIndex = $map['PageIndex']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateTag'])) { + $model->templateTag = $map['TemplateTag']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + if (isset($map['UsableStateList'])) { + $model->usableStateListShrink = $map['UsableStateList']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateRequest.php new file mode 100644 index 0000000..ad5e337 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponse.php new file mode 100644 index 0000000..865f271 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = GetSmsTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody.php new file mode 100644 index 0000000..f21920a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody.php @@ -0,0 +1,357 @@ + 'ApplyScene', + 'auditInfo' => 'AuditInfo', + 'code' => 'Code', + 'createDate' => 'CreateDate', + 'fileUrlList' => 'FileUrlList', + 'intlType' => 'IntlType', + 'message' => 'Message', + 'moreDataFileUrlList' => 'MoreDataFileUrlList', + 'orderId' => 'OrderId', + 'relatedSignName' => 'RelatedSignName', + 'remark' => 'Remark', + 'requestId' => 'RequestId', + 'signList' => 'SignList', + 'templateCode' => 'TemplateCode', + 'templateContent' => 'TemplateContent', + 'templateName' => 'TemplateName', + 'templateStatus' => 'TemplateStatus', + 'templateTag' => 'TemplateTag', + 'templateType' => 'TemplateType', + 'variableAttribute' => 'VariableAttribute', + 'vendorAuditStatus' => 'VendorAuditStatus', + ]; + + public function validate() + { + if (null !== $this->auditInfo) { + $this->auditInfo->validate(); + } + if (null !== $this->fileUrlList) { + $this->fileUrlList->validate(); + } + if (null !== $this->moreDataFileUrlList) { + $this->moreDataFileUrlList->validate(); + } + if (null !== $this->signList) { + $this->signList->validate(); + } + if (\is_array($this->vendorAuditStatus)) { + Model::validateArray($this->vendorAuditStatus); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->applyScene) { + $res['ApplyScene'] = $this->applyScene; + } + + if (null !== $this->auditInfo) { + $res['AuditInfo'] = null !== $this->auditInfo ? $this->auditInfo->toArray($noStream) : $this->auditInfo; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->createDate) { + $res['CreateDate'] = $this->createDate; + } + + if (null !== $this->fileUrlList) { + $res['FileUrlList'] = null !== $this->fileUrlList ? $this->fileUrlList->toArray($noStream) : $this->fileUrlList; + } + + if (null !== $this->intlType) { + $res['IntlType'] = $this->intlType; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->moreDataFileUrlList) { + $res['MoreDataFileUrlList'] = null !== $this->moreDataFileUrlList ? $this->moreDataFileUrlList->toArray($noStream) : $this->moreDataFileUrlList; + } + + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->relatedSignName) { + $res['RelatedSignName'] = $this->relatedSignName; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->signList) { + $res['SignList'] = null !== $this->signList ? $this->signList->toArray($noStream) : $this->signList; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateContent) { + $res['TemplateContent'] = $this->templateContent; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateStatus) { + $res['TemplateStatus'] = $this->templateStatus; + } + + if (null !== $this->templateTag) { + $res['TemplateTag'] = $this->templateTag; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + if (null !== $this->variableAttribute) { + $res['VariableAttribute'] = $this->variableAttribute; + } + + if (null !== $this->vendorAuditStatus) { + if (\is_array($this->vendorAuditStatus)) { + $res['VendorAuditStatus'] = []; + foreach ($this->vendorAuditStatus as $key1 => $value1) { + $res['VendorAuditStatus'][$key1] = $value1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ApplyScene'])) { + $model->applyScene = $map['ApplyScene']; + } + + if (isset($map['AuditInfo'])) { + $model->auditInfo = auditInfo::fromMap($map['AuditInfo']); + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['CreateDate'])) { + $model->createDate = $map['CreateDate']; + } + + if (isset($map['FileUrlList'])) { + $model->fileUrlList = fileUrlList::fromMap($map['FileUrlList']); + } + + if (isset($map['IntlType'])) { + $model->intlType = $map['IntlType']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['MoreDataFileUrlList'])) { + $model->moreDataFileUrlList = moreDataFileUrlList::fromMap($map['MoreDataFileUrlList']); + } + + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['RelatedSignName'])) { + $model->relatedSignName = $map['RelatedSignName']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['SignList'])) { + $model->signList = signList::fromMap($map['SignList']); + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateContent'])) { + $model->templateContent = $map['TemplateContent']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateStatus'])) { + $model->templateStatus = $map['TemplateStatus']; + } + + if (isset($map['TemplateTag'])) { + $model->templateTag = $map['TemplateTag']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + if (isset($map['VariableAttribute'])) { + $model->variableAttribute = $map['VariableAttribute']; + } + + if (isset($map['VendorAuditStatus'])) { + if (!empty($map['VendorAuditStatus'])) { + $model->vendorAuditStatus = []; + foreach ($map['VendorAuditStatus'] as $key1 => $value1) { + $model->vendorAuditStatus[$key1] = $value1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/auditInfo.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/auditInfo.php new file mode 100644 index 0000000..16b3db0 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/auditInfo.php @@ -0,0 +1,62 @@ + 'AuditDate', + 'rejectInfo' => 'RejectInfo', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->auditDate) { + $res['AuditDate'] = $this->auditDate; + } + + if (null !== $this->rejectInfo) { + $res['RejectInfo'] = $this->rejectInfo; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AuditDate'])) { + $model->auditDate = $map['AuditDate']; + } + + if (isset($map['RejectInfo'])) { + $model->rejectInfo = $map['RejectInfo']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/fileUrlList.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/fileUrlList.php new file mode 100644 index 0000000..db701be --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/fileUrlList.php @@ -0,0 +1,65 @@ + 'FileUrl', + ]; + + public function validate() + { + if (\is_array($this->fileUrl)) { + Model::validateArray($this->fileUrl); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->fileUrl) { + if (\is_array($this->fileUrl)) { + $res['FileUrl'] = []; + $n1 = 0; + foreach ($this->fileUrl as $item1) { + $res['FileUrl'][$n1] = $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FileUrl'])) { + if (!empty($map['FileUrl'])) { + $model->fileUrl = []; + $n1 = 0; + foreach ($map['FileUrl'] as $item1) { + $model->fileUrl[$n1] = $item1; + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/moreDataFileUrlList.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/moreDataFileUrlList.php new file mode 100644 index 0000000..d0ebcd1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/moreDataFileUrlList.php @@ -0,0 +1,65 @@ + 'MoreDataFileUrl', + ]; + + public function validate() + { + if (\is_array($this->moreDataFileUrl)) { + Model::validateArray($this->moreDataFileUrl); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->moreDataFileUrl) { + if (\is_array($this->moreDataFileUrl)) { + $res['MoreDataFileUrl'] = []; + $n1 = 0; + foreach ($this->moreDataFileUrl as $item1) { + $res['MoreDataFileUrl'][$n1] = $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MoreDataFileUrl'])) { + if (!empty($map['MoreDataFileUrl'])) { + $model->moreDataFileUrl = []; + $n1 = 0; + foreach ($map['MoreDataFileUrl'] as $item1) { + $model->moreDataFileUrl[$n1] = $item1; + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/signList.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/signList.php new file mode 100644 index 0000000..3118c2b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetSmsTemplateResponseBody/signList.php @@ -0,0 +1,65 @@ + 'SignList', + ]; + + public function validate() + { + if (\is_array($this->signList)) { + Model::validateArray($this->signList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->signList) { + if (\is_array($this->signList)) { + $res['SignList'] = []; + $n1 = 0; + foreach ($this->signList as $item1) { + $res['SignList'][$n1] = $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SignList'])) { + if (!empty($map['SignList'])) { + $model->signList = []; + $n1 = 0; + foreach ($map['SignList'] as $item1) { + $model->signList[$n1] = $item1; + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesRequest.php new file mode 100644 index 0000000..17c651b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesRequest.php @@ -0,0 +1,209 @@ + 'NextToken', + 'ownerId' => 'OwnerId', + 'pageSize' => 'PageSize', + 'prodCode' => 'ProdCode', + 'regionId' => 'RegionId', + 'resourceId' => 'ResourceId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'resourceType' => 'ResourceType', + 'tag' => 'Tag', + ]; + + public function validate() + { + if (\is_array($this->resourceId)) { + Model::validateArray($this->resourceId); + } + if (\is_array($this->tag)) { + Model::validateArray($this->tag); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->nextToken) { + $res['NextToken'] = $this->nextToken; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->prodCode) { + $res['ProdCode'] = $this->prodCode; + } + + if (null !== $this->regionId) { + $res['RegionId'] = $this->regionId; + } + + if (null !== $this->resourceId) { + if (\is_array($this->resourceId)) { + $res['ResourceId'] = []; + $n1 = 0; + foreach ($this->resourceId as $item1) { + $res['ResourceId'][$n1] = $item1; + ++$n1; + } + } + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->resourceType) { + $res['ResourceType'] = $this->resourceType; + } + + if (null !== $this->tag) { + if (\is_array($this->tag)) { + $res['Tag'] = []; + $n1 = 0; + foreach ($this->tag as $item1) { + $res['Tag'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['NextToken'])) { + $model->nextToken = $map['NextToken']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['ProdCode'])) { + $model->prodCode = $map['ProdCode']; + } + + if (isset($map['RegionId'])) { + $model->regionId = $map['RegionId']; + } + + if (isset($map['ResourceId'])) { + if (!empty($map['ResourceId'])) { + $model->resourceId = []; + $n1 = 0; + foreach ($map['ResourceId'] as $item1) { + $model->resourceId[$n1] = $item1; + ++$n1; + } + } + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['ResourceType'])) { + $model->resourceType = $map['ResourceType']; + } + + if (isset($map['Tag'])) { + if (!empty($map['Tag'])) { + $model->tag = []; + $n1 = 0; + foreach ($map['Tag'] as $item1) { + $model->tag[$n1] = tag::fromMap($item1); + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesRequest/tag.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesRequest/tag.php new file mode 100644 index 0000000..ded5f58 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesRequest/tag.php @@ -0,0 +1,62 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + 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/dysmsapi-20170525/src/Models/ListTagResourcesResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponse.php new file mode 100644 index 0000000..19fcf20 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = ListTagResourcesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody.php new file mode 100644 index 0000000..d0d00d0 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'nextToken' => 'NextToken', + 'requestId' => 'RequestId', + 'tagResources' => 'TagResources', + ]; + + public function validate() + { + if (null !== $this->tagResources) { + $this->tagResources->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->nextToken) { + $res['NextToken'] = $this->nextToken; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->tagResources) { + $res['TagResources'] = null !== $this->tagResources ? $this->tagResources->toArray($noStream) : $this->tagResources; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['NextToken'])) { + $model->nextToken = $map['NextToken']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['TagResources'])) { + $model->tagResources = tagResources::fromMap($map['TagResources']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody/tagResources.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody/tagResources.php new file mode 100644 index 0000000..b3b5ac1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody/tagResources.php @@ -0,0 +1,66 @@ + 'TagResource', + ]; + + public function validate() + { + if (\is_array($this->tagResource)) { + Model::validateArray($this->tagResource); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->tagResource) { + if (\is_array($this->tagResource)) { + $res['TagResource'] = []; + $n1 = 0; + foreach ($this->tagResource as $item1) { + $res['TagResource'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TagResource'])) { + if (!empty($map['TagResource'])) { + $model->tagResource = []; + $n1 = 0; + foreach ($map['TagResource'] as $item1) { + $model->tagResource[$n1] = tagResource::fromMap($item1); + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody/tagResources/tagResource.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody/tagResources/tagResource.php new file mode 100644 index 0000000..9c0ce5d --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody/tagResources/tagResource.php @@ -0,0 +1,90 @@ + 'ResourceId', + 'resourceType' => 'ResourceType', + 'tagKey' => 'TagKey', + 'tagValue' => 'TagValue', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + + if (null !== $this->resourceType) { + $res['ResourceType'] = $this->resourceType; + } + + if (null !== $this->tagKey) { + $res['TagKey'] = $this->tagKey; + } + + if (null !== $this->tagValue) { + $res['TagValue'] = $this->tagValue; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + + if (isset($map['ResourceType'])) { + $model->resourceType = $map['ResourceType']; + } + + if (isset($map['TagKey'])) { + $model->tagKey = $map['TagKey']; + } + + if (isset($map['TagValue'])) { + $model->tagValue = $map['TagValue']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignRequest.php new file mode 100644 index 0000000..2ed35d9 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignRequest.php @@ -0,0 +1,164 @@ + 'OwnerId', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signFileList' => 'SignFileList', + 'signName' => 'SignName', + 'signSource' => 'SignSource', + 'signType' => 'SignType', + ]; + + public function validate() + { + if (\is_array($this->signFileList)) { + Model::validateArray($this->signFileList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signFileList) { + if (\is_array($this->signFileList)) { + $res['SignFileList'] = []; + $n1 = 0; + foreach ($this->signFileList as $item1) { + $res['SignFileList'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->signSource) { + $res['SignSource'] = $this->signSource; + } + + if (null !== $this->signType) { + $res['SignType'] = $this->signType; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignFileList'])) { + if (!empty($map['SignFileList'])) { + $model->signFileList = []; + $n1 = 0; + foreach ($map['SignFileList'] as $item1) { + $model->signFileList[$n1] = signFileList::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SignSource'])) { + $model->signSource = $map['SignSource']; + } + + if (isset($map['SignType'])) { + $model->signType = $map['SignType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignRequest/signFileList.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignRequest/signFileList.php new file mode 100644 index 0000000..a791c60 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignRequest/signFileList.php @@ -0,0 +1,62 @@ + 'FileContents', + 'fileSuffix' => 'FileSuffix', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->fileContents) { + $res['FileContents'] = $this->fileContents; + } + + if (null !== $this->fileSuffix) { + $res['FileSuffix'] = $this->fileSuffix; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FileContents'])) { + $model->fileContents = $map['FileContents']; + } + + if (isset($map['FileSuffix'])) { + $model->fileSuffix = $map['FileSuffix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignResponse.php new file mode 100644 index 0000000..0f0c56f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = ModifySmsSignResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignResponseBody.php new file mode 100644 index 0000000..61699c8 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignResponseBody.php @@ -0,0 +1,90 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateRequest.php new file mode 100644 index 0000000..7dbbc4c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateRequest.php @@ -0,0 +1,146 @@ + 'OwnerId', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'templateCode' => 'TemplateCode', + 'templateContent' => 'TemplateContent', + 'templateName' => 'TemplateName', + 'templateType' => 'TemplateType', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateContent) { + $res['TemplateContent'] = $this->templateContent; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateContent'])) { + $model->templateContent = $map['TemplateContent']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateResponse.php new file mode 100644 index 0000000..bea8d1e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = ModifySmsTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateResponseBody.php new file mode 100644 index 0000000..f66217e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateResponseBody.php @@ -0,0 +1,90 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportRequest.php new file mode 100644 index 0000000..1ffc9bf --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportRequest.php @@ -0,0 +1,93 @@ + 'EndDate', + 'startDate' => 'StartDate', + 'templateCodes' => 'TemplateCodes', + ]; + + public function validate() + { + if (\is_array($this->templateCodes)) { + Model::validateArray($this->templateCodes); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->endDate) { + $res['EndDate'] = $this->endDate; + } + + if (null !== $this->startDate) { + $res['StartDate'] = $this->startDate; + } + + if (null !== $this->templateCodes) { + if (\is_array($this->templateCodes)) { + $res['TemplateCodes'] = []; + $n1 = 0; + foreach ($this->templateCodes as $item1) { + $res['TemplateCodes'][$n1] = $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EndDate'])) { + $model->endDate = $map['EndDate']; + } + + if (isset($map['StartDate'])) { + $model->startDate = $map['StartDate']; + } + + if (isset($map['TemplateCodes'])) { + if (!empty($map['TemplateCodes'])) { + $model->templateCodes = []; + $n1 = 0; + foreach ($map['TemplateCodes'] as $item1) { + $model->templateCodes[$n1] = $item1; + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportResponse.php new file mode 100644 index 0000000..4e7e9b5 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QueryCardSmsTemplateReportResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportResponseBody.php new file mode 100644 index 0000000..2d1c5bb --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportResponseBody/data.php new file mode 100644 index 0000000..7961b93 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportResponseBody/data.php @@ -0,0 +1,75 @@ + 'model', + ]; + + public function validate() + { + if (\is_array($this->model)) { + Model::validateArray($this->model); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->model) { + if (\is_array($this->model)) { + $res['model'] = []; + $n1 = 0; + foreach ($this->model as $item1) { + if (\is_array($item1)) { + $res['model'][$n1] = []; + foreach ($item1 as $key2 => $value2) { + $res['model'][$n1][$key2] = $value2; + } + } + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['model'])) { + if (!empty($map['model'])) { + $model->model = []; + $n1 = 0; + foreach ($map['model'] as $item1) { + if (!empty($item1)) { + $model->model[$n1] = []; + foreach ($item1 as $key2 => $value2) { + $model->model[$n1][$key2] = $value2; + } + } + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateRequest.php new file mode 100644 index 0000000..20c5e26 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateRequest.php @@ -0,0 +1,48 @@ + 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponse.php new file mode 100644 index 0000000..718f027 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QueryCardSmsTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponseBody.php new file mode 100644 index 0000000..a7b7f0b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponseBody/data.php new file mode 100644 index 0000000..c08bfc3 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponseBody/data.php @@ -0,0 +1,75 @@ + 'Templates', + ]; + + public function validate() + { + if (\is_array($this->templates)) { + Model::validateArray($this->templates); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->templates) { + if (\is_array($this->templates)) { + $res['Templates'] = []; + $n1 = 0; + foreach ($this->templates as $item1) { + if (\is_array($item1)) { + $res['Templates'][$n1] = []; + foreach ($item1 as $key2 => $value2) { + $res['Templates'][$n1][$key2] = $value2; + } + } + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Templates'])) { + if (!empty($map['Templates'])) { + $model->templates = []; + $n1 = 0; + foreach ($map['Templates'] as $item1) { + if (!empty($item1)) { + $model->templates[$n1] = []; + foreach ($item1 as $key2 => $value2) { + $model->templates[$n1][$key2] = $value2; + } + } + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryDigitalSignByNameRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryDigitalSignByNameRequest.php new file mode 100644 index 0000000..8b454e8 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryDigitalSignByNameRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryDigitalSignByNameResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryDigitalSignByNameResponse.php new file mode 100644 index 0000000..6d619c6 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryDigitalSignByNameResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QueryDigitalSignByNameResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryDigitalSignByNameResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryDigitalSignByNameResponseBody.php new file mode 100644 index 0000000..87264bf --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryDigitalSignByNameResponseBody.php @@ -0,0 +1,131 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + foreach ($this->data as $key1 => $value1) { + $res['Data'][$key1] = $value1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + foreach ($map['Data'] as $key1 => $value1) { + $model->data[$key1] = $value1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignRequest.php new file mode 100644 index 0000000..5286d86 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignRequest.php @@ -0,0 +1,132 @@ + 'ExtCode', + 'ownerId' => 'OwnerId', + 'pageNo' => 'PageNo', + 'pageSize' => 'PageSize', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->extCode) { + $res['ExtCode'] = $this->extCode; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->pageNo) { + $res['PageNo'] = $this->pageNo; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ExtCode'])) { + $model->extCode = $map['ExtCode']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PageNo'])) { + $model->pageNo = $map['PageNo']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponse.php new file mode 100644 index 0000000..e57dff8 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QueryExtCodeSignResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponseBody.php new file mode 100644 index 0000000..3522332 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponseBody/data.php new file mode 100644 index 0000000..24f218c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponseBody/data.php @@ -0,0 +1,108 @@ + 'List', + 'pageNo' => 'PageNo', + 'pageSize' => 'PageSize', + 'total' => 'Total', + ]; + + public function validate() + { + if (\is_array($this->list)) { + Model::validateArray($this->list); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->list) { + if (\is_array($this->list)) { + $res['List'] = []; + $n1 = 0; + foreach ($this->list as $item1) { + $res['List'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->pageNo) { + $res['PageNo'] = $this->pageNo; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['List'])) { + if (!empty($map['List'])) { + $model->list = []; + $n1 = 0; + foreach ($map['List'] as $item1) { + $model->list[$n1] = list_::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['PageNo'])) { + $model->pageNo = $map['PageNo']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponseBody/data/list_.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponseBody/data/list_.php new file mode 100644 index 0000000..9056b8d --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryExtCodeSignResponseBody/data/list_.php @@ -0,0 +1,104 @@ + 'Active', + 'extCode' => 'ExtCode', + 'sendCount' => 'SendCount', + 'signName' => 'SignName', + 'source' => 'Source', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->active) { + $res['Active'] = $this->active; + } + + if (null !== $this->extCode) { + $res['ExtCode'] = $this->extCode; + } + + if (null !== $this->sendCount) { + $res['SendCount'] = $this->sendCount; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->source) { + $res['Source'] = $this->source; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Active'])) { + $model->active = $map['Active']; + } + + if (isset($map['ExtCode'])) { + $model->extCode = $map['ExtCode']; + } + + if (isset($map['SendCount'])) { + $model->sendCount = $map['SendCount']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['Source'])) { + $model->source = $map['Source']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportRequest.php new file mode 100644 index 0000000..5d2a41f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportRequest.php @@ -0,0 +1,103 @@ + 'EncryptType', + 'mobiles' => 'Mobiles', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + if (\is_array($this->mobiles)) { + Model::validateArray($this->mobiles); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->encryptType) { + $res['EncryptType'] = $this->encryptType; + } + + if (null !== $this->mobiles) { + if (\is_array($this->mobiles)) { + $res['Mobiles'] = []; + $n1 = 0; + foreach ($this->mobiles as $item1) { + if (\is_array($item1)) { + $res['Mobiles'][$n1] = []; + foreach ($item1 as $key2 => $value2) { + $res['Mobiles'][$n1][$key2] = $value2; + } + } + ++$n1; + } + } + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EncryptType'])) { + $model->encryptType = $map['EncryptType']; + } + + if (isset($map['Mobiles'])) { + if (!empty($map['Mobiles'])) { + $model->mobiles = []; + $n1 = 0; + foreach ($map['Mobiles'] as $item1) { + if (!empty($item1)) { + $model->mobiles[$n1] = []; + foreach ($item1 as $key2 => $value2) { + $model->mobiles[$n1][$key2] = $value2; + } + } + ++$n1; + } + } + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponse.php new file mode 100644 index 0000000..103e44e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QueryMobilesCardSupportResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponseBody.php new file mode 100644 index 0000000..433e9a4 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponseBody/data.php new file mode 100644 index 0000000..6436f57 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponseBody/data.php @@ -0,0 +1,66 @@ + 'QueryResult', + ]; + + public function validate() + { + if (\is_array($this->queryResult)) { + Model::validateArray($this->queryResult); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->queryResult) { + if (\is_array($this->queryResult)) { + $res['QueryResult'] = []; + $n1 = 0; + foreach ($this->queryResult as $item1) { + $res['QueryResult'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['QueryResult'])) { + if (!empty($map['QueryResult'])) { + $model->queryResult = []; + $n1 = 0; + foreach ($map['QueryResult'] as $item1) { + $model->queryResult[$n1] = queryResult::fromMap($item1); + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponseBody/data/queryResult.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponseBody/data/queryResult.php new file mode 100644 index 0000000..dc43fba --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportResponseBody/data/queryResult.php @@ -0,0 +1,62 @@ + 'Mobile', + 'support' => 'Support', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->mobile) { + $res['Mobile'] = $this->mobile; + } + + if (null !== $this->support) { + $res['Support'] = $this->support; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Mobile'])) { + $model->mobile = $map['Mobile']; + } + + if (isset($map['Support'])) { + $model->support = $map['Support']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportShrinkRequest.php new file mode 100644 index 0000000..ae2cae3 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryMobilesCardSupportShrinkRequest.php @@ -0,0 +1,76 @@ + 'EncryptType', + 'mobilesShrink' => 'Mobiles', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->encryptType) { + $res['EncryptType'] = $this->encryptType; + } + + if (null !== $this->mobilesShrink) { + $res['Mobiles'] = $this->mobilesShrink; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EncryptType'])) { + $model->encryptType = $map['EncryptType']; + } + + if (isset($map['Mobiles'])) { + $model->mobilesShrink = $map['Mobiles']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogRequest.php new file mode 100644 index 0000000..a14cc62 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogRequest.php @@ -0,0 +1,160 @@ + 'CreateDateEnd', + 'createDateStart' => 'CreateDateStart', + 'ownerId' => 'OwnerId', + 'pageNo' => 'PageNo', + 'pageSize' => 'PageSize', + 'phoneNumber' => 'PhoneNumber', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'shortUrl' => 'ShortUrl', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->createDateEnd) { + $res['CreateDateEnd'] = $this->createDateEnd; + } + + if (null !== $this->createDateStart) { + $res['CreateDateStart'] = $this->createDateStart; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->pageNo) { + $res['PageNo'] = $this->pageNo; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->phoneNumber) { + $res['PhoneNumber'] = $this->phoneNumber; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->shortUrl) { + $res['ShortUrl'] = $this->shortUrl; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CreateDateEnd'])) { + $model->createDateEnd = $map['CreateDateEnd']; + } + + if (isset($map['CreateDateStart'])) { + $model->createDateStart = $map['CreateDateStart']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PageNo'])) { + $model->pageNo = $map['PageNo']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['PhoneNumber'])) { + $model->phoneNumber = $map['PhoneNumber']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['ShortUrl'])) { + $model->shortUrl = $map['ShortUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponse.php new file mode 100644 index 0000000..178ceb6 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QueryPageSmartShortUrlLogResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponseBody.php new file mode 100644 index 0000000..4bb1b74 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponseBody.php @@ -0,0 +1,108 @@ + 'Code', + 'message' => 'Message', + 'model' => 'Model', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->model) { + $this->model->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->model) { + $res['Model'] = null !== $this->model ? $this->model->toArray($noStream) : $this->model; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['Model'])) { + $model->model = model_::fromMap($map['Model']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponseBody/model/list_.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponseBody/model/list_.php new file mode 100644 index 0000000..6ffbb1e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponseBody/model/list_.php @@ -0,0 +1,118 @@ + 'ClickState', + 'clickTime' => 'ClickTime', + 'createTime' => 'CreateTime', + 'phoneNumber' => 'PhoneNumber', + 'shortName' => 'ShortName', + 'shortUrl' => 'ShortUrl', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->clickState) { + $res['ClickState'] = $this->clickState; + } + + if (null !== $this->clickTime) { + $res['ClickTime'] = $this->clickTime; + } + + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + + if (null !== $this->phoneNumber) { + $res['PhoneNumber'] = $this->phoneNumber; + } + + if (null !== $this->shortName) { + $res['ShortName'] = $this->shortName; + } + + if (null !== $this->shortUrl) { + $res['ShortUrl'] = $this->shortUrl; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ClickState'])) { + $model->clickState = $map['ClickState']; + } + + if (isset($map['ClickTime'])) { + $model->clickTime = $map['ClickTime']; + } + + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + + if (isset($map['PhoneNumber'])) { + $model->phoneNumber = $map['PhoneNumber']; + } + + if (isset($map['ShortName'])) { + $model->shortName = $map['ShortName']; + } + + if (isset($map['ShortUrl'])) { + $model->shortUrl = $map['ShortUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponseBody/model_.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponseBody/model_.php new file mode 100644 index 0000000..270c7c1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryPageSmartShortUrlLogResponseBody/model_.php @@ -0,0 +1,122 @@ + 'List', + 'pageNo' => 'PageNo', + 'pageSize' => 'PageSize', + 'totalCount' => 'TotalCount', + 'totalPage' => 'TotalPage', + ]; + + public function validate() + { + if (\is_array($this->list)) { + Model::validateArray($this->list); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->list) { + if (\is_array($this->list)) { + $res['List'] = []; + $n1 = 0; + foreach ($this->list as $item1) { + $res['List'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->pageNo) { + $res['PageNo'] = $this->pageNo; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->totalCount) { + $res['TotalCount'] = $this->totalCount; + } + + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['List'])) { + if (!empty($map['List'])) { + $model->list = []; + $n1 = 0; + foreach ($map['List'] as $item1) { + $model->list[$n1] = list_::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['PageNo'])) { + $model->pageNo = $map['PageNo']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['TotalCount'])) { + $model->totalCount = $map['TotalCount']; + } + + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableRequest.php new file mode 100644 index 0000000..c78939f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableRequest.php @@ -0,0 +1,76 @@ + 'PhoneNumbers', + 'signName' => 'SignName', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->phoneNumbers) { + $res['PhoneNumbers'] = $this->phoneNumbers; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PhoneNumbers'])) { + $model->phoneNumbers = $map['PhoneNumbers']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableResponse.php new file mode 100644 index 0000000..7fd02b0 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QueryRCSMobileCapableResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableResponseBody.php new file mode 100644 index 0000000..175d6be --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableResponseBody.php @@ -0,0 +1,131 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + foreach ($this->data as $key1 => $value1) { + $res['Data'][$key1] = $value1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + foreach ($map['Data'] as $key1 => $value1) { + $model->data[$key1] = $value1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableTaskResultRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableTaskResultRequest.php new file mode 100644 index 0000000..f9fa1b4 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableTaskResultRequest.php @@ -0,0 +1,48 @@ + 'TaskId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->taskId) { + $res['TaskId'] = $this->taskId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TaskId'])) { + $model->taskId = $map['TaskId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableTaskResultResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableTaskResultResponse.php new file mode 100644 index 0000000..6b16e8b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableTaskResultResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QueryRCSMobileCapableTaskResultResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableTaskResultResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableTaskResultResponseBody.php new file mode 100644 index 0000000..33e619c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSMobileCapableTaskResultResponseBody.php @@ -0,0 +1,131 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + foreach ($this->data as $key1 => $value1) { + $res['Data'][$key1] = $value1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + foreach ($map['Data'] as $key1 => $value1) { + $model->data[$key1] = $value1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSTemplateRequest.php new file mode 100644 index 0000000..d92e0ff --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSTemplateRequest.php @@ -0,0 +1,48 @@ + 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSTemplateResponse.php new file mode 100644 index 0000000..8634377 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QueryRCSTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSTemplateResponseBody.php new file mode 100644 index 0000000..fb1b824 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRCSTemplateResponseBody.php @@ -0,0 +1,131 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + foreach ($this->data as $key1 => $value1) { + $res['Data'][$key1] = $value1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + foreach ($map['Data'] as $key1 => $value1) { + $model->data[$key1] = $value1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRcsSignMenuByVersionRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRcsSignMenuByVersionRequest.php new file mode 100644 index 0000000..2b2ce3d --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRcsSignMenuByVersionRequest.php @@ -0,0 +1,62 @@ + 'RcsMenuVersion', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->rcsMenuVersion) { + $res['RcsMenuVersion'] = $this->rcsMenuVersion; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RcsMenuVersion'])) { + $model->rcsMenuVersion = $map['RcsMenuVersion']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRcsSignMenuByVersionResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRcsSignMenuByVersionResponse.php new file mode 100644 index 0000000..2c21841 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRcsSignMenuByVersionResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QueryRcsSignMenuByVersionResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRcsSignMenuByVersionResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRcsSignMenuByVersionResponseBody.php new file mode 100644 index 0000000..9928aad --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryRcsSignMenuByVersionResponseBody.php @@ -0,0 +1,131 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + foreach ($this->data as $key1 => $value1) { + $res['Data'][$key1] = $value1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + foreach ($map['Data'] as $key1 => $value1) { + $model->data[$key1] = $value1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsRequest.php new file mode 100644 index 0000000..ec9c478 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsRequest.php @@ -0,0 +1,146 @@ + 'BizId', + 'currentPage' => 'CurrentPage', + 'ownerId' => 'OwnerId', + 'pageSize' => 'PageSize', + 'phoneNumber' => 'PhoneNumber', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'sendDate' => 'SendDate', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->bizId) { + $res['BizId'] = $this->bizId; + } + + if (null !== $this->currentPage) { + $res['CurrentPage'] = $this->currentPage; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->phoneNumber) { + $res['PhoneNumber'] = $this->phoneNumber; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->sendDate) { + $res['SendDate'] = $this->sendDate; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BizId'])) { + $model->bizId = $map['BizId']; + } + + if (isset($map['CurrentPage'])) { + $model->currentPage = $map['CurrentPage']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['PhoneNumber'])) { + $model->phoneNumber = $map['PhoneNumber']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SendDate'])) { + $model->sendDate = $map['SendDate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponse.php new file mode 100644 index 0000000..f6eb20e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QuerySendDetailsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody.php new file mode 100644 index 0000000..264b86d --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody.php @@ -0,0 +1,108 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'smsSendDetailDTOs' => 'SmsSendDetailDTOs', + 'totalCount' => 'TotalCount', + ]; + + public function validate() + { + if (null !== $this->smsSendDetailDTOs) { + $this->smsSendDetailDTOs->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->smsSendDetailDTOs) { + $res['SmsSendDetailDTOs'] = null !== $this->smsSendDetailDTOs ? $this->smsSendDetailDTOs->toArray($noStream) : $this->smsSendDetailDTOs; + } + + if (null !== $this->totalCount) { + $res['TotalCount'] = $this->totalCount; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['SmsSendDetailDTOs'])) { + $model->smsSendDetailDTOs = smsSendDetailDTOs::fromMap($map['SmsSendDetailDTOs']); + } + + if (isset($map['TotalCount'])) { + $model->totalCount = $map['TotalCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody/smsSendDetailDTOs.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody/smsSendDetailDTOs.php new file mode 100644 index 0000000..553cf3e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody/smsSendDetailDTOs.php @@ -0,0 +1,66 @@ + 'SmsSendDetailDTO', + ]; + + public function validate() + { + if (\is_array($this->smsSendDetailDTO)) { + Model::validateArray($this->smsSendDetailDTO); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->smsSendDetailDTO) { + if (\is_array($this->smsSendDetailDTO)) { + $res['SmsSendDetailDTO'] = []; + $n1 = 0; + foreach ($this->smsSendDetailDTO as $item1) { + $res['SmsSendDetailDTO'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SmsSendDetailDTO'])) { + if (!empty($map['SmsSendDetailDTO'])) { + $model->smsSendDetailDTO = []; + $n1 = 0; + foreach ($map['SmsSendDetailDTO'] as $item1) { + $model->smsSendDetailDTO[$n1] = smsSendDetailDTO::fromMap($item1); + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody/smsSendDetailDTOs/smsSendDetailDTO.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody/smsSendDetailDTOs/smsSendDetailDTO.php new file mode 100644 index 0000000..32fe493 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody/smsSendDetailDTOs/smsSendDetailDTO.php @@ -0,0 +1,146 @@ + 'Content', + 'errCode' => 'ErrCode', + 'outId' => 'OutId', + 'phoneNum' => 'PhoneNum', + 'receiveDate' => 'ReceiveDate', + 'sendDate' => 'SendDate', + 'sendStatus' => 'SendStatus', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->content) { + $res['Content'] = $this->content; + } + + if (null !== $this->errCode) { + $res['ErrCode'] = $this->errCode; + } + + if (null !== $this->outId) { + $res['OutId'] = $this->outId; + } + + if (null !== $this->phoneNum) { + $res['PhoneNum'] = $this->phoneNum; + } + + if (null !== $this->receiveDate) { + $res['ReceiveDate'] = $this->receiveDate; + } + + if (null !== $this->sendDate) { + $res['SendDate'] = $this->sendDate; + } + + if (null !== $this->sendStatus) { + $res['SendStatus'] = $this->sendStatus; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Content'])) { + $model->content = $map['Content']; + } + + if (isset($map['ErrCode'])) { + $model->errCode = $map['ErrCode']; + } + + if (isset($map['OutId'])) { + $model->outId = $map['OutId']; + } + + if (isset($map['PhoneNum'])) { + $model->phoneNum = $map['PhoneNum']; + } + + if (isset($map['ReceiveDate'])) { + $model->receiveDate = $map['ReceiveDate']; + } + + if (isset($map['SendDate'])) { + $model->sendDate = $map['SendDate']; + } + + if (isset($map['SendStatus'])) { + $model->sendStatus = $map['SendStatus']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsRequest.php new file mode 100644 index 0000000..5e56cb3 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsRequest.php @@ -0,0 +1,174 @@ + 'EndDate', + 'isGlobe' => 'IsGlobe', + 'ownerId' => 'OwnerId', + 'pageIndex' => 'PageIndex', + 'pageSize' => 'PageSize', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'startDate' => 'StartDate', + 'templateType' => 'TemplateType', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->endDate) { + $res['EndDate'] = $this->endDate; + } + + if (null !== $this->isGlobe) { + $res['IsGlobe'] = $this->isGlobe; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->pageIndex) { + $res['PageIndex'] = $this->pageIndex; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->startDate) { + $res['StartDate'] = $this->startDate; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EndDate'])) { + $model->endDate = $map['EndDate']; + } + + if (isset($map['IsGlobe'])) { + $model->isGlobe = $map['IsGlobe']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PageIndex'])) { + $model->pageIndex = $map['PageIndex']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['StartDate'])) { + $model->startDate = $map['StartDate']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponse.php new file mode 100644 index 0000000..e5b8092 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QuerySendStatisticsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody.php new file mode 100644 index 0000000..e32ac76 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody/data.php new file mode 100644 index 0000000..bc7911b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody/data.php @@ -0,0 +1,80 @@ + 'TargetList', + 'totalSize' => 'TotalSize', + ]; + + public function validate() + { + if (\is_array($this->targetList)) { + Model::validateArray($this->targetList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->targetList) { + if (\is_array($this->targetList)) { + $res['TargetList'] = []; + $n1 = 0; + foreach ($this->targetList as $item1) { + $res['TargetList'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->totalSize) { + $res['TotalSize'] = $this->totalSize; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TargetList'])) { + if (!empty($map['TargetList'])) { + $model->targetList = []; + $n1 = 0; + foreach ($map['TargetList'] as $item1) { + $model->targetList[$n1] = targetList::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['TotalSize'])) { + $model->totalSize = $map['TotalSize']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody/data/targetList.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody/data/targetList.php new file mode 100644 index 0000000..76693ba --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody/data/targetList.php @@ -0,0 +1,104 @@ + 'NoRespondedCount', + 'respondedFailCount' => 'RespondedFailCount', + 'respondedSuccessCount' => 'RespondedSuccessCount', + 'sendDate' => 'SendDate', + 'totalCount' => 'TotalCount', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->noRespondedCount) { + $res['NoRespondedCount'] = $this->noRespondedCount; + } + + if (null !== $this->respondedFailCount) { + $res['RespondedFailCount'] = $this->respondedFailCount; + } + + if (null !== $this->respondedSuccessCount) { + $res['RespondedSuccessCount'] = $this->respondedSuccessCount; + } + + if (null !== $this->sendDate) { + $res['SendDate'] = $this->sendDate; + } + + if (null !== $this->totalCount) { + $res['TotalCount'] = $this->totalCount; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['NoRespondedCount'])) { + $model->noRespondedCount = $map['NoRespondedCount']; + } + + if (isset($map['RespondedFailCount'])) { + $model->respondedFailCount = $map['RespondedFailCount']; + } + + if (isset($map['RespondedSuccessCount'])) { + $model->respondedSuccessCount = $map['RespondedSuccessCount']; + } + + if (isset($map['SendDate'])) { + $model->sendDate = $map['SendDate']; + } + + if (isset($map['TotalCount'])) { + $model->totalCount = $map['TotalCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlRequest.php new file mode 100644 index 0000000..244cf0a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'shortUrl' => 'ShortUrl', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->shortUrl) { + $res['ShortUrl'] = $this->shortUrl; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['ShortUrl'])) { + $model->shortUrl = $map['ShortUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponse.php new file mode 100644 index 0000000..4d037ab --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QueryShortUrlResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponseBody.php new file mode 100644 index 0000000..26ceb8c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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/dysmsapi-20170525/src/Models/QueryShortUrlResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponseBody/data.php new file mode 100644 index 0000000..118590e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponseBody/data.php @@ -0,0 +1,146 @@ + 'CreateDate', + 'expireDate' => 'ExpireDate', + 'pageViewCount' => 'PageViewCount', + 'shortUrl' => 'ShortUrl', + 'shortUrlName' => 'ShortUrlName', + 'shortUrlStatus' => 'ShortUrlStatus', + 'sourceUrl' => 'SourceUrl', + 'uniqueVisitorCount' => 'UniqueVisitorCount', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->createDate) { + $res['CreateDate'] = $this->createDate; + } + + if (null !== $this->expireDate) { + $res['ExpireDate'] = $this->expireDate; + } + + if (null !== $this->pageViewCount) { + $res['PageViewCount'] = $this->pageViewCount; + } + + if (null !== $this->shortUrl) { + $res['ShortUrl'] = $this->shortUrl; + } + + if (null !== $this->shortUrlName) { + $res['ShortUrlName'] = $this->shortUrlName; + } + + if (null !== $this->shortUrlStatus) { + $res['ShortUrlStatus'] = $this->shortUrlStatus; + } + + if (null !== $this->sourceUrl) { + $res['SourceUrl'] = $this->sourceUrl; + } + + if (null !== $this->uniqueVisitorCount) { + $res['UniqueVisitorCount'] = $this->uniqueVisitorCount; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CreateDate'])) { + $model->createDate = $map['CreateDate']; + } + + if (isset($map['ExpireDate'])) { + $model->expireDate = $map['ExpireDate']; + } + + if (isset($map['PageViewCount'])) { + $model->pageViewCount = $map['PageViewCount']; + } + + if (isset($map['ShortUrl'])) { + $model->shortUrl = $map['ShortUrl']; + } + + if (isset($map['ShortUrlName'])) { + $model->shortUrlName = $map['ShortUrlName']; + } + + if (isset($map['ShortUrlStatus'])) { + $model->shortUrlStatus = $map['ShortUrlStatus']; + } + + if (isset($map['SourceUrl'])) { + $model->sourceUrl = $map['SourceUrl']; + } + + if (isset($map['UniqueVisitorCount'])) { + $model->uniqueVisitorCount = $map['UniqueVisitorCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationRequest.php new file mode 100644 index 0000000..5efd6b4 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationRequest.php @@ -0,0 +1,104 @@ + 'OrderId', + 'ownerId' => 'OwnerId', + 'qualificationGroupId' => 'QualificationGroupId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationGroupId) { + $res['QualificationGroupId'] = $this->qualificationGroupId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationGroupId'])) { + $model->qualificationGroupId = $map['QualificationGroupId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponse.php new file mode 100644 index 0000000..e08acb1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QuerySingleSmsQualificationResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody.php new file mode 100644 index 0000000..1fe593a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody/data.php new file mode 100644 index 0000000..d295848 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody/data.php @@ -0,0 +1,420 @@ + 'AdminIDCardExpDate', + 'adminIDCardFrontFace' => 'AdminIDCardFrontFace', + 'adminIDCardNo' => 'AdminIDCardNo', + 'adminIDCardPic' => 'AdminIDCardPic', + 'adminIDCardType' => 'AdminIDCardType', + 'adminName' => 'AdminName', + 'adminPhoneNo' => 'AdminPhoneNo', + 'businessLicensePics' => 'BusinessLicensePics', + 'businessType' => 'BusinessType', + 'companyName' => 'CompanyName', + 'companyType' => 'CompanyType', + 'effTimeStr' => 'EffTimeStr', + 'legalPersonIDCardNo' => 'LegalPersonIDCardNo', + 'legalPersonIDCardType' => 'LegalPersonIDCardType', + 'legalPersonIdCardEffTime' => 'LegalPersonIdCardEffTime', + 'legalPersonName' => 'LegalPersonName', + 'organizationCode' => 'OrganizationCode', + 'otherFiles' => 'OtherFiles', + 'qualificationGroupId' => 'QualificationGroupId', + 'qualificationName' => 'QualificationName', + 'remark' => 'Remark', + 'state' => 'State', + 'useBySelf' => 'UseBySelf', + 'whetherShare' => 'WhetherShare', + 'workOrderId' => 'WorkOrderId', + ]; + + public function validate() + { + if (\is_array($this->businessLicensePics)) { + Model::validateArray($this->businessLicensePics); + } + if (\is_array($this->otherFiles)) { + Model::validateArray($this->otherFiles); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->adminIDCardExpDate) { + $res['AdminIDCardExpDate'] = $this->adminIDCardExpDate; + } + + if (null !== $this->adminIDCardFrontFace) { + $res['AdminIDCardFrontFace'] = $this->adminIDCardFrontFace; + } + + if (null !== $this->adminIDCardNo) { + $res['AdminIDCardNo'] = $this->adminIDCardNo; + } + + if (null !== $this->adminIDCardPic) { + $res['AdminIDCardPic'] = $this->adminIDCardPic; + } + + if (null !== $this->adminIDCardType) { + $res['AdminIDCardType'] = $this->adminIDCardType; + } + + if (null !== $this->adminName) { + $res['AdminName'] = $this->adminName; + } + + if (null !== $this->adminPhoneNo) { + $res['AdminPhoneNo'] = $this->adminPhoneNo; + } + + if (null !== $this->businessLicensePics) { + if (\is_array($this->businessLicensePics)) { + $res['BusinessLicensePics'] = []; + $n1 = 0; + foreach ($this->businessLicensePics as $item1) { + $res['BusinessLicensePics'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->businessType) { + $res['BusinessType'] = $this->businessType; + } + + if (null !== $this->companyName) { + $res['CompanyName'] = $this->companyName; + } + + if (null !== $this->companyType) { + $res['CompanyType'] = $this->companyType; + } + + if (null !== $this->effTimeStr) { + $res['EffTimeStr'] = $this->effTimeStr; + } + + if (null !== $this->legalPersonIDCardNo) { + $res['LegalPersonIDCardNo'] = $this->legalPersonIDCardNo; + } + + if (null !== $this->legalPersonIDCardType) { + $res['LegalPersonIDCardType'] = $this->legalPersonIDCardType; + } + + if (null !== $this->legalPersonIdCardEffTime) { + $res['LegalPersonIdCardEffTime'] = $this->legalPersonIdCardEffTime; + } + + if (null !== $this->legalPersonName) { + $res['LegalPersonName'] = $this->legalPersonName; + } + + if (null !== $this->organizationCode) { + $res['OrganizationCode'] = $this->organizationCode; + } + + if (null !== $this->otherFiles) { + if (\is_array($this->otherFiles)) { + $res['OtherFiles'] = []; + $n1 = 0; + foreach ($this->otherFiles as $item1) { + $res['OtherFiles'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->qualificationGroupId) { + $res['QualificationGroupId'] = $this->qualificationGroupId; + } + + if (null !== $this->qualificationName) { + $res['QualificationName'] = $this->qualificationName; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->state) { + $res['State'] = $this->state; + } + + if (null !== $this->useBySelf) { + $res['UseBySelf'] = $this->useBySelf; + } + + if (null !== $this->whetherShare) { + $res['WhetherShare'] = $this->whetherShare; + } + + if (null !== $this->workOrderId) { + $res['WorkOrderId'] = $this->workOrderId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AdminIDCardExpDate'])) { + $model->adminIDCardExpDate = $map['AdminIDCardExpDate']; + } + + if (isset($map['AdminIDCardFrontFace'])) { + $model->adminIDCardFrontFace = $map['AdminIDCardFrontFace']; + } + + if (isset($map['AdminIDCardNo'])) { + $model->adminIDCardNo = $map['AdminIDCardNo']; + } + + if (isset($map['AdminIDCardPic'])) { + $model->adminIDCardPic = $map['AdminIDCardPic']; + } + + if (isset($map['AdminIDCardType'])) { + $model->adminIDCardType = $map['AdminIDCardType']; + } + + if (isset($map['AdminName'])) { + $model->adminName = $map['AdminName']; + } + + if (isset($map['AdminPhoneNo'])) { + $model->adminPhoneNo = $map['AdminPhoneNo']; + } + + if (isset($map['BusinessLicensePics'])) { + if (!empty($map['BusinessLicensePics'])) { + $model->businessLicensePics = []; + $n1 = 0; + foreach ($map['BusinessLicensePics'] as $item1) { + $model->businessLicensePics[$n1] = businessLicensePics::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['BusinessType'])) { + $model->businessType = $map['BusinessType']; + } + + if (isset($map['CompanyName'])) { + $model->companyName = $map['CompanyName']; + } + + if (isset($map['CompanyType'])) { + $model->companyType = $map['CompanyType']; + } + + if (isset($map['EffTimeStr'])) { + $model->effTimeStr = $map['EffTimeStr']; + } + + if (isset($map['LegalPersonIDCardNo'])) { + $model->legalPersonIDCardNo = $map['LegalPersonIDCardNo']; + } + + if (isset($map['LegalPersonIDCardType'])) { + $model->legalPersonIDCardType = $map['LegalPersonIDCardType']; + } + + if (isset($map['LegalPersonIdCardEffTime'])) { + $model->legalPersonIdCardEffTime = $map['LegalPersonIdCardEffTime']; + } + + if (isset($map['LegalPersonName'])) { + $model->legalPersonName = $map['LegalPersonName']; + } + + if (isset($map['OrganizationCode'])) { + $model->organizationCode = $map['OrganizationCode']; + } + + if (isset($map['OtherFiles'])) { + if (!empty($map['OtherFiles'])) { + $model->otherFiles = []; + $n1 = 0; + foreach ($map['OtherFiles'] as $item1) { + $model->otherFiles[$n1] = otherFiles::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['QualificationGroupId'])) { + $model->qualificationGroupId = $map['QualificationGroupId']; + } + + if (isset($map['QualificationName'])) { + $model->qualificationName = $map['QualificationName']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['State'])) { + $model->state = $map['State']; + } + + if (isset($map['UseBySelf'])) { + $model->useBySelf = $map['UseBySelf']; + } + + if (isset($map['WhetherShare'])) { + $model->whetherShare = $map['WhetherShare']; + } + + if (isset($map['WorkOrderId'])) { + $model->workOrderId = $map['WorkOrderId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody/data/businessLicensePics.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody/data/businessLicensePics.php new file mode 100644 index 0000000..e487efd --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody/data/businessLicensePics.php @@ -0,0 +1,76 @@ + 'LicensePic', + 'picUrl' => 'PicUrl', + 'type' => 'Type', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->licensePic) { + $res['LicensePic'] = $this->licensePic; + } + + if (null !== $this->picUrl) { + $res['PicUrl'] = $this->picUrl; + } + + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LicensePic'])) { + $model->licensePic = $map['LicensePic']; + } + + if (isset($map['PicUrl'])) { + $model->picUrl = $map['PicUrl']; + } + + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody/data/otherFiles.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody/data/otherFiles.php new file mode 100644 index 0000000..52ced9c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySingleSmsQualificationResponseBody/data/otherFiles.php @@ -0,0 +1,62 @@ + 'LicensePic', + 'picUrl' => 'PicUrl', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->licensePic) { + $res['LicensePic'] = $this->licensePic; + } + + if (null !== $this->picUrl) { + $res['PicUrl'] = $this->picUrl; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LicensePic'])) { + $model->licensePic = $map['LicensePic']; + } + + if (isset($map['PicUrl'])) { + $model->picUrl = $map['PicUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordRequest.php new file mode 100644 index 0000000..31947c6 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordRequest.php @@ -0,0 +1,107 @@ + 'AppIcpRecordIdList', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + if (\is_array($this->appIcpRecordIdList)) { + Model::validateArray($this->appIcpRecordIdList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->appIcpRecordIdList) { + if (\is_array($this->appIcpRecordIdList)) { + $res['AppIcpRecordIdList'] = []; + $n1 = 0; + foreach ($this->appIcpRecordIdList as $item1) { + $res['AppIcpRecordIdList'][$n1] = $item1; + ++$n1; + } + } + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppIcpRecordIdList'])) { + if (!empty($map['AppIcpRecordIdList'])) { + $model->appIcpRecordIdList = []; + $n1 = 0; + foreach ($map['AppIcpRecordIdList'] as $item1) { + $model->appIcpRecordIdList[$n1] = $item1; + ++$n1; + } + } + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordResponse.php new file mode 100644 index 0000000..7bc5a82 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QuerySmsAppIcpRecordResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordResponseBody.php new file mode 100644 index 0000000..6b9118e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordResponseBody.php @@ -0,0 +1,136 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + $n1 = 0; + foreach ($this->data as $item1) { + $res['Data'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + $n1 = 0; + foreach ($map['Data'] as $item1) { + $model->data[$n1] = data::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordResponseBody/data.php new file mode 100644 index 0000000..4cbc415 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordResponseBody/data.php @@ -0,0 +1,202 @@ + 'AppApprovalDate', + 'appIcpLicenseNumber' => 'AppIcpLicenseNumber', + 'appIcpRecordId' => 'AppIcpRecordId', + 'appIcpRecordPic' => 'AppIcpRecordPic', + 'appIcpRecordPicUrl' => 'AppIcpRecordPicUrl', + 'appPrincipalUnitName' => 'AppPrincipalUnitName', + 'appRuntimePic' => 'AppRuntimePic', + 'appRuntimePicUrl' => 'AppRuntimePicUrl', + 'appServiceName' => 'AppServiceName', + 'appStoreDownloadPic' => 'AppStoreDownloadPic', + 'appStoreDownloadPicUrl' => 'AppStoreDownloadPicUrl', + 'domain' => 'Domain', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->appApprovalDate) { + $res['AppApprovalDate'] = $this->appApprovalDate; + } + + if (null !== $this->appIcpLicenseNumber) { + $res['AppIcpLicenseNumber'] = $this->appIcpLicenseNumber; + } + + if (null !== $this->appIcpRecordId) { + $res['AppIcpRecordId'] = $this->appIcpRecordId; + } + + if (null !== $this->appIcpRecordPic) { + $res['AppIcpRecordPic'] = $this->appIcpRecordPic; + } + + if (null !== $this->appIcpRecordPicUrl) { + $res['AppIcpRecordPicUrl'] = $this->appIcpRecordPicUrl; + } + + if (null !== $this->appPrincipalUnitName) { + $res['AppPrincipalUnitName'] = $this->appPrincipalUnitName; + } + + if (null !== $this->appRuntimePic) { + $res['AppRuntimePic'] = $this->appRuntimePic; + } + + if (null !== $this->appRuntimePicUrl) { + $res['AppRuntimePicUrl'] = $this->appRuntimePicUrl; + } + + if (null !== $this->appServiceName) { + $res['AppServiceName'] = $this->appServiceName; + } + + if (null !== $this->appStoreDownloadPic) { + $res['AppStoreDownloadPic'] = $this->appStoreDownloadPic; + } + + if (null !== $this->appStoreDownloadPicUrl) { + $res['AppStoreDownloadPicUrl'] = $this->appStoreDownloadPicUrl; + } + + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppApprovalDate'])) { + $model->appApprovalDate = $map['AppApprovalDate']; + } + + if (isset($map['AppIcpLicenseNumber'])) { + $model->appIcpLicenseNumber = $map['AppIcpLicenseNumber']; + } + + if (isset($map['AppIcpRecordId'])) { + $model->appIcpRecordId = $map['AppIcpRecordId']; + } + + if (isset($map['AppIcpRecordPic'])) { + $model->appIcpRecordPic = $map['AppIcpRecordPic']; + } + + if (isset($map['AppIcpRecordPicUrl'])) { + $model->appIcpRecordPicUrl = $map['AppIcpRecordPicUrl']; + } + + if (isset($map['AppPrincipalUnitName'])) { + $model->appPrincipalUnitName = $map['AppPrincipalUnitName']; + } + + if (isset($map['AppRuntimePic'])) { + $model->appRuntimePic = $map['AppRuntimePic']; + } + + if (isset($map['AppRuntimePicUrl'])) { + $model->appRuntimePicUrl = $map['AppRuntimePicUrl']; + } + + if (isset($map['AppServiceName'])) { + $model->appServiceName = $map['AppServiceName']; + } + + if (isset($map['AppStoreDownloadPic'])) { + $model->appStoreDownloadPic = $map['AppStoreDownloadPic']; + } + + if (isset($map['AppStoreDownloadPicUrl'])) { + $model->appStoreDownloadPicUrl = $map['AppStoreDownloadPicUrl']; + } + + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordShrinkRequest.php new file mode 100644 index 0000000..2bf2ee1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAppIcpRecordShrinkRequest.php @@ -0,0 +1,90 @@ + 'AppIcpRecordIdList', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->appIcpRecordIdListShrink) { + $res['AppIcpRecordIdList'] = $this->appIcpRecordIdListShrink; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppIcpRecordIdList'])) { + $model->appIcpRecordIdListShrink = $map['AppIcpRecordIdList']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterRequest.php new file mode 100644 index 0000000..0273910 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterRequest.php @@ -0,0 +1,163 @@ + 'AuthorizationLetterIdList', + 'organizationCode' => 'OrganizationCode', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'state' => 'State', + 'status' => 'Status', + ]; + + public function validate() + { + if (\is_array($this->authorizationLetterIdList)) { + Model::validateArray($this->authorizationLetterIdList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->authorizationLetterIdList) { + if (\is_array($this->authorizationLetterIdList)) { + $res['AuthorizationLetterIdList'] = []; + $n1 = 0; + foreach ($this->authorizationLetterIdList as $item1) { + $res['AuthorizationLetterIdList'][$n1] = $item1; + ++$n1; + } + } + } + + if (null !== $this->organizationCode) { + $res['OrganizationCode'] = $this->organizationCode; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->state) { + $res['State'] = $this->state; + } + + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AuthorizationLetterIdList'])) { + if (!empty($map['AuthorizationLetterIdList'])) { + $model->authorizationLetterIdList = []; + $n1 = 0; + foreach ($map['AuthorizationLetterIdList'] as $item1) { + $model->authorizationLetterIdList[$n1] = $item1; + ++$n1; + } + } + } + + if (isset($map['OrganizationCode'])) { + $model->organizationCode = $map['OrganizationCode']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['State'])) { + $model->state = $map['State']; + } + + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterResponse.php new file mode 100644 index 0000000..e0693f8 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QuerySmsAuthorizationLetterResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterResponseBody.php new file mode 100644 index 0000000..43ff05c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterResponseBody.php @@ -0,0 +1,136 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + $n1 = 0; + foreach ($this->data as $item1) { + $res['Data'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + $n1 = 0; + foreach ($map['Data'] as $item1) { + $model->data[$n1] = data::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterResponseBody/data.php new file mode 100644 index 0000000..6bd336d --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterResponseBody/data.php @@ -0,0 +1,174 @@ + 'Authorization', + 'authorizationLetterExpDate' => 'AuthorizationLetterExpDate', + 'authorizationLetterId' => 'AuthorizationLetterId', + 'authorizationLetterName' => 'AuthorizationLetterName', + 'authorizationLetterPic' => 'AuthorizationLetterPic', + 'organizationCode' => 'OrganizationCode', + 'proxyAuthorization' => 'ProxyAuthorization', + 'signScope' => 'SignScope', + 'state' => 'State', + 'status' => 'Status', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->authorization) { + $res['Authorization'] = $this->authorization; + } + + if (null !== $this->authorizationLetterExpDate) { + $res['AuthorizationLetterExpDate'] = $this->authorizationLetterExpDate; + } + + if (null !== $this->authorizationLetterId) { + $res['AuthorizationLetterId'] = $this->authorizationLetterId; + } + + if (null !== $this->authorizationLetterName) { + $res['AuthorizationLetterName'] = $this->authorizationLetterName; + } + + if (null !== $this->authorizationLetterPic) { + $res['AuthorizationLetterPic'] = $this->authorizationLetterPic; + } + + if (null !== $this->organizationCode) { + $res['OrganizationCode'] = $this->organizationCode; + } + + if (null !== $this->proxyAuthorization) { + $res['ProxyAuthorization'] = $this->proxyAuthorization; + } + + if (null !== $this->signScope) { + $res['SignScope'] = $this->signScope; + } + + if (null !== $this->state) { + $res['State'] = $this->state; + } + + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Authorization'])) { + $model->authorization = $map['Authorization']; + } + + if (isset($map['AuthorizationLetterExpDate'])) { + $model->authorizationLetterExpDate = $map['AuthorizationLetterExpDate']; + } + + if (isset($map['AuthorizationLetterId'])) { + $model->authorizationLetterId = $map['AuthorizationLetterId']; + } + + if (isset($map['AuthorizationLetterName'])) { + $model->authorizationLetterName = $map['AuthorizationLetterName']; + } + + if (isset($map['AuthorizationLetterPic'])) { + $model->authorizationLetterPic = $map['AuthorizationLetterPic']; + } + + if (isset($map['OrganizationCode'])) { + $model->organizationCode = $map['OrganizationCode']; + } + + if (isset($map['ProxyAuthorization'])) { + $model->proxyAuthorization = $map['ProxyAuthorization']; + } + + if (isset($map['SignScope'])) { + $model->signScope = $map['SignScope']; + } + + if (isset($map['State'])) { + $model->state = $map['State']; + } + + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterShrinkRequest.php new file mode 100644 index 0000000..772dcbc --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsAuthorizationLetterShrinkRequest.php @@ -0,0 +1,146 @@ + 'AuthorizationLetterIdList', + 'organizationCode' => 'OrganizationCode', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'state' => 'State', + 'status' => 'Status', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->authorizationLetterIdListShrink) { + $res['AuthorizationLetterIdList'] = $this->authorizationLetterIdListShrink; + } + + if (null !== $this->organizationCode) { + $res['OrganizationCode'] = $this->organizationCode; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->state) { + $res['State'] = $this->state; + } + + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AuthorizationLetterIdList'])) { + $model->authorizationLetterIdListShrink = $map['AuthorizationLetterIdList']; + } + + if (isset($map['OrganizationCode'])) { + $model->organizationCode = $map['OrganizationCode']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['State'])) { + $model->state = $map['State']; + } + + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordRequest.php new file mode 100644 index 0000000..7f180f6 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordRequest.php @@ -0,0 +1,188 @@ + 'CompanyName', + 'legalPersonName' => 'LegalPersonName', + 'ownerId' => 'OwnerId', + 'pageNo' => 'PageNo', + 'pageSize' => 'PageSize', + 'qualificationGroupName' => 'QualificationGroupName', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'state' => 'State', + 'useBySelf' => 'UseBySelf', + 'workOrderId' => 'WorkOrderId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->companyName) { + $res['CompanyName'] = $this->companyName; + } + + if (null !== $this->legalPersonName) { + $res['LegalPersonName'] = $this->legalPersonName; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->pageNo) { + $res['PageNo'] = $this->pageNo; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->qualificationGroupName) { + $res['QualificationGroupName'] = $this->qualificationGroupName; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->state) { + $res['State'] = $this->state; + } + + if (null !== $this->useBySelf) { + $res['UseBySelf'] = $this->useBySelf; + } + + if (null !== $this->workOrderId) { + $res['WorkOrderId'] = $this->workOrderId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CompanyName'])) { + $model->companyName = $map['CompanyName']; + } + + if (isset($map['LegalPersonName'])) { + $model->legalPersonName = $map['LegalPersonName']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PageNo'])) { + $model->pageNo = $map['PageNo']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['QualificationGroupName'])) { + $model->qualificationGroupName = $map['QualificationGroupName']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['State'])) { + $model->state = $map['State']; + } + + if (isset($map['UseBySelf'])) { + $model->useBySelf = $map['UseBySelf']; + } + + if (isset($map['WorkOrderId'])) { + $model->workOrderId = $map['WorkOrderId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponse.php new file mode 100644 index 0000000..9abbcbf --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QuerySmsQualificationRecordResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponseBody.php new file mode 100644 index 0000000..1de952a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponseBody/data.php new file mode 100644 index 0000000..9682d31 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponseBody/data.php @@ -0,0 +1,108 @@ + 'List', + 'pageNo' => 'PageNo', + 'pageSize' => 'PageSize', + 'total' => 'Total', + ]; + + public function validate() + { + if (\is_array($this->list)) { + Model::validateArray($this->list); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->list) { + if (\is_array($this->list)) { + $res['List'] = []; + $n1 = 0; + foreach ($this->list as $item1) { + $res['List'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->pageNo) { + $res['PageNo'] = $this->pageNo; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['List'])) { + if (!empty($map['List'])) { + $model->list = []; + $n1 = 0; + foreach ($map['List'] as $item1) { + $model->list[$n1] = list_::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['PageNo'])) { + $model->pageNo = $map['PageNo']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponseBody/data/list_.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponseBody/data/list_.php new file mode 100644 index 0000000..b5600bd --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsQualificationRecordResponseBody/data/list_.php @@ -0,0 +1,174 @@ + 'AuditRemark', + 'auditTime' => 'AuditTime', + 'companyName' => 'CompanyName', + 'createDate' => 'CreateDate', + 'groupId' => 'GroupId', + 'legalPersonName' => 'LegalPersonName', + 'qualificationGroupName' => 'QualificationGroupName', + 'stateName' => 'StateName', + 'useBySelf' => 'UseBySelf', + 'workOrderId' => 'WorkOrderId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->auditRemark) { + $res['AuditRemark'] = $this->auditRemark; + } + + if (null !== $this->auditTime) { + $res['AuditTime'] = $this->auditTime; + } + + if (null !== $this->companyName) { + $res['CompanyName'] = $this->companyName; + } + + if (null !== $this->createDate) { + $res['CreateDate'] = $this->createDate; + } + + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + + if (null !== $this->legalPersonName) { + $res['LegalPersonName'] = $this->legalPersonName; + } + + if (null !== $this->qualificationGroupName) { + $res['QualificationGroupName'] = $this->qualificationGroupName; + } + + if (null !== $this->stateName) { + $res['StateName'] = $this->stateName; + } + + if (null !== $this->useBySelf) { + $res['UseBySelf'] = $this->useBySelf; + } + + if (null !== $this->workOrderId) { + $res['WorkOrderId'] = $this->workOrderId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AuditRemark'])) { + $model->auditRemark = $map['AuditRemark']; + } + + if (isset($map['AuditTime'])) { + $model->auditTime = $map['AuditTime']; + } + + if (isset($map['CompanyName'])) { + $model->companyName = $map['CompanyName']; + } + + if (isset($map['CreateDate'])) { + $model->createDate = $map['CreateDate']; + } + + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + + if (isset($map['LegalPersonName'])) { + $model->legalPersonName = $map['LegalPersonName']; + } + + if (isset($map['QualificationGroupName'])) { + $model->qualificationGroupName = $map['QualificationGroupName']; + } + + if (isset($map['StateName'])) { + $model->stateName = $map['StateName']; + } + + if (isset($map['UseBySelf'])) { + $model->useBySelf = $map['UseBySelf']; + } + + if (isset($map['WorkOrderId'])) { + $model->workOrderId = $map['WorkOrderId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListRequest.php new file mode 100644 index 0000000..2119866 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListRequest.php @@ -0,0 +1,104 @@ + 'OwnerId', + 'pageIndex' => 'PageIndex', + 'pageSize' => 'PageSize', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->pageIndex) { + $res['PageIndex'] = $this->pageIndex; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PageIndex'])) { + $model->pageIndex = $map['PageIndex']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponse.php new file mode 100644 index 0000000..44bc154 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QuerySmsSignListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody.php new file mode 100644 index 0000000..0c4e95e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody.php @@ -0,0 +1,150 @@ + 'Code', + 'currentPage' => 'CurrentPage', + 'message' => 'Message', + 'pageSize' => 'PageSize', + 'requestId' => 'RequestId', + 'smsSignList' => 'SmsSignList', + 'totalCount' => 'TotalCount', + ]; + + public function validate() + { + if (\is_array($this->smsSignList)) { + Model::validateArray($this->smsSignList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->currentPage) { + $res['CurrentPage'] = $this->currentPage; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->smsSignList) { + if (\is_array($this->smsSignList)) { + $res['SmsSignList'] = []; + $n1 = 0; + foreach ($this->smsSignList as $item1) { + $res['SmsSignList'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->totalCount) { + $res['TotalCount'] = $this->totalCount; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['CurrentPage'])) { + $model->currentPage = $map['CurrentPage']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['SmsSignList'])) { + if (!empty($map['SmsSignList'])) { + $model->smsSignList = []; + $n1 = 0; + foreach ($map['SmsSignList'] as $item1) { + $model->smsSignList[$n1] = smsSignList::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['TotalCount'])) { + $model->totalCount = $map['TotalCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody/smsSignList.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody/smsSignList.php new file mode 100644 index 0000000..8a5e854 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody/smsSignList.php @@ -0,0 +1,178 @@ + 'AppIcpRecordId', + 'auditStatus' => 'AuditStatus', + 'authorizationLetterId' => 'AuthorizationLetterId', + 'businessType' => 'BusinessType', + 'createDate' => 'CreateDate', + 'orderId' => 'OrderId', + 'reason' => 'Reason', + 'signName' => 'SignName', + 'trademarkId' => 'TrademarkId', + 'authorizationLetterAuditPass' => 'authorizationLetterAuditPass', + ]; + + public function validate() + { + if (null !== $this->reason) { + $this->reason->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->appIcpRecordId) { + $res['AppIcpRecordId'] = $this->appIcpRecordId; + } + + if (null !== $this->auditStatus) { + $res['AuditStatus'] = $this->auditStatus; + } + + if (null !== $this->authorizationLetterId) { + $res['AuthorizationLetterId'] = $this->authorizationLetterId; + } + + if (null !== $this->businessType) { + $res['BusinessType'] = $this->businessType; + } + + if (null !== $this->createDate) { + $res['CreateDate'] = $this->createDate; + } + + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->reason) { + $res['Reason'] = null !== $this->reason ? $this->reason->toArray($noStream) : $this->reason; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->trademarkId) { + $res['TrademarkId'] = $this->trademarkId; + } + + if (null !== $this->authorizationLetterAuditPass) { + $res['authorizationLetterAuditPass'] = $this->authorizationLetterAuditPass; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppIcpRecordId'])) { + $model->appIcpRecordId = $map['AppIcpRecordId']; + } + + if (isset($map['AuditStatus'])) { + $model->auditStatus = $map['AuditStatus']; + } + + if (isset($map['AuthorizationLetterId'])) { + $model->authorizationLetterId = $map['AuthorizationLetterId']; + } + + if (isset($map['BusinessType'])) { + $model->businessType = $map['BusinessType']; + } + + if (isset($map['CreateDate'])) { + $model->createDate = $map['CreateDate']; + } + + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['Reason'])) { + $model->reason = reason::fromMap($map['Reason']); + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['TrademarkId'])) { + $model->trademarkId = $map['TrademarkId']; + } + + if (isset($map['authorizationLetterAuditPass'])) { + $model->authorizationLetterAuditPass = $map['authorizationLetterAuditPass']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody/smsSignList/reason.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody/smsSignList/reason.php new file mode 100644 index 0000000..99d02df --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody/smsSignList/reason.php @@ -0,0 +1,76 @@ + 'RejectDate', + 'rejectInfo' => 'RejectInfo', + 'rejectSubInfo' => 'RejectSubInfo', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->rejectDate) { + $res['RejectDate'] = $this->rejectDate; + } + + if (null !== $this->rejectInfo) { + $res['RejectInfo'] = $this->rejectInfo; + } + + if (null !== $this->rejectSubInfo) { + $res['RejectSubInfo'] = $this->rejectSubInfo; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RejectDate'])) { + $model->rejectDate = $map['RejectDate']; + } + + if (isset($map['RejectInfo'])) { + $model->rejectInfo = $map['RejectInfo']; + } + + if (isset($map['RejectSubInfo'])) { + $model->rejectSubInfo = $map['RejectSubInfo']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignRequest.php new file mode 100644 index 0000000..7ecfb5b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignResponse.php new file mode 100644 index 0000000..a1c917a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QuerySmsSignResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignResponseBody.php new file mode 100644 index 0000000..895f38b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignResponseBody.php @@ -0,0 +1,132 @@ + 'Code', + 'createDate' => 'CreateDate', + 'message' => 'Message', + 'reason' => 'Reason', + 'requestId' => 'RequestId', + 'signName' => 'SignName', + 'signStatus' => 'SignStatus', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->createDate) { + $res['CreateDate'] = $this->createDate; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->reason) { + $res['Reason'] = $this->reason; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->signStatus) { + $res['SignStatus'] = $this->signStatus; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['CreateDate'])) { + $model->createDate = $map['CreateDate']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['Reason'])) { + $model->reason = $map['Reason']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SignStatus'])) { + $model->signStatus = $map['SignStatus']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListRequest.php new file mode 100644 index 0000000..6dca125 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListRequest.php @@ -0,0 +1,104 @@ + 'OwnerId', + 'pageIndex' => 'PageIndex', + 'pageSize' => 'PageSize', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->pageIndex) { + $res['PageIndex'] = $this->pageIndex; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PageIndex'])) { + $model->pageIndex = $map['PageIndex']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponse.php new file mode 100644 index 0000000..cb8ba03 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QuerySmsTemplateListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody.php new file mode 100644 index 0000000..45c2a1e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody.php @@ -0,0 +1,150 @@ + 'Code', + 'currentPage' => 'CurrentPage', + 'message' => 'Message', + 'pageSize' => 'PageSize', + 'requestId' => 'RequestId', + 'smsTemplateList' => 'SmsTemplateList', + 'totalCount' => 'TotalCount', + ]; + + public function validate() + { + if (\is_array($this->smsTemplateList)) { + Model::validateArray($this->smsTemplateList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->currentPage) { + $res['CurrentPage'] = $this->currentPage; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->smsTemplateList) { + if (\is_array($this->smsTemplateList)) { + $res['SmsTemplateList'] = []; + $n1 = 0; + foreach ($this->smsTemplateList as $item1) { + $res['SmsTemplateList'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->totalCount) { + $res['TotalCount'] = $this->totalCount; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['CurrentPage'])) { + $model->currentPage = $map['CurrentPage']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['SmsTemplateList'])) { + if (!empty($map['SmsTemplateList'])) { + $model->smsTemplateList = []; + $n1 = 0; + foreach ($map['SmsTemplateList'] as $item1) { + $model->smsTemplateList[$n1] = smsTemplateList::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['TotalCount'])) { + $model->totalCount = $map['TotalCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody/smsTemplateList.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody/smsTemplateList.php new file mode 100644 index 0000000..13b1442 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody/smsTemplateList.php @@ -0,0 +1,192 @@ + 'AuditStatus', + 'createDate' => 'CreateDate', + 'orderId' => 'OrderId', + 'outerTemplateType' => 'OuterTemplateType', + 'reason' => 'Reason', + 'signatureName' => 'SignatureName', + 'templateCode' => 'TemplateCode', + 'templateContent' => 'TemplateContent', + 'templateName' => 'TemplateName', + 'templateType' => 'TemplateType', + 'trafficDriving' => 'TrafficDriving', + ]; + + public function validate() + { + if (null !== $this->reason) { + $this->reason->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->auditStatus) { + $res['AuditStatus'] = $this->auditStatus; + } + + if (null !== $this->createDate) { + $res['CreateDate'] = $this->createDate; + } + + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->outerTemplateType) { + $res['OuterTemplateType'] = $this->outerTemplateType; + } + + if (null !== $this->reason) { + $res['Reason'] = null !== $this->reason ? $this->reason->toArray($noStream) : $this->reason; + } + + if (null !== $this->signatureName) { + $res['SignatureName'] = $this->signatureName; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateContent) { + $res['TemplateContent'] = $this->templateContent; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + if (null !== $this->trafficDriving) { + $res['TrafficDriving'] = $this->trafficDriving; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AuditStatus'])) { + $model->auditStatus = $map['AuditStatus']; + } + + if (isset($map['CreateDate'])) { + $model->createDate = $map['CreateDate']; + } + + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['OuterTemplateType'])) { + $model->outerTemplateType = $map['OuterTemplateType']; + } + + if (isset($map['Reason'])) { + $model->reason = reason::fromMap($map['Reason']); + } + + if (isset($map['SignatureName'])) { + $model->signatureName = $map['SignatureName']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateContent'])) { + $model->templateContent = $map['TemplateContent']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + if (isset($map['TrafficDriving'])) { + $model->trafficDriving = $map['TrafficDriving']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody/smsTemplateList/reason.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody/smsTemplateList/reason.php new file mode 100644 index 0000000..639cd85 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody/smsTemplateList/reason.php @@ -0,0 +1,76 @@ + 'RejectDate', + 'rejectInfo' => 'RejectInfo', + 'rejectSubInfo' => 'RejectSubInfo', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->rejectDate) { + $res['RejectDate'] = $this->rejectDate; + } + + if (null !== $this->rejectInfo) { + $res['RejectInfo'] = $this->rejectInfo; + } + + if (null !== $this->rejectSubInfo) { + $res['RejectSubInfo'] = $this->rejectSubInfo; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RejectDate'])) { + $model->rejectDate = $map['RejectDate']; + } + + if (isset($map['RejectInfo'])) { + $model->rejectInfo = $map['RejectInfo']; + } + + if (isset($map['RejectSubInfo'])) { + $model->rejectSubInfo = $map['RejectSubInfo']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateRequest.php new file mode 100644 index 0000000..29d4f95 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'templateCode' => 'TemplateCode', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateResponse.php new file mode 100644 index 0000000..335b81a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QuerySmsTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateResponseBody.php new file mode 100644 index 0000000..0847c1c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateResponseBody.php @@ -0,0 +1,174 @@ + 'Code', + 'createDate' => 'CreateDate', + 'message' => 'Message', + 'reason' => 'Reason', + 'requestId' => 'RequestId', + 'templateCode' => 'TemplateCode', + 'templateContent' => 'TemplateContent', + 'templateName' => 'TemplateName', + 'templateStatus' => 'TemplateStatus', + 'templateType' => 'TemplateType', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->createDate) { + $res['CreateDate'] = $this->createDate; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->reason) { + $res['Reason'] = $this->reason; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateContent) { + $res['TemplateContent'] = $this->templateContent; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateStatus) { + $res['TemplateStatus'] = $this->templateStatus; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['CreateDate'])) { + $model->createDate = $map['CreateDate']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['Reason'])) { + $model->reason = $map['Reason']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateContent'])) { + $model->templateContent = $map['TemplateContent']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateStatus'])) { + $model->templateStatus = $map['TemplateStatus']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkRequest.php new file mode 100644 index 0000000..ab94954 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkRequest.php @@ -0,0 +1,107 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'trademarkIdList' => 'TrademarkIdList', + ]; + + public function validate() + { + if (\is_array($this->trademarkIdList)) { + Model::validateArray($this->trademarkIdList); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->trademarkIdList) { + if (\is_array($this->trademarkIdList)) { + $res['TrademarkIdList'] = []; + $n1 = 0; + foreach ($this->trademarkIdList as $item1) { + $res['TrademarkIdList'][$n1] = $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TrademarkIdList'])) { + if (!empty($map['TrademarkIdList'])) { + $model->trademarkIdList = []; + $n1 = 0; + foreach ($map['TrademarkIdList'] as $item1) { + $model->trademarkIdList[$n1] = $item1; + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkResponse.php new file mode 100644 index 0000000..cb93a5a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = QuerySmsTrademarkResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkResponseBody.php new file mode 100644 index 0000000..9c61291 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkResponseBody.php @@ -0,0 +1,136 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->data)) { + Model::validateArray($this->data); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + if (\is_array($this->data)) { + $res['Data'] = []; + $n1 = 0; + foreach ($this->data as $item1) { + $res['Data'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + $n1 = 0; + foreach ($map['Data'] as $item1) { + $model->data[$n1] = data::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkResponseBody/data.php new file mode 100644 index 0000000..fb50f65 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkResponseBody/data.php @@ -0,0 +1,132 @@ + 'TrademarkApplicantName', + 'trademarkEffExpDate' => 'TrademarkEffExpDate', + 'trademarkId' => 'TrademarkId', + 'trademarkName' => 'TrademarkName', + 'trademarkPic' => 'TrademarkPic', + 'trademarkPicUrl' => 'TrademarkPicUrl', + 'trademarkRegistrationNumber' => 'TrademarkRegistrationNumber', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->trademarkApplicantName) { + $res['TrademarkApplicantName'] = $this->trademarkApplicantName; + } + + if (null !== $this->trademarkEffExpDate) { + $res['TrademarkEffExpDate'] = $this->trademarkEffExpDate; + } + + if (null !== $this->trademarkId) { + $res['TrademarkId'] = $this->trademarkId; + } + + if (null !== $this->trademarkName) { + $res['TrademarkName'] = $this->trademarkName; + } + + if (null !== $this->trademarkPic) { + $res['TrademarkPic'] = $this->trademarkPic; + } + + if (null !== $this->trademarkPicUrl) { + $res['TrademarkPicUrl'] = $this->trademarkPicUrl; + } + + if (null !== $this->trademarkRegistrationNumber) { + $res['TrademarkRegistrationNumber'] = $this->trademarkRegistrationNumber; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TrademarkApplicantName'])) { + $model->trademarkApplicantName = $map['TrademarkApplicantName']; + } + + if (isset($map['TrademarkEffExpDate'])) { + $model->trademarkEffExpDate = $map['TrademarkEffExpDate']; + } + + if (isset($map['TrademarkId'])) { + $model->trademarkId = $map['TrademarkId']; + } + + if (isset($map['TrademarkName'])) { + $model->trademarkName = $map['TrademarkName']; + } + + if (isset($map['TrademarkPic'])) { + $model->trademarkPic = $map['TrademarkPic']; + } + + if (isset($map['TrademarkPicUrl'])) { + $model->trademarkPicUrl = $map['TrademarkPicUrl']; + } + + if (isset($map['TrademarkRegistrationNumber'])) { + $model->trademarkRegistrationNumber = $map['TrademarkRegistrationNumber']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkShrinkRequest.php new file mode 100644 index 0000000..8a90f98 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTrademarkShrinkRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'trademarkIdListShrink' => 'TrademarkIdList', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->trademarkIdListShrink) { + $res['TrademarkIdList'] = $this->trademarkIdListShrink; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TrademarkIdList'])) { + $model->trademarkIdListShrink = $map['TrademarkIdList']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/RequiredPhoneCodeRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/RequiredPhoneCodeRequest.php new file mode 100644 index 0000000..843bc61 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/RequiredPhoneCodeRequest.php @@ -0,0 +1,90 @@ + 'OwnerId', + 'phoneNo' => 'PhoneNo', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->phoneNo) { + $res['PhoneNo'] = $this->phoneNo; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PhoneNo'])) { + $model->phoneNo = $map['PhoneNo']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/RequiredPhoneCodeResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/RequiredPhoneCodeResponse.php new file mode 100644 index 0000000..0ee3203 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/RequiredPhoneCodeResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = RequiredPhoneCodeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/RequiredPhoneCodeResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/RequiredPhoneCodeResponseBody.php new file mode 100644 index 0000000..deb0aff --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/RequiredPhoneCodeResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsRequest.php new file mode 100644 index 0000000..f1367ed --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsRequest.php @@ -0,0 +1,216 @@ + 'CardTemplateCode', + 'cardTemplateParamJson' => 'CardTemplateParamJson', + 'digitalTemplateCode' => 'DigitalTemplateCode', + 'digitalTemplateParamJson' => 'DigitalTemplateParamJson', + 'fallbackType' => 'FallbackType', + 'outId' => 'OutId', + 'phoneNumberJson' => 'PhoneNumberJson', + 'signNameJson' => 'SignNameJson', + 'smsTemplateCode' => 'SmsTemplateCode', + 'smsTemplateParamJson' => 'SmsTemplateParamJson', + 'smsUpExtendCodeJson' => 'SmsUpExtendCodeJson', + 'templateCode' => 'TemplateCode', + 'templateParamJson' => 'TemplateParamJson', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->cardTemplateCode) { + $res['CardTemplateCode'] = $this->cardTemplateCode; + } + + if (null !== $this->cardTemplateParamJson) { + $res['CardTemplateParamJson'] = $this->cardTemplateParamJson; + } + + if (null !== $this->digitalTemplateCode) { + $res['DigitalTemplateCode'] = $this->digitalTemplateCode; + } + + if (null !== $this->digitalTemplateParamJson) { + $res['DigitalTemplateParamJson'] = $this->digitalTemplateParamJson; + } + + if (null !== $this->fallbackType) { + $res['FallbackType'] = $this->fallbackType; + } + + if (null !== $this->outId) { + $res['OutId'] = $this->outId; + } + + if (null !== $this->phoneNumberJson) { + $res['PhoneNumberJson'] = $this->phoneNumberJson; + } + + if (null !== $this->signNameJson) { + $res['SignNameJson'] = $this->signNameJson; + } + + if (null !== $this->smsTemplateCode) { + $res['SmsTemplateCode'] = $this->smsTemplateCode; + } + + if (null !== $this->smsTemplateParamJson) { + $res['SmsTemplateParamJson'] = $this->smsTemplateParamJson; + } + + if (null !== $this->smsUpExtendCodeJson) { + $res['SmsUpExtendCodeJson'] = $this->smsUpExtendCodeJson; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateParamJson) { + $res['TemplateParamJson'] = $this->templateParamJson; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CardTemplateCode'])) { + $model->cardTemplateCode = $map['CardTemplateCode']; + } + + if (isset($map['CardTemplateParamJson'])) { + $model->cardTemplateParamJson = $map['CardTemplateParamJson']; + } + + if (isset($map['DigitalTemplateCode'])) { + $model->digitalTemplateCode = $map['DigitalTemplateCode']; + } + + if (isset($map['DigitalTemplateParamJson'])) { + $model->digitalTemplateParamJson = $map['DigitalTemplateParamJson']; + } + + if (isset($map['FallbackType'])) { + $model->fallbackType = $map['FallbackType']; + } + + if (isset($map['OutId'])) { + $model->outId = $map['OutId']; + } + + if (isset($map['PhoneNumberJson'])) { + $model->phoneNumberJson = $map['PhoneNumberJson']; + } + + if (isset($map['SignNameJson'])) { + $model->signNameJson = $map['SignNameJson']; + } + + if (isset($map['SmsTemplateCode'])) { + $model->smsTemplateCode = $map['SmsTemplateCode']; + } + + if (isset($map['SmsTemplateParamJson'])) { + $model->smsTemplateParamJson = $map['SmsTemplateParamJson']; + } + + if (isset($map['SmsUpExtendCodeJson'])) { + $model->smsUpExtendCodeJson = $map['SmsUpExtendCodeJson']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateParamJson'])) { + $model->templateParamJson = $map['TemplateParamJson']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponse.php new file mode 100644 index 0000000..706c683 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = SendBatchCardSmsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponseBody.php new file mode 100644 index 0000000..cb9f328 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponseBody/data.php new file mode 100644 index 0000000..c3b8df6 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponseBody/data.php @@ -0,0 +1,118 @@ + 'BizCardId', + 'bizDigitalId' => 'BizDigitalId', + 'bizSmsId' => 'BizSmsId', + 'cardTmpState' => 'CardTmpState', + 'mediaMobiles' => 'MediaMobiles', + 'notMediaMobiles' => 'NotMediaMobiles', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->bizCardId) { + $res['BizCardId'] = $this->bizCardId; + } + + if (null !== $this->bizDigitalId) { + $res['BizDigitalId'] = $this->bizDigitalId; + } + + if (null !== $this->bizSmsId) { + $res['BizSmsId'] = $this->bizSmsId; + } + + if (null !== $this->cardTmpState) { + $res['CardTmpState'] = $this->cardTmpState; + } + + if (null !== $this->mediaMobiles) { + $res['MediaMobiles'] = $this->mediaMobiles; + } + + if (null !== $this->notMediaMobiles) { + $res['NotMediaMobiles'] = $this->notMediaMobiles; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BizCardId'])) { + $model->bizCardId = $map['BizCardId']; + } + + if (isset($map['BizDigitalId'])) { + $model->bizDigitalId = $map['BizDigitalId']; + } + + if (isset($map['BizSmsId'])) { + $model->bizSmsId = $map['BizSmsId']; + } + + if (isset($map['CardTmpState'])) { + $model->cardTmpState = $map['CardTmpState']; + } + + if (isset($map['MediaMobiles'])) { + $model->mediaMobiles = $map['MediaMobiles']; + } + + if (isset($map['NotMediaMobiles'])) { + $model->notMediaMobiles = $map['NotMediaMobiles']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsRequest.php new file mode 100644 index 0000000..af592df --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsRequest.php @@ -0,0 +1,160 @@ + 'OutId', + 'ownerId' => 'OwnerId', + 'phoneNumberJson' => 'PhoneNumberJson', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signNameJson' => 'SignNameJson', + 'smsUpExtendCodeJson' => 'SmsUpExtendCodeJson', + 'templateCode' => 'TemplateCode', + 'templateParamJson' => 'TemplateParamJson', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->outId) { + $res['OutId'] = $this->outId; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->phoneNumberJson) { + $res['PhoneNumberJson'] = $this->phoneNumberJson; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signNameJson) { + $res['SignNameJson'] = $this->signNameJson; + } + + if (null !== $this->smsUpExtendCodeJson) { + $res['SmsUpExtendCodeJson'] = $this->smsUpExtendCodeJson; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateParamJson) { + $res['TemplateParamJson'] = $this->templateParamJson; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OutId'])) { + $model->outId = $map['OutId']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PhoneNumberJson'])) { + $model->phoneNumberJson = $map['PhoneNumberJson']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignNameJson'])) { + $model->signNameJson = $map['SignNameJson']; + } + + if (isset($map['SmsUpExtendCodeJson'])) { + $model->smsUpExtendCodeJson = $map['SmsUpExtendCodeJson']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateParamJson'])) { + $model->templateParamJson = $map['TemplateParamJson']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsResponse.php new file mode 100644 index 0000000..7cc8763 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = SendBatchSmsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsResponseBody.php new file mode 100644 index 0000000..4ed23b8 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsResponseBody.php @@ -0,0 +1,90 @@ + 'BizId', + 'code' => 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->bizId) { + $res['BizId'] = $this->bizId; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BizId'])) { + $model->bizId = $map['BizId']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsRequest.php new file mode 100644 index 0000000..283a0f1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsRequest.php @@ -0,0 +1,220 @@ + 'CardObjects', + 'cardTemplateCode' => 'CardTemplateCode', + 'digitalTemplateCode' => 'DigitalTemplateCode', + 'digitalTemplateParam' => 'DigitalTemplateParam', + 'fallbackType' => 'FallbackType', + 'outId' => 'OutId', + 'signName' => 'SignName', + 'smsTemplateCode' => 'SmsTemplateCode', + 'smsTemplateParam' => 'SmsTemplateParam', + 'smsUpExtendCode' => 'SmsUpExtendCode', + 'templateCode' => 'TemplateCode', + 'templateParam' => 'TemplateParam', + ]; + + public function validate() + { + if (\is_array($this->cardObjects)) { + Model::validateArray($this->cardObjects); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->cardObjects) { + if (\is_array($this->cardObjects)) { + $res['CardObjects'] = []; + $n1 = 0; + foreach ($this->cardObjects as $item1) { + $res['CardObjects'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->cardTemplateCode) { + $res['CardTemplateCode'] = $this->cardTemplateCode; + } + + if (null !== $this->digitalTemplateCode) { + $res['DigitalTemplateCode'] = $this->digitalTemplateCode; + } + + if (null !== $this->digitalTemplateParam) { + $res['DigitalTemplateParam'] = $this->digitalTemplateParam; + } + + if (null !== $this->fallbackType) { + $res['FallbackType'] = $this->fallbackType; + } + + if (null !== $this->outId) { + $res['OutId'] = $this->outId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->smsTemplateCode) { + $res['SmsTemplateCode'] = $this->smsTemplateCode; + } + + if (null !== $this->smsTemplateParam) { + $res['SmsTemplateParam'] = $this->smsTemplateParam; + } + + if (null !== $this->smsUpExtendCode) { + $res['SmsUpExtendCode'] = $this->smsUpExtendCode; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateParam) { + $res['TemplateParam'] = $this->templateParam; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CardObjects'])) { + if (!empty($map['CardObjects'])) { + $model->cardObjects = []; + $n1 = 0; + foreach ($map['CardObjects'] as $item1) { + $model->cardObjects[$n1] = cardObjects::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['CardTemplateCode'])) { + $model->cardTemplateCode = $map['CardTemplateCode']; + } + + if (isset($map['DigitalTemplateCode'])) { + $model->digitalTemplateCode = $map['DigitalTemplateCode']; + } + + if (isset($map['DigitalTemplateParam'])) { + $model->digitalTemplateParam = $map['DigitalTemplateParam']; + } + + if (isset($map['FallbackType'])) { + $model->fallbackType = $map['FallbackType']; + } + + if (isset($map['OutId'])) { + $model->outId = $map['OutId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SmsTemplateCode'])) { + $model->smsTemplateCode = $map['SmsTemplateCode']; + } + + if (isset($map['SmsTemplateParam'])) { + $model->smsTemplateParam = $map['SmsTemplateParam']; + } + + if (isset($map['SmsUpExtendCode'])) { + $model->smsUpExtendCode = $map['SmsUpExtendCode']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateParam'])) { + $model->templateParam = $map['TemplateParam']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsRequest/cardObjects.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsRequest/cardObjects.php new file mode 100644 index 0000000..a1ec4d1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsRequest/cardObjects.php @@ -0,0 +1,76 @@ + 'customUrl', + 'dyncParams' => 'dyncParams', + 'mobile' => 'mobile', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->customUrl) { + $res['customUrl'] = $this->customUrl; + } + + if (null !== $this->dyncParams) { + $res['dyncParams'] = $this->dyncParams; + } + + if (null !== $this->mobile) { + $res['mobile'] = $this->mobile; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['customUrl'])) { + $model->customUrl = $map['customUrl']; + } + + if (isset($map['dyncParams'])) { + $model->dyncParams = $map['dyncParams']; + } + + if (isset($map['mobile'])) { + $model->mobile = $map['mobile']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponse.php new file mode 100644 index 0000000..b247b4f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = SendCardSmsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponseBody.php new file mode 100644 index 0000000..05ac652 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponseBody.php @@ -0,0 +1,94 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponseBody/data.php new file mode 100644 index 0000000..bbdde87 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponseBody/data.php @@ -0,0 +1,118 @@ + 'BizCardId', + 'bizDigitalId' => 'BizDigitalId', + 'bizSmsId' => 'BizSmsId', + 'cardTmpState' => 'CardTmpState', + 'mediaMobiles' => 'MediaMobiles', + 'notMediaMobiles' => 'NotMediaMobiles', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->bizCardId) { + $res['BizCardId'] = $this->bizCardId; + } + + if (null !== $this->bizDigitalId) { + $res['BizDigitalId'] = $this->bizDigitalId; + } + + if (null !== $this->bizSmsId) { + $res['BizSmsId'] = $this->bizSmsId; + } + + if (null !== $this->cardTmpState) { + $res['CardTmpState'] = $this->cardTmpState; + } + + if (null !== $this->mediaMobiles) { + $res['MediaMobiles'] = $this->mediaMobiles; + } + + if (null !== $this->notMediaMobiles) { + $res['NotMediaMobiles'] = $this->notMediaMobiles; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BizCardId'])) { + $model->bizCardId = $map['BizCardId']; + } + + if (isset($map['BizDigitalId'])) { + $model->bizDigitalId = $map['BizDigitalId']; + } + + if (isset($map['BizSmsId'])) { + $model->bizSmsId = $map['BizSmsId']; + } + + if (isset($map['CardTmpState'])) { + $model->cardTmpState = $map['CardTmpState']; + } + + if (isset($map['MediaMobiles'])) { + $model->mediaMobiles = $map['MediaMobiles']; + } + + if (isset($map['NotMediaMobiles'])) { + $model->notMediaMobiles = $map['NotMediaMobiles']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsRequest.php new file mode 100644 index 0000000..b2d6e9b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsRequest.php @@ -0,0 +1,174 @@ + 'ExpressCompanyCode', + 'mailNo' => 'MailNo', + 'outId' => 'OutId', + 'ownerId' => 'OwnerId', + 'platformCompanyCode' => 'PlatformCompanyCode', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'templateCode' => 'TemplateCode', + 'templateParam' => 'TemplateParam', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->expressCompanyCode) { + $res['ExpressCompanyCode'] = $this->expressCompanyCode; + } + + if (null !== $this->mailNo) { + $res['MailNo'] = $this->mailNo; + } + + if (null !== $this->outId) { + $res['OutId'] = $this->outId; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->platformCompanyCode) { + $res['PlatformCompanyCode'] = $this->platformCompanyCode; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateParam) { + $res['TemplateParam'] = $this->templateParam; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ExpressCompanyCode'])) { + $model->expressCompanyCode = $map['ExpressCompanyCode']; + } + + if (isset($map['MailNo'])) { + $model->mailNo = $map['MailNo']; + } + + if (isset($map['OutId'])) { + $model->outId = $map['OutId']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PlatformCompanyCode'])) { + $model->platformCompanyCode = $map['PlatformCompanyCode']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateParam'])) { + $model->templateParam = $map['TemplateParam']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsResponse.php new file mode 100644 index 0000000..05cbc71 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = SendLogisticsSmsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsResponseBody.php new file mode 100644 index 0000000..fb17ee7 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsResponseBody/data.php new file mode 100644 index 0000000..52c72c1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendLogisticsSmsResponseBody/data.php @@ -0,0 +1,48 @@ + 'BizId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->bizId) { + $res['BizId'] = $this->bizId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BizId'])) { + $model->bizId = $map['BizId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyRequest.php new file mode 100644 index 0000000..dcff6fd --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyRequest.php @@ -0,0 +1,118 @@ + 'InReplyToRcsID', + 'outId' => 'OutId', + 'phoneNumbers' => 'PhoneNumbers', + 'signName' => 'SignName', + 'templateCode' => 'TemplateCode', + 'templateParam' => 'TemplateParam', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->inReplyToRcsID) { + $res['InReplyToRcsID'] = $this->inReplyToRcsID; + } + + if (null !== $this->outId) { + $res['OutId'] = $this->outId; + } + + if (null !== $this->phoneNumbers) { + $res['PhoneNumbers'] = $this->phoneNumbers; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateParam) { + $res['TemplateParam'] = $this->templateParam; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['InReplyToRcsID'])) { + $model->inReplyToRcsID = $map['InReplyToRcsID']; + } + + if (isset($map['OutId'])) { + $model->outId = $map['OutId']; + } + + if (isset($map['PhoneNumbers'])) { + $model->phoneNumbers = $map['PhoneNumbers']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateParam'])) { + $model->templateParam = $map['TemplateParam']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyResponse.php new file mode 100644 index 0000000..68e63e1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = SendRCSReplyResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyResponseBody.php new file mode 100644 index 0000000..d718a8b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyResponseBody/data.php new file mode 100644 index 0000000..b3bf50a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSReplyResponseBody/data.php @@ -0,0 +1,255 @@ + 'AccessDeniedDetail', + 'bdcust' => 'Bdcust', + 'code' => 'Code', + 'debug' => 'Debug', + 'e' => 'E', + 'extendMap' => 'ExtendMap', + 'gateFailMsg' => 'GateFailMsg', + 'keyString' => 'KeyString', + 'message' => 'Message', + 'module' => 'Module', + 'partnerId' => 'PartnerId', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->debug)) { + Model::validateArray($this->debug); + } + if (\is_array($this->extendMap)) { + Model::validateArray($this->extendMap); + } + if (\is_array($this->module)) { + Model::validateArray($this->module); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->bdcust) { + $res['Bdcust'] = $this->bdcust; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->debug) { + if (\is_array($this->debug)) { + $res['Debug'] = []; + foreach ($this->debug as $key1 => $value1) { + $res['Debug'][$key1] = $value1; + } + } + } + + if (null !== $this->e) { + $res['E'] = $this->e; + } + + if (null !== $this->extendMap) { + if (\is_array($this->extendMap)) { + $res['ExtendMap'] = []; + foreach ($this->extendMap as $key1 => $value1) { + $res['ExtendMap'][$key1] = $value1; + } + } + } + + if (null !== $this->gateFailMsg) { + $res['GateFailMsg'] = $this->gateFailMsg; + } + + if (null !== $this->keyString) { + $res['KeyString'] = $this->keyString; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->module) { + if (\is_array($this->module)) { + $res['Module'] = []; + foreach ($this->module as $key1 => $value1) { + $res['Module'][$key1] = $value1; + } + } + } + + if (null !== $this->partnerId) { + $res['PartnerId'] = $this->partnerId; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Bdcust'])) { + $model->bdcust = $map['Bdcust']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Debug'])) { + if (!empty($map['Debug'])) { + $model->debug = []; + foreach ($map['Debug'] as $key1 => $value1) { + $model->debug[$key1] = $value1; + } + } + } + + if (isset($map['E'])) { + $model->e = $map['E']; + } + + if (isset($map['ExtendMap'])) { + if (!empty($map['ExtendMap'])) { + $model->extendMap = []; + foreach ($map['ExtendMap'] as $key1 => $value1) { + $model->extendMap[$key1] = $value1; + } + } + } + + if (isset($map['GateFailMsg'])) { + $model->gateFailMsg = $map['GateFailMsg']; + } + + if (isset($map['KeyString'])) { + $model->keyString = $map['KeyString']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['Module'])) { + if (!empty($map['Module'])) { + $model->module = []; + foreach ($map['Module'] as $key1 => $value1) { + $model->module[$key1] = $value1; + } + } + } + + if (isset($map['PartnerId'])) { + $model->partnerId = $map['PartnerId']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSRequest.php new file mode 100644 index 0000000..9f213c2 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSRequest.php @@ -0,0 +1,104 @@ + 'OutId', + 'phoneNumbers' => 'PhoneNumbers', + 'signName' => 'SignName', + 'templateCode' => 'TemplateCode', + 'templateParam' => 'TemplateParam', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->outId) { + $res['OutId'] = $this->outId; + } + + if (null !== $this->phoneNumbers) { + $res['PhoneNumbers'] = $this->phoneNumbers; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateParam) { + $res['TemplateParam'] = $this->templateParam; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OutId'])) { + $model->outId = $map['OutId']; + } + + if (isset($map['PhoneNumbers'])) { + $model->phoneNumbers = $map['PhoneNumbers']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateParam'])) { + $model->templateParam = $map['TemplateParam']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSResponse.php new file mode 100644 index 0000000..aba467e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = SendRCSResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSResponseBody.php new file mode 100644 index 0000000..5af637c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSResponseBody/data.php new file mode 100644 index 0000000..d1329c1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendRCSResponseBody/data.php @@ -0,0 +1,255 @@ + 'AccessDeniedDetail', + 'bdcust' => 'Bdcust', + 'code' => 'Code', + 'debug' => 'Debug', + 'e' => 'E', + 'extendMap' => 'ExtendMap', + 'gateFailMsg' => 'GateFailMsg', + 'keyString' => 'KeyString', + 'message' => 'Message', + 'module' => 'Module', + 'partnerId' => 'PartnerId', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (\is_array($this->debug)) { + Model::validateArray($this->debug); + } + if (\is_array($this->extendMap)) { + Model::validateArray($this->extendMap); + } + if (\is_array($this->module)) { + Model::validateArray($this->module); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->bdcust) { + $res['Bdcust'] = $this->bdcust; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->debug) { + if (\is_array($this->debug)) { + $res['Debug'] = []; + foreach ($this->debug as $key1 => $value1) { + $res['Debug'][$key1] = $value1; + } + } + } + + if (null !== $this->e) { + $res['E'] = $this->e; + } + + if (null !== $this->extendMap) { + if (\is_array($this->extendMap)) { + $res['ExtendMap'] = []; + foreach ($this->extendMap as $key1 => $value1) { + $res['ExtendMap'][$key1] = $value1; + } + } + } + + if (null !== $this->gateFailMsg) { + $res['GateFailMsg'] = $this->gateFailMsg; + } + + if (null !== $this->keyString) { + $res['KeyString'] = $this->keyString; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->module) { + if (\is_array($this->module)) { + $res['Module'] = []; + foreach ($this->module as $key1 => $value1) { + $res['Module'][$key1] = $value1; + } + } + } + + if (null !== $this->partnerId) { + $res['PartnerId'] = $this->partnerId; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Bdcust'])) { + $model->bdcust = $map['Bdcust']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Debug'])) { + if (!empty($map['Debug'])) { + $model->debug = []; + foreach ($map['Debug'] as $key1 => $value1) { + $model->debug[$key1] = $value1; + } + } + } + + if (isset($map['E'])) { + $model->e = $map['E']; + } + + if (isset($map['ExtendMap'])) { + if (!empty($map['ExtendMap'])) { + $model->extendMap = []; + foreach ($map['ExtendMap'] as $key1 => $value1) { + $model->extendMap[$key1] = $value1; + } + } + } + + if (isset($map['GateFailMsg'])) { + $model->gateFailMsg = $map['GateFailMsg']; + } + + if (isset($map['KeyString'])) { + $model->keyString = $map['KeyString']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['Module'])) { + if (!empty($map['Module'])) { + $model->module = []; + foreach ($map['Module'] as $key1 => $value1) { + $model->module[$key1] = $value1; + } + } + } + + if (isset($map['PartnerId'])) { + $model->partnerId = $map['PartnerId']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsRequest.php new file mode 100644 index 0000000..a23fb7f --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsRequest.php @@ -0,0 +1,160 @@ + 'OutId', + 'ownerId' => 'OwnerId', + 'phoneNumbers' => 'PhoneNumbers', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'smsUpExtendCode' => 'SmsUpExtendCode', + 'templateCode' => 'TemplateCode', + 'templateParam' => 'TemplateParam', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->outId) { + $res['OutId'] = $this->outId; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->phoneNumbers) { + $res['PhoneNumbers'] = $this->phoneNumbers; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->smsUpExtendCode) { + $res['SmsUpExtendCode'] = $this->smsUpExtendCode; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateParam) { + $res['TemplateParam'] = $this->templateParam; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OutId'])) { + $model->outId = $map['OutId']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PhoneNumbers'])) { + $model->phoneNumbers = $map['PhoneNumbers']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SmsUpExtendCode'])) { + $model->smsUpExtendCode = $map['SmsUpExtendCode']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateParam'])) { + $model->templateParam = $map['TemplateParam']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsResponse.php new file mode 100644 index 0000000..4e18e65 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = SendSmsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsResponseBody.php new file mode 100644 index 0000000..c46006c --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsResponseBody.php @@ -0,0 +1,90 @@ + 'BizId', + 'code' => 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->bizId) { + $res['BizId'] = $this->bizId; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BizId'])) { + $model->bizId = $map['BizId']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SmsConversionIntlRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SmsConversionIntlRequest.php new file mode 100644 index 0000000..fe17e44 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SmsConversionIntlRequest.php @@ -0,0 +1,118 @@ + 'ConversionTime', + 'delivered' => 'Delivered', + 'messageId' => 'MessageId', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->conversionTime) { + $res['ConversionTime'] = $this->conversionTime; + } + + if (null !== $this->delivered) { + $res['Delivered'] = $this->delivered; + } + + if (null !== $this->messageId) { + $res['MessageId'] = $this->messageId; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ConversionTime'])) { + $model->conversionTime = $map['ConversionTime']; + } + + if (isset($map['Delivered'])) { + $model->delivered = $map['Delivered']; + } + + if (isset($map['MessageId'])) { + $model->messageId = $map['MessageId']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SmsConversionIntlResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SmsConversionIntlResponse.php new file mode 100644 index 0000000..005ec0b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SmsConversionIntlResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = SmsConversionIntlResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SmsConversionIntlResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SmsConversionIntlResponseBody.php new file mode 100644 index 0000000..c537f88 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SmsConversionIntlResponseBody.php @@ -0,0 +1,76 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationRequest.php new file mode 100644 index 0000000..02261e1 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationRequest.php @@ -0,0 +1,448 @@ + 'AdminIDCardExpDate', + 'adminIDCardFrontFace' => 'AdminIDCardFrontFace', + 'adminIDCardNo' => 'AdminIDCardNo', + 'adminIDCardPic' => 'AdminIDCardPic', + 'adminIDCardType' => 'AdminIDCardType', + 'adminName' => 'AdminName', + 'adminPhoneNo' => 'AdminPhoneNo', + 'businessLicensePics' => 'BusinessLicensePics', + 'bussinessLicenseExpDate' => 'BussinessLicenseExpDate', + 'certifyCode' => 'CertifyCode', + 'companyName' => 'CompanyName', + 'companyType' => 'CompanyType', + 'legalPersonIDCardNo' => 'LegalPersonIDCardNo', + 'legalPersonIDCardType' => 'LegalPersonIDCardType', + 'legalPersonIdCardBackSide' => 'LegalPersonIdCardBackSide', + 'legalPersonIdCardEffTime' => 'LegalPersonIdCardEffTime', + 'legalPersonIdCardFrontSide' => 'LegalPersonIdCardFrontSide', + 'legalPersonName' => 'LegalPersonName', + 'organizationCode' => 'OrganizationCode', + 'otherFiles' => 'OtherFiles', + 'ownerId' => 'OwnerId', + 'qualificationName' => 'QualificationName', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'useBySelf' => 'UseBySelf', + 'whetherShare' => 'WhetherShare', + ]; + + public function validate() + { + if (\is_array($this->businessLicensePics)) { + Model::validateArray($this->businessLicensePics); + } + if (\is_array($this->otherFiles)) { + Model::validateArray($this->otherFiles); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->adminIDCardExpDate) { + $res['AdminIDCardExpDate'] = $this->adminIDCardExpDate; + } + + if (null !== $this->adminIDCardFrontFace) { + $res['AdminIDCardFrontFace'] = $this->adminIDCardFrontFace; + } + + if (null !== $this->adminIDCardNo) { + $res['AdminIDCardNo'] = $this->adminIDCardNo; + } + + if (null !== $this->adminIDCardPic) { + $res['AdminIDCardPic'] = $this->adminIDCardPic; + } + + if (null !== $this->adminIDCardType) { + $res['AdminIDCardType'] = $this->adminIDCardType; + } + + if (null !== $this->adminName) { + $res['AdminName'] = $this->adminName; + } + + if (null !== $this->adminPhoneNo) { + $res['AdminPhoneNo'] = $this->adminPhoneNo; + } + + if (null !== $this->businessLicensePics) { + if (\is_array($this->businessLicensePics)) { + $res['BusinessLicensePics'] = []; + $n1 = 0; + foreach ($this->businessLicensePics as $item1) { + $res['BusinessLicensePics'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->bussinessLicenseExpDate) { + $res['BussinessLicenseExpDate'] = $this->bussinessLicenseExpDate; + } + + if (null !== $this->certifyCode) { + $res['CertifyCode'] = $this->certifyCode; + } + + if (null !== $this->companyName) { + $res['CompanyName'] = $this->companyName; + } + + if (null !== $this->companyType) { + $res['CompanyType'] = $this->companyType; + } + + if (null !== $this->legalPersonIDCardNo) { + $res['LegalPersonIDCardNo'] = $this->legalPersonIDCardNo; + } + + if (null !== $this->legalPersonIDCardType) { + $res['LegalPersonIDCardType'] = $this->legalPersonIDCardType; + } + + if (null !== $this->legalPersonIdCardBackSide) { + $res['LegalPersonIdCardBackSide'] = $this->legalPersonIdCardBackSide; + } + + if (null !== $this->legalPersonIdCardEffTime) { + $res['LegalPersonIdCardEffTime'] = $this->legalPersonIdCardEffTime; + } + + if (null !== $this->legalPersonIdCardFrontSide) { + $res['LegalPersonIdCardFrontSide'] = $this->legalPersonIdCardFrontSide; + } + + if (null !== $this->legalPersonName) { + $res['LegalPersonName'] = $this->legalPersonName; + } + + if (null !== $this->organizationCode) { + $res['OrganizationCode'] = $this->organizationCode; + } + + if (null !== $this->otherFiles) { + if (\is_array($this->otherFiles)) { + $res['OtherFiles'] = []; + $n1 = 0; + foreach ($this->otherFiles as $item1) { + $res['OtherFiles'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationName) { + $res['QualificationName'] = $this->qualificationName; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->useBySelf) { + $res['UseBySelf'] = $this->useBySelf; + } + + if (null !== $this->whetherShare) { + $res['WhetherShare'] = $this->whetherShare; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AdminIDCardExpDate'])) { + $model->adminIDCardExpDate = $map['AdminIDCardExpDate']; + } + + if (isset($map['AdminIDCardFrontFace'])) { + $model->adminIDCardFrontFace = $map['AdminIDCardFrontFace']; + } + + if (isset($map['AdminIDCardNo'])) { + $model->adminIDCardNo = $map['AdminIDCardNo']; + } + + if (isset($map['AdminIDCardPic'])) { + $model->adminIDCardPic = $map['AdminIDCardPic']; + } + + if (isset($map['AdminIDCardType'])) { + $model->adminIDCardType = $map['AdminIDCardType']; + } + + if (isset($map['AdminName'])) { + $model->adminName = $map['AdminName']; + } + + if (isset($map['AdminPhoneNo'])) { + $model->adminPhoneNo = $map['AdminPhoneNo']; + } + + if (isset($map['BusinessLicensePics'])) { + if (!empty($map['BusinessLicensePics'])) { + $model->businessLicensePics = []; + $n1 = 0; + foreach ($map['BusinessLicensePics'] as $item1) { + $model->businessLicensePics[$n1] = businessLicensePics::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['BussinessLicenseExpDate'])) { + $model->bussinessLicenseExpDate = $map['BussinessLicenseExpDate']; + } + + if (isset($map['CertifyCode'])) { + $model->certifyCode = $map['CertifyCode']; + } + + if (isset($map['CompanyName'])) { + $model->companyName = $map['CompanyName']; + } + + if (isset($map['CompanyType'])) { + $model->companyType = $map['CompanyType']; + } + + if (isset($map['LegalPersonIDCardNo'])) { + $model->legalPersonIDCardNo = $map['LegalPersonIDCardNo']; + } + + if (isset($map['LegalPersonIDCardType'])) { + $model->legalPersonIDCardType = $map['LegalPersonIDCardType']; + } + + if (isset($map['LegalPersonIdCardBackSide'])) { + $model->legalPersonIdCardBackSide = $map['LegalPersonIdCardBackSide']; + } + + if (isset($map['LegalPersonIdCardEffTime'])) { + $model->legalPersonIdCardEffTime = $map['LegalPersonIdCardEffTime']; + } + + if (isset($map['LegalPersonIdCardFrontSide'])) { + $model->legalPersonIdCardFrontSide = $map['LegalPersonIdCardFrontSide']; + } + + if (isset($map['LegalPersonName'])) { + $model->legalPersonName = $map['LegalPersonName']; + } + + if (isset($map['OrganizationCode'])) { + $model->organizationCode = $map['OrganizationCode']; + } + + if (isset($map['OtherFiles'])) { + if (!empty($map['OtherFiles'])) { + $model->otherFiles = []; + $n1 = 0; + foreach ($map['OtherFiles'] as $item1) { + $model->otherFiles[$n1] = otherFiles::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationName'])) { + $model->qualificationName = $map['QualificationName']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['UseBySelf'])) { + $model->useBySelf = $map['UseBySelf']; + } + + if (isset($map['WhetherShare'])) { + $model->whetherShare = $map['WhetherShare']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationRequest/businessLicensePics.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationRequest/businessLicensePics.php new file mode 100644 index 0000000..52ab7c4 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationRequest/businessLicensePics.php @@ -0,0 +1,62 @@ + 'LicensePic', + 'type' => 'Type', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->licensePic) { + $res['LicensePic'] = $this->licensePic; + } + + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LicensePic'])) { + $model->licensePic = $map['LicensePic']; + } + + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationRequest/otherFiles.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationRequest/otherFiles.php new file mode 100644 index 0000000..a3a2259 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationRequest/otherFiles.php @@ -0,0 +1,48 @@ + 'LicensePic', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->licensePic) { + $res['LicensePic'] = $this->licensePic; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LicensePic'])) { + $model->licensePic = $map['LicensePic']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationResponse.php new file mode 100644 index 0000000..2c674be --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = SubmitSmsQualificationResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationResponseBody.php new file mode 100644 index 0000000..78c20c4 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationShrinkRequest.php new file mode 100644 index 0000000..805074b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/SubmitSmsQualificationShrinkRequest.php @@ -0,0 +1,412 @@ + 'AdminIDCardExpDate', + 'adminIDCardFrontFace' => 'AdminIDCardFrontFace', + 'adminIDCardNo' => 'AdminIDCardNo', + 'adminIDCardPic' => 'AdminIDCardPic', + 'adminIDCardType' => 'AdminIDCardType', + 'adminName' => 'AdminName', + 'adminPhoneNo' => 'AdminPhoneNo', + 'businessLicensePicsShrink' => 'BusinessLicensePics', + 'bussinessLicenseExpDate' => 'BussinessLicenseExpDate', + 'certifyCode' => 'CertifyCode', + 'companyName' => 'CompanyName', + 'companyType' => 'CompanyType', + 'legalPersonIDCardNo' => 'LegalPersonIDCardNo', + 'legalPersonIDCardType' => 'LegalPersonIDCardType', + 'legalPersonIdCardBackSide' => 'LegalPersonIdCardBackSide', + 'legalPersonIdCardEffTime' => 'LegalPersonIdCardEffTime', + 'legalPersonIdCardFrontSide' => 'LegalPersonIdCardFrontSide', + 'legalPersonName' => 'LegalPersonName', + 'organizationCode' => 'OrganizationCode', + 'otherFilesShrink' => 'OtherFiles', + 'ownerId' => 'OwnerId', + 'qualificationName' => 'QualificationName', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'useBySelf' => 'UseBySelf', + 'whetherShare' => 'WhetherShare', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->adminIDCardExpDate) { + $res['AdminIDCardExpDate'] = $this->adminIDCardExpDate; + } + + if (null !== $this->adminIDCardFrontFace) { + $res['AdminIDCardFrontFace'] = $this->adminIDCardFrontFace; + } + + if (null !== $this->adminIDCardNo) { + $res['AdminIDCardNo'] = $this->adminIDCardNo; + } + + if (null !== $this->adminIDCardPic) { + $res['AdminIDCardPic'] = $this->adminIDCardPic; + } + + if (null !== $this->adminIDCardType) { + $res['AdminIDCardType'] = $this->adminIDCardType; + } + + if (null !== $this->adminName) { + $res['AdminName'] = $this->adminName; + } + + if (null !== $this->adminPhoneNo) { + $res['AdminPhoneNo'] = $this->adminPhoneNo; + } + + if (null !== $this->businessLicensePicsShrink) { + $res['BusinessLicensePics'] = $this->businessLicensePicsShrink; + } + + if (null !== $this->bussinessLicenseExpDate) { + $res['BussinessLicenseExpDate'] = $this->bussinessLicenseExpDate; + } + + if (null !== $this->certifyCode) { + $res['CertifyCode'] = $this->certifyCode; + } + + if (null !== $this->companyName) { + $res['CompanyName'] = $this->companyName; + } + + if (null !== $this->companyType) { + $res['CompanyType'] = $this->companyType; + } + + if (null !== $this->legalPersonIDCardNo) { + $res['LegalPersonIDCardNo'] = $this->legalPersonIDCardNo; + } + + if (null !== $this->legalPersonIDCardType) { + $res['LegalPersonIDCardType'] = $this->legalPersonIDCardType; + } + + if (null !== $this->legalPersonIdCardBackSide) { + $res['LegalPersonIdCardBackSide'] = $this->legalPersonIdCardBackSide; + } + + if (null !== $this->legalPersonIdCardEffTime) { + $res['LegalPersonIdCardEffTime'] = $this->legalPersonIdCardEffTime; + } + + if (null !== $this->legalPersonIdCardFrontSide) { + $res['LegalPersonIdCardFrontSide'] = $this->legalPersonIdCardFrontSide; + } + + if (null !== $this->legalPersonName) { + $res['LegalPersonName'] = $this->legalPersonName; + } + + if (null !== $this->organizationCode) { + $res['OrganizationCode'] = $this->organizationCode; + } + + if (null !== $this->otherFilesShrink) { + $res['OtherFiles'] = $this->otherFilesShrink; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationName) { + $res['QualificationName'] = $this->qualificationName; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->useBySelf) { + $res['UseBySelf'] = $this->useBySelf; + } + + if (null !== $this->whetherShare) { + $res['WhetherShare'] = $this->whetherShare; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AdminIDCardExpDate'])) { + $model->adminIDCardExpDate = $map['AdminIDCardExpDate']; + } + + if (isset($map['AdminIDCardFrontFace'])) { + $model->adminIDCardFrontFace = $map['AdminIDCardFrontFace']; + } + + if (isset($map['AdminIDCardNo'])) { + $model->adminIDCardNo = $map['AdminIDCardNo']; + } + + if (isset($map['AdminIDCardPic'])) { + $model->adminIDCardPic = $map['AdminIDCardPic']; + } + + if (isset($map['AdminIDCardType'])) { + $model->adminIDCardType = $map['AdminIDCardType']; + } + + if (isset($map['AdminName'])) { + $model->adminName = $map['AdminName']; + } + + if (isset($map['AdminPhoneNo'])) { + $model->adminPhoneNo = $map['AdminPhoneNo']; + } + + if (isset($map['BusinessLicensePics'])) { + $model->businessLicensePicsShrink = $map['BusinessLicensePics']; + } + + if (isset($map['BussinessLicenseExpDate'])) { + $model->bussinessLicenseExpDate = $map['BussinessLicenseExpDate']; + } + + if (isset($map['CertifyCode'])) { + $model->certifyCode = $map['CertifyCode']; + } + + if (isset($map['CompanyName'])) { + $model->companyName = $map['CompanyName']; + } + + if (isset($map['CompanyType'])) { + $model->companyType = $map['CompanyType']; + } + + if (isset($map['LegalPersonIDCardNo'])) { + $model->legalPersonIDCardNo = $map['LegalPersonIDCardNo']; + } + + if (isset($map['LegalPersonIDCardType'])) { + $model->legalPersonIDCardType = $map['LegalPersonIDCardType']; + } + + if (isset($map['LegalPersonIdCardBackSide'])) { + $model->legalPersonIdCardBackSide = $map['LegalPersonIdCardBackSide']; + } + + if (isset($map['LegalPersonIdCardEffTime'])) { + $model->legalPersonIdCardEffTime = $map['LegalPersonIdCardEffTime']; + } + + if (isset($map['LegalPersonIdCardFrontSide'])) { + $model->legalPersonIdCardFrontSide = $map['LegalPersonIdCardFrontSide']; + } + + if (isset($map['LegalPersonName'])) { + $model->legalPersonName = $map['LegalPersonName']; + } + + if (isset($map['OrganizationCode'])) { + $model->organizationCode = $map['OrganizationCode']; + } + + if (isset($map['OtherFiles'])) { + $model->otherFilesShrink = $map['OtherFiles']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationName'])) { + $model->qualificationName = $map['QualificationName']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['UseBySelf'])) { + $model->useBySelf = $map['UseBySelf']; + } + + if (isset($map['WhetherShare'])) { + $model->whetherShare = $map['WhetherShare']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesRequest.php new file mode 100644 index 0000000..ee03f02 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesRequest.php @@ -0,0 +1,181 @@ + 'OwnerId', + 'prodCode' => 'ProdCode', + 'regionId' => 'RegionId', + 'resourceId' => 'ResourceId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'resourceType' => 'ResourceType', + 'tag' => 'Tag', + ]; + + public function validate() + { + if (\is_array($this->resourceId)) { + Model::validateArray($this->resourceId); + } + if (\is_array($this->tag)) { + Model::validateArray($this->tag); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->prodCode) { + $res['ProdCode'] = $this->prodCode; + } + + if (null !== $this->regionId) { + $res['RegionId'] = $this->regionId; + } + + if (null !== $this->resourceId) { + if (\is_array($this->resourceId)) { + $res['ResourceId'] = []; + $n1 = 0; + foreach ($this->resourceId as $item1) { + $res['ResourceId'][$n1] = $item1; + ++$n1; + } + } + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->resourceType) { + $res['ResourceType'] = $this->resourceType; + } + + if (null !== $this->tag) { + if (\is_array($this->tag)) { + $res['Tag'] = []; + $n1 = 0; + foreach ($this->tag as $item1) { + $res['Tag'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ProdCode'])) { + $model->prodCode = $map['ProdCode']; + } + + if (isset($map['RegionId'])) { + $model->regionId = $map['RegionId']; + } + + if (isset($map['ResourceId'])) { + if (!empty($map['ResourceId'])) { + $model->resourceId = []; + $n1 = 0; + foreach ($map['ResourceId'] as $item1) { + $model->resourceId[$n1] = $item1; + ++$n1; + } + } + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['ResourceType'])) { + $model->resourceType = $map['ResourceType']; + } + + if (isset($map['Tag'])) { + if (!empty($map['Tag'])) { + $model->tag = []; + $n1 = 0; + foreach ($map['Tag'] as $item1) { + $model->tag[$n1] = tag::fromMap($item1); + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesRequest/tag.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesRequest/tag.php new file mode 100644 index 0000000..f8c5b79 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesRequest/tag.php @@ -0,0 +1,62 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + 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/dysmsapi-20170525/src/Models/TagResourcesResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesResponse.php new file mode 100644 index 0000000..79ba655 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = TagResourcesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesResponseBody.php new file mode 100644 index 0000000..873b234 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesResponseBody.php @@ -0,0 +1,76 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesRequest.php new file mode 100644 index 0000000..e868e0a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesRequest.php @@ -0,0 +1,194 @@ + 'All', + 'ownerId' => 'OwnerId', + 'prodCode' => 'ProdCode', + 'regionId' => 'RegionId', + 'resourceId' => 'ResourceId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'resourceType' => 'ResourceType', + 'tagKey' => 'TagKey', + ]; + + public function validate() + { + if (\is_array($this->resourceId)) { + Model::validateArray($this->resourceId); + } + if (\is_array($this->tagKey)) { + Model::validateArray($this->tagKey); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->all) { + $res['All'] = $this->all; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->prodCode) { + $res['ProdCode'] = $this->prodCode; + } + + if (null !== $this->regionId) { + $res['RegionId'] = $this->regionId; + } + + if (null !== $this->resourceId) { + if (\is_array($this->resourceId)) { + $res['ResourceId'] = []; + $n1 = 0; + foreach ($this->resourceId as $item1) { + $res['ResourceId'][$n1] = $item1; + ++$n1; + } + } + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->resourceType) { + $res['ResourceType'] = $this->resourceType; + } + + if (null !== $this->tagKey) { + if (\is_array($this->tagKey)) { + $res['TagKey'] = []; + $n1 = 0; + foreach ($this->tagKey as $item1) { + $res['TagKey'][$n1] = $item1; + ++$n1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['All'])) { + $model->all = $map['All']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ProdCode'])) { + $model->prodCode = $map['ProdCode']; + } + + if (isset($map['RegionId'])) { + $model->regionId = $map['RegionId']; + } + + if (isset($map['ResourceId'])) { + if (!empty($map['ResourceId'])) { + $model->resourceId = []; + $n1 = 0; + foreach ($map['ResourceId'] as $item1) { + $model->resourceId[$n1] = $item1; + ++$n1; + } + } + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['ResourceType'])) { + $model->resourceType = $map['ResourceType']; + } + + if (isset($map['TagKey'])) { + if (!empty($map['TagKey'])) { + $model->tagKey = []; + $n1 = 0; + foreach ($map['TagKey'] as $item1) { + $model->tagKey[$n1] = $item1; + ++$n1; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesResponse.php new file mode 100644 index 0000000..35422a9 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = UntagResourcesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesResponseBody.php new file mode 100644 index 0000000..90e5d3a --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesResponseBody.php @@ -0,0 +1,76 @@ + 'Code', + 'data' => 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateExtCodeSignRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateExtCodeSignRequest.php new file mode 100644 index 0000000..98c56cb --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateExtCodeSignRequest.php @@ -0,0 +1,118 @@ + 'ExistExtCode', + 'newExtCode' => 'NewExtCode', + 'ownerId' => 'OwnerId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->existExtCode) { + $res['ExistExtCode'] = $this->existExtCode; + } + + if (null !== $this->newExtCode) { + $res['NewExtCode'] = $this->newExtCode; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ExistExtCode'])) { + $model->existExtCode = $map['ExistExtCode']; + } + + if (isset($map['NewExtCode'])) { + $model->newExtCode = $map['NewExtCode']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateExtCodeSignResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateExtCodeSignResponse.php new file mode 100644 index 0000000..96af907 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateExtCodeSignResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = UpdateExtCodeSignResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateExtCodeSignResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateExtCodeSignResponseBody.php new file mode 100644 index 0000000..f4609a3 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateExtCodeSignResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateRCSSignatureRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateRCSSignatureRequest.php new file mode 100644 index 0000000..abafc2b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateRCSSignatureRequest.php @@ -0,0 +1,216 @@ + 'BackgroundImage', + 'bubbleColor' => 'BubbleColor', + 'category' => 'Category', + 'description' => 'Description', + 'latitude' => 'Latitude', + 'logo' => 'Logo', + 'longitude' => 'Longitude', + 'officeAddress' => 'OfficeAddress', + 'serviceEmail' => 'ServiceEmail', + 'servicePhone' => 'ServicePhone', + 'serviceTerms' => 'ServiceTerms', + 'serviceWebsite' => 'ServiceWebsite', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->backgroundImage) { + $res['BackgroundImage'] = $this->backgroundImage; + } + + if (null !== $this->bubbleColor) { + $res['BubbleColor'] = $this->bubbleColor; + } + + if (null !== $this->category) { + $res['Category'] = $this->category; + } + + if (null !== $this->description) { + $res['Description'] = $this->description; + } + + if (null !== $this->latitude) { + $res['Latitude'] = $this->latitude; + } + + if (null !== $this->logo) { + $res['Logo'] = $this->logo; + } + + if (null !== $this->longitude) { + $res['Longitude'] = $this->longitude; + } + + if (null !== $this->officeAddress) { + $res['OfficeAddress'] = $this->officeAddress; + } + + if (null !== $this->serviceEmail) { + $res['ServiceEmail'] = $this->serviceEmail; + } + + if (null !== $this->servicePhone) { + $res['ServicePhone'] = $this->servicePhone; + } + + if (null !== $this->serviceTerms) { + $res['ServiceTerms'] = $this->serviceTerms; + } + + if (null !== $this->serviceWebsite) { + $res['ServiceWebsite'] = $this->serviceWebsite; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BackgroundImage'])) { + $model->backgroundImage = $map['BackgroundImage']; + } + + if (isset($map['BubbleColor'])) { + $model->bubbleColor = $map['BubbleColor']; + } + + if (isset($map['Category'])) { + $model->category = $map['Category']; + } + + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + + if (isset($map['Latitude'])) { + $model->latitude = $map['Latitude']; + } + + if (isset($map['Logo'])) { + $model->logo = $map['Logo']; + } + + if (isset($map['Longitude'])) { + $model->longitude = $map['Longitude']; + } + + if (isset($map['OfficeAddress'])) { + $model->officeAddress = $map['OfficeAddress']; + } + + if (isset($map['ServiceEmail'])) { + $model->serviceEmail = $map['ServiceEmail']; + } + + if (isset($map['ServicePhone'])) { + $model->servicePhone = $map['ServicePhone']; + } + + if (isset($map['ServiceTerms'])) { + $model->serviceTerms = $map['ServiceTerms']; + } + + if (isset($map['ServiceWebsite'])) { + $model->serviceWebsite = $map['ServiceWebsite']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateRCSSignatureResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateRCSSignatureResponse.php new file mode 100644 index 0000000..b232f88 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateRCSSignatureResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = UpdateRCSSignatureResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateRCSSignatureResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateRCSSignatureResponseBody.php new file mode 100644 index 0000000..4c1ce36 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateRCSSignatureResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationRequest.php new file mode 100644 index 0000000..c728934 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationRequest.php @@ -0,0 +1,392 @@ + 'AdminIDCardExpDate', + 'adminIDCardFrontFace' => 'AdminIDCardFrontFace', + 'adminIDCardNo' => 'AdminIDCardNo', + 'adminIDCardPic' => 'AdminIDCardPic', + 'adminIDCardType' => 'AdminIDCardType', + 'adminName' => 'AdminName', + 'adminPhoneNo' => 'AdminPhoneNo', + 'businessLicensePics' => 'BusinessLicensePics', + 'bussinessLicenseExpDate' => 'BussinessLicenseExpDate', + 'certifyCode' => 'CertifyCode', + 'companyName' => 'CompanyName', + 'legalPersonIDCardNo' => 'LegalPersonIDCardNo', + 'legalPersonIDCardType' => 'LegalPersonIDCardType', + 'legalPersonIdCardBackSide' => 'LegalPersonIdCardBackSide', + 'legalPersonIdCardEffTime' => 'LegalPersonIdCardEffTime', + 'legalPersonIdCardFrontSide' => 'LegalPersonIdCardFrontSide', + 'legalPersonName' => 'LegalPersonName', + 'orderId' => 'OrderId', + 'otherFiles' => 'OtherFiles', + 'ownerId' => 'OwnerId', + 'qualificationGroupId' => 'QualificationGroupId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + if (\is_array($this->businessLicensePics)) { + Model::validateArray($this->businessLicensePics); + } + if (\is_array($this->otherFiles)) { + Model::validateArray($this->otherFiles); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->adminIDCardExpDate) { + $res['AdminIDCardExpDate'] = $this->adminIDCardExpDate; + } + + if (null !== $this->adminIDCardFrontFace) { + $res['AdminIDCardFrontFace'] = $this->adminIDCardFrontFace; + } + + if (null !== $this->adminIDCardNo) { + $res['AdminIDCardNo'] = $this->adminIDCardNo; + } + + if (null !== $this->adminIDCardPic) { + $res['AdminIDCardPic'] = $this->adminIDCardPic; + } + + if (null !== $this->adminIDCardType) { + $res['AdminIDCardType'] = $this->adminIDCardType; + } + + if (null !== $this->adminName) { + $res['AdminName'] = $this->adminName; + } + + if (null !== $this->adminPhoneNo) { + $res['AdminPhoneNo'] = $this->adminPhoneNo; + } + + if (null !== $this->businessLicensePics) { + if (\is_array($this->businessLicensePics)) { + $res['BusinessLicensePics'] = []; + $n1 = 0; + foreach ($this->businessLicensePics as $item1) { + $res['BusinessLicensePics'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->bussinessLicenseExpDate) { + $res['BussinessLicenseExpDate'] = $this->bussinessLicenseExpDate; + } + + if (null !== $this->certifyCode) { + $res['CertifyCode'] = $this->certifyCode; + } + + if (null !== $this->companyName) { + $res['CompanyName'] = $this->companyName; + } + + if (null !== $this->legalPersonIDCardNo) { + $res['LegalPersonIDCardNo'] = $this->legalPersonIDCardNo; + } + + if (null !== $this->legalPersonIDCardType) { + $res['LegalPersonIDCardType'] = $this->legalPersonIDCardType; + } + + if (null !== $this->legalPersonIdCardBackSide) { + $res['LegalPersonIdCardBackSide'] = $this->legalPersonIdCardBackSide; + } + + if (null !== $this->legalPersonIdCardEffTime) { + $res['LegalPersonIdCardEffTime'] = $this->legalPersonIdCardEffTime; + } + + if (null !== $this->legalPersonIdCardFrontSide) { + $res['LegalPersonIdCardFrontSide'] = $this->legalPersonIdCardFrontSide; + } + + if (null !== $this->legalPersonName) { + $res['LegalPersonName'] = $this->legalPersonName; + } + + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->otherFiles) { + if (\is_array($this->otherFiles)) { + $res['OtherFiles'] = []; + $n1 = 0; + foreach ($this->otherFiles as $item1) { + $res['OtherFiles'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1; + ++$n1; + } + } + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationGroupId) { + $res['QualificationGroupId'] = $this->qualificationGroupId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AdminIDCardExpDate'])) { + $model->adminIDCardExpDate = $map['AdminIDCardExpDate']; + } + + if (isset($map['AdminIDCardFrontFace'])) { + $model->adminIDCardFrontFace = $map['AdminIDCardFrontFace']; + } + + if (isset($map['AdminIDCardNo'])) { + $model->adminIDCardNo = $map['AdminIDCardNo']; + } + + if (isset($map['AdminIDCardPic'])) { + $model->adminIDCardPic = $map['AdminIDCardPic']; + } + + if (isset($map['AdminIDCardType'])) { + $model->adminIDCardType = $map['AdminIDCardType']; + } + + if (isset($map['AdminName'])) { + $model->adminName = $map['AdminName']; + } + + if (isset($map['AdminPhoneNo'])) { + $model->adminPhoneNo = $map['AdminPhoneNo']; + } + + if (isset($map['BusinessLicensePics'])) { + if (!empty($map['BusinessLicensePics'])) { + $model->businessLicensePics = []; + $n1 = 0; + foreach ($map['BusinessLicensePics'] as $item1) { + $model->businessLicensePics[$n1] = businessLicensePics::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['BussinessLicenseExpDate'])) { + $model->bussinessLicenseExpDate = $map['BussinessLicenseExpDate']; + } + + if (isset($map['CertifyCode'])) { + $model->certifyCode = $map['CertifyCode']; + } + + if (isset($map['CompanyName'])) { + $model->companyName = $map['CompanyName']; + } + + if (isset($map['LegalPersonIDCardNo'])) { + $model->legalPersonIDCardNo = $map['LegalPersonIDCardNo']; + } + + if (isset($map['LegalPersonIDCardType'])) { + $model->legalPersonIDCardType = $map['LegalPersonIDCardType']; + } + + if (isset($map['LegalPersonIdCardBackSide'])) { + $model->legalPersonIdCardBackSide = $map['LegalPersonIdCardBackSide']; + } + + if (isset($map['LegalPersonIdCardEffTime'])) { + $model->legalPersonIdCardEffTime = $map['LegalPersonIdCardEffTime']; + } + + if (isset($map['LegalPersonIdCardFrontSide'])) { + $model->legalPersonIdCardFrontSide = $map['LegalPersonIdCardFrontSide']; + } + + if (isset($map['LegalPersonName'])) { + $model->legalPersonName = $map['LegalPersonName']; + } + + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['OtherFiles'])) { + if (!empty($map['OtherFiles'])) { + $model->otherFiles = []; + $n1 = 0; + foreach ($map['OtherFiles'] as $item1) { + $model->otherFiles[$n1] = otherFiles::fromMap($item1); + ++$n1; + } + } + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationGroupId'])) { + $model->qualificationGroupId = $map['QualificationGroupId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationRequest/businessLicensePics.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationRequest/businessLicensePics.php new file mode 100644 index 0000000..c9d9aab --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationRequest/businessLicensePics.php @@ -0,0 +1,62 @@ + 'LicensePic', + 'type' => 'Type', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->licensePic) { + $res['LicensePic'] = $this->licensePic; + } + + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LicensePic'])) { + $model->licensePic = $map['LicensePic']; + } + + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationRequest/otherFiles.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationRequest/otherFiles.php new file mode 100644 index 0000000..d775da3 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationRequest/otherFiles.php @@ -0,0 +1,48 @@ + 'LicensePic', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->licensePic) { + $res['LicensePic'] = $this->licensePic; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LicensePic'])) { + $model->licensePic = $map['LicensePic']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationResponse.php new file mode 100644 index 0000000..58975ec --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = UpdateSmsQualificationResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationResponseBody.php new file mode 100644 index 0000000..21f4719 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationShrinkRequest.php new file mode 100644 index 0000000..b1c8086 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsQualificationShrinkRequest.php @@ -0,0 +1,356 @@ + 'AdminIDCardExpDate', + 'adminIDCardFrontFace' => 'AdminIDCardFrontFace', + 'adminIDCardNo' => 'AdminIDCardNo', + 'adminIDCardPic' => 'AdminIDCardPic', + 'adminIDCardType' => 'AdminIDCardType', + 'adminName' => 'AdminName', + 'adminPhoneNo' => 'AdminPhoneNo', + 'businessLicensePicsShrink' => 'BusinessLicensePics', + 'bussinessLicenseExpDate' => 'BussinessLicenseExpDate', + 'certifyCode' => 'CertifyCode', + 'companyName' => 'CompanyName', + 'legalPersonIDCardNo' => 'LegalPersonIDCardNo', + 'legalPersonIDCardType' => 'LegalPersonIDCardType', + 'legalPersonIdCardBackSide' => 'LegalPersonIdCardBackSide', + 'legalPersonIdCardEffTime' => 'LegalPersonIdCardEffTime', + 'legalPersonIdCardFrontSide' => 'LegalPersonIdCardFrontSide', + 'legalPersonName' => 'LegalPersonName', + 'orderId' => 'OrderId', + 'otherFilesShrink' => 'OtherFiles', + 'ownerId' => 'OwnerId', + 'qualificationGroupId' => 'QualificationGroupId', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->adminIDCardExpDate) { + $res['AdminIDCardExpDate'] = $this->adminIDCardExpDate; + } + + if (null !== $this->adminIDCardFrontFace) { + $res['AdminIDCardFrontFace'] = $this->adminIDCardFrontFace; + } + + if (null !== $this->adminIDCardNo) { + $res['AdminIDCardNo'] = $this->adminIDCardNo; + } + + if (null !== $this->adminIDCardPic) { + $res['AdminIDCardPic'] = $this->adminIDCardPic; + } + + if (null !== $this->adminIDCardType) { + $res['AdminIDCardType'] = $this->adminIDCardType; + } + + if (null !== $this->adminName) { + $res['AdminName'] = $this->adminName; + } + + if (null !== $this->adminPhoneNo) { + $res['AdminPhoneNo'] = $this->adminPhoneNo; + } + + if (null !== $this->businessLicensePicsShrink) { + $res['BusinessLicensePics'] = $this->businessLicensePicsShrink; + } + + if (null !== $this->bussinessLicenseExpDate) { + $res['BussinessLicenseExpDate'] = $this->bussinessLicenseExpDate; + } + + if (null !== $this->certifyCode) { + $res['CertifyCode'] = $this->certifyCode; + } + + if (null !== $this->companyName) { + $res['CompanyName'] = $this->companyName; + } + + if (null !== $this->legalPersonIDCardNo) { + $res['LegalPersonIDCardNo'] = $this->legalPersonIDCardNo; + } + + if (null !== $this->legalPersonIDCardType) { + $res['LegalPersonIDCardType'] = $this->legalPersonIDCardType; + } + + if (null !== $this->legalPersonIdCardBackSide) { + $res['LegalPersonIdCardBackSide'] = $this->legalPersonIdCardBackSide; + } + + if (null !== $this->legalPersonIdCardEffTime) { + $res['LegalPersonIdCardEffTime'] = $this->legalPersonIdCardEffTime; + } + + if (null !== $this->legalPersonIdCardFrontSide) { + $res['LegalPersonIdCardFrontSide'] = $this->legalPersonIdCardFrontSide; + } + + if (null !== $this->legalPersonName) { + $res['LegalPersonName'] = $this->legalPersonName; + } + + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->otherFilesShrink) { + $res['OtherFiles'] = $this->otherFilesShrink; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationGroupId) { + $res['QualificationGroupId'] = $this->qualificationGroupId; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AdminIDCardExpDate'])) { + $model->adminIDCardExpDate = $map['AdminIDCardExpDate']; + } + + if (isset($map['AdminIDCardFrontFace'])) { + $model->adminIDCardFrontFace = $map['AdminIDCardFrontFace']; + } + + if (isset($map['AdminIDCardNo'])) { + $model->adminIDCardNo = $map['AdminIDCardNo']; + } + + if (isset($map['AdminIDCardPic'])) { + $model->adminIDCardPic = $map['AdminIDCardPic']; + } + + if (isset($map['AdminIDCardType'])) { + $model->adminIDCardType = $map['AdminIDCardType']; + } + + if (isset($map['AdminName'])) { + $model->adminName = $map['AdminName']; + } + + if (isset($map['AdminPhoneNo'])) { + $model->adminPhoneNo = $map['AdminPhoneNo']; + } + + if (isset($map['BusinessLicensePics'])) { + $model->businessLicensePicsShrink = $map['BusinessLicensePics']; + } + + if (isset($map['BussinessLicenseExpDate'])) { + $model->bussinessLicenseExpDate = $map['BussinessLicenseExpDate']; + } + + if (isset($map['CertifyCode'])) { + $model->certifyCode = $map['CertifyCode']; + } + + if (isset($map['CompanyName'])) { + $model->companyName = $map['CompanyName']; + } + + if (isset($map['LegalPersonIDCardNo'])) { + $model->legalPersonIDCardNo = $map['LegalPersonIDCardNo']; + } + + if (isset($map['LegalPersonIDCardType'])) { + $model->legalPersonIDCardType = $map['LegalPersonIDCardType']; + } + + if (isset($map['LegalPersonIdCardBackSide'])) { + $model->legalPersonIdCardBackSide = $map['LegalPersonIdCardBackSide']; + } + + if (isset($map['LegalPersonIdCardEffTime'])) { + $model->legalPersonIdCardEffTime = $map['LegalPersonIdCardEffTime']; + } + + if (isset($map['LegalPersonIdCardFrontSide'])) { + $model->legalPersonIdCardFrontSide = $map['LegalPersonIdCardFrontSide']; + } + + if (isset($map['LegalPersonName'])) { + $model->legalPersonName = $map['LegalPersonName']; + } + + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['OtherFiles'])) { + $model->otherFilesShrink = $map['OtherFiles']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationGroupId'])) { + $model->qualificationGroupId = $map['QualificationGroupId']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignRequest.php new file mode 100644 index 0000000..e8e1141 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignRequest.php @@ -0,0 +1,247 @@ + 'AppIcpRecordId', + 'applySceneContent' => 'ApplySceneContent', + 'authorizationLetterId' => 'AuthorizationLetterId', + 'moreData' => 'MoreData', + 'ownerId' => 'OwnerId', + 'qualificationId' => 'QualificationId', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'signSource' => 'SignSource', + 'signType' => 'SignType', + 'thirdParty' => 'ThirdParty', + 'trademarkId' => 'TrademarkId', + ]; + + public function validate() + { + if (\is_array($this->moreData)) { + Model::validateArray($this->moreData); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->appIcpRecordId) { + $res['AppIcpRecordId'] = $this->appIcpRecordId; + } + + if (null !== $this->applySceneContent) { + $res['ApplySceneContent'] = $this->applySceneContent; + } + + if (null !== $this->authorizationLetterId) { + $res['AuthorizationLetterId'] = $this->authorizationLetterId; + } + + if (null !== $this->moreData) { + if (\is_array($this->moreData)) { + $res['MoreData'] = []; + $n1 = 0; + foreach ($this->moreData as $item1) { + $res['MoreData'][$n1] = $item1; + ++$n1; + } + } + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationId) { + $res['QualificationId'] = $this->qualificationId; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->signSource) { + $res['SignSource'] = $this->signSource; + } + + if (null !== $this->signType) { + $res['SignType'] = $this->signType; + } + + if (null !== $this->thirdParty) { + $res['ThirdParty'] = $this->thirdParty; + } + + if (null !== $this->trademarkId) { + $res['TrademarkId'] = $this->trademarkId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppIcpRecordId'])) { + $model->appIcpRecordId = $map['AppIcpRecordId']; + } + + if (isset($map['ApplySceneContent'])) { + $model->applySceneContent = $map['ApplySceneContent']; + } + + if (isset($map['AuthorizationLetterId'])) { + $model->authorizationLetterId = $map['AuthorizationLetterId']; + } + + if (isset($map['MoreData'])) { + if (!empty($map['MoreData'])) { + $model->moreData = []; + $n1 = 0; + foreach ($map['MoreData'] as $item1) { + $model->moreData[$n1] = $item1; + ++$n1; + } + } + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationId'])) { + $model->qualificationId = $map['QualificationId']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SignSource'])) { + $model->signSource = $map['SignSource']; + } + + if (isset($map['SignType'])) { + $model->signType = $map['SignType']; + } + + if (isset($map['ThirdParty'])) { + $model->thirdParty = $map['ThirdParty']; + } + + if (isset($map['TrademarkId'])) { + $model->trademarkId = $map['TrademarkId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignResponse.php new file mode 100644 index 0000000..bd8c617 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = UpdateSmsSignResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignResponseBody.php new file mode 100644 index 0000000..6b4ae83 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignResponseBody.php @@ -0,0 +1,104 @@ + 'Code', + 'message' => 'Message', + 'orderId' => 'OrderId', + 'requestId' => 'RequestId', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignShrinkRequest.php new file mode 100644 index 0000000..cc953ef --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsSignShrinkRequest.php @@ -0,0 +1,230 @@ + 'AppIcpRecordId', + 'applySceneContent' => 'ApplySceneContent', + 'authorizationLetterId' => 'AuthorizationLetterId', + 'moreDataShrink' => 'MoreData', + 'ownerId' => 'OwnerId', + 'qualificationId' => 'QualificationId', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'signName' => 'SignName', + 'signSource' => 'SignSource', + 'signType' => 'SignType', + 'thirdParty' => 'ThirdParty', + 'trademarkId' => 'TrademarkId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->appIcpRecordId) { + $res['AppIcpRecordId'] = $this->appIcpRecordId; + } + + if (null !== $this->applySceneContent) { + $res['ApplySceneContent'] = $this->applySceneContent; + } + + if (null !== $this->authorizationLetterId) { + $res['AuthorizationLetterId'] = $this->authorizationLetterId; + } + + if (null !== $this->moreDataShrink) { + $res['MoreData'] = $this->moreDataShrink; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->qualificationId) { + $res['QualificationId'] = $this->qualificationId; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + if (null !== $this->signSource) { + $res['SignSource'] = $this->signSource; + } + + if (null !== $this->signType) { + $res['SignType'] = $this->signType; + } + + if (null !== $this->thirdParty) { + $res['ThirdParty'] = $this->thirdParty; + } + + if (null !== $this->trademarkId) { + $res['TrademarkId'] = $this->trademarkId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppIcpRecordId'])) { + $model->appIcpRecordId = $map['AppIcpRecordId']; + } + + if (isset($map['ApplySceneContent'])) { + $model->applySceneContent = $map['ApplySceneContent']; + } + + if (isset($map['AuthorizationLetterId'])) { + $model->authorizationLetterId = $map['AuthorizationLetterId']; + } + + if (isset($map['MoreData'])) { + $model->moreDataShrink = $map['MoreData']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['QualificationId'])) { + $model->qualificationId = $map['QualificationId']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + if (isset($map['SignSource'])) { + $model->signSource = $map['SignSource']; + } + + if (isset($map['SignType'])) { + $model->signType = $map['SignType']; + } + + if (isset($map['ThirdParty'])) { + $model->thirdParty = $map['ThirdParty']; + } + + if (isset($map['TrademarkId'])) { + $model->trademarkId = $map['TrademarkId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateRequest.php new file mode 100644 index 0000000..601d227 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateRequest.php @@ -0,0 +1,247 @@ + 'ApplySceneContent', + 'intlType' => 'IntlType', + 'moreData' => 'MoreData', + 'ownerId' => 'OwnerId', + 'relatedSignName' => 'RelatedSignName', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'templateCode' => 'TemplateCode', + 'templateContent' => 'TemplateContent', + 'templateName' => 'TemplateName', + 'templateRule' => 'TemplateRule', + 'templateType' => 'TemplateType', + 'trafficDriving' => 'TrafficDriving', + ]; + + public function validate() + { + if (\is_array($this->moreData)) { + Model::validateArray($this->moreData); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->applySceneContent) { + $res['ApplySceneContent'] = $this->applySceneContent; + } + + if (null !== $this->intlType) { + $res['IntlType'] = $this->intlType; + } + + if (null !== $this->moreData) { + if (\is_array($this->moreData)) { + $res['MoreData'] = []; + $n1 = 0; + foreach ($this->moreData as $item1) { + $res['MoreData'][$n1] = $item1; + ++$n1; + } + } + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->relatedSignName) { + $res['RelatedSignName'] = $this->relatedSignName; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateContent) { + $res['TemplateContent'] = $this->templateContent; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateRule) { + $res['TemplateRule'] = $this->templateRule; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + if (null !== $this->trafficDriving) { + $res['TrafficDriving'] = $this->trafficDriving; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ApplySceneContent'])) { + $model->applySceneContent = $map['ApplySceneContent']; + } + + if (isset($map['IntlType'])) { + $model->intlType = $map['IntlType']; + } + + if (isset($map['MoreData'])) { + if (!empty($map['MoreData'])) { + $model->moreData = []; + $n1 = 0; + foreach ($map['MoreData'] as $item1) { + $model->moreData[$n1] = $item1; + ++$n1; + } + } + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['RelatedSignName'])) { + $model->relatedSignName = $map['RelatedSignName']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateContent'])) { + $model->templateContent = $map['TemplateContent']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateRule'])) { + $model->templateRule = $map['TemplateRule']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + if (isset($map['TrafficDriving'])) { + $model->trafficDriving = $map['TrafficDriving']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateResponse.php new file mode 100644 index 0000000..280aad5 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = UpdateSmsTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateResponseBody.php new file mode 100644 index 0000000..06ec748 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateResponseBody.php @@ -0,0 +1,118 @@ + 'Code', + 'message' => 'Message', + 'orderId' => 'OrderId', + 'requestId' => 'RequestId', + 'templateCode' => 'TemplateCode', + 'templateName' => 'TemplateName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->orderId) { + $res['OrderId'] = $this->orderId; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['OrderId'])) { + $model->orderId = $map['OrderId']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateShrinkRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateShrinkRequest.php new file mode 100644 index 0000000..c3d8f8d --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpdateSmsTemplateShrinkRequest.php @@ -0,0 +1,230 @@ + 'ApplySceneContent', + 'intlType' => 'IntlType', + 'moreDataShrink' => 'MoreData', + 'ownerId' => 'OwnerId', + 'relatedSignName' => 'RelatedSignName', + 'remark' => 'Remark', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + 'templateCode' => 'TemplateCode', + 'templateContent' => 'TemplateContent', + 'templateName' => 'TemplateName', + 'templateRule' => 'TemplateRule', + 'templateType' => 'TemplateType', + 'trafficDriving' => 'TrafficDriving', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->applySceneContent) { + $res['ApplySceneContent'] = $this->applySceneContent; + } + + if (null !== $this->intlType) { + $res['IntlType'] = $this->intlType; + } + + if (null !== $this->moreDataShrink) { + $res['MoreData'] = $this->moreDataShrink; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->relatedSignName) { + $res['RelatedSignName'] = $this->relatedSignName; + } + + if (null !== $this->remark) { + $res['Remark'] = $this->remark; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + if (null !== $this->templateCode) { + $res['TemplateCode'] = $this->templateCode; + } + + if (null !== $this->templateContent) { + $res['TemplateContent'] = $this->templateContent; + } + + if (null !== $this->templateName) { + $res['TemplateName'] = $this->templateName; + } + + if (null !== $this->templateRule) { + $res['TemplateRule'] = $this->templateRule; + } + + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + + if (null !== $this->trafficDriving) { + $res['TrafficDriving'] = $this->trafficDriving; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ApplySceneContent'])) { + $model->applySceneContent = $map['ApplySceneContent']; + } + + if (isset($map['IntlType'])) { + $model->intlType = $map['IntlType']; + } + + if (isset($map['MoreData'])) { + $model->moreDataShrink = $map['MoreData']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['RelatedSignName'])) { + $model->relatedSignName = $map['RelatedSignName']; + } + + if (isset($map['Remark'])) { + $model->remark = $map['Remark']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + if (isset($map['TemplateCode'])) { + $model->templateCode = $map['TemplateCode']; + } + + if (isset($map['TemplateContent'])) { + $model->templateContent = $map['TemplateContent']; + } + + if (isset($map['TemplateName'])) { + $model->templateName = $map['TemplateName']; + } + + if (isset($map['TemplateRule'])) { + $model->templateRule = $map['TemplateRule']; + } + + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + + if (isset($map['TrafficDriving'])) { + $model->trafficDriving = $map['TrafficDriving']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureRequest.php new file mode 100644 index 0000000..21abd61 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureRequest.php @@ -0,0 +1,216 @@ + 'BackgroundImage', + 'bubbleColor' => 'BubbleColor', + 'category' => 'Category', + 'description' => 'Description', + 'latitude' => 'Latitude', + 'logo' => 'Logo', + 'longitude' => 'Longitude', + 'officeAddress' => 'OfficeAddress', + 'serviceEmail' => 'ServiceEmail', + 'servicePhone' => 'ServicePhone', + 'serviceTerms' => 'ServiceTerms', + 'serviceWebsite' => 'ServiceWebsite', + 'signName' => 'SignName', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->backgroundImage) { + $res['BackgroundImage'] = $this->backgroundImage; + } + + if (null !== $this->bubbleColor) { + $res['BubbleColor'] = $this->bubbleColor; + } + + if (null !== $this->category) { + $res['Category'] = $this->category; + } + + if (null !== $this->description) { + $res['Description'] = $this->description; + } + + if (null !== $this->latitude) { + $res['Latitude'] = $this->latitude; + } + + if (null !== $this->logo) { + $res['Logo'] = $this->logo; + } + + if (null !== $this->longitude) { + $res['Longitude'] = $this->longitude; + } + + if (null !== $this->officeAddress) { + $res['OfficeAddress'] = $this->officeAddress; + } + + if (null !== $this->serviceEmail) { + $res['ServiceEmail'] = $this->serviceEmail; + } + + if (null !== $this->servicePhone) { + $res['ServicePhone'] = $this->servicePhone; + } + + if (null !== $this->serviceTerms) { + $res['ServiceTerms'] = $this->serviceTerms; + } + + if (null !== $this->serviceWebsite) { + $res['ServiceWebsite'] = $this->serviceWebsite; + } + + if (null !== $this->signName) { + $res['SignName'] = $this->signName; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BackgroundImage'])) { + $model->backgroundImage = $map['BackgroundImage']; + } + + if (isset($map['BubbleColor'])) { + $model->bubbleColor = $map['BubbleColor']; + } + + if (isset($map['Category'])) { + $model->category = $map['Category']; + } + + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + + if (isset($map['Latitude'])) { + $model->latitude = $map['Latitude']; + } + + if (isset($map['Logo'])) { + $model->logo = $map['Logo']; + } + + if (isset($map['Longitude'])) { + $model->longitude = $map['Longitude']; + } + + if (isset($map['OfficeAddress'])) { + $model->officeAddress = $map['OfficeAddress']; + } + + if (isset($map['ServiceEmail'])) { + $model->serviceEmail = $map['ServiceEmail']; + } + + if (isset($map['ServicePhone'])) { + $model->servicePhone = $map['ServicePhone']; + } + + if (isset($map['ServiceTerms'])) { + $model->serviceTerms = $map['ServiceTerms']; + } + + if (isset($map['ServiceWebsite'])) { + $model->serviceWebsite = $map['ServiceWebsite']; + } + + if (isset($map['SignName'])) { + $model->signName = $map['SignName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureResponse.php new file mode 100644 index 0000000..2a806db --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = UpgradeToRCSSignatureResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureResponseBody.php new file mode 100644 index 0000000..92036c7 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureResponseBody/data.php new file mode 100644 index 0000000..22880b4 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/UpgradeToRCSSignatureResponseBody/data.php @@ -0,0 +1,62 @@ + 'ChatbotCode', + 'signId' => 'SignId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->chatbotCode) { + $res['ChatbotCode'] = $this->chatbotCode; + } + + if (null !== $this->signId) { + $res['SignId'] = $this->signId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ChatbotCode'])) { + $model->chatbotCode = $map['ChatbotCode']; + } + + if (isset($map['SignId'])) { + $model->signId = $map['SignId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ValidPhoneCodeRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ValidPhoneCodeRequest.php new file mode 100644 index 0000000..5ef95a6 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ValidPhoneCodeRequest.php @@ -0,0 +1,104 @@ + 'CertifyCode', + 'ownerId' => 'OwnerId', + 'phoneNo' => 'PhoneNo', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->certifyCode) { + $res['CertifyCode'] = $this->certifyCode; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->phoneNo) { + $res['PhoneNo'] = $this->phoneNo; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CertifyCode'])) { + $model->certifyCode = $map['CertifyCode']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PhoneNo'])) { + $model->phoneNo = $map['PhoneNo']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ValidPhoneCodeResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ValidPhoneCodeResponse.php new file mode 100644 index 0000000..a850f9e --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ValidPhoneCodeResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = ValidPhoneCodeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/ValidPhoneCodeResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ValidPhoneCodeResponseBody.php new file mode 100644 index 0000000..84ffd6b --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/ValidPhoneCodeResponseBody.php @@ -0,0 +1,118 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoRequest.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoRequest.php new file mode 100644 index 0000000..97af3cc --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoRequest.php @@ -0,0 +1,118 @@ + 'ExpressCompanyCode', + 'mailNo' => 'MailNo', + 'ownerId' => 'OwnerId', + 'platformCompanyCode' => 'PlatformCompanyCode', + 'resourceOwnerAccount' => 'ResourceOwnerAccount', + 'resourceOwnerId' => 'ResourceOwnerId', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->expressCompanyCode) { + $res['ExpressCompanyCode'] = $this->expressCompanyCode; + } + + if (null !== $this->mailNo) { + $res['MailNo'] = $this->mailNo; + } + + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + if (null !== $this->platformCompanyCode) { + $res['PlatformCompanyCode'] = $this->platformCompanyCode; + } + + if (null !== $this->resourceOwnerAccount) { + $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; + } + + if (null !== $this->resourceOwnerId) { + $res['ResourceOwnerId'] = $this->resourceOwnerId; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ExpressCompanyCode'])) { + $model->expressCompanyCode = $map['ExpressCompanyCode']; + } + + if (isset($map['MailNo'])) { + $model->mailNo = $map['MailNo']; + } + + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + if (isset($map['PlatformCompanyCode'])) { + $model->platformCompanyCode = $map['PlatformCompanyCode']; + } + + if (isset($map['ResourceOwnerAccount'])) { + $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; + } + + if (isset($map['ResourceOwnerId'])) { + $model->resourceOwnerId = $map['ResourceOwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoResponse.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoResponse.php new file mode 100644 index 0000000..a7f2bc7 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoResponse.php @@ -0,0 +1,92 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + if (\is_array($this->headers)) { + Model::validateArray($this->headers); + } + if (null !== $this->body) { + $this->body->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if (\is_array($this->headers)) { + $res['headers'] = []; + foreach ($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toArray($noStream) : $this->body; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if (!empty($map['headers'])) { + $model->headers = []; + foreach ($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['body'])) { + $model->body = VerifyLogisticsSmsMailNoResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoResponseBody.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoResponseBody.php new file mode 100644 index 0000000..31f4a62 --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoResponseBody.php @@ -0,0 +1,122 @@ + 'AccessDeniedDetail', + 'code' => 'Code', + 'data' => 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'success' => 'Success', + ]; + + public function validate() + { + if (null !== $this->data) { + $this->data->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessDeniedDetail) { + $res['AccessDeniedDetail'] = $this->accessDeniedDetail; + } + + if (null !== $this->code) { + $res['Code'] = $this->code; + } + + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toArray($noStream) : $this->data; + } + + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessDeniedDetail'])) { + $model->accessDeniedDetail = $map['AccessDeniedDetail']; + } + + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + + 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']; + } + + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoResponseBody/data.php b/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoResponseBody/data.php new file mode 100644 index 0000000..5a3e5ec --- /dev/null +++ b/vendor/alibabacloud/dysmsapi-20170525/src/Models/VerifyLogisticsSmsMailNoResponseBody/data.php @@ -0,0 +1,76 @@ + 'ExpressCompanyCode', + 'mobileSuffix' => 'MobileSuffix', + 'verifyResult' => 'VerifyResult', + ]; + + public function validate() + { + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->expressCompanyCode) { + $res['ExpressCompanyCode'] = $this->expressCompanyCode; + } + + if (null !== $this->mobileSuffix) { + $res['MobileSuffix'] = $this->mobileSuffix; + } + + if (null !== $this->verifyResult) { + $res['VerifyResult'] = $this->verifyResult; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ExpressCompanyCode'])) { + $model->expressCompanyCode = $map['ExpressCompanyCode']; + } + + if (isset($map['MobileSuffix'])) { + $model->mobileSuffix = $map['MobileSuffix']; + } + + if (isset($map['VerifyResult'])) { + $model->verifyResult = $map['VerifyResult']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/gateway-spi/.gitignore b/vendor/alibabacloud/gateway-spi/.gitignore new file mode 100644 index 0000000..89c7aa5 --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/.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/gateway-spi/.php_cs.dist b/vendor/alibabacloud/gateway-spi/.php_cs.dist new file mode 100644 index 0000000..8617ec2 --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/.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/gateway-spi/autoload.php b/vendor/alibabacloud/gateway-spi/autoload.php new file mode 100644 index 0000000..f48d6cb --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/autoload.php @@ -0,0 +1,15 @@ +5.5", + "alibabacloud/credentials": "^1.1" + }, + "autoload": { + "psr-4": { + "Darabonba\\GatewaySpi\\": "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/gateway-spi/src/Client.php b/vendor/alibabacloud/gateway-spi/src/Client.php new file mode 100644 index 0000000..7b7b131 --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/src/Client.php @@ -0,0 +1,35 @@ +attributes, true); + Model::validateRequired('key', $this->key, true); + } + public function toMap() { + $res = []; + if (null !== $this->attributes) { + $res['attributes'] = $this->attributes; + } + if (null !== $this->key) { + $res['key'] = $this->key; + } + return $res; + } + /** + * @param array $map + * @return AttributeMap + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['attributes'])){ + $model->attributes = $map['attributes']; + } + if(isset($map['key'])){ + $model->key = $map['key']; + } + return $model; + } + /** + * @var mixed[] + */ + public $attributes; + + /** + * @var string[] + */ + public $key; + +} diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext.php new file mode 100644 index 0000000..cc3a436 --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext.php @@ -0,0 +1,63 @@ +request, true); + Model::validateRequired('configuration', $this->configuration, true); + Model::validateRequired('response', $this->response, true); + } + public function toMap() { + $res = []; + if (null !== $this->request) { + $res['request'] = null !== $this->request ? $this->request->toMap() : null; + } + if (null !== $this->configuration) { + $res['configuration'] = null !== $this->configuration ? $this->configuration->toMap() : null; + } + if (null !== $this->response) { + $res['response'] = null !== $this->response ? $this->response->toMap() : null; + } + return $res; + } + /** + * @param array $map + * @return InterceptorContext + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['request'])){ + $model->request = request::fromMap($map['request']); + } + if(isset($map['configuration'])){ + $model->configuration = configuration::fromMap($map['configuration']); + } + if(isset($map['response'])){ + $model->response = response::fromMap($map['response']); + } + return $model; + } + /** + * @var request + */ + public $request; + + /** + * @var configuration + */ + public $configuration; + + /** + * @var response + */ + public $response; + +} diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/configuration.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/configuration.php new file mode 100644 index 0000000..02e6f92 --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/configuration.php @@ -0,0 +1,83 @@ +regionId, true); + } + public function toMap() { + $res = []; + if (null !== $this->regionId) { + $res['regionId'] = $this->regionId; + } + if (null !== $this->endpoint) { + $res['endpoint'] = $this->endpoint; + } + if (null !== $this->endpointRule) { + $res['endpointRule'] = $this->endpointRule; + } + if (null !== $this->endpointMap) { + $res['endpointMap'] = $this->endpointMap; + } + if (null !== $this->endpointType) { + $res['endpointType'] = $this->endpointType; + } + if (null !== $this->network) { + $res['network'] = $this->network; + } + if (null !== $this->suffix) { + $res['suffix'] = $this->suffix; + } + return $res; + } + /** + * @param array $map + * @return configuration + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['regionId'])){ + $model->regionId = $map['regionId']; + } + if(isset($map['endpoint'])){ + $model->endpoint = $map['endpoint']; + } + if(isset($map['endpointRule'])){ + $model->endpointRule = $map['endpointRule']; + } + if(isset($map['endpointMap'])){ + $model->endpointMap = $map['endpointMap']; + } + if(isset($map['endpointType'])){ + $model->endpointType = $map['endpointType']; + } + if(isset($map['network'])){ + $model->network = $map['network']; + } + if(isset($map['suffix'])){ + $model->suffix = $map['suffix']; + } + return $model; + } + /** + * @var string + */ + public $regionId; + + public $endpoint; + + public $endpointRule; + + public $endpointMap; + + public $endpointType; + + public $network; + + public $suffix; + +} diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/request.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/request.php new file mode 100644 index 0000000..878ca95 --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/request.php @@ -0,0 +1,220 @@ +pathname, true); + Model::validateRequired('productId', $this->productId, true); + Model::validateRequired('action', $this->action, true); + Model::validateRequired('version', $this->version, true); + Model::validateRequired('protocol', $this->protocol, true); + Model::validateRequired('method', $this->method, true); + Model::validateRequired('authType', $this->authType, true); + Model::validateRequired('bodyType', $this->bodyType, true); + Model::validateRequired('reqBodyType', $this->reqBodyType, true); + Model::validateRequired('credential', $this->credential, true); + Model::validateRequired('userAgent', $this->userAgent, true); + } + public function toMap() { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->query) { + $res['query'] = $this->query; + } + if (null !== $this->body) { + $res['body'] = $this->body; + } + if (null !== $this->stream) { + $res['stream'] = $this->stream; + } + if (null !== $this->hostMap) { + $res['hostMap'] = $this->hostMap; + } + if (null !== $this->pathname) { + $res['pathname'] = $this->pathname; + } + if (null !== $this->productId) { + $res['productId'] = $this->productId; + } + if (null !== $this->action) { + $res['action'] = $this->action; + } + if (null !== $this->version) { + $res['version'] = $this->version; + } + if (null !== $this->protocol) { + $res['protocol'] = $this->protocol; + } + if (null !== $this->method) { + $res['method'] = $this->method; + } + if (null !== $this->authType) { + $res['authType'] = $this->authType; + } + if (null !== $this->bodyType) { + $res['bodyType'] = $this->bodyType; + } + if (null !== $this->reqBodyType) { + $res['reqBodyType'] = $this->reqBodyType; + } + if (null !== $this->style) { + $res['style'] = $this->style; + } + if (null !== $this->credential) { + $res['credential'] = null !== $this->credential ? $this->credential->toMap() : null; + } + if (null !== $this->signatureVersion) { + $res['signatureVersion'] = $this->signatureVersion; + } + if (null !== $this->signatureAlgorithm) { + $res['signatureAlgorithm'] = $this->signatureAlgorithm; + } + if (null !== $this->userAgent) { + $res['userAgent'] = $this->userAgent; + } + return $res; + } + /** + * @param array $map + * @return request + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['headers'])){ + $model->headers = $map['headers']; + } + if(isset($map['query'])){ + $model->query = $map['query']; + } + if(isset($map['body'])){ + $model->body = $map['body']; + } + if(isset($map['stream'])){ + $model->stream = $map['stream']; + } + if(isset($map['hostMap'])){ + $model->hostMap = $map['hostMap']; + } + if(isset($map['pathname'])){ + $model->pathname = $map['pathname']; + } + if(isset($map['productId'])){ + $model->productId = $map['productId']; + } + if(isset($map['action'])){ + $model->action = $map['action']; + } + if(isset($map['version'])){ + $model->version = $map['version']; + } + if(isset($map['protocol'])){ + $model->protocol = $map['protocol']; + } + if(isset($map['method'])){ + $model->method = $map['method']; + } + if(isset($map['authType'])){ + $model->authType = $map['authType']; + } + if(isset($map['bodyType'])){ + $model->bodyType = $map['bodyType']; + } + if(isset($map['reqBodyType'])){ + $model->reqBodyType = $map['reqBodyType']; + } + if(isset($map['style'])){ + $model->style = $map['style']; + } + if(isset($map['credential'])){ + $model->credential = Credential::fromMap($map['credential']); + } + if(isset($map['signatureVersion'])){ + $model->signatureVersion = $map['signatureVersion']; + } + if(isset($map['signatureAlgorithm'])){ + $model->signatureAlgorithm = $map['signatureAlgorithm']; + } + if(isset($map['userAgent'])){ + $model->userAgent = $map['userAgent']; + } + return $model; + } + public $headers; + + public $query; + + public $body; + + public $stream; + + public $hostMap; + + /** + * @var string + */ + public $pathname; + + /** + * @var string + */ + public $productId; + + /** + * @var string + */ + public $action; + + /** + * @var string + */ + public $version; + + /** + * @var string + */ + public $protocol; + + /** + * @var string + */ + public $method; + + /** + * @var string + */ + public $authType; + + /** + * @var string + */ + public $bodyType; + + /** + * @var string + */ + public $reqBodyType; + + public $style; + + /** + * @var Credential + */ + public $credential; + + public $signatureVersion; + + public $signatureAlgorithm; + + /** + * @var string + */ + public $userAgent; + +} diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/response.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/response.php new file mode 100644 index 0000000..d899e4d --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/response.php @@ -0,0 +1,54 @@ +statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = $this->body; + } + if (null !== $this->deserializedBody) { + $res['deserializedBody'] = $this->deserializedBody; + } + return $res; + } + /** + * @param array $map + * @return response + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['statusCode'])){ + $model->statusCode = $map['statusCode']; + } + if(isset($map['headers'])){ + $model->headers = $map['headers']; + } + if(isset($map['body'])){ + $model->body = $map['body']; + } + if(isset($map['deserializedBody'])){ + $model->deserializedBody = $map['deserializedBody']; + } + return $model; + } + public $statusCode; + + public $headers; + + public $body; + + public $deserializedBody; + +} diff --git a/vendor/alibabacloud/openapi-core/.gitignore b/vendor/alibabacloud/openapi-core/.gitignore new file mode 100644 index 0000000..89c7aa5 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/.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/openapi-core/.php_cs.dist b/vendor/alibabacloud/openapi-core/.php_cs.dist new file mode 100644 index 0000000..8617ec2 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/.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/openapi-core/README-CN.md b/vendor/alibabacloud/openapi-core/README-CN.md new file mode 100644 index 0000000..b45e401 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/README-CN.md @@ -0,0 +1,31 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud OpenApi Client + +## 安装 + +### Composer + +```bash +composer require alibabacloud/openapi-core +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/darabonba-openapi/issues/new),不符合指南的问题可能会立即关闭。 + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/darabonba-openapi) + +## 许可证 + +[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/openapi-core/README.md b/vendor/alibabacloud/openapi-core/README.md new file mode 100644 index 0000000..1493927 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/README.md @@ -0,0 +1,31 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud OpenApi Client + +## Installation + +### Composer + +```bash +composer require alibabacloud/openapi-core +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/darabonba-openapi/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/darabonba-openapi) + +## 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/openapi-core/autoload.php b/vendor/alibabacloud/openapi-core/autoload.php new file mode 100644 index 0000000..526c188 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/autoload.php @@ -0,0 +1,15 @@ +5.5", + "alibabacloud/credentials": "^1.2.2", + "alibabacloud/darabonba": "^1", + "alibabacloud/gateway-spi": "^1" + }, + "require-dev": { + "symfony/dotenv": "^3.4", + "phpunit/phpunit": "^4.8.35|^5.4.3|^9.3", + "symfony/var-dumper": "^3.4" + }, + "autoload": { + "psr-4": { + "Darabonba\\OpenApi\\": "src" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./", + "test": "phpunit", + "test:unit": "phpunit tests/UtilsTest.php", + "test:all": "phpunit --testdox" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true +} \ No newline at end of file diff --git a/vendor/alibabacloud/openapi-core/phpunit.xml b/vendor/alibabacloud/openapi-core/phpunit.xml new file mode 100644 index 0000000..8d1de2b --- /dev/null +++ b/vendor/alibabacloud/openapi-core/phpunit.xml @@ -0,0 +1,31 @@ + + + + + + tests + + + tests + + + + + + integration + + + + + + + + + + + ./src + + + diff --git a/vendor/alibabacloud/openapi-core/src/Exceptions/AlibabaCloudException.php b/vendor/alibabacloud/openapi-core/src/Exceptions/AlibabaCloudException.php new file mode 100644 index 0000000..13e6d5c --- /dev/null +++ b/vendor/alibabacloud/openapi-core/src/Exceptions/AlibabaCloudException.php @@ -0,0 +1,60 @@ +statusCode = $map['statusCode']; + $this->code = $map['code']; + $this->message = $map['message']; + $this->description = $map['description']; + $this->requestId = $map['requestId']; + } + + /** + * @return int + */ + public function getStatusCode() + { + return $this->statusCode; + } + /** + * @return string + */ + public function getDescription() + { + return $this->description; + } + /** + * @return string + */ + public function getRequestId() + { + return $this->requestId; + } +} diff --git a/vendor/alibabacloud/openapi-core/src/Exceptions/ClientException.php b/vendor/alibabacloud/openapi-core/src/Exceptions/ClientException.php new file mode 100644 index 0000000..d2c72e1 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/src/Exceptions/ClientException.php @@ -0,0 +1,25 @@ +accessDeniedDetail = $map['accessDeniedDetail']; + } + + /** + * @return mixed[] + */ + public function getAccessDeniedDetail() + { + return $this->accessDeniedDetail; + } +} diff --git a/vendor/alibabacloud/openapi-core/src/Exceptions/ServerException.php b/vendor/alibabacloud/openapi-core/src/Exceptions/ServerException.php new file mode 100644 index 0000000..c0df017 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/src/Exceptions/ServerException.php @@ -0,0 +1,13 @@ +retryAfter = $map['retryAfter']; + } + + /** + * @return int + */ + public function getRetryAfter() + { + return $this->retryAfter; + } +} diff --git a/vendor/alibabacloud/openapi-core/src/Models/Config.php b/vendor/alibabacloud/openapi-core/src/Models/Config.php new file mode 100644 index 0000000..d154165 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/src/Models/Config.php @@ -0,0 +1,464 @@ + 'accessKeyId', + 'accessKeySecret' => 'accessKeySecret', + 'securityToken' => 'securityToken', + 'bearerToken' => 'bearerToken', + 'protocol' => 'protocol', + 'method' => 'method', + 'regionId' => 'regionId', + 'readTimeout' => 'readTimeout', + 'connectTimeout' => 'connectTimeout', + 'httpProxy' => 'httpProxy', + 'httpsProxy' => 'httpsProxy', + 'credential' => 'credential', + 'endpoint' => 'endpoint', + 'noProxy' => 'noProxy', + 'maxIdleConns' => 'maxIdleConns', + 'network' => 'network', + 'userAgent' => 'userAgent', + 'suffix' => 'suffix', + 'socks5Proxy' => 'socks5Proxy', + 'socks5NetWork' => 'socks5NetWork', + 'endpointType' => 'endpointType', + 'openPlatformEndpoint' => 'openPlatformEndpoint', + 'type' => 'type', + 'signatureVersion' => 'signatureVersion', + 'signatureAlgorithm' => 'signatureAlgorithm', + 'globalParameters' => 'globalParameters', + 'key' => 'key', + 'cert' => 'cert', + 'ca' => 'ca', + 'disableHttp2' => 'disableHttp2', + 'tlsMinVersion' => 'tlsMinVersion', + 'retryOptions' => 'retryOptions', + ]; + + public function validate() + { + if(null !== $this->credential) { + $this->credential->validate(); + } + if(null !== $this->globalParameters) { + $this->globalParameters->validate(); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->accessKeyId) { + $res['accessKeyId'] = $this->accessKeyId; + } + + if (null !== $this->accessKeySecret) { + $res['accessKeySecret'] = $this->accessKeySecret; + } + + if (null !== $this->securityToken) { + $res['securityToken'] = $this->securityToken; + } + + if (null !== $this->bearerToken) { + $res['bearerToken'] = $this->bearerToken; + } + + if (null !== $this->protocol) { + $res['protocol'] = $this->protocol; + } + + if (null !== $this->method) { + $res['method'] = $this->method; + } + + if (null !== $this->regionId) { + $res['regionId'] = $this->regionId; + } + + if (null !== $this->readTimeout) { + $res['readTimeout'] = $this->readTimeout; + } + + if (null !== $this->connectTimeout) { + $res['connectTimeout'] = $this->connectTimeout; + } + + if (null !== $this->httpProxy) { + $res['httpProxy'] = $this->httpProxy; + } + + if (null !== $this->httpsProxy) { + $res['httpsProxy'] = $this->httpsProxy; + } + + if (null !== $this->credential) { + $res['credential'] = $this->credential; + } + + if (null !== $this->endpoint) { + $res['endpoint'] = $this->endpoint; + } + + if (null !== $this->noProxy) { + $res['noProxy'] = $this->noProxy; + } + + if (null !== $this->maxIdleConns) { + $res['maxIdleConns'] = $this->maxIdleConns; + } + + if (null !== $this->network) { + $res['network'] = $this->network; + } + + if (null !== $this->userAgent) { + $res['userAgent'] = $this->userAgent; + } + + if (null !== $this->suffix) { + $res['suffix'] = $this->suffix; + } + + if (null !== $this->socks5Proxy) { + $res['socks5Proxy'] = $this->socks5Proxy; + } + + if (null !== $this->socks5NetWork) { + $res['socks5NetWork'] = $this->socks5NetWork; + } + + if (null !== $this->endpointType) { + $res['endpointType'] = $this->endpointType; + } + + if (null !== $this->openPlatformEndpoint) { + $res['openPlatformEndpoint'] = $this->openPlatformEndpoint; + } + + if (null !== $this->type) { + $res['type'] = $this->type; + } + + if (null !== $this->signatureVersion) { + $res['signatureVersion'] = $this->signatureVersion; + } + + if (null !== $this->signatureAlgorithm) { + $res['signatureAlgorithm'] = $this->signatureAlgorithm; + } + + if (null !== $this->globalParameters) { + $res['globalParameters'] = null !== $this->globalParameters ? $this->globalParameters->toArray($noStream) : $this->globalParameters; + } + + if (null !== $this->key) { + $res['key'] = $this->key; + } + + if (null !== $this->cert) { + $res['cert'] = $this->cert; + } + + if (null !== $this->ca) { + $res['ca'] = $this->ca; + } + + if (null !== $this->disableHttp2) { + $res['disableHttp2'] = $this->disableHttp2; + } + + if (null !== $this->tlsMinVersion) { + $res['tlsMinVersion'] = $this->tlsMinVersion; + } + + if (null !== $this->retryOptions) { + $res['retryOptions'] = null !== $this->retryOptions ? $this->retryOptions->toArray($noStream) : $this->retryOptions; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['accessKeyId'])) { + $model->accessKeyId = $map['accessKeyId']; + } + + if (isset($map['accessKeySecret'])) { + $model->accessKeySecret = $map['accessKeySecret']; + } + + if (isset($map['securityToken'])) { + $model->securityToken = $map['securityToken']; + } + + if (isset($map['bearerToken'])) { + $model->bearerToken = $map['bearerToken']; + } + + if (isset($map['protocol'])) { + $model->protocol = $map['protocol']; + } + + if (isset($map['method'])) { + $model->method = $map['method']; + } + + if (isset($map['regionId'])) { + $model->regionId = $map['regionId']; + } + + if (isset($map['readTimeout'])) { + $model->readTimeout = $map['readTimeout']; + } + + if (isset($map['connectTimeout'])) { + $model->connectTimeout = $map['connectTimeout']; + } + + if (isset($map['httpProxy'])) { + $model->httpProxy = $map['httpProxy']; + } + + if (isset($map['httpsProxy'])) { + $model->httpsProxy = $map['httpsProxy']; + } + + if (isset($map['credential'])) { + $model->credential = $map['credential']; + } + + if (isset($map['endpoint'])) { + $model->endpoint = $map['endpoint']; + } + + if (isset($map['noProxy'])) { + $model->noProxy = $map['noProxy']; + } + + if (isset($map['maxIdleConns'])) { + $model->maxIdleConns = $map['maxIdleConns']; + } + + if (isset($map['network'])) { + $model->network = $map['network']; + } + + if (isset($map['userAgent'])) { + $model->userAgent = $map['userAgent']; + } + + if (isset($map['suffix'])) { + $model->suffix = $map['suffix']; + } + + if (isset($map['socks5Proxy'])) { + $model->socks5Proxy = $map['socks5Proxy']; + } + + if (isset($map['socks5NetWork'])) { + $model->socks5NetWork = $map['socks5NetWork']; + } + + if (isset($map['endpointType'])) { + $model->endpointType = $map['endpointType']; + } + + if (isset($map['openPlatformEndpoint'])) { + $model->openPlatformEndpoint = $map['openPlatformEndpoint']; + } + + if (isset($map['type'])) { + $model->type = $map['type']; + } + + if (isset($map['signatureVersion'])) { + $model->signatureVersion = $map['signatureVersion']; + } + + if (isset($map['signatureAlgorithm'])) { + $model->signatureAlgorithm = $map['signatureAlgorithm']; + } + + if (isset($map['globalParameters'])) { + $model->globalParameters = GlobalParameters::fromMap($map['globalParameters']); + } + + if (isset($map['key'])) { + $model->key = $map['key']; + } + + if (isset($map['cert'])) { + $model->cert = $map['cert']; + } + + if (isset($map['ca'])) { + $model->ca = $map['ca']; + } + + if (isset($map['disableHttp2'])) { + $model->disableHttp2 = $map['disableHttp2']; + } + + if (isset($map['tlsMinVersion'])) { + $model->tlsMinVersion = $map['tlsMinVersion']; + } + + if (isset($map['retryOptions'])) { + $model->retryOptions = RetryOptions::fromMap($map['retryOptions']); + } + + return $model; + } + + +} + diff --git a/vendor/alibabacloud/openapi-core/src/Models/GlobalParameters.php b/vendor/alibabacloud/openapi-core/src/Models/GlobalParameters.php new file mode 100644 index 0000000..038aa8f --- /dev/null +++ b/vendor/alibabacloud/openapi-core/src/Models/GlobalParameters.php @@ -0,0 +1,87 @@ + 'headers', + 'queries' => 'queries', + ]; + + public function validate() + { + if(is_array($this->headers)) { + Model::validateArray($this->headers); + } + if(is_array($this->queries)) { + Model::validateArray($this->queries); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if(is_array($this->headers)) { + $res['headers'] = []; + foreach($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->queries) { + if(is_array($this->queries)) { + $res['queries'] = []; + foreach($this->queries as $key1 => $value1) { + $res['queries'][$key1] = $value1; + } + } + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if(!empty($map['headers'])) { + $model->headers = []; + foreach($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['queries'])) { + if(!empty($map['queries'])) { + $model->queries = []; + foreach($map['queries'] as $key1 => $value1) { + $model->queries[$key1] = $value1; + } + } + } + + return $model; + } + + +} + diff --git a/vendor/alibabacloud/openapi-core/src/Models/OpenApiRequest.php b/vendor/alibabacloud/openapi-core/src/Models/OpenApiRequest.php new file mode 100644 index 0000000..cf0a34e --- /dev/null +++ b/vendor/alibabacloud/openapi-core/src/Models/OpenApiRequest.php @@ -0,0 +1,153 @@ + 'headers', + 'query' => 'query', + 'body' => 'body', + 'stream' => 'stream', + 'hostMap' => 'hostMap', + 'endpointOverride' => 'endpointOverride', + ]; + + public function validate() + { + if(is_array($this->headers)) { + Model::validateArray($this->headers); + } + if(is_array($this->query)) { + Model::validateArray($this->query); + } + if(is_array($this->hostMap)) { + Model::validateArray($this->hostMap); + } + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if(is_array($this->headers)) { + $res['headers'] = []; + foreach($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->query) { + if(is_array($this->query)) { + $res['query'] = []; + foreach($this->query as $key1 => $value1) { + $res['query'][$key1] = $value1; + } + } + } + + if (null !== $this->body) { + $res['body'] = $this->body; + } + + if (null !== $this->stream) { + $res['stream'] = $this->stream; + } + + if (null !== $this->hostMap) { + if(is_array($this->hostMap)) { + $res['hostMap'] = []; + foreach($this->hostMap as $key1 => $value1) { + $res['hostMap'][$key1] = $value1; + } + } + } + + if (null !== $this->endpointOverride) { + $res['endpointOverride'] = $this->endpointOverride; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if(!empty($map['headers'])) { + $model->headers = []; + foreach($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['query'])) { + if(!empty($map['query'])) { + $model->query = []; + foreach($map['query'] as $key1 => $value1) { + $model->query[$key1] = $value1; + } + } + } + + if (isset($map['body'])) { + $model->body = $map['body']; + } + + if (isset($map['stream'])) { + $model->stream = $map['stream']; + } + + if (isset($map['hostMap'])) { + if(!empty($map['hostMap'])) { + $model->hostMap = []; + foreach($map['hostMap'] as $key1 => $value1) { + $model->hostMap[$key1] = $value1; + } + } + } + + if (isset($map['endpointOverride'])) { + $model->endpointOverride = $map['endpointOverride']; + } + + return $model; + } + + +} + diff --git a/vendor/alibabacloud/openapi-core/src/Models/Params.php b/vendor/alibabacloud/openapi-core/src/Models/Params.php new file mode 100644 index 0000000..eb3a512 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/src/Models/Params.php @@ -0,0 +1,160 @@ + 'action', + 'version' => 'version', + 'protocol' => 'protocol', + 'pathname' => 'pathname', + 'method' => 'method', + 'authType' => 'authType', + 'bodyType' => 'bodyType', + 'reqBodyType' => 'reqBodyType', + 'style' => 'style', + ]; + + public function validate() + { + Model::validateRequired('action', $this->action, true); + Model::validateRequired('version', $this->version, true); + Model::validateRequired('protocol', $this->protocol, true); + Model::validateRequired('pathname', $this->pathname, true); + Model::validateRequired('method', $this->method, true); + Model::validateRequired('authType', $this->authType, true); + Model::validateRequired('bodyType', $this->bodyType, true); + Model::validateRequired('reqBodyType', $this->reqBodyType, true); + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->action) { + $res['action'] = $this->action; + } + + if (null !== $this->version) { + $res['version'] = $this->version; + } + + if (null !== $this->protocol) { + $res['protocol'] = $this->protocol; + } + + if (null !== $this->pathname) { + $res['pathname'] = $this->pathname; + } + + if (null !== $this->method) { + $res['method'] = $this->method; + } + + if (null !== $this->authType) { + $res['authType'] = $this->authType; + } + + if (null !== $this->bodyType) { + $res['bodyType'] = $this->bodyType; + } + + if (null !== $this->reqBodyType) { + $res['reqBodyType'] = $this->reqBodyType; + } + + if (null !== $this->style) { + $res['style'] = $this->style; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['action'])) { + $model->action = $map['action']; + } + + if (isset($map['version'])) { + $model->version = $map['version']; + } + + if (isset($map['protocol'])) { + $model->protocol = $map['protocol']; + } + + if (isset($map['pathname'])) { + $model->pathname = $map['pathname']; + } + + if (isset($map['method'])) { + $model->method = $map['method']; + } + + if (isset($map['authType'])) { + $model->authType = $map['authType']; + } + + if (isset($map['bodyType'])) { + $model->bodyType = $map['bodyType']; + } + + if (isset($map['reqBodyType'])) { + $model->reqBodyType = $map['reqBodyType']; + } + + if (isset($map['style'])) { + $model->style = $map['style']; + } + + return $model; + } + + +} + diff --git a/vendor/alibabacloud/openapi-core/src/Models/SSEResponse.php b/vendor/alibabacloud/openapi-core/src/Models/SSEResponse.php new file mode 100644 index 0000000..262ac37 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/src/Models/SSEResponse.php @@ -0,0 +1,91 @@ + 'headers', + 'statusCode' => 'statusCode', + 'event' => 'event', + ]; + + public function validate() + { + if(is_array($this->headers)) { + Model::validateArray($this->headers); + } + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('event', $this->event, true); + parent::validate(); + } + + public function toArray($noStream = false) + { + $res = []; + if (null !== $this->headers) { + if(is_array($this->headers)) { + $res['headers'] = []; + foreach($this->headers as $key1 => $value1) { + $res['headers'][$key1] = $value1; + } + } + } + + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + + if (null !== $this->event) { + $res['event'] = null !== $this->event ? $this->event->toArray($noStream) : $this->event; + } + + return $res; + } + + public function toMap($noStream = false) + { + return $this->toArray($noStream); + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + if(!empty($map['headers'])) { + $model->headers = []; + foreach($map['headers'] as $key1 => $value1) { + $model->headers[$key1] = $value1; + } + } + } + + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + + if (isset($map['event'])) { + $model->event = Event::fromMap($map['event']); + } + + return $model; + } + + +} + diff --git a/vendor/alibabacloud/openapi-core/src/OpenApiClient.php b/vendor/alibabacloud/openapi-core/src/OpenApiClient.php new file mode 100644 index 0000000..2922228 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/src/OpenApiClient.php @@ -0,0 +1,1861 @@ + 'ParameterMissing', + 'message' => '\'config\' can not be unset', + ]); + } + + if ((!is_null($config->accessKeyId) && $config->accessKeyId != '') && (!is_null($config->accessKeySecret) && $config->accessKeySecret != '')) { + if (!is_null($config->securityToken) && $config->securityToken != '') { + $config->type = 'sts'; + } else { + $config->type = 'access_key'; + } + + $credentialConfig = new Config([ + 'accessKeyId' => $config->accessKeyId, + 'type' => $config->type, + 'accessKeySecret' => $config->accessKeySecret, + ]); + $credentialConfig->securityToken = $config->securityToken; + $this->_credential = new Credential($credentialConfig); + } else if (!is_null($config->bearerToken) && $config->bearerToken != '') { + $cc = new Config([ + 'type' => 'bearer', + 'bearerToken' => $config->bearerToken, + ]); + $this->_credential = new Credential($cc); + } else if (!is_null($config->credential)) { + $this->_credential = $config->credential; + } + + $this->_endpoint = $config->endpoint; + $this->_endpointType = $config->endpointType; + $this->_network = $config->network; + $this->_suffix = $config->suffix; + $this->_protocol = $config->protocol; + $this->_method = $config->method; + $this->_regionId = $config->regionId; + $this->_userAgent = $config->userAgent; + $this->_readTimeout = $config->readTimeout; + $this->_connectTimeout = $config->connectTimeout; + $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->_signatureAlgorithm = $config->signatureAlgorithm; + $this->_globalParameters = $config->globalParameters; + $this->_key = $config->key; + $this->_cert = $config->cert; + $this->_ca = $config->ca; + $this->_disableHttp2 = $config->disableHttp2; + $this->_retryOptions = $config->retryOptions; + $this->_tlsMinVersion = $config->tlsMinVersion; + } + + /** + * @remarks + * Encapsulate the request and invoke the network + * + * @param action - api name + * @param version - product version + * @param protocol - http or https + * @param method - e.g. GET + * @param authType - authorization type e.g. AK + * @param bodyType - response body type e.g. String + * @param request - object of OpenApiRequest + * @param runtime - which controls some details of call api, such as retry times + * @returns the response + * @param string $action + * @param string $version + * @param string $protocol + * @param string $method + * @param string $authType + * @param string $bodyType + * @param OpenApiRequest $request + * @param RuntimeOptions $runtime + * @return mixed[] + */ + public function doRPCRequest($action, $version, $protocol, $method, $authType, $bodyType, $request, $runtime) + { + $_runtime = [ + 'key' => '' . ($runtime->key ? $runtime->key : $this->_key), + 'cert' => '' . ($runtime->cert ? $runtime->cert : $this->_cert), + 'ca' => '' . ($runtime->ca ? $runtime->ca : $this->_ca), + 'readTimeout' => (($runtime->readTimeout ? $runtime->readTimeout : $this->_readTimeout) + 0), + 'connectTimeout' => (($runtime->connectTimeout ? $runtime->connectTimeout : $this->_connectTimeout) + 0), + 'httpProxy' => '' . ($runtime->httpProxy ? $runtime->httpProxy : $this->_httpProxy), + 'httpsProxy' => '' . ($runtime->httpsProxy ? $runtime->httpsProxy : $this->_httpsProxy), + 'noProxy' => '' . ($runtime->noProxy ? $runtime->noProxy : $this->_noProxy), + 'socks5Proxy' => '' . ($runtime->socks5Proxy ? $runtime->socks5Proxy : $this->_socks5Proxy), + 'socks5NetWork' => '' . ($runtime->socks5NetWork ? $runtime->socks5NetWork : $this->_socks5NetWork), + 'maxIdleConns' => (($runtime->maxIdleConns ? $runtime->maxIdleConns : $this->_maxIdleConns) + 0), + 'retryOptions' => $this->_retryOptions, + 'ignoreSSL' => $runtime->ignoreSSL, + 'tlsMinVersion' => $this->_tlsMinVersion, + ]; + + $_retriesAttempted = 0; + $_lastRequest = null; + $_lastResponse = null; + $_context = new RetryPolicyContext([ + 'retriesAttempted' => $_retriesAttempted, + ]); + while (Dara::shouldRetry($_runtime['retryOptions'], $_context)) { + if ($_retriesAttempted > 0) { + $_backoffTime = Dara::getBackoffDelay($_runtime['retryOptions'], $_context); + if ($_backoffTime > 0) { + Dara::sleep($_backoffTime); + } + } + + $_retriesAttempted++; + try { + $_request = new Request(); + $_request->protocol = '' . ($this->_protocol ? $this->_protocol : $protocol); + $_request->method = $method; + $_request->pathname = '/'; + $globalQueries = []; + $globalHeaders = []; + if (!is_null($this->_globalParameters)) { + $globalParams = $this->_globalParameters; + if (!is_null($globalParams->queries)) { + $globalQueries = $globalParams->queries; + } + + if (!is_null($globalParams->headers)) { + $globalHeaders = $globalParams->headers; + } + + } + + $extendsHeaders = []; + $extendsQueries = []; + if (!is_null($runtime->extendsParameters)) { + $extendsParameters = $runtime->extendsParameters; + if (!is_null($extendsParameters->headers)) { + $extendsHeaders = $extendsParameters->headers; + } + + if (!is_null($extendsParameters->queries)) { + $extendsQueries = $extendsParameters->queries; + } + + } + + $_request->query = Dara::merge([ + 'Action' => $action, + 'Format' => 'json', + 'Version' => $version, + 'Timestamp' => Utils::getTimestamp(), + 'SignatureNonce' => Utils::getNonce(), + ], $globalQueries, $extendsQueries, $request->query); + $headers = $this->getRpcHeaders(); + if (is_null($headers)) { + // endpoint is setted in product client + $_request->headers = Dara::merge([ + 'host' => $this->_endpoint, + 'x-acs-version' => $version, + 'x-acs-action' => $action, + 'user-agent' => Utils::getUserAgent($this->_userAgent), + ], $globalHeaders, $extendsHeaders, $request->headers); + } else { + $_request->headers = Dara::merge([ + 'host' => $this->_endpoint, + 'x-acs-version' => $version, + 'x-acs-action' => $action, + 'user-agent' => Utils::getUserAgent($this->_userAgent), + ], $globalHeaders, $extendsHeaders, $request->headers, $headers); + } + + if (!is_null($request->body)) { + $m = $request->body; + $tmp = Utils::query($m); + $_request->body = FormUtil::toFormString($tmp); + @$_request->headers['content-type'] = 'application/x-www-form-urlencoded'; + } + + if ($authType != 'Anonymous') { + if (is_null($this->_credential)) { + throw new ClientException([ + 'code' => 'InvalidCredentials', + 'message' => 'Please set up the credentials correctly. If you are setting them through environment variables, please ensure that ALIBABA_CLOUD_ACCESS_KEY_ID and ALIBABA_CLOUD_ACCESS_KEY_SECRET are set correctly. See https://help.aliyun.com/zh/sdk/developer-reference/configure-the-alibaba-cloud-accesskey-environment-variable-on-linux-macos-and-windows-systems for more details.', + ]); + } + + $credentialModel = $this->_credential->getCredential(); + if (!is_null($credentialModel->providerName)) { + @$_request->headers['x-acs-credentials-provider'] = $credentialModel->providerName; + } + + $credentialType = $credentialModel->type; + if ($credentialType == 'bearer') { + $bearerToken = $credentialModel->bearerToken; + @$_request->query['BearerToken'] = $bearerToken; + @$_request->query['SignatureType'] = 'BEARERTOKEN'; + } else if ($credentialType == 'id_token') { + $idToken = $credentialModel->securityToken; + @$_request->headers['x-acs-zero-trust-idtoken'] = $idToken; + } else { + $accessKeyId = $credentialModel->accessKeyId; + $accessKeySecret = $credentialModel->accessKeySecret; + $securityToken = $credentialModel->securityToken; + if (!is_null($securityToken) && $securityToken != '') { + @$_request->query['SecurityToken'] = $securityToken; + } + + @$_request->query['SignatureMethod'] = 'HMAC-SHA1'; + @$_request->query['SignatureVersion'] = '1.0'; + @$_request->query['AccessKeyId'] = $accessKeyId; + $t = null; + if (!is_null($request->body)) { + $t = $request->body; + } + + $signedParam = Dara::merge([ + ], $_request->query, Utils::query($t)); + @$_request->query['Signature'] = Utils::getRPCSignature($signedParam, $_request->method, $accessKeySecret); + } + + } + + $_lastRequest = $_request; + $_response = Dara::send($_request, $_runtime); + $_lastResponse = $_response; + + if (($_response->statusCode >= 400) && ($_response->statusCode < 600)) { + $_res = StreamUtil::readAsJSON($_response->body); + $err = $_res; + $requestId = (@$err['RequestId'] ? @$err['RequestId'] : @$err['requestId']); + $code = (@$err['Code'] ? @$err['Code'] : @$err['code']); + if (('' . (string) $code . '' == 'Throttling') || ('' . (string) $code . '' == 'Throttling.User') || ('' . (string) $code . '' == 'Throttling.Api')) { + throw new ThrottlingException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . (string) $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . (string) $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'retryAfter' => Utils::getThrottlingTimeLeft($_response->headers), + 'data' => $err, + 'requestId' => '' . (string) $requestId . '', + ]); + } else if (($_response->statusCode >= 400) && ($_response->statusCode < 500)) { + throw new ClientException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . (string) $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . (string) $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'data' => $err, + 'accessDeniedDetail' => $this->getAccessDeniedDetail($err), + 'requestId' => '' . (string) $requestId . '', + ]); + } else { + throw new ServerException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . (string) $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . (string) $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'data' => $err, + 'requestId' => '' . (string) $requestId . '', + ]); + } + + } + + if ($bodyType == 'binary') { + $resp = [ + 'body' => $_response->body, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + return $resp; + } else if ($bodyType == 'byte') { + $byt = StreamUtil::readAsBytes($_response->body); + return [ + 'body' => $byt, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($bodyType == 'string') { + $_str = StreamUtil::readAsString($_response->body); + return [ + 'body' => $_str, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($bodyType == 'json') { + $obj = StreamUtil::readAsJSON($_response->body); + $res = $obj; + return [ + 'body' => $res, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($bodyType == 'array') { + $arr = StreamUtil::readAsJSON($_response->body); + return [ + 'body' => $arr, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else { + return [ + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } + + } catch (DaraException $e) { + $_context = new RetryPolicyContext([ + 'retriesAttempted' => $_retriesAttempted, + 'lastRequest' => $_lastRequest, + 'lastResponse' => $_lastResponse, + 'exception' => $e, + ]); + continue; + } + } + + throw new DaraUnableRetryException($_context); + } + + /** + * @remarks + * Encapsulate the request and invoke the network + * + * @param action - api name + * @param version - product version + * @param protocol - http or https + * @param method - e.g. GET + * @param authType - authorization type e.g. AK + * @param pathname - pathname of every api + * @param bodyType - response body type e.g. String + * @param request - object of OpenApiRequest + * @param runtime - which controls some details of call api, such as retry times + * @returns the response + * @param string $action + * @param string $version + * @param string $protocol + * @param string $method + * @param string $authType + * @param string $pathname + * @param string $bodyType + * @param OpenApiRequest $request + * @param RuntimeOptions $runtime + * @return mixed[] + */ + public function doROARequest($action, $version, $protocol, $method, $authType, $pathname, $bodyType, $request, $runtime) + { + $_runtime = [ + 'key' => '' . ($runtime->key ? $runtime->key : $this->_key), + 'cert' => '' . ($runtime->cert ? $runtime->cert : $this->_cert), + 'ca' => '' . ($runtime->ca ? $runtime->ca : $this->_ca), + 'readTimeout' => (($runtime->readTimeout ? $runtime->readTimeout : $this->_readTimeout) + 0), + 'connectTimeout' => (($runtime->connectTimeout ? $runtime->connectTimeout : $this->_connectTimeout) + 0), + 'httpProxy' => '' . ($runtime->httpProxy ? $runtime->httpProxy : $this->_httpProxy), + 'httpsProxy' => '' . ($runtime->httpsProxy ? $runtime->httpsProxy : $this->_httpsProxy), + 'noProxy' => '' . ($runtime->noProxy ? $runtime->noProxy : $this->_noProxy), + 'socks5Proxy' => '' . ($runtime->socks5Proxy ? $runtime->socks5Proxy : $this->_socks5Proxy), + 'socks5NetWork' => '' . ($runtime->socks5NetWork ? $runtime->socks5NetWork : $this->_socks5NetWork), + 'maxIdleConns' => (($runtime->maxIdleConns ? $runtime->maxIdleConns : $this->_maxIdleConns) + 0), + 'retryOptions' => $this->_retryOptions, + 'ignoreSSL' => $runtime->ignoreSSL, + 'tlsMinVersion' => $this->_tlsMinVersion, + ]; + + $_retriesAttempted = 0; + $_lastRequest = null; + $_lastResponse = null; + $_context = new RetryPolicyContext([ + 'retriesAttempted' => $_retriesAttempted, + ]); + while (Dara::shouldRetry($_runtime['retryOptions'], $_context)) { + if ($_retriesAttempted > 0) { + $_backoffTime = Dara::getBackoffDelay($_runtime['retryOptions'], $_context); + if ($_backoffTime > 0) { + Dara::sleep($_backoffTime); + } + } + + $_retriesAttempted++; + try { + $_request = new Request(); + $_request->protocol = '' . ($this->_protocol ? $this->_protocol : $protocol); + $_request->method = $method; + $_request->pathname = $pathname; + $globalQueries = []; + $globalHeaders = []; + if (!is_null($this->_globalParameters)) { + $globalParams = $this->_globalParameters; + if (!is_null($globalParams->queries)) { + $globalQueries = $globalParams->queries; + } + + if (!is_null($globalParams->headers)) { + $globalHeaders = $globalParams->headers; + } + + } + + $extendsHeaders = []; + $extendsQueries = []; + if (!is_null($runtime->extendsParameters)) { + $extendsParameters = $runtime->extendsParameters; + if (!is_null($extendsParameters->headers)) { + $extendsHeaders = $extendsParameters->headers; + } + + if (!is_null($extendsParameters->queries)) { + $extendsQueries = $extendsParameters->queries; + } + + } + + $_request->headers = Dara::merge([ + 'date' => Utils::getDateUTCString(), + 'host' => $this->_endpoint, + 'accept' => 'application/json', + 'x-acs-signature-nonce' => Utils::getNonce(), + 'x-acs-signature-method' => 'HMAC-SHA1', + 'x-acs-signature-version' => '1.0', + 'x-acs-version' => $version, + 'x-acs-action' => $action, + 'user-agent' => Utils::getUserAgent($this->_userAgent), + ], $globalHeaders, $extendsHeaders, $request->headers); + if (!is_null($request->body)) { + $_request->body = json_encode($request->body, JSON_UNESCAPED_UNICODE + JSON_UNESCAPED_SLASHES); + @$_request->headers['content-type'] = 'application/json; charset=utf-8'; + } + + $_request->query = Dara::merge([ + ], $globalQueries, $extendsQueries); + if (!is_null($request->query)) { + $_request->query = Dara::merge([ + ], $_request->query, $request->query); + } + + if ($authType != 'Anonymous') { + if (is_null($this->_credential)) { + throw new ClientException([ + 'code' => 'InvalidCredentials', + 'message' => 'Please set up the credentials correctly. If you are setting them through environment variables, please ensure that ALIBABA_CLOUD_ACCESS_KEY_ID and ALIBABA_CLOUD_ACCESS_KEY_SECRET are set correctly. See https://help.aliyun.com/zh/sdk/developer-reference/configure-the-alibaba-cloud-accesskey-environment-variable-on-linux-macos-and-windows-systems for more details.', + ]); + } + + $credentialModel = $this->_credential->getCredential(); + if (!is_null($credentialModel->providerName)) { + @$_request->headers['x-acs-credentials-provider'] = $credentialModel->providerName; + } + + $credentialType = $credentialModel->type; + if ($credentialType == 'bearer') { + $bearerToken = $credentialModel->bearerToken; + @$_request->headers['x-acs-bearer-token'] = $bearerToken; + @$_request->headers['x-acs-signature-type'] = 'BEARERTOKEN'; + } else if ($credentialType == 'id_token') { + $idToken = $credentialModel->securityToken; + @$_request->headers['x-acs-zero-trust-idtoken'] = $idToken; + } else { + $accessKeyId = $credentialModel->accessKeyId; + $accessKeySecret = $credentialModel->accessKeySecret; + $securityToken = $credentialModel->securityToken; + if (!is_null($securityToken) && $securityToken != '') { + @$_request->headers['x-acs-accesskey-id'] = $accessKeyId; + @$_request->headers['x-acs-security-token'] = $securityToken; + } + + $stringToSign = Utils::getStringToSign($_request); + @$_request->headers['authorization'] = 'acs ' . $accessKeyId . ':' . Utils::getROASignature($stringToSign, $accessKeySecret) . ''; + } + + } + + $_lastRequest = $_request; + $_response = Dara::send($_request, $_runtime); + $_lastResponse = $_response; + + if ($_response->statusCode == 204) { + return [ + 'headers' => $_response->headers, + ]; + } + + if (($_response->statusCode >= 400) && ($_response->statusCode < 600)) { + $_res = StreamUtil::readAsJSON($_response->body); + $err = $_res; + $requestId = '' . (@$err['RequestId'] ? @$err['RequestId'] : @$err['requestId']); + $requestId = '' . ($requestId ? $requestId : @$err['requestid']); + $code = '' . (@$err['Code'] ? @$err['Code'] : @$err['code']); + if (('' . $code . '' == 'Throttling') || ('' . $code . '' == 'Throttling.User') || ('' . $code . '' == 'Throttling.Api')) { + throw new ThrottlingException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'retryAfter' => Utils::getThrottlingTimeLeft($_response->headers), + 'data' => $err, + 'requestId' => '' . $requestId . '', + ]); + } else if (($_response->statusCode >= 400) && ($_response->statusCode < 500)) { + throw new ClientException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'data' => $err, + 'accessDeniedDetail' => $this->getAccessDeniedDetail($err), + 'requestId' => '' . $requestId . '', + ]); + } else { + throw new ServerException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'data' => $err, + 'requestId' => '' . $requestId . '', + ]); + } + + } + + if ($bodyType == 'binary') { + $resp = [ + 'body' => $_response->body, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + return $resp; + } else if ($bodyType == 'byte') { + $byt = StreamUtil::readAsBytes($_response->body); + return [ + 'body' => $byt, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($bodyType == 'string') { + $_str = StreamUtil::readAsString($_response->body); + return [ + 'body' => $_str, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($bodyType == 'json') { + $obj = StreamUtil::readAsJSON($_response->body); + $res = $obj; + return [ + 'body' => $res, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($bodyType == 'array') { + $arr = StreamUtil::readAsJSON($_response->body); + return [ + 'body' => $arr, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else { + return [ + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } + + } catch (DaraException $e) { + $_context = new RetryPolicyContext([ + 'retriesAttempted' => $_retriesAttempted, + 'lastRequest' => $_lastRequest, + 'lastResponse' => $_lastResponse, + 'exception' => $e, + ]); + continue; + } + } + + throw new DaraUnableRetryException($_context); + } + + /** + * @remarks + * Encapsulate the request and invoke the network with form body + * + * @param action - api name + * @param version - product version + * @param protocol - http or https + * @param method - e.g. GET + * @param authType - authorization type e.g. AK + * @param pathname - pathname of every api + * @param bodyType - response body type e.g. String + * @param request - object of OpenApiRequest + * @param runtime - which controls some details of call api, such as retry times + * @returns the response + * @param string $action + * @param string $version + * @param string $protocol + * @param string $method + * @param string $authType + * @param string $pathname + * @param string $bodyType + * @param OpenApiRequest $request + * @param RuntimeOptions $runtime + * @return mixed[] + */ + public function doROARequestWithForm($action, $version, $protocol, $method, $authType, $pathname, $bodyType, $request, $runtime) + { + $_runtime = [ + 'key' => '' . ($runtime->key ? $runtime->key : $this->_key), + 'cert' => '' . ($runtime->cert ? $runtime->cert : $this->_cert), + 'ca' => '' . ($runtime->ca ? $runtime->ca : $this->_ca), + 'readTimeout' => (($runtime->readTimeout ? $runtime->readTimeout : $this->_readTimeout) + 0), + 'connectTimeout' => (($runtime->connectTimeout ? $runtime->connectTimeout : $this->_connectTimeout) + 0), + 'httpProxy' => '' . ($runtime->httpProxy ? $runtime->httpProxy : $this->_httpProxy), + 'httpsProxy' => '' . ($runtime->httpsProxy ? $runtime->httpsProxy : $this->_httpsProxy), + 'noProxy' => '' . ($runtime->noProxy ? $runtime->noProxy : $this->_noProxy), + 'socks5Proxy' => '' . ($runtime->socks5Proxy ? $runtime->socks5Proxy : $this->_socks5Proxy), + 'socks5NetWork' => '' . ($runtime->socks5NetWork ? $runtime->socks5NetWork : $this->_socks5NetWork), + 'maxIdleConns' => (($runtime->maxIdleConns ? $runtime->maxIdleConns : $this->_maxIdleConns) + 0), + 'retryOptions' => $this->_retryOptions, + 'ignoreSSL' => $runtime->ignoreSSL, + 'tlsMinVersion' => $this->_tlsMinVersion, + ]; + + $_retriesAttempted = 0; + $_lastRequest = null; + $_lastResponse = null; + $_context = new RetryPolicyContext([ + 'retriesAttempted' => $_retriesAttempted, + ]); + while (Dara::shouldRetry($_runtime['retryOptions'], $_context)) { + if ($_retriesAttempted > 0) { + $_backoffTime = Dara::getBackoffDelay($_runtime['retryOptions'], $_context); + if ($_backoffTime > 0) { + Dara::sleep($_backoffTime); + } + } + + $_retriesAttempted++; + try { + $_request = new Request(); + $_request->protocol = '' . ($this->_protocol ? $this->_protocol : $protocol); + $_request->method = $method; + $_request->pathname = $pathname; + $globalQueries = []; + $globalHeaders = []; + if (!is_null($this->_globalParameters)) { + $globalParams = $this->_globalParameters; + if (!is_null($globalParams->queries)) { + $globalQueries = $globalParams->queries; + } + + if (!is_null($globalParams->headers)) { + $globalHeaders = $globalParams->headers; + } + + } + + $extendsHeaders = []; + $extendsQueries = []; + if (!is_null($runtime->extendsParameters)) { + $extendsParameters = $runtime->extendsParameters; + if (!is_null($extendsParameters->headers)) { + $extendsHeaders = $extendsParameters->headers; + } + + if (!is_null($extendsParameters->queries)) { + $extendsQueries = $extendsParameters->queries; + } + + } + + $_request->headers = Dara::merge([ + 'date' => Utils::getDateUTCString(), + 'host' => $this->_endpoint, + 'accept' => 'application/json', + 'x-acs-signature-nonce' => Utils::getNonce(), + 'x-acs-signature-method' => 'HMAC-SHA1', + 'x-acs-signature-version' => '1.0', + 'x-acs-version' => $version, + 'x-acs-action' => $action, + 'user-agent' => Utils::getUserAgent($this->_userAgent), + ], $globalHeaders, $extendsHeaders, $request->headers); + if (!is_null($request->body)) { + $m = $request->body; + $_request->body = Utils::toForm($m); + @$_request->headers['content-type'] = 'application/x-www-form-urlencoded'; + } + + $_request->query = Dara::merge([ + ], $globalQueries, $extendsQueries); + if (!is_null($request->query)) { + $_request->query = Dara::merge([ + ], $_request->query, $request->query); + } + + if ($authType != 'Anonymous') { + if (is_null($this->_credential)) { + throw new ClientException([ + 'code' => 'InvalidCredentials', + 'message' => 'Please set up the credentials correctly. If you are setting them through environment variables, please ensure that ALIBABA_CLOUD_ACCESS_KEY_ID and ALIBABA_CLOUD_ACCESS_KEY_SECRET are set correctly. See https://help.aliyun.com/zh/sdk/developer-reference/configure-the-alibaba-cloud-accesskey-environment-variable-on-linux-macos-and-windows-systems for more details.', + ]); + } + + $credentialModel = $this->_credential->getCredential(); + if (!is_null($credentialModel->providerName)) { + @$_request->headers['x-acs-credentials-provider'] = $credentialModel->providerName; + } + + $credentialType = $credentialModel->type; + if ($credentialType == 'bearer') { + $bearerToken = $credentialModel->bearerToken; + @$_request->headers['x-acs-bearer-token'] = $bearerToken; + @$_request->headers['x-acs-signature-type'] = 'BEARERTOKEN'; + } else if ($credentialType == 'id_token') { + $idToken = $credentialModel->securityToken; + @$_request->headers['x-acs-zero-trust-idtoken'] = $idToken; + } else { + $accessKeyId = $credentialModel->accessKeyId; + $accessKeySecret = $credentialModel->accessKeySecret; + $securityToken = $credentialModel->securityToken; + if (!is_null($securityToken) && $securityToken != '') { + @$_request->headers['x-acs-accesskey-id'] = $accessKeyId; + @$_request->headers['x-acs-security-token'] = $securityToken; + } + + $stringToSign = Utils::getStringToSign($_request); + @$_request->headers['authorization'] = 'acs ' . $accessKeyId . ':' . Utils::getROASignature($stringToSign, $accessKeySecret) . ''; + } + + } + + $_lastRequest = $_request; + $_response = Dara::send($_request, $_runtime); + $_lastResponse = $_response; + + if ($_response->statusCode == 204) { + return [ + 'headers' => $_response->headers, + ]; + } + + if (($_response->statusCode >= 400) && ($_response->statusCode < 600)) { + $_res = StreamUtil::readAsJSON($_response->body); + $err = $_res; + $requestId = '' . (@$err['RequestId'] ? @$err['RequestId'] : @$err['requestId']); + $code = '' . (@$err['Code'] ? @$err['Code'] : @$err['code']); + if (('' . $code . '' == 'Throttling') || ('' . $code . '' == 'Throttling.User') || ('' . $code . '' == 'Throttling.Api')) { + throw new ThrottlingException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'retryAfter' => Utils::getThrottlingTimeLeft($_response->headers), + 'data' => $err, + 'requestId' => '' . $requestId . '', + ]); + } else if (($_response->statusCode >= 400) && ($_response->statusCode < 500)) { + throw new ClientException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'data' => $err, + 'accessDeniedDetail' => $this->getAccessDeniedDetail($err), + 'requestId' => '' . $requestId . '', + ]); + } else { + throw new ServerException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'data' => $err, + 'requestId' => '' . $requestId . '', + ]); + } + + } + + if ($bodyType == 'binary') { + $resp = [ + 'body' => $_response->body, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + return $resp; + } else if ($bodyType == 'byte') { + $byt = StreamUtil::readAsBytes($_response->body); + return [ + 'body' => $byt, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($bodyType == 'string') { + $_str = StreamUtil::readAsString($_response->body); + return [ + 'body' => $_str, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($bodyType == 'json') { + $obj = StreamUtil::readAsJSON($_response->body); + $res = $obj; + return [ + 'body' => $res, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($bodyType == 'array') { + $arr = StreamUtil::readAsJSON($_response->body); + return [ + 'body' => $arr, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else { + return [ + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } + + } catch (DaraException $e) { + $_context = new RetryPolicyContext([ + 'retriesAttempted' => $_retriesAttempted, + 'lastRequest' => $_lastRequest, + 'lastResponse' => $_lastResponse, + 'exception' => $e, + ]); + continue; + } + } + + throw new DaraUnableRetryException($_context); + } + + /** + * @remarks + * Encapsulate the request and invoke the network + * + * @param action - api name + * @param version - product version + * @param protocol - http or https + * @param method - e.g. GET + * @param authType - authorization type e.g. AK + * @param bodyType - response body type e.g. String + * @param request - object of OpenApiRequest + * @param runtime - which controls some details of call api, such as retry times + * @returns the response + * @param Params $params + * @param OpenApiRequest $request + * @param RuntimeOptions $runtime + * @return mixed[] + */ + public function doRequest($params, $request, $runtime) + { + $_runtime = [ + 'key' => '' . ($runtime->key ? $runtime->key : $this->_key), + 'cert' => '' . ($runtime->cert ? $runtime->cert : $this->_cert), + 'ca' => '' . ($runtime->ca ? $runtime->ca : $this->_ca), + 'readTimeout' => (($runtime->readTimeout ? $runtime->readTimeout : $this->_readTimeout) + 0), + 'connectTimeout' => (($runtime->connectTimeout ? $runtime->connectTimeout : $this->_connectTimeout) + 0), + 'httpProxy' => '' . ($runtime->httpProxy ? $runtime->httpProxy : $this->_httpProxy), + 'httpsProxy' => '' . ($runtime->httpsProxy ? $runtime->httpsProxy : $this->_httpsProxy), + 'noProxy' => '' . ($runtime->noProxy ? $runtime->noProxy : $this->_noProxy), + 'socks5Proxy' => '' . ($runtime->socks5Proxy ? $runtime->socks5Proxy : $this->_socks5Proxy), + 'socks5NetWork' => '' . ($runtime->socks5NetWork ? $runtime->socks5NetWork : $this->_socks5NetWork), + 'maxIdleConns' => (($runtime->maxIdleConns ? $runtime->maxIdleConns : $this->_maxIdleConns) + 0), + 'retryOptions' => $this->_retryOptions, + 'ignoreSSL' => $runtime->ignoreSSL, + 'tlsMinVersion' => $this->_tlsMinVersion, + ]; + + $_retriesAttempted = 0; + $_lastRequest = null; + $_lastResponse = null; + $_context = new RetryPolicyContext([ + 'retriesAttempted' => $_retriesAttempted, + ]); + while (Dara::shouldRetry($_runtime['retryOptions'], $_context)) { + if ($_retriesAttempted > 0) { + $_backoffTime = Dara::getBackoffDelay($_runtime['retryOptions'], $_context); + if ($_backoffTime > 0) { + Dara::sleep($_backoffTime); + } + } + + $_retriesAttempted++; + try { + $_request = new Request(); + $_request->protocol = '' . ($this->_protocol ? $this->_protocol : $params->protocol); + $_request->method = $params->method; + $_request->pathname = $params->pathname; + $globalQueries = []; + $globalHeaders = []; + if (!is_null($this->_globalParameters)) { + $globalParams = $this->_globalParameters; + if (!is_null($globalParams->queries)) { + $globalQueries = $globalParams->queries; + } + + if (!is_null($globalParams->headers)) { + $globalHeaders = $globalParams->headers; + } + + } + + $extendsHeaders = []; + $extendsQueries = []; + if (!is_null($runtime->extendsParameters)) { + $extendsParameters = $runtime->extendsParameters; + if (!is_null($extendsParameters->headers)) { + $extendsHeaders = $extendsParameters->headers; + } + + if (!is_null($extendsParameters->queries)) { + $extendsQueries = $extendsParameters->queries; + } + + } + + $_request->query = Dara::merge([ + ], $globalQueries, $extendsQueries, $request->query); + // endpoint is setted in product client + $_request->headers = Dara::merge([ + 'host' => $this->_endpoint, + 'x-acs-version' => $params->version, + 'x-acs-action' => $params->action, + 'user-agent' => Utils::getUserAgent($this->_userAgent), + 'x-acs-date' => Utils::getTimestamp(), + 'x-acs-signature-nonce' => Utils::getNonce(), + 'accept' => 'application/json', + ], $globalHeaders, $extendsHeaders, $request->headers); + if ($params->style == 'RPC') { + $headers = $this->getRpcHeaders(); + if (!is_null($headers)) { + $_request->headers = Dara::merge([ + ], $_request->headers, $headers); + } + + } + + $signatureAlgorithm = '' . ($this->_signatureAlgorithm ? $this->_signatureAlgorithm : 'ACS3-HMAC-SHA256'); + $hashedRequestPayload = Utils::hash(BytesUtil::from('', 'utf-8'), $signatureAlgorithm); + if (!is_null($request->stream)) { + $tmp = StreamUtil::readAsBytes($request->stream); + $hashedRequestPayload = Utils::hash($tmp, $signatureAlgorithm); + $_request->body = $tmp; + @$_request->headers['content-type'] = 'application/octet-stream'; + } else { + if (!is_null($request->body)) { + if ($params->reqBodyType == 'byte') { + $byteObj = unpack('C*', $request->body); + $hashedRequestPayload = Utils::hash($byteObj, $signatureAlgorithm); + $_request->body = $byteObj; + } else if ($params->reqBodyType == 'json') { + $jsonObj = json_encode($request->body, JSON_UNESCAPED_UNICODE + JSON_UNESCAPED_SLASHES); + $hashedRequestPayload = Utils::hash(StringUtil::toBytes($jsonObj, 'utf8'), $signatureAlgorithm); + $_request->body = $jsonObj; + @$_request->headers['content-type'] = 'application/json; charset=utf-8'; + } else { + $m = $request->body; + $formObj = Utils::toForm($m); + $hashedRequestPayload = Utils::hash(StringUtil::toBytes($formObj, 'utf8'), $signatureAlgorithm); + $_request->body = $formObj; + @$_request->headers['content-type'] = 'application/x-www-form-urlencoded'; + } + + } + + } + + @$_request->headers['x-acs-content-sha256'] = bin2hex(BytesUtil::toString($hashedRequestPayload)); + if ($params->authType != 'Anonymous') { + if (is_null($this->_credential)) { + throw new ClientException([ + 'code' => 'InvalidCredentials', + 'message' => 'Please set up the credentials correctly. If you are setting them through environment variables, please ensure that ALIBABA_CLOUD_ACCESS_KEY_ID and ALIBABA_CLOUD_ACCESS_KEY_SECRET are set correctly. See https://help.aliyun.com/zh/sdk/developer-reference/configure-the-alibaba-cloud-accesskey-environment-variable-on-linux-macos-and-windows-systems for more details.', + ]); + } + + $credentialModel = $this->_credential->getCredential(); + if (!is_null($credentialModel->providerName)) { + @$_request->headers['x-acs-credentials-provider'] = $credentialModel->providerName; + } + + $authType = $credentialModel->type; + if ($authType == 'bearer') { + $bearerToken = $credentialModel->bearerToken; + @$_request->headers['x-acs-bearer-token'] = $bearerToken; + if ($params->style == 'RPC') { + @$_request->query['SignatureType'] = 'BEARERTOKEN'; + } else { + @$_request->headers['x-acs-signature-type'] = 'BEARERTOKEN'; + } + + } else if ($authType == 'id_token') { + $idToken = $credentialModel->securityToken; + @$_request->headers['x-acs-zero-trust-idtoken'] = $idToken; + } else { + $accessKeyId = $credentialModel->accessKeyId; + $accessKeySecret = $credentialModel->accessKeySecret; + $securityToken = $credentialModel->securityToken; + if (!is_null($securityToken) && $securityToken != '') { + @$_request->headers['x-acs-accesskey-id'] = $accessKeyId; + @$_request->headers['x-acs-security-token'] = $securityToken; + } + + @$_request->headers['Authorization'] = Utils::getAuthorization($_request, $signatureAlgorithm, bin2hex(BytesUtil::toString($hashedRequestPayload)), $accessKeyId, $accessKeySecret); + } + + } + + $_lastRequest = $_request; + $_response = Dara::send($_request, $_runtime); + $_lastResponse = $_response; + + if (($_response->statusCode >= 400) && ($_response->statusCode < 600)) { + $err = []; + if (!is_null(@$_response->headers['content-type']) && @$_response->headers['content-type'] == 'text/xml;charset=utf-8') { + $_str = StreamUtil::readAsString($_response->body); + $respMap = XML::parseXml($_str, null); + $err = @$respMap['Error']; + } else { + $_res = StreamUtil::readAsJSON($_response->body); + $err = $_res; + } + + $requestId = '' . (@$err['RequestId'] ? @$err['RequestId'] : @$err['requestId']); + $code = '' . (@$err['Code'] ? @$err['Code'] : @$err['code']); + if (('' . $code . '' == 'Throttling') || ('' . $code . '' == 'Throttling.User') || ('' . $code . '' == 'Throttling.Api')) { + throw new ThrottlingException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'retryAfter' => Utils::getThrottlingTimeLeft($_response->headers), + 'data' => $err, + 'requestId' => '' . $requestId . '', + ]); + } else if (($_response->statusCode >= 400) && ($_response->statusCode < 500)) { + throw new ClientException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'data' => $err, + 'accessDeniedDetail' => $this->getAccessDeniedDetail($err), + 'requestId' => '' . $requestId . '', + ]); + } else { + throw new ServerException([ + 'statusCode' => $_response->statusCode, + 'code' => '' . $code . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . $requestId . '', + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'data' => $err, + 'requestId' => '' . $requestId . '', + ]); + } + + } + + if ($params->bodyType == 'binary') { + $resp = [ + 'body' => $_response->body, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + return $resp; + } else if ($params->bodyType == 'byte') { + $byt = StreamUtil::readAsBytes($_response->body); + return [ + 'body' => $byt, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($params->bodyType == 'string') { + $respStr = StreamUtil::readAsString($_response->body); + return [ + 'body' => $respStr, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($params->bodyType == 'json') { + $obj = StreamUtil::readAsJSON($_response->body); + $res = $obj; + return [ + 'body' => $res, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else if ($params->bodyType == 'array') { + $arr = StreamUtil::readAsJSON($_response->body); + return [ + 'body' => $arr, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } else { + $anything = StreamUtil::readAsString($_response->body); + return [ + 'body' => $anything, + 'headers' => $_response->headers, + 'statusCode' => $_response->statusCode, + ]; + } + + } catch (DaraException $e) { + $_context = new RetryPolicyContext([ + 'retriesAttempted' => $_retriesAttempted, + 'lastRequest' => $_lastRequest, + 'lastResponse' => $_lastResponse, + 'exception' => $e, + ]); + continue; + } + } + + throw new DaraUnableRetryException($_context); + } + + /** + * @remarks + * Encapsulate the request and invoke the network + * + * @param action - api name + * @param version - product version + * @param protocol - http or https + * @param method - e.g. GET + * @param authType - authorization type e.g. AK + * @param bodyType - response body type e.g. String + * @param request - object of OpenApiRequest + * @param runtime - which controls some details of call api, such as retry times + * @returns the response + * @param Params $params + * @param OpenApiRequest $request + * @param RuntimeOptions $runtime + * @return mixed[] + */ + public function execute($params, $request, $runtime) + { + $_runtime = [ + 'key' => '' . ($runtime->key ? $runtime->key : $this->_key), + 'cert' => '' . ($runtime->cert ? $runtime->cert : $this->_cert), + 'ca' => '' . ($runtime->ca ? $runtime->ca : $this->_ca), + 'readTimeout' => (($runtime->readTimeout ? $runtime->readTimeout : $this->_readTimeout) + 0), + 'connectTimeout' => (($runtime->connectTimeout ? $runtime->connectTimeout : $this->_connectTimeout) + 0), + 'httpProxy' => '' . ($runtime->httpProxy ? $runtime->httpProxy : $this->_httpProxy), + 'httpsProxy' => '' . ($runtime->httpsProxy ? $runtime->httpsProxy : $this->_httpsProxy), + 'noProxy' => '' . ($runtime->noProxy ? $runtime->noProxy : $this->_noProxy), + 'socks5Proxy' => '' . ($runtime->socks5Proxy ? $runtime->socks5Proxy : $this->_socks5Proxy), + 'socks5NetWork' => '' . ($runtime->socks5NetWork ? $runtime->socks5NetWork : $this->_socks5NetWork), + 'maxIdleConns' => (($runtime->maxIdleConns ? $runtime->maxIdleConns : $this->_maxIdleConns) + 0), + 'retryOptions' => $this->_retryOptions, + 'ignoreSSL' => $runtime->ignoreSSL, + 'tlsMinVersion' => $this->_tlsMinVersion, + 'disableHttp2' => boolval(($this->_disableHttp2 ? $this->_disableHttp2 : false)), + ]; + + $_retriesAttempted = 0; + $_lastRequest = null; + $_lastResponse = null; + $_context = new RetryPolicyContext([ + 'retriesAttempted' => $_retriesAttempted, + ]); + while (Dara::shouldRetry($_runtime['retryOptions'], $_context)) { + if ($_retriesAttempted > 0) { + $_backoffTime = Dara::getBackoffDelay($_runtime['retryOptions'], $_context); + if ($_backoffTime > 0) { + Dara::sleep($_backoffTime); + } + } + + $_retriesAttempted++; + try { + $_request = new Request(); + // spi = new Gateway();//Gateway implements SPI,这一步在产品 SDK 中实例化 + $headers = $this->getRpcHeaders(); + $globalQueries = []; + $globalHeaders = []; + if (!is_null($this->_globalParameters)) { + $globalParams = $this->_globalParameters; + if (!is_null($globalParams->queries)) { + $globalQueries = $globalParams->queries; + } + + if (!is_null($globalParams->headers)) { + $globalHeaders = $globalParams->headers; + } + + } + + $extendsHeaders = []; + $extendsQueries = []; + if (!is_null($runtime->extendsParameters)) { + $extendsParameters = $runtime->extendsParameters; + if (!is_null($extendsParameters->headers)) { + $extendsHeaders = $extendsParameters->headers; + } + + if (!is_null($extendsParameters->queries)) { + $extendsQueries = $extendsParameters->queries; + } + + } + + $requestContext = new \Darabonba\GatewaySpi\Models\InterceptorContext\request([ + 'headers' => Dara::merge([ + ], $globalHeaders, $extendsHeaders, $request->headers, $headers), + 'query' => Dara::merge([ + ], $globalQueries, $extendsQueries, $request->query), + 'body' => $request->body, + 'stream' => $request->stream, + 'hostMap' => $request->hostMap, + 'pathname' => $params->pathname, + 'productId' => $this->_productId, + 'action' => $params->action, + 'version' => $params->version, + 'protocol' => '' . ($this->_protocol ? $this->_protocol : $params->protocol), + 'method' => '' . ($this->_method ? $this->_method : $params->method), + 'authType' => $params->authType, + 'bodyType' => $params->bodyType, + 'reqBodyType' => $params->reqBodyType, + 'style' => $params->style, + 'credential' => $this->_credential, + 'signatureVersion' => $this->_signatureVersion, + 'signatureAlgorithm' => $this->_signatureAlgorithm, + 'userAgent' => Utils::getUserAgent($this->_userAgent), + ]); + $configurationContext = new configuration([ + 'regionId' => $this->_regionId, + 'endpoint' => '' . ($request->endpointOverride ? $request->endpointOverride : $this->_endpoint), + 'endpointRule' => $this->_endpointRule, + 'endpointMap' => $this->_endpointMap, + 'endpointType' => $this->_endpointType, + 'network' => $this->_network, + 'suffix' => $this->_suffix, + ]); + $interceptorContext = new InterceptorContext([ + 'request' => $requestContext, + 'configuration' => $configurationContext, + ]); + $attributeMap = new AttributeMap([]); + if (!is_null($this->_attributeMap)) { + $attributeMap = $this->_attributeMap; + } + + // 1. spi.modifyConfiguration(context: SPI.InterceptorContext, attributeMap: SPI.AttributeMap); + $this->_spi->modifyConfiguration($interceptorContext, $attributeMap); + // 2. spi.modifyRequest(context: SPI.InterceptorContext, attributeMap: SPI.AttributeMap); + $this->_spi->modifyRequest($interceptorContext, $attributeMap); + $_request->protocol = $interceptorContext->request->protocol; + $_request->method = $interceptorContext->request->method; + $_request->pathname = $interceptorContext->request->pathname; + $_request->query = $interceptorContext->request->query; + $_request->body = $interceptorContext->request->stream; + $_request->headers = $interceptorContext->request->headers; + $_lastRequest = $_request; + $_response = Dara::send($_request, $_runtime); + $_lastResponse = $_response; + + $responseContext = new response([ + 'statusCode' => $_response->statusCode, + 'headers' => $_response->headers, + 'body' => $_response->body, + ]); + $interceptorContext->response = $responseContext; + // 3. spi.modifyResponse(context: SPI.InterceptorContext, attributeMap: SPI.AttributeMap); + $this->_spi->modifyResponse($interceptorContext, $attributeMap); + return [ + 'headers' => $interceptorContext->response->headers, + 'statusCode' => $interceptorContext->response->statusCode, + 'body' => $interceptorContext->response->deserializedBody, + ]; + } catch (DaraException $e) { + $_context = new RetryPolicyContext([ + 'retriesAttempted' => $_retriesAttempted, + 'lastRequest' => $_lastRequest, + 'lastResponse' => $_lastResponse, + 'exception' => $e, + ]); + continue; + } + } + + throw new DaraUnableRetryException($_context); + } + + /** + * @param Params $params + * @param OpenApiRequest $request + * @param RuntimeOptions $runtime + * @return SSEResponse + */ + public function callSSEApi($params, $request, $runtime) + { + $_runtime = [ + 'key' => '' . ($runtime->key ? $runtime->key : $this->_key), + 'cert' => '' . ($runtime->cert ? $runtime->cert : $this->_cert), + 'ca' => '' . ($runtime->ca ? $runtime->ca : $this->_ca), + 'readTimeout' => (($runtime->readTimeout ? $runtime->readTimeout : $this->_readTimeout) + 0), + 'connectTimeout' => (($runtime->connectTimeout ? $runtime->connectTimeout : $this->_connectTimeout) + 0), + 'httpProxy' => '' . ($runtime->httpProxy ? $runtime->httpProxy : $this->_httpProxy), + 'httpsProxy' => '' . ($runtime->httpsProxy ? $runtime->httpsProxy : $this->_httpsProxy), + 'noProxy' => '' . ($runtime->noProxy ? $runtime->noProxy : $this->_noProxy), + 'socks5Proxy' => '' . ($runtime->socks5Proxy ? $runtime->socks5Proxy : $this->_socks5Proxy), + 'socks5NetWork' => '' . ($runtime->socks5NetWork ? $runtime->socks5NetWork : $this->_socks5NetWork), + 'maxIdleConns' => (($runtime->maxIdleConns ? $runtime->maxIdleConns : $this->_maxIdleConns) + 0), + 'retryOptions' => $this->_retryOptions, + 'ignoreSSL' => $runtime->ignoreSSL, + 'tlsMinVersion' => $this->_tlsMinVersion, + ]; + $_request = new Request(); + $_request->protocol = '' . ($this->_protocol ? $this->_protocol : $params->protocol); + $_request->method = $params->method; + $_request->pathname = $params->pathname; + $globalQueries = []; + $globalHeaders = []; + if (!is_null($this->_globalParameters)) { + $globalParams = $this->_globalParameters; + if (!is_null($globalParams->queries)) { + $globalQueries = $globalParams->queries; + } + + if (!is_null($globalParams->headers)) { + $globalHeaders = $globalParams->headers; + } + + } + + $extendsHeaders = []; + $extendsQueries = []; + if (!is_null($runtime->extendsParameters)) { + $extendsParameters = $runtime->extendsParameters; + if (!is_null($extendsParameters->headers)) { + $extendsHeaders = $extendsParameters->headers; + } + + if (!is_null($extendsParameters->queries)) { + $extendsQueries = $extendsParameters->queries; + } + + } + + $_request->query = Dara::merge([ + ], $globalQueries, $extendsQueries, $request->query); + // endpoint is setted in product client + $_request->headers = Dara::merge([ + 'host' => $this->_endpoint, + 'x-acs-version' => $params->version, + 'x-acs-action' => $params->action, + 'user-agent' => Utils::getUserAgent($this->_userAgent), + 'x-acs-date' => Utils::getTimestamp(), + 'x-acs-signature-nonce' => Utils::getNonce(), + 'accept' => 'application/json', + ], $extendsHeaders, $globalHeaders, $request->headers); + if ($params->style == 'RPC') { + $headers = $this->getRpcHeaders(); + if (!is_null($headers)) { + $_request->headers = Dara::merge([ + ], $_request->headers, $headers); + } + + } + + $signatureAlgorithm = '' . ($this->_signatureAlgorithm ? $this->_signatureAlgorithm : 'ACS3-HMAC-SHA256'); + $hashedRequestPayload = Utils::hash(BytesUtil::from('', 'utf-8'), $signatureAlgorithm); + if (!is_null($request->stream)) { + $tmp = StreamUtil::readAsBytes($request->stream); + $hashedRequestPayload = Utils::hash($tmp, $signatureAlgorithm); + $_request->body = $tmp; + @$_request->headers['content-type'] = 'application/octet-stream'; + } else { + if (!is_null($request->body)) { + if ($params->reqBodyType == 'byte') { + $byteObj = unpack('C*', $request->body); + $hashedRequestPayload = Utils::hash($byteObj, $signatureAlgorithm); + $_request->body = $byteObj; + } else if ($params->reqBodyType == 'json') { + $jsonObj = json_encode($request->body, JSON_UNESCAPED_UNICODE + JSON_UNESCAPED_SLASHES); + $hashedRequestPayload = Utils::hash(StringUtil::toBytes($jsonObj, 'utf8'), $signatureAlgorithm); + $_request->body = $jsonObj; + @$_request->headers['content-type'] = 'application/json; charset=utf-8'; + } else { + $m = $request->body; + $formObj = Utils::toForm($m); + $hashedRequestPayload = Utils::hash(StringUtil::toBytes($formObj, 'utf8'), $signatureAlgorithm); + $_request->body = $formObj; + @$_request->headers['content-type'] = 'application/x-www-form-urlencoded'; + } + + } + + } + + @$_request->headers['x-acs-content-sha256'] = bin2hex(BytesUtil::toString($hashedRequestPayload)); + if ($params->authType != 'Anonymous') { + $credentialModel = $this->_credential->getCredential(); + if (!is_null($credentialModel->providerName)) { + @$_request->headers['x-acs-credentials-provider'] = $credentialModel->providerName; + } + + $authType = $credentialModel->type; + if ($authType == 'bearer') { + $bearerToken = $credentialModel->bearerToken; + @$_request->headers['x-acs-bearer-token'] = $bearerToken; + } else if ($authType == 'id_token') { + $idToken = $credentialModel->securityToken; + @$_request->headers['x-acs-zero-trust-idtoken'] = $idToken; + } else { + $accessKeyId = $credentialModel->accessKeyId; + $accessKeySecret = $credentialModel->accessKeySecret; + $securityToken = $credentialModel->securityToken; + if (!is_null($securityToken) && $securityToken != '') { + @$_request->headers['x-acs-accesskey-id'] = $accessKeyId; + @$_request->headers['x-acs-security-token'] = $securityToken; + } + + @$_request->headers['Authorization'] = Utils::getAuthorization($_request, $signatureAlgorithm, bin2hex(BytesUtil::toString($hashedRequestPayload)), $accessKeyId, $accessKeySecret); + } + + } + + $_runtime['stream'] = true; + $_response = Dara::send($_request, $_runtime); + + if (($_response->statusCode >= 400) && ($_response->statusCode < 600)) { + $err = []; + if (!is_null(@$_response->headers['content-type']) && @$_response->headers['content-type'] == 'text/xml;charset=utf-8') { + $_str = StreamUtil::readAsString($_response->body); + $respMap = XML::parseXml($_str, null); + $err = @$respMap['Error']; + } else { + $_res = StreamUtil::readAsJSON($_response->body); + $err = $_res; + } + + @$err['statusCode'] = $_response->statusCode; + throw new DaraException([ + 'code' => '' . (string) (@$err['Code'] ? @$err['Code'] : @$err['code']) . '', + 'message' => 'code: ' . (string) $_response->statusCode . ', ' . (string) (@$err['Message'] ? @$err['Message'] : @$err['message']) . ' request id: ' . (string) (@$err['RequestId'] ? @$err['RequestId'] : @$err['requestId']) . '', + 'data' => $err, + 'description' => '' . (string) (@$err['Description'] ? @$err['Description'] : @$err['description']) . '', + 'accessDeniedDetail' => (@$err['AccessDeniedDetail'] ? @$err['AccessDeniedDetail'] : @$err['accessDeniedDetail']), + ]); + } + + $events = StreamUtil::readAsSSE($_response->body); + + foreach ($events as $event) { + yield new SSEResponse([ + 'statusCode' => $_response->statusCode, + 'headers' => $_response->headers, + 'event' => $event, + ]); + } + } + + /** + * @param Params $params + * @param OpenApiRequest $request + * @param RuntimeOptions $runtime + * @return mixed[] + */ + public function callApi($params, $request, $runtime) + { + if (is_null($params)) { + throw new ClientException([ + 'code' => 'ParameterMissing', + 'message' => '\'params\' can not be unset', + ]); + } + + if (is_null($this->_signatureVersion) || $this->_signatureVersion != 'v4') { + if (is_null($this->_signatureAlgorithm) || $this->_signatureAlgorithm != 'v2') { + return $this->doRequest($params, $request, $runtime); + } else if (($params->style == 'ROA') && ($params->reqBodyType == 'json')) { + return $this->doROARequest($params->action, $params->version, $params->protocol, $params->method, $params->authType, $params->pathname, $params->bodyType, $request, $runtime); + } else if ($params->style == 'ROA') { + return $this->doROARequestWithForm($params->action, $params->version, $params->protocol, $params->method, $params->authType, $params->pathname, $params->bodyType, $request, $runtime); + } else { + return $this->doRPCRequest($params->action, $params->version, $params->protocol, $params->method, $params->authType, $params->bodyType, $request, $runtime); + } + + } else { + return $this->execute($params, $request, $runtime); + } + + } + + /** + * @remarks + * Get accesskey id by using credential + * @returns accesskey id + * @return string + */ + public function getAccessKeyId() + { + if (is_null($this->_credential)) { + return ''; + } + + $accessKeyId = $this->_credential->getAccessKeyId(); + return $accessKeyId; + } + + /** + * @remarks + * Get accesskey secret by using credential + * @returns accesskey secret + * @return string + */ + public function getAccessKeySecret() + { + if (is_null($this->_credential)) { + return ''; + } + + $secret = $this->_credential->getAccessKeySecret(); + return $secret; + } + + /** + * @remarks + * Get security token by using credential + * @returns security token + * @return string + */ + public function getSecurityToken() + { + if (is_null($this->_credential)) { + return ''; + } + + $token = $this->_credential->getSecurityToken(); + return $token; + } + + /** + * @remarks + * Get bearer token by credential + * @returns bearer token + * @return string + */ + public function getBearerToken() + { + if (is_null($this->_credential)) { + return ''; + } + + $token = $this->_credential->getBearerToken(); + return $token; + } + + /** + * @remarks + * Get credential type by credential + * @returns credential type e.g. access_key + * @return string + */ + public function getType() + { + if (is_null($this->_credential)) { + return ''; + } + + $authType = $this->_credential->getType(); + return $authType; + } + + /** + * @remarks + * If the endpointRule and config.endpoint are empty, throw error + * + * @param config - config contains the necessary information to create a client + * @param \Darabonba\OpenApi\Models\Config $config + * @return void + */ + public function checkConfig($config) + { + if (is_null($this->_endpointRule) && is_null($config->endpoint)) { + throw new ClientException([ + 'code' => 'ParameterMissing', + 'message' => '\'config.endpoint\' can not be empty', + ]); + } + + } + + /** + * @remarks + * set gateway client + * + * @param spi - . + * @param Client $spi + * @return void + */ + public function setGatewayClient($spi) + { + $this->_spi = $spi; + } + + /** + * @remarks + * set RPC header for debug + * + * @param headers - headers for debug, this header can be used only once. + * @param string[] $headers + * @return void + */ + public function setRpcHeaders($headers) + { + $this->_headers = $headers; + } + + /** + * @remarks + * get RPC header for debug + * @return string[] + */ + public function getRpcHeaders() + { + $headers = $this->_headers; + $this->_headers = null; + return $headers; + } + + /** + * @param mixed[] $err + * @return mixed[] + */ + public function getAccessDeniedDetail($err) + { + $accessDeniedDetail = null; + if (!is_null(@$err['AccessDeniedDetail'])) { + $detail1 = @$err['AccessDeniedDetail']; + $accessDeniedDetail = $detail1; + } else if (!is_null(@$err['accessDeniedDetail'])) { + $detail2 = @$err['accessDeniedDetail']; + $accessDeniedDetail = $detail2; + } + + return $accessDeniedDetail; + } + +} diff --git a/vendor/alibabacloud/openapi-core/src/Sm3.php b/vendor/alibabacloud/openapi-core/src/Sm3.php new file mode 100644 index 0000000..d8f4418 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/src/Sm3.php @@ -0,0 +1,183 @@ +> 32); + $message .= pack('N', $bitLen & 0xFFFFFFFF); + + // Process message in 512-bit blocks + $v = self::$IV; + $blocks = str_split($message, 64); + + foreach ($blocks as $block) { + $v = $this->cf($v, $block); + } + + // Convert to hex string + $result = ''; + foreach ($v as $word) { + $result .= sprintf('%08x', $word); + } + + return $result; + } + + /** + * Compression function + */ + private function cf($v, $block) + { + $w = []; + $w1 = []; + + // Expand message block + for ($i = 0; $i < 16; $i++) { + $w[$i] = unpack('N', substr($block, $i * 4, 4))[1]; + } + + for ($i = 16; $i < 68; $i++) { + $w[$i] = $this->p1( + $w[$i - 16] ^ $w[$i - 9] ^ $this->rotl($w[$i - 3], 15) + ) ^ $this->rotl($w[$i - 13], 7) ^ $w[$i - 6]; + } + + for ($i = 0; $i < 64; $i++) { + $w1[$i] = $w[$i] ^ $w[$i + 4]; + } + + // Compression + $a = $v[0]; + $b = $v[1]; + $c = $v[2]; + $d = $v[3]; + $e = $v[4]; + $f = $v[5]; + $g = $v[6]; + $h = $v[7]; + + for ($i = 0; $i < 64; $i++) { + $ss1 = $this->rotl( + $this->add32( + $this->add32($this->rotl($a, 12), $e), + $this->rotl($this->t($i), $i) + ), + 7 + ); + + $ss2 = $ss1 ^ $this->rotl($a, 12); + $tt1 = $this->add32( + $this->add32( + $this->add32($this->ff($a, $b, $c, $i), $d), + $ss2 + ), + $w1[$i] + ); + + $tt2 = $this->add32( + $this->add32( + $this->add32($this->gg($e, $f, $g, $i), $h), + $ss1 + ), + $w[$i] + ); + + $d = $c; + $c = $this->rotl($b, 9); + $b = $a; + $a = $tt1; + $h = $g; + $g = $this->rotl($f, 19); + $f = $e; + $e = $this->p0($tt2); + } + + return [ + $a ^ $v[0], + $b ^ $v[1], + $c ^ $v[2], + $d ^ $v[3], + $e ^ $v[4], + $f ^ $v[5], + $g ^ $v[6], + $h ^ $v[7] + ]; + } + + private function ff($x, $y, $z, $j) + { + if ($j < 16) { + return $x ^ $y ^ $z; + } + return ($x & $y) | ($x & $z) | ($y & $z); + } + + private function gg($x, $y, $z, $j) + { + if ($j < 16) { + return $x ^ $y ^ $z; + } + return ($x & $y) | ((~$x) & $z); + } + + private function t($j) + { + if ($j < 16) { + return self::$T_0_15; + } + return self::$T_16_63; + } + + private function rotl($x, $n) + { + $n = $n % 32; + return (($x << $n) | ($x >> (32 - $n))) & 0xFFFFFFFF; + } + + private function p0($x) + { + return $x ^ $this->rotl($x, 9) ^ $this->rotl($x, 17); + } + + private function p1($x) + { + return $x ^ $this->rotl($x, 15) ^ $this->rotl($x, 23); + } + + private function add32($a, $b) + { + return ($a + $b) & 0xFFFFFFFF; + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/openapi-core/src/Utils.php b/vendor/alibabacloud/openapi-core/src/Utils.php new file mode 100644 index 0000000..3a57b96 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/src/Utils.php @@ -0,0 +1,770 @@ +toMap(); + $map = self::exceptStream($map); + $newContent = $content::fromMap($map); + $class = new \ReflectionClass($newContent); + foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC) as $property) { + $name = $property->getName(); + if (!$property->isStatic()) { + $content->{$name} = $property->getValue($newContent); + } + } + } + + private static function exceptStream($map) + { + if ($map instanceof StreamInterface) { + return null; + } elseif (\is_array($map)) { + $data = []; + foreach ($map as $k => $v) { + if (null !== $v) { + $item = self::exceptStream($v); + if (null !== $item) { + $data[$k] = $item; + } + } else { + $data[$k] = $v; + } + } + return $data; + } + return $map; + } + + /** + * @remarks + * If endpointType is internal, use internal endpoint + * If serverUse is true and endpointType is accelerate, use accelerate endpoint + * Default return endpoint + * + * @param string $endpoint The endpoint URL + * @param boolean $useAccelerate Whether use accelerate endpoint + * @param string $endpointType Value must be internal or accelerate + * @return string The final endpoint + */ + static public function getEndpoint($endpoint, $useAccelerate, $endpointType) + { + if ('internal' == $endpointType) { + $tmp = explode('.', $endpoint); + $tmp[0] .= '-internal'; + $endpoint = implode('.', $tmp); + } + if ($useAccelerate && 'accelerate' == $endpointType) { + return 'oss-accelerate.aliyuncs.com'; + } + + return $endpoint; + } + + /** + * @remarks + * Get throttling param + * + * @param string[] $headers The response headers + * @return int Time left + */ + public static function getThrottlingTimeLeft(array $headers) { + $rateLimitForUserApi = isset($headers["x-ratelimit-user-api"]) ? $headers["x-ratelimit-user-api"] : null; + $rateLimitForUser = isset($headers["x-ratelimit-user"]) ? $headers["x-ratelimit-user"] : null; + + $timeLeftForUserApi = self::getTimeLeft($rateLimitForUserApi); + $timeLeftForUser = self::getTimeLeft($rateLimitForUser); + + $maxValue = max($timeLeftForUserApi, $timeLeftForUser); + return $maxValue !== null ? $maxValue : 0; + } + + +private static function getTimeLeft($rateLimit) { + if ($rateLimit) { + $pairs = explode(',', $rateLimit); + foreach ($pairs as $pair) { + $kv = explode(':', $pair); + if (count($kv) === 2) { + $key = trim($kv[0]); + $value = trim($kv[1]); + if ($key === 'TimeLeft') { + $timeLeftValue = intval($value); + if ($timeLeftValue === 0 && $value !== "0") { // 确认不是 "0" + return null; + } + return $timeLeftValue; + } + } + } + } + return null; +} + + /** + * @remarks + * Hash the raw data with signatureAlgorithm + * + * @param int[] $raw Hashing data + * @param string $signatureAlgorithm The autograph method + * @return string|array Hashed bytes + */ + static public function hash($raw, $signatureAlgorithm) + { + $str = BytesUtil::toString($raw); + + switch ($signatureAlgorithm) { + case 'ACS3-HMAC-SHA256': + case 'ACS3-RSA-SHA256': + $res = hash('sha256', $str, true); + return $res; + case 'ACS3-HMAC-SM3': + $res = self::sm3($str); + return hex2bin($res); + } + + return []; + } + + /** + * @remarks + * Generate a nonce string + * @returns the nonce string + * @return string + */ + static public function getNonce() + { + return md5(uniqid() . uniqid(md5(microtime(true)), true)); + } + + /** + * @remarks + * Get the string to be signed according to request + * + * @param Request $request Which contains signed messages + * @return string The signed string + */ + static public function getStringToSign($request) + { + $pathname = $request->pathname ?: ''; + $query = $request->query ?: []; + + $accept = isset($request->headers['accept']) ? $request->headers['accept'] : ''; + $contentMD5 = isset($request->headers['content-md5']) ? $request->headers['content-md5'] : ''; + $contentType = isset($request->headers['content-type']) ? $request->headers['content-type'] : ''; + $date = isset($request->headers['date']) ? $request->headers['date'] : ''; + + $result = $request->method . "\n" . + $accept . "\n" . + $contentMD5 . "\n" . + $contentType . "\n" . + $date . "\n"; + + $canonicalizedHeaders = self::getCanonicalizedHeaders($request->headers); + $canonicalizedResource = self::getCanonicalizedResource($pathname, $query); + + return $result . $canonicalizedHeaders . $canonicalizedResource; + } + + private static function getCanonicalizedHeaders($headers, $prefix = 'x-acs-') + { + ksort($headers); + $str = ''; + foreach ($headers as $k => $v) { + if (0 === strpos(strtolower($k), $prefix)) { + $str .= $k . ':' . trim(self::filter($v)) . "\n"; + } + } + + return $str; + } + + private static function getCanonicalizedResource($pathname, $query) + { + if (0 === \count($query)) { + return $pathname; + } + ksort($query); + $tmp = []; + foreach ($query as $k => $v) { + if (!empty($v)) { + $tmp[] = $k . '=' . $v; + } else { + $tmp[] = $k; + } + } + + return $pathname . '?' . implode('&', $tmp); + } + + /** + * @remarks + * Get signature according to stringToSign, secret + * + * @param string $stringToSign The signed string + * @param string $secret Accesskey secret + * @return string The signature + */ + static public function getROASignature($stringToSign, $secret) + { + return base64_encode(hash_hmac('sha1', $stringToSign, $secret, true)); + } + + /** + * @remarks + * Parse filter into a form string + * + * @param mixed[] $filter Object + * @return string The string + */ + static public function toForm($filter) + { + $query = $filter; + if (null === $query) { + return ''; + } + if ($query instanceof Model) { + $query = $query->toMap(); + } + $tmp = []; + foreach ($query as $k => $v) { + if (0 !== strpos($k, '_')) { + $tmp[$k] = $v; + } + } + $res = self::flatten($tmp); + ksort($res); + + return http_build_query($res); + } + + /** + * @remarks + * Get timestamp + * @returns the timestamp string + * @return string + */ + static public function getTimestamp() + { + return gmdate('Y-m-d\\TH:i:s\\Z'); + } + + /** + * @remarks + * Get UTC string + * @returns the UTC string + * @return string + */ + static public function getDateUTCString() + { + return gmdate('D, d M Y H:i:s T'); + } + + /** + * @remarks + * Parse filter into a object which's type is map[string]string + * + * @param mixed[] $filter Query param + * @return string[] The object + */ + static public function query($filter) + { + if (null === $filter) { + return []; + } + $dict = $filter; + if ($dict instanceof Model) { + $dict = $dict->toMap(); + } + $tmp = []; + foreach ($dict as $k => $v) { + if (0 !== strpos($k, '_')) { + $tmp[$k] = $v; + } + } + + return self::flatten($tmp); + } + + /** + * @remarks + * Get signature according to signedParams, method and secret + * + * @param string[] $signedParams Params which need to be signed + * @param string $method HTTP method e.g. GET + * @param string $secret AccessKeySecret + * @return string The signature + */ + static public function getRPCSignature($signedParams, $method, $secret) + { + $secret .= '&'; + $strToSign = self::getRpcStrToSign($method, $signedParams); + + $signMethod = 'HMAC-SHA1'; + + return self::encode($signMethod, $strToSign, $secret); + } + + /** + * @remarks + * Parse array into a string with specified style + * + * @param mixed $object The array + * @param string $prefix The prefix string + * @param string $style The style + * @return string The string + */ + static public function arrayToStringWithSpecifiedStyle($object, $prefix, $style) + { + if (null === $object) { + return ''; + } + if ('repeatList' === $style) { + return self::toForm([$prefix => $object]); + } + if ('simple' == $style || 'spaceDelimited' == $style || 'pipeDelimited' == $style) { + $strs = self::flatten($object); + + switch ($style) { + case 'spaceDelimited': + return implode(' ', $strs); + + case 'pipeDelimited': + return implode('|', $strs); + + default: + return implode(',', $strs); + } + } elseif ('json' === $style) { + self::parse($object, $parsed); + return json_encode($parsed); + } + + return ''; + } + + /** + * @remarks + * Transform input as map. + * @param mixed $input + * @return mixed[] + */ + static public function parseToMap($input) + { + self::parse($input, $result); + return $result; + } + + /** + * @remarks + * Get the authorization + * + * @param Request $request Request params + * @param string $signatureAlgorithm The autograph method + * @param string $payload The hashed request + * @param string $accesskey The accesskey string + * @param string $accessKeySecret The accessKeySecret string + * @return string Authorization string + */ + static public function getAuthorization($request, $signatureAlgorithm, $payload, $accesskey, $accessKeySecret) + { + $canonicalURI = $request->pathname ? $request->pathname : '/'; + $query = $request->query ?: []; + $method = strtoupper($request->method); + $canonicalQueryString = self::getCanonicalQueryString($query); + $signHeaders = []; + foreach ($request->headers as $k => $v) { + $k = strtolower($k); + if (0 === strpos($k, 'x-acs-') || 'host' === $k || 'content-type' === $k) { + $signHeaders[$k] = $v; + } + } + ksort($signHeaders); + $headers = []; + foreach ($request->headers as $k => $v) { + $k = strtolower($k); + if (0 === strpos($k, 'x-acs-') || 'host' === $k || 'content-type' === $k) { + $headers[$k] = trim($v); + } + } + $canonicalHeaderString = ''; + ksort($headers); + foreach ($headers as $k => $v) { + $canonicalHeaderString .= $k . ':' . trim(self::filter($v)) . "\n"; + } + if (empty($canonicalHeaderString)) { + $canonicalHeaderString = "\n"; + } + + $canonicalRequest = $method . "\n" . $canonicalURI . "\n" . $canonicalQueryString . "\n" . + $canonicalHeaderString . "\n" . implode(';', array_keys($signHeaders)) . "\n" . $payload; + $strtosign = $signatureAlgorithm . "\n" . bin2hex(self::hash(BytesUtil::from($canonicalRequest), $signatureAlgorithm)); + + $signature = self::sign($accessKeySecret, $strtosign, $signatureAlgorithm); + $signature = bin2hex($signature); + + return $signatureAlgorithm . + ' Credential=' . $accesskey . + ',SignedHeaders=' . implode(';', array_keys($signHeaders)) . + ',Signature=' . $signature; + } + + /** + * @param string $userAgent + * @return string + */ + static public function getUserAgent($userAgent) + { + if (empty(self::$defaultUserAgent)) { + self::$defaultUserAgent = sprintf('AlibabaCloud (%s; %s) PHP/%s Core/1.0 TeaDSL/2', PHP_OS, \PHP_SAPI, PHP_VERSION); + } + if (!empty($userAgent)) { + return self::$defaultUserAgent . ' ' . $userAgent; + } + + return self::$defaultUserAgent; + } + + private static function filter($str) + { + return str_replace(["\t", "\n", "\r", "\f"], '', $str); + } + + public static function sign($secret, $str, $algorithm) + { + $result = ''; + switch ($algorithm) { + case 'ACS3-HMAC-SHA256': + $result = hash_hmac('sha256', $str, $secret, true); + break; + case 'ACS3-HMAC-SM3': + $result = self::hmac_sm3($str, $secret, true); + break; + case 'ACS3-RSA-SHA256': + $privateKey = "-----BEGIN RSA PRIVATE KEY-----\n" . $secret . "\n-----END RSA PRIVATE KEY-----"; + @openssl_sign($str, $result, $privateKey, OPENSSL_ALGO_SHA256); + } + + return $result; + } + + private static function hmac_sm3($data, $key, $raw_output = false) + { + $pack = 'H' . \strlen(self::sm3('test')); + $blocksize = 64; + if (\strlen($key) > $blocksize) { + $key = pack($pack, self::sm3($key)); + } + $key = str_pad($key, $blocksize, \chr(0x00)); + $ipad = $key ^ str_repeat(\chr(0x36), $blocksize); + $opad = $key ^ str_repeat(\chr(0x5C), $blocksize); + $hmac = self::sm3($opad . pack($pack, self::sm3($ipad . $data))); + + return $raw_output ? pack($pack, $hmac) : $hmac; + } + + private static function sm3($message) + { + return (new Sm3())->sign($message); + } + + private static function encode($signMethod, $strToSign, $secret) + { + switch ($signMethod) { + case 'HMAC-SHA256': + return base64_encode(hash_hmac('sha256', $strToSign, $secret, true)); + default: + return base64_encode(hash_hmac('sha1', $strToSign, $secret, true)); + } + } + + /** + * @param array $items + * @param string $delimiter + * @param string $prepend + * + * @return array + */ + private static function flatten($items = [], $delimiter = '.', $prepend = '') + { + $flatten = []; + + foreach ($items as $key => $value) { + $pos = \is_int($key) ? $key + 1 : $key; + + if ($value instanceof Model) { + $value = $value->toMap(); + } elseif (\is_object($value)) { + $value = get_object_vars($value); + } + + if (\is_array($value) && !empty($value)) { + $flatten = array_merge( + $flatten, + self::flatten($value, $delimiter, $prepend . $pos . $delimiter) + ); + } else { + if (\is_bool($value)) { + $value = true === $value ? 'true' : 'false'; + } + $flatten[$prepend . $pos] = $value; + } + } + + return $flatten; + } + + private static function parse($input, &$output) + { + if (null === $input || '' === $input) { + $output = []; + } + $recursive = function ($input) use (&$recursive) { + if ($input instanceof Model) { + $input = $input->toMap(); + } elseif (\is_object($input)) { + $input = get_object_vars($input); + } + if (!\is_array($input)) { + return $input; + } + $data = []; + foreach ($input as $k => $v) { + $data[$k] = $recursive($v); + } + + return $data; + }; + $output = $recursive($input); + if (!\is_array($output)) { + $output = [$output]; + } + } + + private static function getRpcStrToSign($method, $query) + { + ksort($query); + + $params = []; + foreach ($query as $k => $v) { + if (null !== $v) { + $k = rawurlencode($k); + $v = rawurlencode($v); + $params[] = $k . '=' . (string)$v; + } + } + $str = implode('&', $params); + + return $method . '&' . rawurlencode('/') . '&' . rawurlencode($str); + } + + private static function getCanonicalQueryString($query) + { + ksort($query); + + $params = []; + foreach ($query as $k => $v) { + if (null === $v) { + continue; + } + $str = rawurlencode($k); + if ('' !== $v && null !== $v) { + $str .= '=' . rawurlencode($v); + } else { + $str .= '='; + } + $params[] = $str; + } + + return implode('&', $params); + } + + /** + * Transform input as array. + * + * @param mixed $input + * + * @return array + */ + public static function toArray($input) + { + if (\is_array($input)) { + foreach ($input as $k => &$v) { + $v = self::toArray($v); + } + } elseif ($input instanceof Model) { + $input = $input->toMap(); + foreach ($input as $k => &$v) { + $v = self::toArray($v); + } + } + + return $input; + } + + /** + * Stringify the value of map. + * + * @param array $map + * + * @return array the new stringified map + */ + public static function stringifyMapValue($map) + { + if (null === $map) { + return []; + } + foreach ($map as &$node) { + if (is_numeric($node)) { + $node = (string) $node; + } elseif (null === $node) { + $node = ''; + } elseif (\is_bool($node)) { + $node = true === $node ? 'true' : 'false'; + } elseif (\is_object($node)) { + $node = json_decode(json_encode($node), true); + } + } + + return $map; + } + /** + * @param string $product + * @param string $regionId + * @param string $endpointRule + * @param string $network + * @param string $suffix + * + * @return string + */ + static public function getEndpointRules($product, $regionId, $endpointType, $network, $suffix = null) { + $product = $product ?: ""; + $network = $network ?: ""; + + if ($endpointType == "regional") { + if ($regionId === null || $regionId === "") { + throw new RuntimeException("RegionId is empty, please set a valid RegionId"); + } + $result = "..aliyuncs.com"; + $result = str_replace("", $regionId, $result); + } else { + $result = ".aliyuncs.com"; + } + + $result = str_replace("", strtolower($product), $result); + if ($network === "" || $network === "public") { + $result = str_replace("", "", $result); + } else { + $result = str_replace("", "-" . $network, $result); + } + return $result; + } + + /** + * @param string $product + * @param string $regionId + * @param string $endpointRule + * @param string $network + * @param string $suffix + * @param string[] $endpointMap + * @param string $endpoint + * + * @return string + */ + static function getProductEndpoint($product, $regionId, $endpointRule, $network, $suffix, $endpointMap, $endpoint) + { + if (null !== $endpoint) { + return $endpoint; + } + + if (null !== $endpointMap && null !== @$endpointMap[$regionId]) { + return @$endpointMap[$regionId]; + } + + return self::getEndpointRules($product, $regionId, $endpointRule, $network, $suffix); + } + + /** + * Transform a map to a flat style map where keys are prefixed with length info. + * Map keys are transformed from "key" to "#length#key" format. + * + * @param mixed $input the input (can be an array, Model, or primitive type) + * @return mixed the transformed input + */ + public static function mapToFlatStyle($input) + { + if ($input === null) { + return $input; + } + + // Handle array (list) + if (\is_array($input) && array_keys($input) === range(0, count($input) - 1)) { + $result = []; + foreach ($input as $item) { + $result[] = self::mapToFlatStyle($item); + } + return $result; + } + + // Handle Model + if ($input instanceof Model) { + // Modify the original Model object's fields using reflection + $reflection = new \ReflectionClass($input); + $properties = $reflection->getProperties(\ReflectionProperty::IS_PUBLIC); + + foreach ($properties as $property) { + $propertyName = $property->getName(); + $value = $property->getValue($input); + + if (\is_array($value) && !empty($value) && array_keys($value) !== range(0, count($value) - 1)) { + // This is an associative array (dictionary), apply flat style to keys + $flatMap = []; + foreach ($value as $nestedKey => $nestedValue) { + $flatKey = '#' . strlen($nestedKey) . '#' . $nestedKey; + $flatMap[$flatKey] = self::mapToFlatStyle($nestedValue); + } + $property->setValue($input, $flatMap); + } else { + // Recursively process other fields + $property->setValue($input, self::mapToFlatStyle($value)); + } + } + return $input; // Return the modified original Model + } + + // Handle associative array (dictionary) + if (\is_array($input) && !empty($input)) { + $flatMap = []; + foreach ($input as $key => $value) { + $flatKey = '#' . strlen($key) . '#' . $key; + $flatMap[$flatKey] = self::mapToFlatStyle($value); + } + return $flatMap; + } + + // For primitive types, return as-is + return $input; + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/openapi-core/tests/Mock/MockServer.php b/vendor/alibabacloud/openapi-core/tests/Mock/MockServer.php new file mode 100644 index 0000000..aefded5 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/tests/Mock/MockServer.php @@ -0,0 +1,173 @@ + $value) { + $responseHeaders .= $name . ": " . $value . "\r\n"; + } + $responseHeaders .= "\r\n"; + fwrite($client, $responseHeaders); + // 刷新缓冲区,确保头部被立刻发送 + flush(); + + // 模拟发送事件流 + $count = 0; + while ($count < 5) { + $data = [ + "count" => $count + ]; + $sseData = "id: sse-test\n"; + $sseData .= "event: flow\n"; + $sseData .= "data: " . json_encode($data) . "\n"; + $sseData .= "retry: 3000\n\n"; // 重试时间可选 + fwrite($client, $sseData); + + // 再次刷新缓冲区,以确保数据被发送 + flush(); + + // 等待100毫秒 + usleep(100000); + $count++; + } + fclose($client); + continue; + } + + if ($timeoutMatch) { + // 模拟超时 + sleep(5); + $responseHeaders = "HTTP/1.1 500 Internal Server Error\r\n" . + "Content-Type: text/plain\r\n" . + "Connection: close\r\n\r\n"; + fwrite($client, $responseHeaders . "Server Timeout"); + } else { + $headerAssoc = []; + foreach ($headerLines as $headerLine) { + list($key, $value) = explode(': ', $headerLine, 2); + $headerAssoc[strtolower($key)] = trim($value); + } + + // 获取路径和请求方法 + preg_match('/^(GET|POST|PUT|DELETE)\s(\/\S*)\sHTTP\/1.1/', $requestLine, $matches); + $method = $matches[1]; + $path = $matches[2]; + + // 构建响应头 + $responseHeaders = "HTTP/1.1 200 OK\r\n" . + "Connection: close\r\n" . + "Content-Type: application/json\r\n" . + "x-acs-request-id: A45EE076-334D-5012-9746-A8F828D20FD4\r\n" . + "http-method: $method\r\n" . + "pathname: $path\r\n" . + "raw-body: $body\r\n"; + + // 构建响应体 + $responseBody = ""; + + echo $bodyType."\n"; + + switch ($bodyType) { + case 'array': + $responseBody = json_encode(["AppId", "ClassId", "UserId"]); + break; + case 'error': + $responseHeaders = "HTTP/1.1 400 Bad Request\r\n" . + "Connection: close\r\n" . + "Content-Type: application/json\r\n" . + "x-acs-request-id: A45EE076-334D-5012-9746-A8F828D20FD4\r\n" . + "http-method: $method\r\n" . + "pathname: $path\r\n"; + $responseBody = json_encode([ + "Code" => "error code", + "Message" => "error message", + "RequestId" => "A45EE076-334D-5012-9746-A8F828D20FD4", + "Description" => "error description", + "AccessDeniedDetail" => new stdClass() + ]); + break; + case 'error1': + $responseHeaders = "HTTP/1.1 400 Bad Request\r\n" . + "Connection: close\r\n" . + "Content-Type: application/json\r\n" . + "x-acs-request-id: A45EE076-334D-5012-9746-A8F828D20FD4\r\n" . + "http-method: $method\r\n" . + "pathname: $path\r\n"; + $responseBody = json_encode([ + "Code" => "error code", + "Message" => "error message", + "RequestId" => "A45EE076-334D-5012-9746-A8F828D20FD4", + "Description" => "error description", + "AccessDeniedDetail" => new stdClass(), + "accessDeniedDetail" => ["test" => 0] + ]); + break; + case 'error2': + $responseHeaders = "HTTP/1.1 400 Bad Request\r\n" . + "Connection: close\r\n" . + "Content-Type: application/json\r\n" . + "x-acs-request-id: A45EE076-334D-5012-9746-A8F828D20FD4\r\n" . + "http-method: $method\r\n" . + "pathname: $path\r\n"; + $responseBody = json_encode([ + "Code" => "error code", + "Message" => "error message", + "RequestId" => "A45EE076-334D-5012-9746-A8F828D20FD4", + "Description" => "error description", + "accessDeniedDetail" => ["test" => 0] + ]); + break; + default: + $responseBody = json_encode([ + "AppId" => "test", + "ClassId" => "test", + "UserId" => 123 + ]); + } + + fwrite($client, $responseHeaders . "\r\n" . $responseBody); + } + fclose($client); + continue; +} + +fclose($server); diff --git a/vendor/alibabacloud/openapi-core/tests/OpenApiClientTest.php b/vendor/alibabacloud/openapi-core/tests/OpenApiClientTest.php new file mode 100644 index 0000000..2f8f5cc --- /dev/null +++ b/vendor/alibabacloud/openapi-core/tests/OpenApiClientTest.php @@ -0,0 +1,512 @@ + /dev/null 2>&1 & echo $!"; + $output = shell_exec($command); + self::$serverPid = (int)trim($output); + self::$serverStarted = true; + // 等待服务器启动并验证 + sleep(2); // 增加等待时间确保服务器完全启动 + // 注册关闭钩子 + register_shutdown_function(array(__CLASS__, 'stopMockServer')); + } + + /** + * Stop Mock Server + */ + public static function stopMockServer() + { + if (self::$serverStarted && self::$serverPid > 0) { + shell_exec('kill ' . self::$serverPid); + self::$serverStarted = false; + } + } + + /** + * @before + */ + protected function initialize() + { + // Mock 服务器已在 setUpBeforeClass 中启动 + } + + /** + * @after + */ + protected function cleanup() + { + // Mock 服务器会在 tearDownAfterClass 中关闭 + } + + public function testConfig(){ + $globalParameters = new GlobalParameters([ + "headers" => [ + "global-key" => "global-value" + ], + "queries" => [ + "global-query" => "global-value" + ] + ]); + $config = new Config([ + "endpoint" => "config.endpoint", + "endpointType" => "regional", + "network" => "config.network", + "suffix" => "config.suffix", + "protocol" => "config.protocol", + "method" => "config.method", + "regionId" => "config.regionId", + "userAgent" => "config.userAgent", + "readTimeout" => 3000, + "connectTimeout" => 3000, + "httpProxy" => "config.httpProxy", + "httpsProxy" => "config.httpsProxy", + "noProxy" => "config.noProxy", + "socks5Proxy" => "config.socks5Proxy", + "socks5NetWork" => "config.socks5NetWork", + "maxIdleConns" => 128, + "signatureVersion" => "config.signatureVersion", + "signatureAlgorithm" => "config.signatureAlgorithm", + "globalParameters" => $globalParameters + ]); + $creConfig = new \AlibabaCloud\Credentials\Credential\Config([ + "accessKeyId" => "accessKeyId", + "accessKeySecret" => "accessKeySecret", + "securityToken" => "securityToken", + "type" => "sts" + ]); + $credential = new Credential($creConfig); + $config->credential = $credential; + $client = new OpenApiClient($config); + $this->assertInstanceOf(OpenApiClient::class, $client); + + $config->accessKeyId = "ak"; + $config->accessKeySecret = "secret"; + $config->securityToken = "token"; + $config->type = "sts"; + $client = new OpenApiClient($config); + $this->assertInstanceOf(OpenApiClient::class, $client); + } + + /** + * @return Config + */ + public static function createConfig(){ + $globalParameters = new GlobalParameters([ + "headers" => [ + "global-key" => "global-value" + ], + "queries" => [ + "global-query" => "global-value" + ] + ]); + $config = new Config([ + "accessKeyId" => "ak", + "accessKeySecret" => "secret", + "securityToken" => "token", + "type" => "sts", + "userAgent" => "config.userAgent", + "readTimeout" => 3000, + "connectTimeout" => 3000, + "maxIdleConns" => 128, + "signatureVersion" => "config.signatureVersion", + "signatureAlgorithm" => "ACS3-HMAC-SHA256", + "globalParameters" => $globalParameters + ]); + return $config; + } + + /** + * @return RuntimeOptions + */ + public static function createRuntimeOptions(){ + $runtime = new RuntimeOptions([ + "readTimeout" => 4000, + "connectTimeout" => 4000, + "maxIdleConns" => 100, + "autoretry" => true, + "backoffPolicy" => "no", + "backoffPeriod" => 1, + "ignoreSSL" => true, + "retryOptions" => new RetryOptions([ + "retryable" => false, + "retryCondition" => [new RetryCondition([ + "retryOnNonIdempotent" => true, + "retryOnThrottling" => true + ])] + ]), + "extendsParameters" => new ExtendsParameters([ + "headers" => [ + "extends-key" => "extends-value" + ], + ]) + ]); + return $runtime; + } + + /** + * @return OpenApiRequest + */ + public static function createOpenApiRequest(){ + $query = []; + $query["key1"] = "value"; + $query["key2"] = 1; + $query["key3"] = true; + $body = []; + $body["key1"] = "value"; + $body["key2"] = 1; + $body["key3"] = true; + $headers = [ + "for-test" => "sdk" + ]; + $req = new OpenApiRequest([ + "headers" => $headers, + "query" => Utils::query($query), + "body" => Utils::parseToMap($body) + ]); + return $req; + } + + public function testCallApiForRPCWithV2Sign_AK_Form(){ + self::ensureMockServer(); + $config = self::createConfig(); + $runtime = self::createRuntimeOptions(); + $config->protocol = "HTTP"; + $config->signatureAlgorithm = "v2"; + $config->endpoint = "127.0.0.1:8000"; + $client = new OpenApiClient($config); + $request = self::createOpenApiRequest(); + $params = new Params([ + "action" => "TestAPI", + "version" => "2022-06-01", + "protocol" => "HTTPS", + "pathname" => "/", + "method" => "POST", + "authType" => "AK", + "style" => "RPC", + "reqBodyType" => "formData", + "bodyType" => "json" + ]); + $response = $client->callApi($params, $request, $runtime); + $this->assertNotEmpty($response); + if (is_array($response) && isset($response['AppId'])) { + $this->assertEquals('test', $response['AppId']); + } + } + + public function testCallApiForRPCWithV2Sign_Anonymous_JSON(){ + $config = self::createConfig(); + $runtime = self::createRuntimeOptions(); + $config->protocol = "HTTP"; + $config->signatureAlgorithm = "v2"; + $config->endpoint = "127.0.0.1:8000"; + $client = new OpenApiClient($config); + $request = self::createOpenApiRequest(); + $params = new Params([ + "action" => "TestAPI", + "version" => "2022-06-01", + "protocol" => "HTTPS", + "pathname" => "/", + "method" => "POST", + "authType" => "Anonymous", + "style" => "RPC", + "reqBodyType" => "json", + "bodyType" => "json" + ]); + $response = $client->callApi($params, $request, $runtime); + $this->assertNotEmpty($response); + if (is_array($response) && isset($response['AppId'])) { + $this->assertEquals('test', $response['AppId']); + } + } + + public function testCallApiForROAWithV2Sign_HTTPS_AK_Form(){ + $config = self::createConfig(); + $runtime = self::createRuntimeOptions(); + $config->signatureAlgorithm = "v2"; + $config->protocol = "HTTP"; + $config->endpoint = "127.0.0.1:8000"; + $client = new OpenApiClient($config); + $request = self::createOpenApiRequest(); + $params = new Params([ + "action" => "TestAPI", + "version" => "2022-06-01", + "protocol" => "HTTPS", + "pathname" => "/test", + "method" => "POST", + "authType" => "AK", + "style" => "ROA", + "reqBodyType" => "formData", + "bodyType" => "json" + ]); + $response = $client->callApi($params, $request, $runtime); + $this->assertNotEmpty($response); + if (is_array($response) && isset($response['AppId'])) { + $this->assertEquals('test', $response['AppId']); + } + } + + public function testCallApiForROAWithV2Sign_Anonymous_JSON(){ + $config = self::createConfig(); + $runtime = self::createRuntimeOptions(); + $config->protocol = "HTTP"; + $config->signatureAlgorithm = "v2"; + $config->endpoint = "127.0.0.1:8000"; + $client = new OpenApiClient($config); + $request = self::createOpenApiRequest(); + $params = new Params([ + "action" => "TestAPI", + "version" => "2022-06-01", + "protocol" => "HTTPS", + "pathname" => "/test", + "method" => "POST", + "authType" => "Anonymous", + "style" => "ROA", + "reqBodyType" => "json", + "bodyType" => "json" + ]); + $response = $client->callApi($params, $request, $runtime); + $this->assertNotEmpty($response); + if (is_array($response) && isset($response['AppId'])) { + $this->assertEquals('test', $response['AppId']); + } + } + + public function testCallApiForRPCWithV3Sign_AK_Form(){ + $config = self::createConfig(); + $runtime = self::createRuntimeOptions(); + $config->protocol = "HTTP"; + $config->endpoint = "127.0.0.1:8000"; + $client = new OpenApiClient($config); + $request = self::createOpenApiRequest(); + $params = new Params([ + "action" => "TestAPI", + "version" => "2022-06-01", + "protocol" => "HTTPS", + "pathname" => "/", + "method" => "POST", + "authType" => "AK", + "style" => "RPC", + "reqBodyType" => "formData", + "bodyType" => "json" + ]); + $response = $client->callApi($params, $request, $runtime); + $this->assertNotEmpty($response); + if (is_array($response) && isset($response['AppId'])) { + $this->assertEquals('test', $response['AppId']); + } + } + + public function testCallApiForRPCWithV3Sign_Anonymous_JSON(){ + $config = self::createConfig(); + $runtime = self::createRuntimeOptions(); + $config->protocol = "HTTP"; + $config->endpoint = "127.0.0.1:8000"; + $client = new OpenApiClient($config); + $request = self::createOpenApiRequest(); + $params = new Params([ + "action" => "TestAPI", + "version" => "2022-06-01", + "protocol" => "HTTPS", + "pathname" => "/", + "method" => "POST", + "authType" => "Anonymous", + "style" => "RPC", + "reqBodyType" => "json", + "bodyType" => "json" + ]); + $response = $client->callApi($params, $request, $runtime); + $this->assertNotEmpty($response); + if (is_array($response) && isset($response['AppId'])) { + $this->assertEquals('test', $response['AppId']); + } + } + + public function testCallApiForROAWithV3Sign_AK_Form(){ + $config = self::createConfig(); + $runtime = self::createRuntimeOptions(); + $config->protocol = "HTTP"; + $config->endpoint = "127.0.0.1:8000"; + $client = new OpenApiClient($config); + $request = self::createOpenApiRequest(); + $params = new Params([ + "action" => "TestAPI", + "version" => "2022-06-01", + "protocol" => "HTTPS", + "pathname" => "/test", + "method" => "POST", + "authType" => "AK", + "style" => "ROA", + "reqBodyType" => "formData", + "bodyType" => "json" + ]); + $response = $client->callApi($params, $request, $runtime); + $this->assertNotEmpty($response); + if (is_array($response) && isset($response['AppId'])) { + $this->assertEquals('test', $response['AppId']); + } + } + + public function testCallApiForROAWithV3Sign_Anonymous_JSON(){ + $config = self::createConfig(); + $runtime = self::createRuntimeOptions(); + $config->protocol = "HTTP"; + $config->endpoint = "127.0.0.1:8000"; + $client = new OpenApiClient($config); + $request = self::createOpenApiRequest(); + $params = new Params([ + "action" => "TestAPI", + "version" => "2022-06-01", + "protocol" => "HTTPS", + "pathname" => "/test", + "method" => "POST", + "authType" => "Anonymous", + "style" => "ROA", + "reqBodyType" => "json", + "bodyType" => "json" + ]); + $response = $client->callApi($params, $request, $runtime); + $this->assertNotEmpty($response); + if (is_array($response) && isset($response['AppId'])) { + $this->assertEquals('test', $response['AppId']); + } + } + + public function testResponseBodyType(){ + $config = self::createConfig(); + $runtime = self::createRuntimeOptions(); + $config->protocol = "HTTP"; + $config->endpoint = "127.0.0.1:8000"; + $client = new OpenApiClient($config); + $request = self::createOpenApiRequest(); + $params = new Params([ + "action" => "TestAPI", + "version" => "2022-06-01", + "protocol" => "HTTPS", + "pathname" => "/test", + "method" => "POST", + "authType" => "AK", + "style" => "ROA", + "reqBodyType" => "formData", + "bodyType" => "json" + ]); + $response = $client->callApi($params, $request, $runtime); + $this->assertTrue(is_array($response)); + + $params->bodyType = "array"; + $request->headers['bodytype'] = 'array'; + $response = $client->callApi($params, $request, $runtime); + $this->assertTrue(is_array($response)); + // Mock server returns ["AppId", "ClassId", "UserId"] for array type + $this->assertNotEmpty($response); + + $params->bodyType = "string"; + $request->headers['bodytype'] = 'string'; + $response = $client->callApi($params, $request, $runtime); + // For string type, check if response body exists + $this->assertNotEmpty($response); + if (is_array($response) && isset($response['body'])) { + $this->assertTrue(is_string($response['body'])); + } + + $params->bodyType = "byte"; + $request->headers['bodytype'] = 'byte'; + $response = $client->callApi($params, $request, $runtime); + $this->assertNotEmpty($response); + } + + public function testCallSSEApiWithSignV3() + { + self::ensureMockServer(); + + // 额外等待确保 Mock 服务器完全启动 (for CI environments) + usleep(500000); // 0.5秒 + + $config = self::createConfig(); + $runtime = self::createRuntimeOptions(); + $config->protocol = "HTTP"; + $config->endpoint = "127.0.0.1:8000"; + $client = new OpenApiClient($config); + $request = self::createOpenApiRequest(); + $params = new Params([ + "action" => "TestAPI", + "version" => "2022-06-01", + "protocol" => "HTTPS", + "pathname" => "/sse", + "method" => "POST", + "authType" => "AK", + "style" => "ROA", + "reqBodyType" => "json", + "bodyType" => "sse" + ]); + $response = $client->callSSEApi($params, $request, $runtime); + + + // Add more assertions as needed + $events = []; + + // SSE events are typically separated by double newline + foreach ($response as $event) { + $this->assertEquals(200, $event->statusCode); + $headers = $event->headers; + $this->assertEquals('text/event-stream;charset=UTF-8', $headers['Content-Type'][0]); + $this->assertEquals('sdk', $headers['for-test'][0]); + $userAgentArray = explode(' ', $headers['user-agent'][0]); + $this->assertEquals('config.userAgent', end($userAgentArray)); + $this->assertEquals('global-value', $headers['global-key'][0]); + $this->assertEquals('extends-value', $headers['extends-key'][0]); + $this->assertNotEmpty($headers['x-acs-signature-nonce'][0]); + $this->assertNotEmpty($headers['x-acs-date'][0]); + $this->assertEquals('application/json', $headers['accept'][0]); + $event = $event->event->toArray(); + // var_dump($event); + $events[] = json_decode($event['data'], true); + } + $expectedEvents = [ + ['count' => 0], + ['count' => 1], + ['count' => 2], + ['count' => 3], + ['count' => 4], + ]; + $this->assertCount(5, $events); + $this->assertEquals($expectedEvents, $events); + } +} diff --git a/vendor/alibabacloud/openapi-core/tests/UtilsTest.php b/vendor/alibabacloud/openapi-core/tests/UtilsTest.php new file mode 100644 index 0000000..84d5c10 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/tests/UtilsTest.php @@ -0,0 +1,586 @@ +assertEquals('ecs-internal.aliyuncs.com', $endpoint); + + // Test accelerate endpoint + $endpoint = Utils::getEndpoint('oss.aliyuncs.com', true, 'accelerate'); + $this->assertEquals('oss-accelerate.aliyuncs.com', $endpoint); + + // Test normal endpoint + $endpoint = Utils::getEndpoint('ecs.aliyuncs.com', false, 'public'); + $this->assertEquals('ecs.aliyuncs.com', $endpoint); + + // Test accelerate without flag + $endpoint = Utils::getEndpoint('oss.aliyuncs.com', false, 'accelerate'); + $this->assertEquals('oss.aliyuncs.com', $endpoint); + } + + /** + * Test getThrottlingTimeLeft function + */ + public function testGetThrottlingTimeLeft() + { + // Test with both headers + $headers = array( + 'x-ratelimit-user-api' => 'Remaining:10,TimeLeft:5', + 'x-ratelimit-user' => 'Remaining:20,TimeLeft:3' + ); + $timeLeft = Utils::getThrottlingTimeLeft($headers); + $this->assertEquals(5, $timeLeft); + + // Test with empty headers + $headers = array(); + $timeLeft = Utils::getThrottlingTimeLeft($headers); + $this->assertEquals(0, $timeLeft); + + // Test with only one header + $headers = array('x-ratelimit-user' => 'TimeLeft:10'); + $timeLeft = Utils::getThrottlingTimeLeft($headers); + $this->assertEquals(10, $timeLeft); + + // Test with invalid value + $headers = array('x-ratelimit-user-api' => 'Invalid'); + $timeLeft = Utils::getThrottlingTimeLeft($headers); + $this->assertEquals(0, $timeLeft); + } + + /** + * Test hash function + */ + public function testHash() + { + // Test SHA256 + $data = 'test message'; + $bytes = BytesUtil::from($data); + $result = Utils::hash($bytes, 'ACS3-HMAC-SHA256'); + + $this->checkInternalType('string', $result); + $this->assertEquals(32, strlen($result)); // SHA256 produces 32 bytes + + // Test SM3 + $result = Utils::hash($bytes, 'ACS3-HMAC-SM3'); + $this->checkInternalType('string', $result); + $this->assertEquals(32, strlen($result)); // SM3 produces 32 bytes + + // Test default case + $result = Utils::hash($bytes, 'UNKNOWN'); + $this->checkInternalType('array', $result); + $this->assertEmpty($result); + } + + /** + * Test getNonce function + */ + public function testGetNonce() + { + $nonce1 = Utils::getNonce(); + $nonce2 = Utils::getNonce(); + + $this->checkInternalType('string', $nonce1); + $this->checkInternalType('string', $nonce2); + $this->assertEquals(32, strlen($nonce1)); + $this->assertEquals(32, strlen($nonce2)); + $this->assertNotEquals($nonce1, $nonce2); // Should be unique + } + + /** + * Test getTimestamp function + */ + public function testGetTimestamp() + { + $timestamp = Utils::getTimestamp(); + + $this->checkInternalType('string', $timestamp); + // Format: 2023-12-26T10:30:00Z + $this->checkRegExp('/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$/', $timestamp); + } + + /** + * Test getDateUTCString function + */ + public function testGetDateUTCString() + { + $dateString = Utils::getDateUTCString(); + + $this->checkInternalType('string', $dateString); + // Format: Mon, 26 Dec 2023 10:30:00 GMT + $this->checkRegExp('/^\w{3}, \d{2} \w{3} \d{4} \d{2}:\d{2}:\d{2} \w+$/', $dateString); + } + + /** + * Test getROASignature function + */ + public function testGetROASignature() + { + $stringToSign = "GET\n\n\n\nTue, 26 Dec 2023 10:30:00 GMT\n/test"; + $secret = "test-secret"; + + $signature = Utils::getROASignature($stringToSign, $secret); + + $this->checkInternalType('string', $signature); + $this->assertNotEmpty($signature); + } + + /** + * Test getRPCSignature function + */ + public function testGetRPCSignature() + { + $signedParams = array( + 'Action' => 'DescribeInstances', + 'Version' => '2014-05-26', + 'Timestamp' => '2023-12-26T10:30:00Z' + ); + $method = 'GET'; + $secret = 'test-secret'; + + $signature = Utils::getRPCSignature($signedParams, $method, $secret); + + $this->checkInternalType('string', $signature); + $this->assertNotEmpty($signature); + } + + /** + * Test toForm function + */ + public function testToForm() + { + $filter = array( + 'key1' => 'value1', + 'key2' => 'value2', + 'nested' => array('key3' => 'value3') + ); + + $result = Utils::toForm($filter); + + $this->checkInternalType('string', $result); + $this->checkStringContains('key1=value1', $result); + $this->checkStringContains('key2=value2', $result); + + // Test with null + $result = Utils::toForm(null); + $this->assertEquals('', $result); + } + + /** + * Test query function + */ + public function testQuery() + { + $filter = array( + 'key1' => 'value1', + 'key2' => 'value2', + '_private' => 'ignore', + 'nested' => array('key3' => 'value3') + ); + + $result = Utils::query($filter); + + $this->checkInternalType('array', $result); + $this->assertArrayHasKey('key1', $result); + $this->assertArrayHasKey('key2', $result); + $this->assertArrayNotHasKey('_private', $result); + + // Test with null + $result = Utils::query(null); + $this->checkInternalType('array', $result); + $this->assertEmpty($result); + } + + /** + * Test arrayToStringWithSpecifiedStyle function + */ + public function testArrayToStringWithSpecifiedStyle() + { + $array = array('a', 'b', 'c'); + + // Test simple style (comma-separated) + $result = Utils::arrayToStringWithSpecifiedStyle($array, 'prefix', 'simple'); + $this->assertEquals('a,b,c', $result); + + // Test spaceDelimited style + $result = Utils::arrayToStringWithSpecifiedStyle($array, 'prefix', 'spaceDelimited'); + $this->assertEquals('a b c', $result); + + // Test pipeDelimited style + $result = Utils::arrayToStringWithSpecifiedStyle($array, 'prefix', 'pipeDelimited'); + $this->assertEquals('a|b|c', $result); + + // Test json style + $result = Utils::arrayToStringWithSpecifiedStyle($array, 'prefix', 'json'); + $this->checkStringContains('a', $result); + $this->checkStringContains('b', $result); + + // Test with null + $result = Utils::arrayToStringWithSpecifiedStyle(null, 'prefix', 'simple'); + $this->assertEquals('', $result); + } + + /** + * Test parseToMap function + */ + public function testParseToMap() + { + $input = array( + 'key1' => 'value1', + 'key2' => array('nested' => 'value2') + ); + + $result = Utils::parseToMap($input); + + $this->checkInternalType('array', $result); + $this->assertEquals('value1', $result['key1']); + $this->checkInternalType('array', $result['key2']); + + // Test with null + $result = Utils::parseToMap(null); + $this->checkInternalType('array', $result); + // parseToMap(null) returns array() from parse function + $this->assertTrue(is_array($result)); + } + + /** + * Test getUserAgent function + */ + public function testGetUserAgent() + { + // Test with custom user agent + $userAgent = Utils::getUserAgent('MyApp/1.0'); + + $this->checkInternalType('string', $userAgent); + $this->checkStringContains('AlibabaCloud', $userAgent); + $this->checkStringContains('PHP/', $userAgent); + $this->checkStringContains('MyApp/1.0', $userAgent); + + // Test with empty user agent + $userAgent = Utils::getUserAgent(''); + $this->checkStringContains('AlibabaCloud', $userAgent); + $this->assertFalse(strpos($userAgent, 'MyApp') !== false); + } + + /** + * Test toArray function + */ + public function testToArray() + { + $input = array( + 'key1' => 'value1', + 'key2' => array('nested' => 'value2') + ); + + $result = Utils::toArray($input); + + $this->checkInternalType('array', $result); + $this->assertEquals($input, $result); + + // Test with non-array + $result = Utils::toArray('string'); + $this->assertEquals('string', $result); + } + + /** + * Test stringifyMapValue function + */ + public function testStringifyMapValue() + { + $map = array( + 'int' => 123, + 'bool' => true, + 'null' => null, + 'string' => 'test' + ); + + $result = Utils::stringifyMapValue($map); + + $this->checkInternalType('array', $result); + $this->assertEquals('123', $result['int']); + $this->assertEquals('true', $result['bool']); + $this->assertEquals('', $result['null']); + $this->assertEquals('test', $result['string']); + + // Test with null + $result = Utils::stringifyMapValue(null); + $this->checkInternalType('array', $result); + $this->assertEmpty($result); + } + + /** + * Test getEndpointRules function + */ + public function testGetEndpointRules() + { + // Test regional endpoint + $result = Utils::getEndpointRules('ecs', 'cn-hangzhou', 'regional', ''); + $this->assertEquals('ecs.cn-hangzhou.aliyuncs.com', $result); + + // Test non-regional endpoint + $result = Utils::getEndpointRules('oss', '', 'public', ''); + $this->assertEquals('oss.aliyuncs.com', $result); + + // Test with vpc network + $result = Utils::getEndpointRules('ecs', 'cn-beijing', 'regional', 'vpc'); + $this->assertEquals('ecs-vpc.cn-beijing.aliyuncs.com', $result); + + // Test with internal network + $result = Utils::getEndpointRules('rds', 'cn-shanghai', 'regional', 'internal'); + $this->assertEquals('rds-internal.cn-shanghai.aliyuncs.com', $result); + + // Test with public network (should be ignored) + $result = Utils::getEndpointRules('ecs', 'cn-hangzhou', 'regional', 'public'); + $this->assertEquals('ecs.cn-hangzhou.aliyuncs.com', $result); + } + + /** + * Test getEndpointRules with missing regionId + */ + public function testGetEndpointRulesThrowsException() + { + try { + Utils::getEndpointRules('ecs', '', 'regional', ''); + $this->fail('Expected RuntimeException was not thrown'); + } catch (\RuntimeException $e) { + $this->checkStringContains('RegionId is empty', $e->getMessage()); + } + } + + /** + * Test getProductEndpoint function + */ + public function testGetProductEndpoint() + { + // Test with provided endpoint + $result = Utils::getProductEndpoint('ecs', 'cn-hangzhou', 'regional', '', null, array(), 'custom.endpoint.com'); + $this->assertEquals('custom.endpoint.com', $result); + + // Test with endpoint map + $endpointMap = array('cn-hangzhou' => 'map.endpoint.com'); + $result = Utils::getProductEndpoint('ecs', 'cn-hangzhou', 'regional', '', null, $endpointMap, null); + $this->assertEquals('map.endpoint.com', $result); + + // Test fallback to getEndpointRules + $result = Utils::getProductEndpoint('ecs', 'cn-hangzhou', 'regional', '', null, array(), null); + $this->assertEquals('ecs.cn-hangzhou.aliyuncs.com', $result); + } + + /** + * Test sign function + */ + public function testSign() + { + $secret = 'test-secret'; + $str = 'test-string'; + + // Test HMAC-SHA256 + $result = Utils::sign($secret, $str, 'ACS3-HMAC-SHA256'); + $this->checkInternalType('string', $result); + $this->assertEquals(32, strlen($result)); + + // Test HMAC-SM3 + $result = Utils::sign($secret, $str, 'ACS3-HMAC-SM3'); + $this->checkInternalType('string', $result); + } + + /** + * Test getStringToSign function + */ + public function testGetStringToSign() + { + $request = new Request(); + $request->method = 'GET'; + $request->pathname = '/test'; + $request->query = array('key' => 'value'); + $request->headers = array( + 'accept' => 'application/json', + 'content-type' => 'application/json', + 'date' => 'Tue, 26 Dec 2023 10:30:00 GMT', + 'x-acs-custom' => 'custom-value' + ); + + $result = Utils::getStringToSign($request); + + $this->checkInternalType('string', $result); + $this->checkStringContains('GET', $result); + $this->checkStringContains('/test', $result); + $this->checkStringContains('x-acs-custom', $result); + } + + /** + * Test getAuthorization function + */ + public function testGetAuthorization() + { + $request = new Request(); + $request->method = 'GET'; + $request->pathname = '/test'; + $request->query = array('key' => 'value'); + $request->headers = array( + 'host' => 'test.aliyuncs.com', + 'content-type' => 'application/json', + 'x-acs-custom' => 'custom-value' + ); + + $result = Utils::getAuthorization( + $request, + 'ACS3-HMAC-SHA256', + 'payload-hash', + 'test-ak', + 'test-sk' + ); + + $this->checkInternalType('string', $result); + $this->checkStringContains('ACS3-HMAC-SHA256', $result); + $this->checkStringContains('Credential=test-ak', $result); + $this->checkStringContains('SignedHeaders=', $result); + $this->checkStringContains('Signature=', $result); + } + + /** + * Test Sm3 class + */ + public function testSm3() + { + $sm3 = new Sm3(); + + // Test known value + $result = $sm3->sign('abc'); + $this->assertEquals('66c7f0f462eeedd9d1f2d46bdc10e4e24167c4875cf2f7a2297da02b8f4ba8e0', $result); + + // Test another value + $result = $sm3->sign('test'); + $this->checkInternalType('string', $result); + $this->assertEquals(64, strlen($result)); // Hex string of 32 bytes + } + + /** + * Helper method for string contains assertion (cross-version compatibility) + */ + private function checkStringContains($needle, $haystack, $message = '') + { + if (method_exists($this, 'assertStringContainsString')) { + $this->assertStringContainsString($needle, $haystack, $message); + } else { + // Fallback for older PHPUnit + $this->assertContains($needle, $haystack, $message); + } + } + + /** + * Helper method for PHP 5.5 compatibility + * assertInternalType was deprecated in PHPUnit 8 + */ + private function checkInternalType($type, $value, $message = '') + { + if (method_exists($this, 'assertIsString') && $type === 'string') { + $this->assertIsString($value, $message); + } elseif (method_exists($this, 'assertIsArray') && $type === 'array') { + $this->assertIsArray($value, $message); + } elseif (method_exists($this, 'assertIsInt') && $type === 'int') { + $this->assertIsInt($value, $message); + } else { + // Fallback for older PHPUnit - use parent method or assertTrue + if (method_exists('PHPUnit_Framework_Assert', 'assertInternalType')) { + parent::assertInternalType($type, $value, $message); + } else { + $typeMap = array( + 'string' => 'is_string', + 'array' => 'is_array', + 'int' => 'is_int', + 'integer' => 'is_int', + 'bool' => 'is_bool', + 'boolean' => 'is_bool' + ); + if (isset($typeMap[$type])) { + $this->assertTrue(call_user_func($typeMap[$type], $value), $message); + } + } + } + } + + /** + * Helper method for PHP 5.5 compatibility + * assertRegExp was deprecated in PHPUnit 9 + */ + private function checkRegExp($pattern, $string, $message = '') + { + if (method_exists($this, 'assertMatchesRegularExpression')) { + $this->assertMatchesRegularExpression($pattern, $string, $message); + } else { + // Fallback for older PHPUnit - use assertTrue with preg_match + $this->assertTrue((bool) preg_match($pattern, $string), $message); + } + } + + public function testMapToFlatStyle() + { + // Test null + $this->assertNull(Utils::mapToFlatStyle(null)); + + // Test primitive values + $this->assertEquals('test', Utils::mapToFlatStyle('test')); + $this->assertEquals(123, Utils::mapToFlatStyle(123)); + $this->assertEquals(true, Utils::mapToFlatStyle(true)); + + // Test plain array (associative array) + $plainMap = [ + 'key1' => 'value1', + 'key2' => 'value2' + ]; + $flatMap = Utils::mapToFlatStyle($plainMap); + $this->assertEquals('value1', $flatMap['#4#key1']); + $this->assertEquals('value2', $flatMap['#4#key2']); + + // Test nested array + $nestedMap = [ + 'outerKey' => [ + 'innerKey' => 'innerValue' + ] + ]; + $flatNestedMap = Utils::mapToFlatStyle($nestedMap); + $this->assertEquals('innerValue', $flatNestedMap['#8#outerKey']['#8#innerKey']); + + // Test indexed array (list) + $arr = ['item1', 'item2']; + $flatArr = Utils::mapToFlatStyle($arr); + $this->assertEquals('item1', $flatArr[0]); + $this->assertEquals('item2', $flatArr[1]); + + // Test indexed array with associative array elements + $arrWithDict = [ + ['key' => 'value'] + ]; + $flatArrWithDict = Utils::mapToFlatStyle($arrWithDict); + $this->assertEquals('value', $flatArrWithDict[0]['#3#key']); + + // Test with nested structures + $complexMap = [ + 'name' => 'testName', + 'tags' => [ + 'tagKey' => 'tagValue' + ] + ]; + $flatComplexMap = Utils::mapToFlatStyle($complexMap); + $this->assertEquals('testName', $flatComplexMap['#4#name']); + $this->assertEquals('tagValue', $flatComplexMap['#4#tags']['#6#tagKey']); + } +} \ No newline at end of file diff --git a/vendor/alibabacloud/openapi-core/tests/bootstrap.php b/vendor/alibabacloud/openapi-core/tests/bootstrap.php new file mode 100644 index 0000000..c62c4e8 --- /dev/null +++ b/vendor/alibabacloud/openapi-core/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/CHANGELOG.md b/vendor/alibabacloud/tea/CHANGELOG.md new file mode 100644 index 0000000..a3b6a53 --- /dev/null +++ b/vendor/alibabacloud/tea/CHANGELOG.md @@ -0,0 +1,148 @@ +# CHANGELOG + +## 3.1.22 - 2021-05-11 + +- Deprecate `stream_for` method. + +## 3.1.21 - 2021-03-15 + +- Supported set proxy&timeout on request. + +## 3.1.20 - 2020-12-02 + +- Fix the warning when the Tea::merge method received empty arguments. + +## 3.1.19 - 2020-10-09 + +- Fix the error when the code value is a string. + +## 3.1.18 - 2020-09-28 + +- Require Guzzle Version 7.0 + +## 3.1.17 - 2020-09-24 + +- TeaUnableRetryError support get error info. + +## 3.1.16 - 2020-08-31 + +- Fix the Maximum function nesting level error when repeated network requests. + +## 3.1.15 - 2020-07-28 + +- Improved validatePattern method. + +## 3.1.14 - 2020-07-03 + +- Supported set properties of TeaError with `ErrorInfo`. + +## 3.1.13 - 2020-06-09 + +- Reduce dependencies. + +## 3.1.12 - 2020-05-13 + +- Add validate method. +- Supported validate maximun&minimun of property. + +## 3.1.11 - 2020-05-07 + +- Fixed error when class is undefined. + +## 3.1.10 - 2020-05-07 + +- Fixed error when '$item' of array is null + +## 3.1.9 - 2020-04-13 + +- TeaUnableRetryError add $lastException param. + +## 3.1.8 - 2020-04-02 + +- Added some static methods of Model to validate fields of Model. + +## 3.1.7 - 2020-03-27 + +- Improve Tea::isRetryable method. + +## 3.1.6 - 2020-03-25 + +- Fixed bug when body is StreamInterface. + +## 3.1.5 - 2020-03-25 + +- Improve Model.toMap method. +- Improve Tea.merge method. +- Fixed tests. + +## 3.1.4 - 2020-03-20 + +- Added Tea::merge method. +- Change Tea::isRetryable method. + +## 3.1.3 - 2020-03-20 + +- Model: added toModel method. + +## 3.1.2 - 2020-03-19 + +- Model constructor supported array type parameter. + +## 3.1.1 - 2020-03-18 + +- Fixed bug : set method failed. +- Fixed bug : get empty contents form body. + +## 3.1.0 - 2020-03-13 + +- TeaUnableRetryError add 'lastRequest' property. +- Change Tea.send() method return. +- Fixed Tea. allowRetry() method. + +## 3.0.0 - 2020-02-14 +- Rename package name. + +## 2.0.3 - 2020-02-14 +- Improved Exception. + +## 2.0.2 - 2019-09-11 +- Supported `String`. + +## 2.0.1 - 2019-08-15 +- Supported `IteratorAggregate`. + +## 2.0.0 - 2019-08-14 +- Design `Request` as a standard `PsrRequest`. + +## 1.0.10 - 2019-08-12 +- Added `__toString` for `Response`. + +## 1.0.9 - 2019-08-01 +- Updated `Middleware`. + +## 1.0.8 - 2019-07-29 +- Supported `TransferStats`. + +## 1.0.7 - 2019-07-27 +- Improved request. + +## 1.0.6 - 2019-07-23 +- Trim key for parameter. + +## 1.0.5 - 2019-07-23 +- Supported default protocol. + +## 1.0.4 - 2019-07-22 +- Added `toArray()`. + +## 1.0.3 - 2019-05-02 +- Improved `Request`. + +## 1.0.2 - 2019-05-02 +- Added getHeader/getHeaders. + +## 1.0.1 - 2019-04-02 +- Improved design. + +## 1.0.0 - 2019-05-02 +- Initial release of the AlibabaCloud Tea Version 1.0.0 on Packagist See for more information. diff --git a/vendor/alibabacloud/tea/LICENSE.md b/vendor/alibabacloud/tea/LICENSE.md new file mode 100644 index 0000000..ec13fcc --- /dev/null +++ b/vendor/alibabacloud/tea/LICENSE.md @@ -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/README.md b/vendor/alibabacloud/tea/README.md new file mode 100644 index 0000000..a8cbe66 --- /dev/null +++ b/vendor/alibabacloud/tea/README.md @@ -0,0 +1,16 @@ + +## Installation +``` +composer require alibabacloud/tea --optimize-autoloader +``` +> Some users may not be able to install due to network problems, you can try to switch the Composer mirror. + + +## Changelog +Detailed changes for each release are documented in the [release notes](CHANGELOG.md). + + +## License +[Apache-2.0](LICENSE.md) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea/composer.json b/vendor/alibabacloud/tea/composer.json new file mode 100644 index 0000000..163689e --- /dev/null +++ b/vendor/alibabacloud/tea/composer.json @@ -0,0 +1,80 @@ +{ + "name": "alibabacloud/tea", + "homepage": "https://www.alibabacloud.com/", + "description": "Client of Tea for PHP", + "keywords": [ + "tea", + "client", + "alibabacloud", + "cloud" + ], + "type": "library", + "license": "Apache-2.0", + "support": { + "source": "https://github.com/aliyun/tea-php", + "issues": "https://github.com/aliyun/tea-php/issues" + }, + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "require": { + "php": ">=5.5", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "adbario/php-dot-notation": "^2.4" + }, + "require-dev": { + "symfony/dotenv": "^3.4", + "phpunit/phpunit": "*", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "AlibabaCloud\\Tea\\Tests\\": "tests" + } + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true, + "minimum-stability": "dev", + "scripts": { + "cs": "phpcs --standard=PSR2 -n ./", + "cbf": "phpcbf --standard=PSR2 -n ./", + "fixer": "php-cs-fixer fix ./", + "test": [ + "@clearCache", + "phpunit --colors=always" + ], + "unit": [ + "@clearCache", + "phpunit --testsuite=Unit --colors=always" + ], + "feature": [ + "@clearCache", + "phpunit --testsuite=Feature --colors=always" + ], + "clearCache": "rm -rf cache/*", + "coverage": "open cache/coverage/index.html" + } +} diff --git a/vendor/alibabacloud/tea/src/Exception/TeaError.php b/vendor/alibabacloud/tea/src/Exception/TeaError.php new file mode 100644 index 0000000..f4ef0d9 --- /dev/null +++ b/vendor/alibabacloud/tea/src/Exception/TeaError.php @@ -0,0 +1,53 @@ +errorInfo = $errorInfo; + if (!empty($errorInfo)) { + $properties = ['name', 'message', 'code', 'data', 'description', 'accessDeniedDetail']; + foreach ($properties as $property) { + if (isset($errorInfo[$property])) { + $this->{$property} = $errorInfo[$property]; + if ($property === 'data' && isset($errorInfo['data']['statusCode'])) { + $this->statusCode = $errorInfo['data']['statusCode']; + } + } + } + } + } + + /** + * @return array + */ + public function getErrorInfo() + { + return $this->errorInfo; + } +} diff --git a/vendor/alibabacloud/tea/src/Exception/TeaRetryError.php b/vendor/alibabacloud/tea/src/Exception/TeaRetryError.php new file mode 100644 index 0000000..30aa7f8 --- /dev/null +++ b/vendor/alibabacloud/tea/src/Exception/TeaRetryError.php @@ -0,0 +1,21 @@ +getErrorInfo(); + } + parent::__construct($error_info, $lastException->getMessage(), $lastException->getCode(), $lastException); + $this->lastRequest = $lastRequest; + $this->lastException = $lastException; + } + + public function getLastRequest() + { + return $this->lastRequest; + } + + public function getLastException() + { + return $this->lastException; + } +} diff --git a/vendor/alibabacloud/tea/src/Helper.php b/vendor/alibabacloud/tea/src/Helper.php new file mode 100644 index 0000000..f1c0fd4 --- /dev/null +++ b/vendor/alibabacloud/tea/src/Helper.php @@ -0,0 +1,112 @@ + $ord) { + if ($k !== $i) { + return false; + } + if (!\is_int($ord)) { + return false; + } + if ($ord < 0 || $ord > 255) { + return false; + } + ++$i; + } + + return true; + } + + /** + * Convert a bytes to string(utf8). + * + * @param array $bytes + * + * @return string the return string + */ + public static function toString($bytes) + { + $str = ''; + foreach ($bytes as $ch) { + $str .= \chr($ch); + } + + return $str; + } + + /** + * @return array + */ + public static function merge(array $arrays) + { + $result = []; + foreach ($arrays as $array) { + foreach ($array as $key => $value) { + if (\is_int($key)) { + $result[] = $value; + + continue; + } + + if (isset($result[$key]) && \is_array($result[$key])) { + $result[$key] = self::merge( + [$result[$key], $value] + ); + + continue; + } + + $result[$key] = $value; + } + } + + return $result; + } +} diff --git a/vendor/alibabacloud/tea/src/Model.php b/vendor/alibabacloud/tea/src/Model.php new file mode 100644 index 0000000..538b55c --- /dev/null +++ b/vendor/alibabacloud/tea/src/Model.php @@ -0,0 +1,114 @@ + $v) { + $this->{$k} = $v; + } + } + } + + public function getName($name = null) + { + if (null === $name) { + return $this->_name; + } + + return isset($this->_name[$name]) ? $this->_name[$name] : $name; + } + + public function toMap() + { + $map = get_object_vars($this); + foreach ($map as $k => $m) { + if (0 === strpos($k, '_')) { + unset($map[$k]); + } + } + $res = []; + foreach ($map as $k => $v) { + $name = isset($this->_name[$k]) ? $this->_name[$k] : $k; + $res[$name] = $v; + } + + return $res; + } + + public function validate() + { + $vars = get_object_vars($this); + foreach ($vars as $k => $v) { + if (isset($this->_required[$k]) && $this->_required[$k] && empty($v)) { + throw new \InvalidArgumentException("{$k} is required."); + } + } + } + + public static function validateRequired($fieldName, $field, $val = null) + { + if (true === $val && null === $field) { + throw new \InvalidArgumentException($fieldName . ' is required'); + } + } + + public static function validateMaxLength($fieldName, $field, $val = null) + { + if (null !== $field && \strlen($field) > (int) $val) { + throw new \InvalidArgumentException($fieldName . ' is exceed max-length: ' . $val); + } + } + + public static function validateMinLength($fieldName, $field, $val = null) + { + if (null !== $field && \strlen($field) < (int) $val) { + throw new \InvalidArgumentException($fieldName . ' is less than min-length: ' . $val); + } + } + + public static function validatePattern($fieldName, $field, $regex = '') + { + if (null !== $field && '' !== $field && !preg_match("/^{$regex}$/", $field)) { + throw new \InvalidArgumentException($fieldName . ' is not match ' . $regex); + } + } + + public static function validateMaximum($fieldName, $field, $val) + { + if (null !== $field && $field > $val) { + throw new \InvalidArgumentException($fieldName . ' cannot be greater than ' . $val); + } + } + + public static function validateMinimum($fieldName, $field, $val) + { + if (null !== $field && $field < $val) { + throw new \InvalidArgumentException($fieldName . ' cannot be less than ' . $val); + } + } + + /** + * @param array $map + * @param Model $model + * + * @return mixed + */ + public static function toModel($map, $model) + { + $names = $model->getName(); + $names = array_flip($names); + foreach ($map as $key => $value) { + $name = isset($names[$key]) ? $names[$key] : $key; + $model->{$name} = $value; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea/src/Parameter.php b/vendor/alibabacloud/tea/src/Parameter.php new file mode 100644 index 0000000..324a95d --- /dev/null +++ b/vendor/alibabacloud/tea/src/Parameter.php @@ -0,0 +1,50 @@ +toArray()); + } + + /** + * @return array + */ + public function getRealParameters() + { + $array = []; + $obj = new ReflectionObject($this); + $properties = $obj->getProperties(); + + foreach ($properties as $property) { + $docComment = $property->getDocComment(); + $key = trim(Helper::findFromString($docComment, '@real', "\n")); + $value = $property->getValue($this); + $array[$key] = $value; + } + + return $array; + } + + /** + * @return array + */ + public function toArray() + { + return $this->getRealParameters(); + } +} diff --git a/vendor/alibabacloud/tea/src/Request.php b/vendor/alibabacloud/tea/src/Request.php new file mode 100644 index 0000000..db49142 --- /dev/null +++ b/vendor/alibabacloud/tea/src/Request.php @@ -0,0 +1,123 @@ +method = $method; + } + + /** + * These fields are compatible if you define other fields. + * Mainly for compatibility situations where the code generator cannot generate set properties. + * + * @return PsrRequest + */ + public function getPsrRequest() + { + $this->assertQuery($this->query); + + $request = clone $this; + + $uri = $request->getUri(); + if ($this->query) { + $uri = $uri->withQuery(http_build_query($this->query)); + } + + if ($this->port) { + $uri = $uri->withPort($this->port); + } + + if ($this->protocol) { + $uri = $uri->withScheme($this->protocol); + } + + if ($this->pathname) { + $uri = $uri->withPath($this->pathname); + } + + if (isset($this->headers['host'])) { + $uri = $uri->withHost($this->headers['host']); + } + + $request = $request->withUri($uri); + $request = $request->withMethod($this->method); + + if ('' !== $this->body && null !== $this->body) { + if ($this->body instanceof StreamInterface) { + $request = $request->withBody($this->body); + } else { + $body = $this->body; + if (Helper::isBytes($this->body)) { + $body = Helper::toString($this->body); + } + if (\function_exists('\GuzzleHttp\Psr7\stream_for')) { + // @deprecated stream_for will be removed in guzzlehttp/psr7:2.0 + $request = $request->withBody(\GuzzleHttp\Psr7\stream_for($body)); + } else { + $request = $request->withBody(\GuzzleHttp\Psr7\Utils::streamFor($body)); + } + } + } + + if ($this->headers) { + foreach ($this->headers as $key => $value) { + $request = $request->withHeader($key, $value); + } + } + + return $request; + } + + /** + * @param array $query + */ + private function assertQuery($query) + { + if (!\is_array($query) && $query !== null) { + throw new InvalidArgumentException('Query must be array.'); + } + } +} diff --git a/vendor/alibabacloud/tea/src/Response.php b/vendor/alibabacloud/tea/src/Response.php new file mode 100644 index 0000000..cb446e7 --- /dev/null +++ b/vendor/alibabacloud/tea/src/Response.php @@ -0,0 +1,372 @@ +getStatusCode(), + $response->getHeaders(), + $response->getBody(), + $response->getProtocolVersion(), + $response->getReasonPhrase() + ); + $this->headers = $response->getHeaders(); + $this->body = $response->getBody(); + $this->statusCode = $response->getStatusCode(); + if ($this->body->isSeekable()) { + $this->body->seek(0); + } + + if (Helper::isJson((string) $this->getBody())) { + $this->dot = new Dot($this->toArray()); + } else { + $this->dot = new Dot(); + } + } + + /** + * @return string + */ + public function __toString() + { + return (string) $this->getBody(); + } + + /** + * @param string $name + * + * @return null|mixed + */ + public function __get($name) + { + $data = $this->dot->all(); + if (!isset($data[$name])) { + return null; + } + + return json_decode(json_encode($data))->{$name}; + } + + /** + * @param string $name + * @param mixed $value + */ + public function __set($name, $value) + { + $this->dot->set($name, $value); + } + + /** + * @param string $name + * + * @return bool + */ + public function __isset($name) + { + return $this->dot->has($name); + } + + /** + * @param $offset + */ + public function __unset($offset) + { + $this->dot->delete($offset); + } + + /** + * @return array + */ + public function toArray() + { + return \GuzzleHttp\json_decode((string) $this->getBody(), true); + } + + /** + * @param array|int|string $keys + * @param mixed $value + */ + public function add($keys, $value = null) + { + return $this->dot->add($keys, $value); + } + + /** + * @return array + */ + public function all() + { + return $this->dot->all(); + } + + /** + * @param null|array|int|string $keys + */ + public function clear($keys = null) + { + return $this->dot->clear($keys); + } + + /** + * @param array|int|string $keys + */ + public function delete($keys) + { + return $this->dot->delete($keys); + } + + /** + * @param string $delimiter + * @param null|array $items + * @param string $prepend + * + * @return array + */ + public function flatten($delimiter = '.', $items = null, $prepend = '') + { + return $this->dot->flatten($delimiter, $items, $prepend); + } + + /** + * @param null|int|string $key + * @param mixed $default + * + * @return mixed + */ + public function get($key = null, $default = null) + { + return $this->dot->get($key, $default); + } + + /** + * @param array|int|string $keys + * + * @return bool + */ + public function has($keys) + { + return $this->dot->has($keys); + } + + /** + * @param null|array|int|string $keys + * + * @return bool + */ + public function isEmpty($keys = null) + { + return $this->dot->isEmpty($keys); + } + + /** + * @param array|self|string $key + * @param array|self $value + */ + public function merge($key, $value = []) + { + return $this->dot->merge($key, $value); + } + + /** + * @param array|self|string $key + * @param array|self $value + */ + public function mergeRecursive($key, $value = []) + { + return $this->dot->mergeRecursive($key, $value); + } + + /** + * @param array|self|string $key + * @param array|self $value + */ + public function mergeRecursiveDistinct($key, $value = []) + { + return $this->dot->mergeRecursiveDistinct($key, $value); + } + + /** + * @param null|int|string $key + * @param mixed $default + * + * @return mixed + */ + public function pull($key = null, $default = null) + { + return $this->dot->pull($key, $default); + } + + /** + * @param null|int|string $key + * @param mixed $value + * + * @return mixed + */ + public function push($key = null, $value = null) + { + return $this->dot->push($key, $value); + } + + /** + * Replace all values or values within the given key + * with an array or Dot object. + * + * @param array|self|string $key + * @param array|self $value + */ + public function replace($key, $value = []) + { + return $this->dot->replace($key, $value); + } + + /** + * Set a given key / value pair or pairs. + * + * @param array|int|string $keys + * @param mixed $value + */ + public function set($keys, $value = null) + { + return $this->dot->set($keys, $value); + } + + /** + * Replace all items with a given array. + * + * @param mixed $items + */ + public function setArray($items) + { + return $this->dot->setArray($items); + } + + /** + * Replace all items with a given array as a reference. + */ + public function setReference(array &$items) + { + return $this->dot->setReference($items); + } + + /** + * Return the value of a given key or all the values as JSON. + * + * @param mixed $key + * @param int $options + * + * @return string + */ + public function toJson($key = null, $options = 0) + { + return $this->dot->toJson($key, $options); + } + + /** + * Retrieve an external iterator. + */ + #[\ReturnTypeWillChange] + public function getIterator() + { + return $this->dot->getIterator(); + } + + /** + * Whether a offset exists. + * + * @param $offset + * + * @return bool + */ + #[\ReturnTypeWillChange] + public function offsetExists($offset) + { + return $this->dot->offsetExists($offset); + } + + /** + * Offset to retrieve. + * + * @param $offset + * + * @return mixed + */ + #[\ReturnTypeWillChange] + public function offsetGet($offset) + { + return $this->dot->offsetGet($offset); + } + + /** + * Offset to set. + * + * @param $offset + * @param $value + */ + #[\ReturnTypeWillChange] + public function offsetSet($offset, $value) + { + $this->dot->offsetSet($offset, $value); + } + + /** + * Offset to unset. + * + * @param $offset + */ + #[\ReturnTypeWillChange] + public function offsetUnset($offset) + { + $this->dot->offsetUnset($offset); + } + + /** + * Count elements of an object. + * + * @param null $key + * + * @return int + */ + #[\ReturnTypeWillChange] + public function count($key = null) + { + return $this->dot->count($key); + } +} diff --git a/vendor/alibabacloud/tea/src/Tea.php b/vendor/alibabacloud/tea/src/Tea.php new file mode 100644 index 0000000..a138ad9 --- /dev/null +++ b/vendor/alibabacloud/tea/src/Tea.php @@ -0,0 +1,287 @@ +getPsrRequest(); + } + + $config = self::resolveConfig($config); + + $res = self::client()->send( + $request, + $config + ); + + return new Response($res); + } + + /** + * @return PromiseInterface + */ + public static function sendAsync(RequestInterface $request, array $config = []) + { + if (method_exists($request, 'getPsrRequest')) { + $request = $request->getPsrRequest(); + } + + $config = self::resolveConfig($config); + + return self::client()->sendAsync( + $request, + $config + ); + } + + /** + * @return Client + */ + public static function client(array $config = []) + { + if (isset(self::$config['handler'])) { + $stack = self::$config['handler']; + } else { + $stack = HandlerStack::create(); + $stack->push(Middleware::mapResponse(static function (ResponseInterface $response) { + return new Response($response); + })); + } + + self::$config['handler'] = $stack; + + if (!isset(self::$config['on_stats'])) { + self::$config['on_stats'] = function (TransferStats $stats) { + Response::$info = $stats->getHandlerStats(); + }; + } + + $new_config = Helper::merge([self::$config, $config]); + + return new Client($new_config); + } + + /** + * @param string $method + * @param string|UriInterface $uri + * @param array $options + * + * @throws GuzzleException + * + * @return ResponseInterface + */ + public static function request($method, $uri, $options = []) + { + return self::client()->request($method, $uri, $options); + } + + /** + * @param string $method + * @param string $uri + * @param array $options + * + * @throws GuzzleException + * + * @return string + */ + public static function string($method, $uri, $options = []) + { + return (string) self::client()->request($method, $uri, $options) + ->getBody(); + } + + /** + * @param string $method + * @param string|UriInterface $uri + * @param array $options + * + * @return PromiseInterface + */ + public static function requestAsync($method, $uri, $options = []) + { + return self::client()->requestAsync($method, $uri, $options); + } + + /** + * @param string|UriInterface $uri + * @param array $options + * + * @throws GuzzleException + * + * @return null|mixed + */ + public static function getHeaders($uri, $options = []) + { + return self::request('HEAD', $uri, $options)->getHeaders(); + } + + /** + * @param string|UriInterface $uri + * @param string $key + * @param null|mixed $default + * + * @throws GuzzleException + * + * @return null|mixed + */ + public static function getHeader($uri, $key, $default = null) + { + $headers = self::getHeaders($uri); + + return isset($headers[$key][0]) ? $headers[$key][0] : $default; + } + + /** + * @param int $retryTimes + * @param float $now + * + * @return bool + */ + public static function allowRetry(array $runtime, $retryTimes, $now) + { + unset($now); + if (!isset($retryTimes) || null === $retryTimes || !\is_numeric($retryTimes)) { + return false; + } + if ($retryTimes > 0 && (empty($runtime) || !isset($runtime['retryable']) || !$runtime['retryable'] || !isset($runtime['maxAttempts']))) { + return false; + } + $maxAttempts = $runtime['maxAttempts']; + $retry = empty($maxAttempts) ? 0 : (int) $maxAttempts; + + return $retry >= $retryTimes; + } + + /** + * @param int $retryTimes + * + * @return int + */ + public static function getBackoffTime(array $runtime, $retryTimes) + { + $backOffTime = 0; + $policy = isset($runtime['policy']) ? $runtime['policy'] : ''; + + if (empty($policy) || 'no' == $policy) { + return $backOffTime; + } + + $period = isset($runtime['period']) ? $runtime['period'] : ''; + if (null !== $period && '' !== $period) { + $backOffTime = (int) $period; + if ($backOffTime <= 0) { + return $retryTimes; + } + } + + return $backOffTime; + } + + public static function sleep($time) + { + sleep($time); + } + + public static function isRetryable($retry, $retryTimes = 0) + { + if ($retry instanceof TeaError) { + return true; + } + if (\is_array($retry)) { + $max = isset($retry['maxAttempts']) ? (int) ($retry['maxAttempts']) : 3; + + return $retryTimes <= $max; + } + + return false; + } + + /** + * @param mixed|Model[] ...$item + * + * @return mixed + */ + public static function merge(...$item) + { + $tmp = []; + $n = 0; + foreach ($item as $i) { + if (\is_object($i)) { + if ($i instanceof Model) { + $i = $i->toMap(); + } else { + $i = json_decode(json_encode($i), true); + } + } + if (null === $i) { + continue; + } + if (\is_array($i)) { + $tmp[$n++] = $i; + } + } + + if (\count($tmp)) { + return \call_user_func_array('array_merge', $tmp); + } + + return []; + } + + private static function resolveConfig(array $config = []) + { + $options = new Dot(['http_errors' => false]); + if (isset($config['httpProxy']) && !empty($config['httpProxy'])) { + $options->set('proxy.http', $config['httpProxy']); + } + if (isset($config['httpsProxy']) && !empty($config['httpsProxy'])) { + $options->set('proxy.https', $config['httpsProxy']); + } + if (isset($config['noProxy']) && !empty($config['noProxy'])) { + $options->set('proxy.no', $config['noProxy']); + } + if (isset($config['ignoreSSL']) && !empty($config['ignoreSSL'])) { + $options->set('verify',!((bool)$config['ignoreSSL'])); + } + // readTimeout&connectTimeout unit is millisecond + $read_timeout = isset($config['readTimeout']) && !empty($config['readTimeout']) ? (int) $config['readTimeout'] : 0; + $con_timeout = isset($config['connectTimeout']) && !empty($config['connectTimeout']) ? (int) $config['connectTimeout'] : 0; + // timeout unit is second + $options->set('timeout', ($read_timeout + $con_timeout) / 1000); + + return $options->all(); + } +} diff --git a/vendor/autoload.php b/vendor/autoload.php new file mode 100644 index 0000000..13f6b55 --- /dev/null +++ b/vendor/autoload.php @@ -0,0 +1,25 @@ +realpath = realpath($opened_path) ?: $opened_path; + $opened_path = $this->realpath; + $this->handle = fopen($this->realpath, $mode); + $this->position = 0; + + return (bool) $this->handle; + } + + public function stream_read($count) + { + $data = fread($this->handle, $count); + + if ($this->position === 0) { + $data = preg_replace('{^#!.*\r?\n}', '', $data); + } + + $this->position += strlen($data); + + return $data; + } + + public function stream_cast($castAs) + { + return $this->handle; + } + + public function stream_close() + { + fclose($this->handle); + } + + public function stream_lock($operation) + { + return $operation ? flock($this->handle, $operation) : true; + } + + public function stream_seek($offset, $whence) + { + if (0 === fseek($this->handle, $offset, $whence)) { + $this->position = ftell($this->handle); + return true; + } + + return false; + } + + public function stream_tell() + { + return $this->position; + } + + public function stream_eof() + { + return feof($this->handle); + } + + public function stream_stat() + { + return array(); + } + + public function stream_set_option($option, $arg1, $arg2) + { + return true; + } + + public function url_stat($path, $flags) + { + $path = substr($path, 17); + if (file_exists($path)) { + return stat($path); + } + + return false; + } + } + } + + if ( + (function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true)) + || (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper')) + ) { + return include("phpvfscomposer://" . __DIR__ . '/..'.'/overtrue/pinyin/bin/pinyin'); + } +} + +return include __DIR__ . '/..'.'/overtrue/pinyin/bin/pinyin'; diff --git a/vendor/bin/pinyin.bat b/vendor/bin/pinyin.bat new file mode 100644 index 0000000..e3580bb --- /dev/null +++ b/vendor/bin/pinyin.bat @@ -0,0 +1,5 @@ +@ECHO OFF +setlocal DISABLEDELAYEDEXPANSION +SET BIN_TARGET=%~dp0/pinyin +SET COMPOSER_RUNTIME_BIN_DIR=%~dp0 +php "%BIN_TARGET%" %* diff --git a/vendor/bin/var-dump-server b/vendor/bin/var-dump-server new file mode 100644 index 0000000..18db1c1 --- /dev/null +++ b/vendor/bin/var-dump-server @@ -0,0 +1,119 @@ +#!/usr/bin/env php +realpath = realpath($opened_path) ?: $opened_path; + $opened_path = $this->realpath; + $this->handle = fopen($this->realpath, $mode); + $this->position = 0; + + return (bool) $this->handle; + } + + public function stream_read($count) + { + $data = fread($this->handle, $count); + + if ($this->position === 0) { + $data = preg_replace('{^#!.*\r?\n}', '', $data); + } + + $this->position += strlen($data); + + return $data; + } + + public function stream_cast($castAs) + { + return $this->handle; + } + + public function stream_close() + { + fclose($this->handle); + } + + public function stream_lock($operation) + { + return $operation ? flock($this->handle, $operation) : true; + } + + public function stream_seek($offset, $whence) + { + if (0 === fseek($this->handle, $offset, $whence)) { + $this->position = ftell($this->handle); + return true; + } + + return false; + } + + public function stream_tell() + { + return $this->position; + } + + public function stream_eof() + { + return feof($this->handle); + } + + public function stream_stat() + { + return array(); + } + + public function stream_set_option($option, $arg1, $arg2) + { + return true; + } + + public function url_stat($path, $flags) + { + $path = substr($path, 17); + if (file_exists($path)) { + return stat($path); + } + + return false; + } + } + } + + if ( + (function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true)) + || (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper')) + ) { + return include("phpvfscomposer://" . __DIR__ . '/..'.'/symfony/var-dumper/Resources/bin/var-dump-server'); + } +} + +return include __DIR__ . '/..'.'/symfony/var-dumper/Resources/bin/var-dump-server'; diff --git a/vendor/bin/var-dump-server.bat b/vendor/bin/var-dump-server.bat new file mode 100644 index 0000000..c425720 --- /dev/null +++ b/vendor/bin/var-dump-server.bat @@ -0,0 +1,5 @@ +@ECHO OFF +setlocal DISABLEDELAYEDEXPANSION +SET BIN_TARGET=%~dp0/var-dump-server +SET COMPOSER_RUNTIME_BIN_DIR=%~dp0 +php "%BIN_TARGET%" %* diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php new file mode 100644 index 0000000..7824d8f --- /dev/null +++ b/vendor/composer/ClassLoader.php @@ -0,0 +1,579 @@ + + * Jordi Boggiano + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer\Autoload; + +/** + * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. + * + * $loader = new \Composer\Autoload\ClassLoader(); + * + * // register classes with namespaces + * $loader->add('Symfony\Component', __DIR__.'/component'); + * $loader->add('Symfony', __DIR__.'/framework'); + * + * // activate the autoloader + * $loader->register(); + * + * // to enable searching the include path (eg. for PEAR packages) + * $loader->setUseIncludePath(true); + * + * In this example, if you try to use a class in the Symfony\Component + * namespace or one of its children (Symfony\Component\Console for instance), + * the autoloader will first look for the class under the component/ + * directory, and it will then fallback to the framework/ directory if not + * found before giving up. + * + * This class is loosely based on the Symfony UniversalClassLoader. + * + * @author Fabien Potencier + * @author Jordi Boggiano + * @see https://www.php-fig.org/psr/psr-0/ + * @see https://www.php-fig.org/psr/psr-4/ + */ +class ClassLoader +{ + /** @var \Closure(string):void */ + private static $includeFile; + + /** @var string|null */ + private $vendorDir; + + // PSR-4 + /** + * @var array> + */ + 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)) { + return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); + } + + 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 + */ + public function addClassMap(array $classMap) + { + if ($this->classMap) { + $this->classMap = array_merge($this->classMap, $classMap); + } else { + $this->classMap = $classMap; + } + } + + /** + * 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 + */ + public function add($prefix, $paths, $prepend = false) + { + $paths = (array) $paths; + if (!$prefix) { + if ($prepend) { + $this->fallbackDirsPsr0 = array_merge( + $paths, + $this->fallbackDirsPsr0 + ); + } else { + $this->fallbackDirsPsr0 = array_merge( + $this->fallbackDirsPsr0, + $paths + ); + } + + return; + } + + $first = $prefix[0]; + if (!isset($this->prefixesPsr0[$first][$prefix])) { + $this->prefixesPsr0[$first][$prefix] = $paths; + + return; + } + if ($prepend) { + $this->prefixesPsr0[$first][$prefix] = array_merge( + $paths, + $this->prefixesPsr0[$first][$prefix] + ); + } else { + $this->prefixesPsr0[$first][$prefix] = array_merge( + $this->prefixesPsr0[$first][$prefix], + $paths + ); + } + } + + /** + * 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 + * + * @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, + $this->fallbackDirsPsr4 + ); + } else { + $this->fallbackDirsPsr4 = array_merge( + $this->fallbackDirsPsr4, + $paths + ); + } + } elseif (!isset($this->prefixDirsPsr4[$prefix])) { + // Register directories for a new namespace. + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + 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; + } elseif ($prepend) { + // Prepend directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + $paths, + $this->prefixDirsPsr4[$prefix] + ); + } else { + // Append directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + $this->prefixDirsPsr4[$prefix], + $paths + ); + } + } + + /** + * 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 + */ + public function set($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr0 = (array) $paths; + } else { + $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; + } + } + + /** + * 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 + * + * @throws \InvalidArgumentException + * + * @return void + */ + public function setPsr4($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr4 = (array) $paths; + } else { + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } + } + + /** + * Turns on searching the include path for class files. + * + * @param bool $useIncludePath + * + * @return void + */ + public function setUseIncludePath($useIncludePath) + { + $this->useIncludePath = $useIncludePath; + } + + /** + * Can be used to check if the autoloader uses the include path to check + * for classes. + * + * @return bool + */ + public function getUseIncludePath() + { + return $this->useIncludePath; + } + + /** + * Turns off searching the prefix and fallback directories for classes + * that have not been registered with the class map. + * + * @param bool $classMapAuthoritative + * + * @return void + */ + public function setClassMapAuthoritative($classMapAuthoritative) + { + $this->classMapAuthoritative = $classMapAuthoritative; + } + + /** + * Should class lookup fail if not found in the current class map? + * + * @return bool + */ + public function isClassMapAuthoritative() + { + return $this->classMapAuthoritative; + } + + /** + * 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) + { + $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; + } + + /** + * The APCu prefix in use, or null if APCu caching is not enabled. + * + * @return string|null + */ + public function getApcuPrefix() + { + return $this->apcuPrefix; + } + + /** + * Registers this instance as an autoloader. + * + * @param bool $prepend Whether to prepend the autoloader or not + * + * @return void + */ + public function register($prepend = false) + { + spl_autoload_register(array($this, 'loadClass'), true, $prepend); + + if (null === $this->vendorDir) { + return; + } + + if ($prepend) { + self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders; + } else { + unset(self::$registeredLoaders[$this->vendorDir]); + self::$registeredLoaders[$this->vendorDir] = $this; + } + } + + /** + * Unregisters this instance as an autoloader. + * + * @return void + */ + public function unregister() + { + spl_autoload_unregister(array($this, 'loadClass')); + + if (null !== $this->vendorDir) { + unset(self::$registeredLoaders[$this->vendorDir]); + } + } + + /** + * Loads the given class or interface. + * + * @param string $class The name of the class + * @return true|null True if loaded, null otherwise + */ + public function loadClass($class) + { + if ($file = $this->findFile($class)) { + $includeFile = self::$includeFile; + $includeFile($file); + + return true; + } + + return null; + } + + /** + * Finds the path to the file where the class is defined. + * + * @param string $class The name of the class + * + * @return string|false The path if found, false otherwise + */ + public function findFile($class) + { + // class map lookup + if (isset($this->classMap[$class])) { + return $this->classMap[$class]; + } + if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { + return false; + } + if (null !== $this->apcuPrefix) { + $file = apcu_fetch($this->apcuPrefix.$class, $hit); + if ($hit) { + return $file; + } + } + + $file = $this->findFileWithExtension($class, '.php'); + + // Search for Hack files if we are running on HHVM + if (false === $file && defined('HHVM_VERSION')) { + $file = $this->findFileWithExtension($class, '.hh'); + } + + if (null !== $this->apcuPrefix) { + apcu_add($this->apcuPrefix.$class, $file); + } + + if (false === $file) { + // Remember that this class does not exist. + $this->missingClasses[$class] = true; + } + + return $file; + } + + /** + * Returns the currently registered loaders keyed by their corresponding vendor directories. + * + * @return array + */ + public static function getRegisteredLoaders() + { + return self::$registeredLoaders; + } + + /** + * @param string $class + * @param string $ext + * @return string|false + */ + private function findFileWithExtension($class, $ext) + { + // PSR-4 lookup + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; + + $first = $class[0]; + if (isset($this->prefixLengthsPsr4[$first])) { + $subPath = $class; + while (false !== $lastPos = strrpos($subPath, '\\')) { + $subPath = substr($subPath, 0, $lastPos); + $search = $subPath . '\\'; + if (isset($this->prefixDirsPsr4[$search])) { + $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); + foreach ($this->prefixDirsPsr4[$search] as $dir) { + if (file_exists($file = $dir . $pathEnd)) { + return $file; + } + } + } + } + } + + // PSR-4 fallback dirs + foreach ($this->fallbackDirsPsr4 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { + return $file; + } + } + + // PSR-0 lookup + if (false !== $pos = strrpos($class, '\\')) { + // namespaced class name + $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) + . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); + } else { + // PEAR-like class name + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; + } + + if (isset($this->prefixesPsr0[$first])) { + foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { + if (0 === strpos($class, $prefix)) { + foreach ($dirs as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + } + } + } + + // PSR-0 fallback dirs + foreach ($this->fallbackDirsPsr0 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + + // PSR-0 include paths. + if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { + return $file; + } + + 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); + } +} diff --git a/vendor/composer/InstalledVersions.php b/vendor/composer/InstalledVersions.php new file mode 100644 index 0000000..51e734a --- /dev/null +++ b/vendor/composer/InstalledVersions.php @@ -0,0 +1,359 @@ + + * Jordi Boggiano + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer; + +use Composer\Autoload\ClassLoader; +use Composer\Semver\VersionParser; + +/** + * This class is copied in every Composer installed project and available to all + * + * See also https://getcomposer.org/doc/07-runtime.md#installed-versions + * + * To require its presence, you can require `composer-runtime-api ^2.0` + * + * @final + */ +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(); + + /** + * Returns a list of all package names which are present, either by being installed, replaced or provided + * + * @return string[] + * @psalm-return list + */ + public static function getInstalledPackages() + { + $packages = array(); + foreach (self::getInstalled() as $installed) { + $packages[] = array_keys($installed['versions']); + } + + if (1 === \count($packages)) { + return $packages[0]; + } + + return array_keys(array_flip(\call_user_func_array('array_merge', $packages))); + } + + /** + * Returns a list of all package names with a specific type e.g. 'library' + * + * @param string $type + * @return string[] + * @psalm-return list + */ + public static function getInstalledPackagesByType($type) + { + $packagesByType = array(); + + foreach (self::getInstalled() as $installed) { + foreach ($installed['versions'] as $name => $package) { + if (isset($package['type']) && $package['type'] === $type) { + $packagesByType[] = $name; + } + } + } + + return $packagesByType; + } + + /** + * Checks whether the given package is installed + * + * This also returns true if the package name is provided or replaced by another package + * + * @param string $packageName + * @param bool $includeDevRequirements + * @return bool + */ + public static function isInstalled($packageName, $includeDevRequirements = true) + { + 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 false; + } + + /** + * Checks whether the given package satisfies a version constraint + * + * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call: + * + * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3') + * + * @param VersionParser $parser Install composer/semver to have access to this class and functionality + * @param string $packageName + * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package + * @return bool + */ + public static function satisfies(VersionParser $parser, $packageName, $constraint) + { + $constraint = $parser->parseConstraints((string) $constraint); + $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); + + return $provided->matches($constraint); + } + + /** + * Returns a version constraint representing all the range(s) which are installed for a given package + * + * It is easier to use this via isInstalled() with the $constraint argument if you need to check + * whether a given version of a package is installed, and not just whether it exists + * + * @param string $packageName + * @return string Version constraint usable with composer/semver + */ + public static function getVersionRanges($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + $ranges = array(); + if (isset($installed['versions'][$packageName]['pretty_version'])) { + $ranges[] = $installed['versions'][$packageName]['pretty_version']; + } + if (array_key_exists('aliases', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']); + } + if (array_key_exists('replaced', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']); + } + if (array_key_exists('provided', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']); + } + + return implode(' || ', $ranges); + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present + */ + public static function getVersion($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['version'])) { + return null; + } + + return $installed['versions'][$packageName]['version']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present + */ + public static function getPrettyVersion($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['pretty_version'])) { + return null; + } + + return $installed['versions'][$packageName]['pretty_version']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference + */ + public static function getReference($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['reference'])) { + return null; + } + + return $installed['versions'][$packageName]['reference']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path. + */ + public static function getInstallPath($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @return array + * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} + */ + public static function getRootPackage() + { + $installed = self::getInstalled(); + + return $installed[0]['root']; + } + + /** + * Returns the raw installed.php data for custom implementations + * + * @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} + */ + public static function getRawData() + { + @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED); + + if (null === self::$installed) { + // 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') { + self::$installed = include __DIR__ . '/installed.php'; + } else { + self::$installed = array(); + } + } + + return self::$installed; + } + + /** + * Returns the raw data of all installed.php which are currently loaded for custom implementations + * + * @return array[] + * @psalm-return list}> + */ + public static function getAllRawData() + { + return self::getInstalled(); + } + + /** + * Lets you reload the static array from another file + * + * This is only useful for complex integrations in which a project needs to use + * this class but then also needs to execute another project's autoloader in process, + * and wants to ensure both projects have access to their version of installed.php. + * + * A typical case would be PHPUnit, where it would need to make sure it reads all + * the data it needs from this class, then call reload() with + * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure + * the project in which it runs can then also use this class safely, without + * interference between PHPUnit's dependencies and the project's dependencies. + * + * @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 + */ + public static function reload($data) + { + self::$installed = $data; + self::$installedByVendor = array(); + } + + /** + * @return array[] + * @psalm-return list}> + */ + private static function getInstalled() + { + if (null === self::$canGetVendors) { + self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders'); + } + + $installed = array(); + + if (self::$canGetVendors) { + foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { + 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; + if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { + self::$installed = $installed[count($installed) - 1]; + } + } + } + } + + if (null === self::$installed) { + // 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; + } else { + self::$installed = array(); + } + } + + if (self::$installed !== array()) { + $installed[] = self::$installed; + } + + return $installed; + } +} diff --git a/vendor/composer/LICENSE b/vendor/composer/LICENSE new file mode 100644 index 0000000..f27399a --- /dev/null +++ b/vendor/composer/LICENSE @@ -0,0 +1,21 @@ + +Copyright (c) Nils Adermann, Jordi Boggiano + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php new file mode 100644 index 0000000..5490b88 --- /dev/null +++ b/vendor/composer/autoload_classmap.php @@ -0,0 +1,15 @@ + $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', + 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', + 'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php', + 'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php', + 'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php', + 'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php', +); diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php new file mode 100644 index 0000000..15b66b1 --- /dev/null +++ b/vendor/composer/autoload_files.php @@ -0,0 +1,24 @@ + $vendorDir . '/symfony/deprecation-contracts/function.php', + 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php', + '9b552a3cc426e3287cc811caefa3cf53' => $vendorDir . '/topthink/think-helper/src/helper.php', + '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', + 'd767e4fc2dc52fe66584ab8c6684783e' => $vendorDir . '/adbario/php-dot-notation/src/helpers.php', + '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', + '15ec93fa4ce4b2d53816a1a5f2c514e2' => $vendorDir . '/topthink/think-validate/src/helper.php', + '7448f3465e10b5f033e4babb31eb0b06' => $vendorDir . '/topthink/think-orm/src/helper.php', + '35fab96057f1bf5e7aba31a8a6d5fdde' => $vendorDir . '/topthink/think-orm/stubs/load_stubs.php', + '2cffec82183ee1cea088009cef9a6fc3' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php', + '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', + 'db356362850385d08a5381de2638b5fd' => $vendorDir . '/mpdf/mpdf/src/functions.php', + '667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php', + '1cfd2761b63b0a29ed23657ea394cb2d' => $vendorDir . '/topthink/think-captcha/src/helper.php', +); diff --git a/vendor/composer/autoload_namespaces.php b/vendor/composer/autoload_namespaces.php new file mode 100644 index 0000000..e05fdeb --- /dev/null +++ b/vendor/composer/autoload_namespaces.php @@ -0,0 +1,11 @@ + array($vendorDir . '/ezyang/htmlpurifier/library'), + '' => array($baseDir . '/extend'), +); diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php new file mode 100644 index 0000000..04812da --- /dev/null +++ b/vendor/composer/autoload_psr4.php @@ -0,0 +1,51 @@ + array($vendorDir . '/topthink/think-view/src'), + 'think\\trace\\' => array($vendorDir . '/topthink/think-trace/src'), + 'think\\captcha\\' => array($vendorDir . '/topthink/think-captcha/src'), + 'think\\app\\' => array($vendorDir . '/topthink/think-multi-app/src'), + 'think\\' => array($vendorDir . '/topthink/think-helper/src', $vendorDir . '/topthink/think-container/src', $vendorDir . '/topthink/think-validate/src', $vendorDir . '/topthink/think-orm/src', $vendorDir . '/topthink/framework/src/think', $vendorDir . '/topthink/think-filesystem/src', $vendorDir . '/topthink/think-image/src', $vendorDir . '/topthink/think-template/src'), + 'setasign\\Fpdi\\' => array($vendorDir . '/setasign/fpdi/src'), + 'app\\' => array($baseDir . '/app'), + 'ZipStream\\' => array($vendorDir . '/maennchen/zipstream-php/src'), + 'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'), + 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'), + 'Symfony\\Component\\VarDumper\\' => array($vendorDir . '/symfony/var-dumper'), + 'Psr\\SimpleCache\\' => array($vendorDir . '/psr/simple-cache/src'), + 'Psr\\Log\\' => array($vendorDir . '/psr/log/src'), + 'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src', $vendorDir . '/psr/http-factory/src'), + 'Psr\\Http\\Client\\' => array($vendorDir . '/psr/http-client/src'), + 'Psr\\Container\\' => array($vendorDir . '/psr/container/src'), + 'PhpOffice\\PhpWord\\' => array($vendorDir . '/phpoffice/phpword/src/PhpWord'), + 'PhpOffice\\PhpSpreadsheet\\' => array($vendorDir . '/phpoffice/phpspreadsheet/src/PhpSpreadsheet'), + 'PhpOffice\\Math\\' => array($vendorDir . '/phpoffice/math/src/Math'), + 'PHPMailer\\PHPMailer\\' => array($vendorDir . '/phpmailer/phpmailer/src'), + 'Overtrue\\Pinyin\\' => array($vendorDir . '/overtrue/pinyin/src'), + 'Mpdf\\PsrLogAwareTrait\\' => array($vendorDir . '/mpdf/psr-log-aware-trait/src'), + 'Mpdf\\PsrHttpMessageShim\\' => array($vendorDir . '/mpdf/psr-http-message-shim/src'), + 'Mpdf\\' => array($vendorDir . '/mpdf/mpdf/src'), + 'Matrix\\' => array($vendorDir . '/markbaker/matrix/classes/src'), + 'League\\MimeTypeDetection\\' => array($vendorDir . '/league/mime-type-detection/src'), + 'League\\Flysystem\\Local\\' => array($vendorDir . '/league/flysystem-local'), + 'League\\Flysystem\\' => array($vendorDir . '/league/flysystem/src'), + 'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'), + 'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'), + 'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'), + 'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'), + 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'), + 'Darabonba\\OpenApi\\' => array($vendorDir . '/alibabacloud/openapi-core/src'), + 'Darabonba\\GatewaySpi\\' => array($vendorDir . '/alibabacloud/gateway-spi/src'), + 'Composer\\Pcre\\' => array($vendorDir . '/composer/pcre/src'), + 'Complex\\' => array($vendorDir . '/markbaker/complex/classes/src'), + 'AlibabaCloud\\Tea\\' => array($vendorDir . '/alibabacloud/tea/src'), + 'AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\' => array($vendorDir . '/alibabacloud/dysmsapi-20170525/src'), + 'AlibabaCloud\\Dara\\' => array($vendorDir . '/alibabacloud/darabonba/src'), + 'AlibabaCloud\\Credentials\\' => array($vendorDir . '/alibabacloud/credentials/src'), + 'Adbar\\' => array($vendorDir . '/adbario/php-dot-notation/src'), +); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php new file mode 100644 index 0000000..f495940 --- /dev/null +++ b/vendor/composer/autoload_real.php @@ -0,0 +1,50 @@ +register(true); + + $filesToLoad = \Composer\Autoload\ComposerStaticInitfdf3f59aa81d0d137889debd300186fc::$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); + } + + return $loader; + } +} diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php new file mode 100644 index 0000000..801344a --- /dev/null +++ b/vendor/composer/autoload_static.php @@ -0,0 +1,327 @@ + __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php', + 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', + '9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php', + '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php', + 'd767e4fc2dc52fe66584ab8c6684783e' => __DIR__ . '/..' . '/adbario/php-dot-notation/src/helpers.php', + '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php', + '15ec93fa4ce4b2d53816a1a5f2c514e2' => __DIR__ . '/..' . '/topthink/think-validate/src/helper.php', + '7448f3465e10b5f033e4babb31eb0b06' => __DIR__ . '/..' . '/topthink/think-orm/src/helper.php', + '35fab96057f1bf5e7aba31a8a6d5fdde' => __DIR__ . '/..' . '/topthink/think-orm/stubs/load_stubs.php', + '2cffec82183ee1cea088009cef9a6fc3' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php', + '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', + 'db356362850385d08a5381de2638b5fd' => __DIR__ . '/..' . '/mpdf/mpdf/src/functions.php', + '667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php', + '1cfd2761b63b0a29ed23657ea394cb2d' => __DIR__ . '/..' . '/topthink/think-captcha/src/helper.php', + ); + + public static $prefixLengthsPsr4 = array ( + 't' => + array ( + 'think\\view\\driver\\' => 18, + 'think\\trace\\' => 12, + 'think\\captcha\\' => 14, + 'think\\app\\' => 10, + 'think\\' => 6, + ), + 's' => + array ( + 'setasign\\Fpdi\\' => 14, + ), + 'a' => + array ( + 'app\\' => 4, + ), + 'Z' => + array ( + 'ZipStream\\' => 10, + ), + 'S' => + array ( + 'Symfony\\Polyfill\\Php80\\' => 23, + 'Symfony\\Polyfill\\Mbstring\\' => 26, + 'Symfony\\Component\\VarDumper\\' => 28, + ), + 'P' => + array ( + 'Psr\\SimpleCache\\' => 16, + 'Psr\\Log\\' => 8, + 'Psr\\Http\\Message\\' => 17, + 'Psr\\Http\\Client\\' => 16, + 'Psr\\Container\\' => 14, + 'PhpOffice\\PhpWord\\' => 18, + 'PhpOffice\\PhpSpreadsheet\\' => 25, + 'PhpOffice\\Math\\' => 15, + 'PHPMailer\\PHPMailer\\' => 20, + ), + 'O' => + array ( + 'Overtrue\\Pinyin\\' => 16, + ), + 'M' => + array ( + 'Mpdf\\PsrLogAwareTrait\\' => 22, + 'Mpdf\\PsrHttpMessageShim\\' => 24, + 'Mpdf\\' => 5, + 'Matrix\\' => 7, + ), + 'L' => + array ( + 'League\\MimeTypeDetection\\' => 25, + 'League\\Flysystem\\Local\\' => 23, + 'League\\Flysystem\\' => 17, + ), + 'G' => + array ( + 'GuzzleHttp\\Psr7\\' => 16, + 'GuzzleHttp\\Promise\\' => 19, + 'GuzzleHttp\\' => 11, + ), + 'F' => + array ( + 'Firebase\\JWT\\' => 13, + ), + 'D' => + array ( + 'DeepCopy\\' => 9, + 'Darabonba\\OpenApi\\' => 18, + 'Darabonba\\GatewaySpi\\' => 21, + ), + 'C' => + array ( + 'Composer\\Pcre\\' => 14, + 'Complex\\' => 8, + ), + 'A' => + array ( + 'AlibabaCloud\\Tea\\' => 17, + 'AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\' => 36, + 'AlibabaCloud\\Dara\\' => 18, + 'AlibabaCloud\\Credentials\\' => 25, + 'Adbar\\' => 6, + ), + ); + + public static $prefixDirsPsr4 = array ( + 'think\\view\\driver\\' => + array ( + 0 => __DIR__ . '/..' . '/topthink/think-view/src', + ), + 'think\\trace\\' => + array ( + 0 => __DIR__ . '/..' . '/topthink/think-trace/src', + ), + 'think\\captcha\\' => + array ( + 0 => __DIR__ . '/..' . '/topthink/think-captcha/src', + ), + 'think\\app\\' => + array ( + 0 => __DIR__ . '/..' . '/topthink/think-multi-app/src', + ), + 'think\\' => + array ( + 0 => __DIR__ . '/..' . '/topthink/think-helper/src', + 1 => __DIR__ . '/..' . '/topthink/think-container/src', + 2 => __DIR__ . '/..' . '/topthink/think-validate/src', + 3 => __DIR__ . '/..' . '/topthink/think-orm/src', + 4 => __DIR__ . '/..' . '/topthink/framework/src/think', + 5 => __DIR__ . '/..' . '/topthink/think-filesystem/src', + 6 => __DIR__ . '/..' . '/topthink/think-image/src', + 7 => __DIR__ . '/..' . '/topthink/think-template/src', + ), + 'setasign\\Fpdi\\' => + array ( + 0 => __DIR__ . '/..' . '/setasign/fpdi/src', + ), + 'app\\' => + array ( + 0 => __DIR__ . '/../..' . '/app', + ), + 'ZipStream\\' => + array ( + 0 => __DIR__ . '/..' . '/maennchen/zipstream-php/src', + ), + 'Symfony\\Polyfill\\Php80\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/polyfill-php80', + ), + 'Symfony\\Polyfill\\Mbstring\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring', + ), + 'Symfony\\Component\\VarDumper\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/var-dumper', + ), + 'Psr\\SimpleCache\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/simple-cache/src', + ), + 'Psr\\Log\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/log/src', + ), + 'Psr\\Http\\Message\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/http-message/src', + 1 => __DIR__ . '/..' . '/psr/http-factory/src', + ), + 'Psr\\Http\\Client\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/http-client/src', + ), + 'Psr\\Container\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/container/src', + ), + 'PhpOffice\\PhpWord\\' => + array ( + 0 => __DIR__ . '/..' . '/phpoffice/phpword/src/PhpWord', + ), + 'PhpOffice\\PhpSpreadsheet\\' => + array ( + 0 => __DIR__ . '/..' . '/phpoffice/phpspreadsheet/src/PhpSpreadsheet', + ), + 'PhpOffice\\Math\\' => + array ( + 0 => __DIR__ . '/..' . '/phpoffice/math/src/Math', + ), + 'PHPMailer\\PHPMailer\\' => + array ( + 0 => __DIR__ . '/..' . '/phpmailer/phpmailer/src', + ), + 'Overtrue\\Pinyin\\' => + array ( + 0 => __DIR__ . '/..' . '/overtrue/pinyin/src', + ), + 'Mpdf\\PsrLogAwareTrait\\' => + array ( + 0 => __DIR__ . '/..' . '/mpdf/psr-log-aware-trait/src', + ), + 'Mpdf\\PsrHttpMessageShim\\' => + array ( + 0 => __DIR__ . '/..' . '/mpdf/psr-http-message-shim/src', + ), + 'Mpdf\\' => + array ( + 0 => __DIR__ . '/..' . '/mpdf/mpdf/src', + ), + 'Matrix\\' => + array ( + 0 => __DIR__ . '/..' . '/markbaker/matrix/classes/src', + ), + 'League\\MimeTypeDetection\\' => + array ( + 0 => __DIR__ . '/..' . '/league/mime-type-detection/src', + ), + 'League\\Flysystem\\Local\\' => + array ( + 0 => __DIR__ . '/..' . '/league/flysystem-local', + ), + 'League\\Flysystem\\' => + array ( + 0 => __DIR__ . '/..' . '/league/flysystem/src', + ), + 'GuzzleHttp\\Psr7\\' => + array ( + 0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src', + ), + 'GuzzleHttp\\Promise\\' => + array ( + 0 => __DIR__ . '/..' . '/guzzlehttp/promises/src', + ), + 'GuzzleHttp\\' => + array ( + 0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src', + ), + 'Firebase\\JWT\\' => + array ( + 0 => __DIR__ . '/..' . '/firebase/php-jwt/src', + ), + 'DeepCopy\\' => + array ( + 0 => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy', + ), + 'Darabonba\\OpenApi\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/openapi-core/src', + ), + 'Darabonba\\GatewaySpi\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/gateway-spi/src', + ), + 'Composer\\Pcre\\' => + array ( + 0 => __DIR__ . '/..' . '/composer/pcre/src', + ), + 'Complex\\' => + array ( + 0 => __DIR__ . '/..' . '/markbaker/complex/classes/src', + ), + 'AlibabaCloud\\Tea\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/tea/src', + ), + 'AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/dysmsapi-20170525/src', + ), + 'AlibabaCloud\\Dara\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/darabonba/src', + ), + 'AlibabaCloud\\Credentials\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/credentials/src', + ), + 'Adbar\\' => + array ( + 0 => __DIR__ . '/..' . '/adbario/php-dot-notation/src', + ), + ); + + public static $prefixesPsr0 = array ( + 'H' => + array ( + 'HTMLPurifier' => + array ( + 0 => __DIR__ . '/..' . '/ezyang/htmlpurifier/library', + ), + ), + ); + + public static $fallbackDirsPsr0 = array ( + 0 => __DIR__ . '/../..' . '/extend', + ); + + public static $classMap = array ( + 'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', + 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', + 'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php', + 'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php', + 'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php', + 'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php', + ); + + public static function getInitializer(ClassLoader $loader) + { + return \Closure::bind(function () use ($loader) { + $loader->prefixLengthsPsr4 = ComposerStaticInitfdf3f59aa81d0d137889debd300186fc::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInitfdf3f59aa81d0d137889debd300186fc::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInitfdf3f59aa81d0d137889debd300186fc::$prefixesPsr0; + $loader->fallbackDirsPsr0 = ComposerStaticInitfdf3f59aa81d0d137889debd300186fc::$fallbackDirsPsr0; + $loader->classMap = ComposerStaticInitfdf3f59aa81d0d137889debd300186fc::$classMap; + + }, null, ClassLoader::class); + } +} diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json new file mode 100644 index 0000000..9c92d08 --- /dev/null +++ b/vendor/composer/installed.json @@ -0,0 +1,3036 @@ +{ + "packages": [ + { + "name": "adbario/php-dot-notation", + "version": "2.5.0", + "version_normalized": "2.5.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/adbario/php-dot-notation/2.5.0/adbario-php-dot-notation-2.5.0.zip", + "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^5.5 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5", + "squizlabs/php_codesniffer": "^3.6" + }, + "time": "2022-10-14T20:31:46+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Adbar\\": "src" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Riku Särkinen", + "email": "riku@adbar.io" + } + ], + "description": "PHP dot notation access to arrays", + "homepage": "https://github.com/adbario/php-dot-notation", + "keywords": [ + "ArrayAccess", + "dotnotation" + ], + "support": { + "issues": "https://github.com/adbario/php-dot-notation/issues", + "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0" + }, + "install-path": "../adbario/php-dot-notation" + }, + { + "name": "alibabacloud/credentials", + "version": "1.2.4", + "version_normalized": "1.2.4.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/alibabacloud/credentials/1.2.4/alibabacloud-credentials-1.2.4.zip", + "reference": "d8910d5a222f2939e89359bff0a3122094fb8baa", + "shasum": "" + }, + "require": { + "adbario/php-dot-notation": "^2.2", + "alibabacloud/tea": "^3.0", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "php": ">=5.6" + }, + "require-dev": { + "composer/composer": "^1.8", + "drupal/coder": "^8.3", + "ext-dom": "*", + "ext-pcre": "*", + "ext-sockets": "*", + "ext-spl": "*", + "mikey179/vfsstream": "^1.6", + "monolog/monolog": "^1.24", + "phpunit/phpunit": "^5.7|^6.5|^8.5|^9.3", + "psr/cache": "^1.0", + "symfony/dotenv": "^3.4", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "time": "2026-06-09T12:03:19+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\Credentials\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "description": "Alibaba Cloud Credentials for PHP", + "homepage": "https://www.alibabacloud.com/", + "keywords": [ + "alibaba", + "alibabacloud", + "aliyun", + "client", + "cloud", + "credentials", + "library", + "sdk", + "tool" + ], + "support": { + "issues": "https://github.com/aliyun/credentials-php/issues", + "source": "https://github.com/aliyun/credentials-php" + }, + "install-path": "../alibabacloud/credentials" + }, + { + "name": "alibabacloud/darabonba", + "version": "v1.0.4", + "version_normalized": "1.0.4.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/alibabacloud/darabonba/v1.0.4/alibabacloud-darabonba-v1.0.4.zip", + "reference": "b1ccea693258ea68e455e330922406f3afe10e9c", + "shasum": "" + }, + "require": { + "adbario/php-dot-notation": "^2.4", + "alibabacloud/tea": "^3.2", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3|^9.3", + "symfony/dotenv": "^3.4", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "time": "2025-12-15T10:15:24+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\Dara\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "description": "Client of Darabonba for PHP", + "homepage": "https://www.alibabacloud.com/", + "keywords": [ + "alibabacloud", + "client", + "cloud", + "tea" + ], + "support": { + "issues": "https://github.com/aliyun/tea-php/issues", + "source": "https://github.com/aliyun/tea-php" + }, + "install-path": "../alibabacloud/darabonba" + }, + { + "name": "alibabacloud/dysmsapi-20170525", + "version": "4.6.0", + "version_normalized": "4.6.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/alibabacloud/dysmsapi-20170525/4.6.0/alibabacloud-dysmsapi-20170525-4.6.0.zip", + "reference": "b53d15e837d2488a2b72c815cdb1fe97ba5b37f5", + "shasum": "" + }, + "require": { + "alibabacloud/darabonba": "^1.0.0", + "alibabacloud/openapi-core": "^1.0.0", + "php": ">5.5" + }, + "time": "2026-07-01T13:56:24+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/4.6.0" + }, + "install-path": "../alibabacloud/dysmsapi-20170525" + }, + { + "name": "alibabacloud/gateway-spi", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/alibabacloud/gateway-spi/1.0.0/alibabacloud-gateway-spi-1.0.0.zip", + "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb", + "shasum": "" + }, + "require": { + "alibabacloud/credentials": "^1.1", + "php": ">5.5" + }, + "time": "2022-07-14T05:31:35+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Darabonba\\GatewaySpi\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Gateway SPI Client", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0" + }, + "install-path": "../alibabacloud/gateway-spi" + }, + { + "name": "alibabacloud/openapi-core", + "version": "1.0.9", + "version_normalized": "1.0.9.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/alibabacloud/openapi-core/1.0.9/alibabacloud-openapi-core-1.0.9.zip", + "reference": "7b241b2a0e71f70629e2ecdc5cbe8c8b6b3a7567", + "shasum": "" + }, + "require": { + "alibabacloud/credentials": "^1.2.2", + "alibabacloud/darabonba": "^1", + "alibabacloud/gateway-spi": "^1", + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3|^9.3", + "symfony/dotenv": "^3.4", + "symfony/var-dumper": "^3.4" + }, + "time": "2026-01-15T06:47:29+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Darabonba\\OpenApi\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud OpenApi Client Core", + "support": { + "issues": "https://github.com/alibabacloud-sdk-php/openapi-core/issues", + "source": "https://github.com/alibabacloud-sdk-php/openapi-core/tree/1.0.9" + }, + "install-path": "../alibabacloud/openapi-core" + }, + { + "name": "alibabacloud/tea", + "version": "3.2.1", + "version_normalized": "3.2.1.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/alibabacloud/tea/3.2.1/alibabacloud-tea-3.2.1.zip", + "reference": "1619cb96c158384f72b873e1f85de8b299c9c367", + "shasum": "" + }, + "require": { + "adbario/php-dot-notation": "^2.4", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "*", + "symfony/dotenv": "^3.4", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "time": "2023-05-16T06:43:41+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "description": "Client of Tea for PHP", + "homepage": "https://www.alibabacloud.com/", + "keywords": [ + "alibabacloud", + "client", + "cloud", + "tea" + ], + "support": { + "issues": "https://github.com/aliyun/tea-php/issues", + "source": "https://github.com/aliyun/tea-php" + }, + "install-path": "../alibabacloud/tea" + }, + { + "name": "composer/pcre", + "version": "3.4.0", + "version_normalized": "3.4.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/composer/pcre/3.4.0/composer-pcre-3.4.0.zip", + "reference": "d5a341b3fb61f3001970940afb1d332968a183ed", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<2.2.2" + }, + "require-dev": { + "phpstan/phpstan": "^2", + "phpstan/phpstan-deprecation-rules": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "^9" + }, + "time": "2026-06-07T11:47:49+00:00", + "type": "library", + "extra": { + "phpstan": { + "includes": [ + "extension.neon" + ] + }, + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Composer\\Pcre\\": "src" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "keywords": [ + "PCRE", + "preg", + "regex", + "regular expression" + ], + "support": { + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.4.0" + }, + "install-path": "./pcre" + }, + { + "name": "ezyang/htmlpurifier", + "version": "v4.19.0", + "version_normalized": "4.19.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/ezyang/htmlpurifier/v4.19.0/ezyang-htmlpurifier-v4.19.0.zip", + "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf", + "shasum": "" + }, + "require": { + "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0" + }, + "require-dev": { + "cerdic/css-tidy": "^1.7 || ^2.0", + "simpletest/simpletest": "dev-master" + }, + "suggest": { + "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", + "ext-bcmath": "Used for unit conversion and imagecrash protection", + "ext-iconv": "Converts text to and from non-UTF-8 encodings", + "ext-tidy": "Used for pretty-printing HTML" + }, + "time": "2025-10-17T16:34:55+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "library/HTMLPurifier.composer.php" + ], + "psr-0": { + "HTMLPurifier": "library/" + }, + "exclude-from-classmap": [ + "/library/HTMLPurifier/Language/" + ] + }, + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "name": "Edward Z. Yang", + "email": "admin@htmlpurifier.org", + "homepage": "http://ezyang.com" + } + ], + "description": "Standards compliant HTML filter written in PHP", + "homepage": "http://htmlpurifier.org/", + "keywords": [ + "html" + ], + "support": { + "issues": "https://github.com/ezyang/htmlpurifier/issues", + "source": "https://github.com/ezyang/htmlpurifier/tree/v4.19.0" + }, + "install-path": "../ezyang/htmlpurifier" + }, + { + "name": "firebase/php-jwt", + "version": "v7.1.0", + "version_normalized": "7.1.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/firebase/php-jwt/v7.1.0/firebase-php-jwt-v7.1.0.zip", + "reference": "b374a5d1a4f1f67fadc2165cdb284645945e2fc0", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "guzzlehttp/guzzle": "^7.4", + "phpfastcache/phpfastcache": "^9.2", + "phpseclib/phpseclib": "~3.0", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.5", + "psr/cache": "^2.0||^3.0", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0" + }, + "suggest": { + "ext-sodium": "Support EdDSA (Ed25519) signatures", + "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present", + "phpseclib/phpseclib": "Support PS256 (RSASSA-PSS) signatures" + }, + "time": "2026-06-11T17:54:14+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Firebase\\JWT\\": "src" + } + }, + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Neuman Vong", + "email": "neuman+pear@twilio.com", + "role": "Developer" + }, + { + "name": "Anant Narayanan", + "email": "anant@php.net", + "role": "Developer" + } + ], + "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", + "homepage": "https://github.com/googleapis/php-jwt", + "keywords": [ + "jwt", + "php" + ], + "support": { + "issues": "https://github.com/googleapis/php-jwt/issues", + "source": "https://github.com/googleapis/php-jwt/tree/v7.1.0" + }, + "install-path": "../firebase/php-jwt" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.15.1", + "version_normalized": "7.15.1.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/guzzlehttp/guzzle/7.15.1/guzzlehttp-guzzle-7.15.1.zip", + "reference": "61443dfb33c62f308ee8add20f45b4d6e4bf8d2f", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^2.5.1", + "guzzlehttp/psr7": "^2.13", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.5 || ^3.0", + "symfony/polyfill-php80": "^1.25" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-curl": "*", + "guzzle/client-integration-tests": "3.0.3", + "guzzlehttp/test-server": "^0.7", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.52 || ^9.6.34", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "time": "2026-07-18T11:23:11+00:00", + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.15.1" + }, + "install-path": "../guzzlehttp/guzzle" + }, + { + "name": "guzzlehttp/promises", + "version": "2.5.1", + "version_normalized": "2.5.1.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/guzzlehttp/promises/2.5.1/guzzlehttp-promises-2.5.1.zip", + "reference": "9ad1e4fc607446a055b95870c7f668e93b5cff29", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/deprecation-contracts": "^2.5 || ^3.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.52 || ^9.6.34" + }, + "time": "2026-07-08T15:48:39+00:00", + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.5.1" + }, + "install-path": "../guzzlehttp/promises" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.13.0", + "version_normalized": "2.13.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/guzzlehttp/psr7/2.13.0/guzzlehttp-psr7-2.13.0.zip", + "reference": "dad89620b7a6edb60c15858442eb2e408b45d8f4", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0", + "symfony/deprecation-contracts": "^2.5 || ^3.0", + "symfony/polyfill-php80": "^1.25" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "1.1.0", + "jshttp/mime-db": "1.54.0.1", + "phpunit/phpunit": "^8.5.52 || ^9.6.34" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "time": "2026-07-16T22:23:49+00:00", + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.13.0" + }, + "install-path": "../guzzlehttp/psr7" + }, + { + "name": "league/flysystem", + "version": "3.35.2", + "version_normalized": "3.35.2.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/league/flysystem/3.35.2/league-flysystem-3.35.2.zip", + "reference": "b277b5dc3d56650b68904117124e79c851e12376", + "shasum": "" + }, + "require": { + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", + "aws/aws-sdk-php": "3.209.31 || 3.210.0", + "guzzlehttp/guzzle": "<7.0", + "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", + "symfony/http-client": "<5.2" + }, + "require-dev": { + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.295.10", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "ext-mongodb": "^1.3|^2", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", + "microsoft/azure-storage-blob": "^1.1", + "mongodb/mongodb": "^1.2|^2", + "phpseclib/phpseclib": "^3.0.36", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.6.0" + }, + "time": "2026-07-06T14:42:07+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.35.2" + }, + "install-path": "../league/flysystem" + }, + { + "name": "league/flysystem-local", + "version": "3.31.0", + "version_normalized": "3.31.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/league/flysystem-local/3.31.0/league-flysystem-local-3.31.0.zip", + "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "time": "2026-01-23T15:30:45+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "source": "https://github.com/thephpleague/flysystem-local/tree/3.31.0" + }, + "install-path": "../league/flysystem-local" + }, + { + "name": "league/mime-type-detection", + "version": "1.17.0", + "version_normalized": "1.17.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/league/mime-type-detection/1.17.0/league-mime-type-detection-1.17.0.zip", + "reference": "f5f47eff7c48ed1003069a2ca67f316fb4021c76", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0 || ^11.0 || ^12.0" + }, + "time": "2026-07-09T11:49:27+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.17.0" + }, + "install-path": "../league/mime-type-detection" + }, + { + "name": "maennchen/zipstream-php", + "version": "3.2.2", + "version_normalized": "3.2.2.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/maennchen/zipstream-php/3.2.2/maennchen-zipstream-php-3.2.2.zip", + "reference": "77bebeb4c6c340bb3c11c843b2cffd8bbfde4d5e", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "ext-zlib": "*", + "php-64bit": "^8.3" + }, + "require-dev": { + "brianium/paratest": "^7.7", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.86", + "guzzlehttp/guzzle": "^7.5", + "mikey179/vfsstream": "^1.6", + "php-coveralls/php-coveralls": "^2.5", + "phpunit/phpunit": "^12.0", + "vimeo/psalm": "^6.0" + }, + "suggest": { + "guzzlehttp/psr7": "^2.4", + "psr/http-message": "^2.0" + }, + "time": "2026-04-11T18:38:28+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "ZipStream\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paul Duncan", + "email": "pabs@pablotron.org" + }, + { + "name": "Jonatan Männchen", + "email": "jonatan@maennchen.ch" + }, + { + "name": "Jesse Donat", + "email": "donatj@gmail.com" + }, + { + "name": "András Kolesár", + "email": "kolesar@kolesar.hu" + } + ], + "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.", + "keywords": [ + "stream", + "zip" + ], + "support": { + "issues": "https://github.com/maennchen/ZipStream-PHP/issues", + "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.2.2" + }, + "install-path": "../maennchen/zipstream-php" + }, + { + "name": "markbaker/complex", + "version": "3.0.2", + "version_normalized": "3.0.2.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/markbaker/complex/3.0.2/markbaker-complex-3.0.2.zip", + "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "phpcompatibility/php-compatibility": "^9.3", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "squizlabs/php_codesniffer": "^3.7" + }, + "time": "2022-12-06T16:21:08+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Complex\\": "classes/src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Baker", + "email": "mark@lange.demon.co.uk" + } + ], + "description": "PHP Class for working with complex numbers", + "homepage": "https://github.com/MarkBaker/PHPComplex", + "keywords": [ + "complex", + "mathematics" + ], + "support": { + "issues": "https://github.com/MarkBaker/PHPComplex/issues", + "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2" + }, + "install-path": "../markbaker/complex" + }, + { + "name": "markbaker/matrix", + "version": "3.0.1", + "version_normalized": "3.0.1.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/markbaker/matrix/3.0.1/markbaker-matrix-3.0.1.zip", + "reference": "728434227fe21be27ff6d86621a1b13107a2562c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "phpcompatibility/php-compatibility": "^9.3", + "phpdocumentor/phpdocumentor": "2.*", + "phploc/phploc": "^4.0", + "phpmd/phpmd": "2.*", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "sebastian/phpcpd": "^4.0", + "squizlabs/php_codesniffer": "^3.7" + }, + "time": "2022-12-02T22:17:43+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Matrix\\": "classes/src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Baker", + "email": "mark@demon-angel.eu" + } + ], + "description": "PHP Class for working with matrices", + "homepage": "https://github.com/MarkBaker/PHPMatrix", + "keywords": [ + "mathematics", + "matrix", + "vector" + ], + "support": { + "issues": "https://github.com/MarkBaker/PHPMatrix/issues", + "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1" + }, + "install-path": "../markbaker/matrix" + }, + { + "name": "mpdf/mpdf", + "version": "v8.3.1", + "version_normalized": "8.3.1.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/mpdf/mpdf/v8.3.1/mpdf-mpdf-v8.3.1.zip", + "reference": "2a454ec334109911fdb323a284c19dbf3f049810", + "shasum": "" + }, + "require": { + "ext-gd": "*", + "ext-mbstring": "*", + "mpdf/psr-http-message-shim": "^1.0 || ^2.0", + "mpdf/psr-log-aware-trait": "^2.0 || ^3.0", + "myclabs/deep-copy": "^1.7", + "paragonie/random_compat": "^1.4|^2.0|^9.99.99", + "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0", + "psr/http-message": "^1.0 || ^2.0", + "psr/log": "^1.0 || ^2.0 || ^3.0", + "setasign/fpdi": "^2.1" + }, + "require-dev": { + "mockery/mockery": "^1.3.0", + "mpdf/qrcode": "^1.1.0", + "squizlabs/php_codesniffer": "^3.5.0", + "tracy/tracy": "~2.5", + "yoast/phpunit-polyfills": "^1.0" + }, + "suggest": { + "ext-bcmath": "Needed for generation of some types of barcodes", + "ext-imagick": "Needed if developing the Mpdf library", + "ext-xml": "Needed mainly for SVG manipulation", + "ext-zlib": "Needed for compression of embedded resources, such as fonts" + }, + "time": "2026-03-11T10:58:44+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Mpdf\\": "src/" + } + }, + "license": [ + "GPL-2.0-only" + ], + "authors": [ + { + "name": "Matěj Humpál", + "role": "Developer, maintainer" + }, + { + "name": "Ian Back", + "role": "Developer (retired)" + } + ], + "description": "PHP library generating PDF files from UTF-8 encoded HTML", + "homepage": "https://mpdf.github.io", + "keywords": [ + "pdf", + "php", + "utf-8" + ], + "support": { + "docs": "https://mpdf.github.io", + "issues": "https://github.com/mpdf/mpdf/issues", + "source": "https://github.com/mpdf/mpdf" + }, + "install-path": "../mpdf/mpdf" + }, + { + "name": "mpdf/psr-http-message-shim", + "version": "v2.0.1", + "version_normalized": "2.0.1.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/mpdf/psr-http-message-shim/v2.0.1/mpdf-psr-http-message-shim-v2.0.1.zip", + "reference": "f25a0153d645e234f9db42e5433b16d9b113920f", + "shasum": "" + }, + "require": { + "psr/http-message": "^2.0" + }, + "time": "2023-10-02T14:34:03+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Mpdf\\PsrHttpMessageShim\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Dorison", + "email": "mark@chromatichq.com" + }, + { + "name": "Kristofer Widholm", + "email": "kristofer@chromatichq.com" + }, + { + "name": "Nigel Cunningham", + "email": "nigel.cunningham@technocrat.com.au" + } + ], + "description": "Shim to allow support of different psr/message versions.", + "support": { + "issues": "https://github.com/mpdf/psr-http-message-shim/issues", + "source": "https://github.com/mpdf/psr-http-message-shim/tree/v2.0.1" + }, + "install-path": "../mpdf/psr-http-message-shim" + }, + { + "name": "mpdf/psr-log-aware-trait", + "version": "v3.0.0", + "version_normalized": "3.0.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/mpdf/psr-log-aware-trait/v3.0.0/mpdf-psr-log-aware-trait-v3.0.0.zip", + "reference": "a633da6065e946cc491e1c962850344bb0bf3e78", + "shasum": "" + }, + "require": { + "psr/log": "^3.0" + }, + "time": "2023-05-03T06:19:36+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Mpdf\\PsrLogAwareTrait\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Dorison", + "email": "mark@chromatichq.com" + }, + { + "name": "Kristofer Widholm", + "email": "kristofer@chromatichq.com" + } + ], + "description": "Trait to allow support of different psr/log versions.", + "support": { + "issues": "https://github.com/mpdf/psr-log-aware-trait/issues", + "source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0" + }, + "install-path": "../mpdf/psr-log-aware-trait" + }, + { + "name": "myclabs/deep-copy", + "version": "1.13.4", + "version_normalized": "1.13.4.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/myclabs/deep-copy/1.13.4/myclabs-deep-copy-1.13.4.zip", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "time": "2025-08-01T08:46:24+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" + }, + "install-path": "../myclabs/deep-copy" + }, + { + "name": "overtrue/pinyin", + "version": "5.3.4", + "version_normalized": "5.3.4.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/overtrue/pinyin/5.3.4/overtrue-pinyin-5.3.4.zip", + "reference": "03d8697763c32595f54c855911bc77abf00fea14", + "shasum": "" + }, + "require": { + "php": ">=8.0.2" + }, + "require-dev": { + "brainmaestro/composer-git-hooks": "^3.0", + "friendsofphp/php-cs-fixer": "^3.2", + "laravel/pint": "^1.10", + "nunomaduro/termwind": "^1.0|^2.0", + "phpunit/phpunit": "^10.0|^11.2" + }, + "time": "2025-03-16T02:16:27+00:00", + "bin": [ + "bin/pinyin" + ], + "type": "library", + "extra": { + "hooks": { + "pre-push": [ + "composer pint", + "composer test" + ], + "pre-commit": [ + "composer pint", + "composer test" + ] + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Overtrue\\Pinyin\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "overtrue", + "email": "anzhengchao@gmail.com", + "homepage": "http://github.com/overtrue" + } + ], + "description": "Chinese to pinyin translator.", + "homepage": "https://github.com/overtrue/pinyin", + "keywords": [ + "Chinese", + "Pinyin", + "cn2pinyin" + ], + "support": { + "issues": "https://github.com/overtrue/pinyin/issues", + "source": "https://github.com/overtrue/pinyin/tree/5.3.4" + }, + "install-path": "../overtrue/pinyin" + }, + { + "name": "paragonie/random_compat", + "version": "v9.99.100", + "version_normalized": "9.99.100.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/paragonie/random_compat/v9.99.100/paragonie-random_compat-v9.99.100.zip", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", + "shasum": "" + }, + "require": { + "php": ">= 7" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*", + "vimeo/psalm": "^1" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "time": "2020-10-15T08:29:30+00:00", + "type": "library", + "installation-source": "dist", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "polyfill", + "pseudorandom", + "random" + ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, + "install-path": "../paragonie/random_compat" + }, + { + "name": "phpmailer/phpmailer", + "version": "v6.12.0", + "version_normalized": "6.12.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/phpmailer/phpmailer/v6.12.0/phpmailer-phpmailer-v6.12.0.zip", + "reference": "d1ac35d784bf9f5e61b424901d5a014967f15b12", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "php": ">=5.5.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "doctrine/annotations": "^1.2.6 || ^1.13.3", + "php-parallel-lint/php-console-highlighter": "^1.0.0", + "php-parallel-lint/php-parallel-lint": "^1.3.2", + "phpcompatibility/php-compatibility": "^9.3.5", + "roave/security-advisories": "dev-latest", + "squizlabs/php_codesniffer": "^3.7.2", + "yoast/phpunit-polyfills": "^1.0.4" + }, + "suggest": { + "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication", + "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", + "ext-openssl": "Needed for secure SMTP sending and DKIM signing", + "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication", + "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", + "league/oauth2-google": "Needed for Google XOAUTH2 authentication", + "psr/log": "For optional PSR-3 debug logging", + "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)", + "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication" + }, + "time": "2025-10-15T16:49:08+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "PHPMailer\\PHPMailer\\": "src/" + } + }, + "license": [ + "LGPL-2.1-only" + ], + "authors": [ + { + "name": "Marcus Bointon", + "email": "phpmailer@synchromedia.co.uk" + }, + { + "name": "Jim Jagielski", + "email": "jimjag@gmail.com" + }, + { + "name": "Andy Prevost", + "email": "codeworxtech@users.sourceforge.net" + }, + { + "name": "Brent R. Matzelle" + } + ], + "description": "PHPMailer is a full-featured email creation and transfer class for PHP", + "support": { + "issues": "https://github.com/PHPMailer/PHPMailer/issues", + "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.12.0" + }, + "install-path": "../phpmailer/phpmailer" + }, + { + "name": "phpoffice/math", + "version": "0.3.0", + "version_normalized": "0.3.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/phpoffice/math/0.3.0/phpoffice-math-0.3.0.zip", + "reference": "fc31c8f57a7a81f962cbf389fd89f4d9d06fc99a", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-xml": "*", + "php": "^7.1|^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.88 || ^1.0.0", + "phpunit/phpunit": "^7.0 || ^9.0" + }, + "time": "2025-05-29T08:31:49+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "PhpOffice\\Math\\": "src/Math/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Progi1984", + "homepage": "https://lefevre.dev" + } + ], + "description": "Math - Manipulate Math Formula", + "homepage": "https://phpoffice.github.io/Math/", + "keywords": [ + "MathML", + "officemathml", + "php" + ], + "support": { + "issues": "https://github.com/PHPOffice/Math/issues", + "source": "https://github.com/PHPOffice/Math/tree/0.3.0" + }, + "install-path": "../phpoffice/math" + }, + { + "name": "phpoffice/phpspreadsheet", + "version": "1.30.6", + "version_normalized": "1.30.6.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/phpoffice/phpspreadsheet/1.30.6/phpoffice-phpspreadsheet-1.30.6.zip", + "reference": "a416375ffc8bf5b661c1bb4e6c60d8f3fddbe5ce", + "shasum": "" + }, + "require": { + "composer/pcre": "^1||^2||^3", + "ext-ctype": "*", + "ext-dom": "*", + "ext-fileinfo": "*", + "ext-gd": "*", + "ext-iconv": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-simplexml": "*", + "ext-xml": "*", + "ext-xmlreader": "*", + "ext-xmlwriter": "*", + "ext-zip": "*", + "ext-zlib": "*", + "ezyang/htmlpurifier": "^4.15", + "maennchen/zipstream-php": "^2.1 || ^3.0", + "markbaker/complex": "^3.0", + "markbaker/matrix": "^3.0", + "php": ">=7.4.0 <8.5.0", + "psr/simple-cache": "^1.0 || ^2.0 || ^3.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-main", + "doctrine/instantiator": "^1.5", + "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.2", + "mitoteam/jpgraph": "^10.3", + "mpdf/mpdf": "^8.1.1", + "phpcompatibility/php-compatibility": "^9.3", + "phpstan/phpstan": "^1.1", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^8.5 || ^9.0", + "squizlabs/php_codesniffer": "^3.7", + "tecnickcom/tcpdf": "^6.5" + }, + "suggest": { + "dompdf/dompdf": "Option for rendering PDF with PDF Writer", + "ext-intl": "PHP Internationalization Functions", + "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers", + "mpdf/mpdf": "Option for rendering PDF with PDF Writer", + "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer" + }, + "time": "2026-07-12T19:59:31+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Maarten Balliauw", + "homepage": "https://blog.maartenballiauw.be" + }, + { + "name": "Mark Baker", + "homepage": "https://markbakeruk.net" + }, + { + "name": "Franck Lefevre", + "homepage": "https://rootslabs.net" + }, + { + "name": "Erik Tilt" + }, + { + "name": "Adrien Crivelli" + }, + { + "name": "Owen Leibman" + } + ], + "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", + "homepage": "https://github.com/PHPOffice/PhpSpreadsheet", + "keywords": [ + "OpenXML", + "excel", + "gnumeric", + "ods", + "php", + "spreadsheet", + "xls", + "xlsx" + ], + "support": { + "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.6" + }, + "install-path": "../phpoffice/phpspreadsheet" + }, + { + "name": "phpoffice/phpword", + "version": "1.4.0", + "version_normalized": "1.4.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/phpoffice/phpword/1.4.0/phpoffice-phpword-1.4.0.zip", + "reference": "6d75328229bc93790b37e93741adf70646cea958", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-gd": "*", + "ext-json": "*", + "ext-xml": "*", + "ext-zip": "*", + "php": "^7.1|^8.0", + "phpoffice/math": "^0.3" + }, + "require-dev": { + "dompdf/dompdf": "^2.0 || ^3.0", + "ext-libxml": "*", + "friendsofphp/php-cs-fixer": "^3.3", + "mpdf/mpdf": "^7.0 || ^8.0", + "phpmd/phpmd": "^2.13", + "phpstan/phpstan": "^0.12.88 || ^1.0.0", + "phpstan/phpstan-phpunit": "^1.0 || ^2.0", + "phpunit/phpunit": ">=7.0", + "symfony/process": "^4.4 || ^5.0", + "tecnickcom/tcpdf": "^6.5" + }, + "suggest": { + "dompdf/dompdf": "Allows writing PDF", + "ext-xmlwriter": "Allows writing OOXML and ODF", + "ext-xsl": "Allows applying XSL style sheet to headers, to main document part, and to footers of an OOXML template" + }, + "time": "2025-06-05T10:32:36+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "PhpOffice\\PhpWord\\": "src/PhpWord" + } + }, + "license": [ + "LGPL-3.0-only" + ], + "authors": [ + { + "name": "Mark Baker" + }, + { + "name": "Gabriel Bull", + "email": "me@gabrielbull.com", + "homepage": "http://gabrielbull.com/" + }, + { + "name": "Franck Lefevre", + "homepage": "https://rootslabs.net/blog/" + }, + { + "name": "Ivan Lanin", + "homepage": "http://ivan.lanin.org" + }, + { + "name": "Roman Syroeshko", + "homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/" + }, + { + "name": "Antoine de Troostembergh" + } + ], + "description": "PHPWord - A pure PHP library for reading and writing word processing documents (OOXML, ODF, RTF, HTML, PDF)", + "homepage": "https://phpoffice.github.io/PHPWord/", + "keywords": [ + "ISO IEC 29500", + "OOXML", + "Office Open XML", + "OpenDocument", + "OpenXML", + "PhpOffice", + "PhpWord", + "Rich Text Format", + "WordprocessingML", + "doc", + "docx", + "html", + "odf", + "odt", + "office", + "pdf", + "php", + "reader", + "rtf", + "template", + "template processor", + "word", + "writer" + ], + "support": { + "issues": "https://github.com/PHPOffice/PHPWord/issues", + "source": "https://github.com/PHPOffice/PHPWord/tree/1.4.0" + }, + "install-path": "../phpoffice/phpword" + }, + { + "name": "psr/container", + "version": "2.0.2", + "version_normalized": "2.0.2.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/psr/container/2.0.2/psr-container-2.0.2.zip", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "time": "2021-11-05T16:47:00+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "install-path": "../psr/container" + }, + { + "name": "psr/http-client", + "version": "1.0.3", + "version_normalized": "1.0.3.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/psr/http-client/1.0.3/psr-http-client-1.0.3.zip", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "time": "2023-09-23T14:17:50+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client" + }, + "install-path": "../psr/http-client" + }, + { + "name": "psr/http-factory", + "version": "1.1.0", + "version_normalized": "1.1.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/psr/http-factory/1.1.0/psr-http-factory-1.1.0.zip", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" + }, + "time": "2024-04-15T12:06:14+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory" + }, + "install-path": "../psr/http-factory" + }, + { + "name": "psr/http-message", + "version": "2.0", + "version_normalized": "2.0.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/psr/http-message/2.0/psr-http-message-2.0.zip", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "time": "2023-04-04T09:54:51+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "install-path": "../psr/http-message" + }, + { + "name": "psr/log", + "version": "3.0.2", + "version_normalized": "3.0.2.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/psr/log/3.0.2/psr-log-3.0.2.zip", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "time": "2024-09-11T13:17:53+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "install-path": "../psr/log" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "version_normalized": "3.0.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/psr/simple-cache/3.0.0/psr-simple-cache-3.0.0.zip", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "time": "2021-10-29T13:26:27+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "install-path": "../psr/simple-cache" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "version_normalized": "3.0.3.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/ralouphie/getallheaders/3.0.3/ralouphie-getallheaders-3.0.3.zip", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "time": "2019-03-08T08:55:37+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "install-path": "../ralouphie/getallheaders" + }, + { + "name": "setasign/fpdi", + "version": "v2.6.8", + "version_normalized": "2.6.8.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/setasign/fpdi/v2.6.8/setasign-fpdi-v2.6.8.zip", + "reference": "881945be29a4996ad3d008eb18ddc01fa3df890c", + "shasum": "" + }, + "require": { + "ext-zlib": "*", + "php": ">=7.2 <=8.5.99999" + }, + "conflict": { + "setasign/tfpdf": "<1.31" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.52", + "setasign/fpdf": "^1.9.0", + "setasign/tfpdf": "~1.33", + "squizlabs/php_codesniffer": "^3.5", + "tecnickcom/tcpdf": "^6.8" + }, + "suggest": { + "setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured." + }, + "time": "2026-06-11T10:37:24+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "setasign\\Fpdi\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jan Slabon", + "email": "jan.slabon@setasign.com", + "homepage": "https://www.setasign.com" + }, + { + "name": "Maximilian Kresse", + "email": "maximilian.kresse@setasign.com", + "homepage": "https://www.setasign.com" + } + ], + "description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.", + "homepage": "https://www.setasign.com/fpdi", + "keywords": [ + "fpdf", + "fpdi", + "pdf" + ], + "support": { + "issues": "https://github.com/Setasign/FPDI/issues", + "source": "https://github.com/Setasign/FPDI/tree/v2.6.8" + }, + "install-path": "../setasign/fpdi" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.7.1", + "version_normalized": "3.7.1.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/symfony/deprecation-contracts/v3.7.1/symfony-deprecation-contracts-v3.7.1.zip", + "reference": "f3202fa1b5097b0af062dc978b32ecf63404e31d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "time": "2026-06-05T06:23:12+00:00", + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.7-dev" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "function.php" + ] + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.7.1" + }, + "install-path": "../symfony/deprecation-contracts" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.38.2", + "version_normalized": "1.38.2.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-mbstring/v1.38.2/symfony-polyfill-mbstring-v1.38.2.zip", + "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6", + "shasum": "" + }, + "require": { + "ext-iconv": "*", + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "time": "2026-05-27T06:59:30+00:00", + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.38.2" + }, + "install-path": "../symfony/polyfill-mbstring" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.37.0", + "version_normalized": "1.37.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php80/v1.37.0/symfony-polyfill-php80-v1.37.0.zip", + "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "time": "2026-04-10T16:19:22+00:00", + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.37.0" + }, + "install-path": "../symfony/polyfill-php80" + }, + { + "name": "symfony/var-dumper", + "version": "v6.4.42", + "version_normalized": "6.4.42.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/symfony/var-dumper/v6.4.42/symfony-var-dumper-v6.4.42.zip", + "reference": "29adc5e34255f42ca9b8ae61c22b4d9e3f611317", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^6.3|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/uid": "^5.4|^6.0|^7.0", + "twig/twig": "^2.13|^3.0.4" + }, + "time": "2026-06-08T07:06:12+00:00", + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v6.4.42" + }, + "install-path": "../symfony/var-dumper" + }, + { + "name": "topthink/framework", + "version": "v8.1.4", + "version_normalized": "8.1.4.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/framework/v8.1.4/topthink-framework-v8.1.4.zip", + "reference": "8e7b2b2364047cbf71a38c4e397a9ca0d4ef2b01", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-mbstring": "*", + "php": ">=8.0.0", + "psr/http-message": "^1.0|^2.0", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "topthink/think-container": "^3.0", + "topthink/think-helper": "^3.1", + "topthink/think-orm": "^3.0|^4.0", + "topthink/think-validate": "^3.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.92", + "guzzlehttp/psr7": "^2.1.0", + "mikey179/vfsstream": "^1.6", + "mockery/mockery": "^1.2", + "phpunit/phpunit": "^9.5" + }, + "time": "2026-01-15T02:45:10+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [], + "psr-4": { + "think\\": "src/think/" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "liu21st", + "email": "liu21st@gmail.com" + }, + { + "name": "yunwuxin", + "email": "448901948@qq.com" + } + ], + "description": "The ThinkPHP Framework.", + "homepage": "http://thinkphp.cn/", + "keywords": [ + "framework", + "orm", + "thinkphp" + ], + "support": { + "issues": "https://github.com/top-think/framework/issues", + "source": "https://github.com/top-think/framework/tree/v8.1.4" + }, + "install-path": "../topthink/framework" + }, + { + "name": "topthink/think-captcha", + "version": "v3.0.11", + "version_normalized": "3.0.11.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/think-captcha/v3.0.11/topthink-think-captcha-v3.0.11.zip", + "reference": "4f24f560a31011329e3d144732e5370d7676b3fb", + "shasum": "" + }, + "require": { + "topthink/framework": "^6.0|^8.0" + }, + "time": "2024-11-22T12:59:35+00:00", + "type": "library", + "extra": { + "think": { + "config": { + "captcha": "src/config.php" + }, + "services": [ + "think\\captcha\\CaptchaService" + ] + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "src/helper.php" + ], + "psr-4": { + "think\\captcha\\": "src/" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "yunwuxin", + "email": "448901948@qq.com" + } + ], + "description": "captcha package for thinkphp", + "support": { + "issues": "https://github.com/top-think/think-captcha/issues", + "source": "https://github.com/top-think/think-captcha/tree/v3.0.11" + }, + "install-path": "../topthink/think-captcha" + }, + { + "name": "topthink/think-container", + "version": "v3.0.2", + "version_normalized": "3.0.2.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/think-container/v3.0.2/topthink-think-container-v3.0.2.zip", + "reference": "b2df244be1e7399ad4c8be1ccc40ed57868f730a", + "shasum": "" + }, + "require": { + "php": ">=8.0", + "psr/container": "^2.0", + "topthink/think-helper": "^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "time": "2025-04-07T03:21:51+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [], + "psr-4": { + "think\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "liu21st", + "email": "liu21st@gmail.com" + } + ], + "description": "PHP Container & Facade Manager", + "support": { + "issues": "https://github.com/top-think/think-container/issues", + "source": "https://github.com/top-think/think-container/tree/v3.0.2" + }, + "install-path": "../topthink/think-container" + }, + { + "name": "topthink/think-filesystem", + "version": "v3.0.0", + "version_normalized": "3.0.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/think-filesystem/v3.0.0/topthink-think-filesystem-v3.0.0.zip", + "reference": "7a1231a65bca278de9b7f9236767eef9741dfe5c", + "shasum": "" + }, + "require": { + "league/flysystem": "^3.0", + "php": "^8.2", + "topthink/framework": "^8.0" + }, + "require-dev": { + "mikey179/vfsstream": "^1.6", + "mockery/mockery": "^1.2", + "phpunit/phpunit": "^11.5" + }, + "time": "2024-12-10T06:23:28+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "think\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "yunwuxin", + "email": "448901948@qq.com" + } + ], + "description": "The ThinkPHP6.1 Filesystem Package", + "support": { + "issues": "https://github.com/top-think/think-filesystem/issues", + "source": "https://github.com/top-think/think-filesystem/tree/v3.0.0" + }, + "install-path": "../topthink/think-filesystem" + }, + { + "name": "topthink/think-helper", + "version": "v3.1.12", + "version_normalized": "3.1.12.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/think-helper/v3.1.12/topthink-think-helper-v3.1.12.zip", + "reference": "fe277121112a8f1c872e169a733ca80bb11c4acb", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "time": "2025-12-26T09:58:29+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/helper.php" + ], + "psr-4": { + "think\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "yunwuxin", + "email": "448901948@qq.com" + } + ], + "description": "The ThinkPHP6 Helper Package", + "support": { + "issues": "https://github.com/top-think/think-helper/issues", + "source": "https://github.com/top-think/think-helper/tree/v3.1.12" + }, + "install-path": "../topthink/think-helper" + }, + { + "name": "topthink/think-image", + "version": "v1.0.8", + "version_normalized": "1.0.8.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/think-image/v1.0.8/topthink-think-image-v1.0.8.zip", + "reference": "d1d748cbb2fe2f29fca6138cf96cb8b5113892f1", + "shasum": "" + }, + "require": { + "ext-gd": "*" + }, + "require-dev": { + "phpunit/phpunit": "4.8.*", + "topthink/framework": "^5.0" + }, + "time": "2024-08-07T10:06:35+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "think\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "yunwuxin", + "email": "448901948@qq.com" + } + ], + "description": "The ThinkPHP5 Image Package", + "support": { + "issues": "https://github.com/top-think/think-image/issues", + "source": "https://github.com/top-think/think-image/tree/v1.0.8" + }, + "install-path": "../topthink/think-image" + }, + { + "name": "topthink/think-multi-app", + "version": "v1.1.1", + "version_normalized": "1.1.1.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/think-multi-app/v1.1.1/topthink-think-multi-app-v1.1.1.zip", + "reference": "f93c604d5cfac2b613756273224ee2f88e457b88", + "shasum": "" + }, + "require": { + "php": ">=7.1.0", + "topthink/framework": "^6.0|^8.0" + }, + "time": "2024-11-25T08:52:44+00:00", + "type": "library", + "extra": { + "think": { + "services": [ + "think\\app\\Service" + ] + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "think\\app\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "liu21st", + "email": "liu21st@gmail.com" + } + ], + "description": "thinkphp multi app support", + "support": { + "issues": "https://github.com/top-think/think-multi-app/issues", + "source": "https://github.com/top-think/think-multi-app/tree/v1.1.1" + }, + "install-path": "../topthink/think-multi-app" + }, + { + "name": "topthink/think-orm", + "version": "v4.0.51", + "version_normalized": "4.0.51.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/think-orm/v4.0.51/topthink-think-orm-v4.0.51.zip", + "reference": "46abe2f824eb3bcb117d4c0ce93b203b592b79f7", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-pdo": "*", + "php": ">=8.0.0", + "psr/log": ">=1.0", + "psr/simple-cache": "^3.0", + "topthink/think-helper": "^3.1", + "topthink/think-validate": "^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.6|^10" + }, + "suggest": { + "ext-mongodb": "provide mongodb support" + }, + "time": "2025-12-18T13:11:52+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/helper.php", + "stubs/load_stubs.php" + ], + "psr-4": { + "think\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "liu21st", + "email": "liu21st@gmail.com" + } + ], + "description": "the PHP Database&ORM Framework", + "keywords": [ + "database", + "orm" + ], + "support": { + "issues": "https://github.com/top-think/think-orm/issues", + "source": "https://github.com/top-think/think-orm/tree/v4.0.51" + }, + "install-path": "../topthink/think-orm" + }, + { + "name": "topthink/think-template", + "version": "v3.0.2", + "version_normalized": "3.0.2.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/think-template/v3.0.2/topthink-think-template-v3.0.2.zip", + "reference": "0b88bd449f0f7626dd75b05f557c8bc208c08b0c", + "shasum": "" + }, + "require": { + "php": ">=8.0.0", + "psr/simple-cache": ">=1.0" + }, + "time": "2024-10-16T03:41:06+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "think\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "liu21st", + "email": "liu21st@gmail.com" + } + ], + "description": "the php template engine", + "support": { + "issues": "https://github.com/top-think/think-template/issues", + "source": "https://github.com/top-think/think-template/tree/v3.0.2" + }, + "install-path": "../topthink/think-template" + }, + { + "name": "topthink/think-trace", + "version": "v1.6", + "version_normalized": "1.6.0.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/think-trace/v1.6/topthink-think-trace-v1.6.zip", + "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142", + "shasum": "" + }, + "require": { + "php": ">=7.1.0", + "topthink/framework": "^6.0|^8.0" + }, + "time": "2023-02-07T08:36:32+00:00", + "type": "library", + "extra": { + "think": { + "config": { + "trace": "src/config.php" + }, + "services": [ + "think\\trace\\Service" + ] + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "think\\trace\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "liu21st", + "email": "liu21st@gmail.com" + } + ], + "description": "thinkphp debug trace", + "support": { + "issues": "https://github.com/top-think/think-trace/issues", + "source": "https://github.com/top-think/think-trace/tree/v1.6" + }, + "install-path": "../topthink/think-trace" + }, + { + "name": "topthink/think-validate", + "version": "v3.0.7", + "version_normalized": "3.0.7.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/think-validate/v3.0.7/topthink-think-validate-v3.0.7.zip", + "reference": "85063f6d4ef8ed122f17a36179dc3e0949b30988", + "shasum": "" + }, + "require": { + "php": ">=8.0", + "topthink/think-container": ">=3.0" + }, + "time": "2025-06-11T05:51:40+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/helper.php" + ], + "psr-4": { + "think\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "liu21st", + "email": "liu21st@gmail.com" + } + ], + "description": "think validate", + "support": { + "issues": "https://github.com/top-think/think-validate/issues", + "source": "https://github.com/top-think/think-validate/tree/v3.0.7" + }, + "install-path": "../topthink/think-validate" + }, + { + "name": "topthink/think-view", + "version": "v2.0.5", + "version_normalized": "2.0.5.0", + "dist": { + "type": "zip", + "url": "https://mirrors.tencent.com/repository/composer/topthink/think-view/v2.0.5/topthink-think-view-v2.0.5.zip", + "reference": "b42009b98199b5a3833d3d6fd18c8a55aa511fad", + "shasum": "" + }, + "require": { + "php": ">=8.0.0", + "topthink/think-template": "^3.0" + }, + "time": "2025-03-19T07:04:19+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "think\\view\\driver\\": "src" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "liu21st", + "email": "liu21st@gmail.com" + } + ], + "description": "thinkphp template driver", + "support": { + "issues": "https://github.com/top-think/think-view/issues", + "source": "https://github.com/top-think/think-view/tree/v2.0.5" + }, + "install-path": "../topthink/think-view" + } + ], + "dev": true, + "dev-package-names": [ + "symfony/polyfill-mbstring", + "symfony/var-dumper", + "topthink/think-trace" + ] +} diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php new file mode 100644 index 0000000..72881c5 --- /dev/null +++ b/vendor/composer/installed.php @@ -0,0 +1,518 @@ + array( + 'name' => 'gougu/oa', + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'reference' => 'ab342ea7d45be6acdbb9f1a9e48741bb51ee2b3f', + 'type' => 'project', + 'install_path' => __DIR__ . '/../../', + 'aliases' => array(), + '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(), + 'dev_requirement' => false, + ), + 'alibabacloud/credentials' => array( + 'pretty_version' => '1.2.4', + 'version' => '1.2.4.0', + 'reference' => 'd8910d5a222f2939e89359bff0a3122094fb8baa', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/credentials', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'alibabacloud/darabonba' => array( + 'pretty_version' => 'v1.0.4', + 'version' => '1.0.4.0', + 'reference' => 'b1ccea693258ea68e455e330922406f3afe10e9c', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/darabonba', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'alibabacloud/dysmsapi-20170525' => array( + 'pretty_version' => '4.6.0', + 'version' => '4.6.0.0', + 'reference' => 'b53d15e837d2488a2b72c815cdb1fe97ba5b37f5', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/dysmsapi-20170525', + 'aliases' => array(), + '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(), + 'dev_requirement' => false, + ), + 'alibabacloud/openapi-core' => array( + 'pretty_version' => '1.0.9', + 'version' => '1.0.9.0', + 'reference' => '7b241b2a0e71f70629e2ecdc5cbe8c8b6b3a7567', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/openapi-core', + 'aliases' => array(), + '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(), + 'dev_requirement' => false, + ), + 'composer/pcre' => array( + 'pretty_version' => '3.4.0', + 'version' => '3.4.0.0', + 'reference' => 'd5a341b3fb61f3001970940afb1d332968a183ed', + 'type' => 'library', + 'install_path' => __DIR__ . '/./pcre', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'ezyang/htmlpurifier' => array( + 'pretty_version' => 'v4.19.0', + 'version' => '4.19.0.0', + 'reference' => 'b287d2a16aceffbf6e0295559b39662612b77fcf', + 'type' => 'library', + 'install_path' => __DIR__ . '/../ezyang/htmlpurifier', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'firebase/php-jwt' => array( + 'pretty_version' => 'v7.1.0', + 'version' => '7.1.0.0', + 'reference' => 'b374a5d1a4f1f67fadc2165cdb284645945e2fc0', + 'type' => 'library', + 'install_path' => __DIR__ . '/../firebase/php-jwt', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'gougu/oa' => array( + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'reference' => 'ab342ea7d45be6acdbb9f1a9e48741bb51ee2b3f', + 'type' => 'project', + 'install_path' => __DIR__ . '/../../', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'guzzlehttp/guzzle' => array( + 'pretty_version' => '7.15.1', + 'version' => '7.15.1.0', + 'reference' => '61443dfb33c62f308ee8add20f45b4d6e4bf8d2f', + 'type' => 'library', + 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'guzzlehttp/promises' => array( + 'pretty_version' => '2.5.1', + 'version' => '2.5.1.0', + 'reference' => '9ad1e4fc607446a055b95870c7f668e93b5cff29', + 'type' => 'library', + 'install_path' => __DIR__ . '/../guzzlehttp/promises', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'guzzlehttp/psr7' => array( + 'pretty_version' => '2.13.0', + 'version' => '2.13.0.0', + 'reference' => 'dad89620b7a6edb60c15858442eb2e408b45d8f4', + 'type' => 'library', + 'install_path' => __DIR__ . '/../guzzlehttp/psr7', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'league/flysystem' => array( + 'pretty_version' => '3.35.2', + 'version' => '3.35.2.0', + 'reference' => 'b277b5dc3d56650b68904117124e79c851e12376', + 'type' => 'library', + 'install_path' => __DIR__ . '/../league/flysystem', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'league/flysystem-local' => array( + 'pretty_version' => '3.31.0', + 'version' => '3.31.0.0', + 'reference' => '2f669db18a4c20c755c2bb7d3a7b0b2340488079', + 'type' => 'library', + 'install_path' => __DIR__ . '/../league/flysystem-local', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'league/mime-type-detection' => array( + 'pretty_version' => '1.17.0', + 'version' => '1.17.0.0', + 'reference' => 'f5f47eff7c48ed1003069a2ca67f316fb4021c76', + 'type' => 'library', + 'install_path' => __DIR__ . '/../league/mime-type-detection', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'maennchen/zipstream-php' => array( + 'pretty_version' => '3.2.2', + 'version' => '3.2.2.0', + 'reference' => '77bebeb4c6c340bb3c11c843b2cffd8bbfde4d5e', + 'type' => 'library', + 'install_path' => __DIR__ . '/../maennchen/zipstream-php', + 'aliases' => array(), + '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(), + '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(), + 'dev_requirement' => false, + ), + 'mpdf/mpdf' => array( + 'pretty_version' => 'v8.3.1', + 'version' => '8.3.1.0', + 'reference' => '2a454ec334109911fdb323a284c19dbf3f049810', + 'type' => 'library', + 'install_path' => __DIR__ . '/../mpdf/mpdf', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'mpdf/psr-http-message-shim' => array( + 'pretty_version' => 'v2.0.1', + 'version' => '2.0.1.0', + 'reference' => 'f25a0153d645e234f9db42e5433b16d9b113920f', + 'type' => 'library', + 'install_path' => __DIR__ . '/../mpdf/psr-http-message-shim', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'mpdf/psr-log-aware-trait' => array( + 'pretty_version' => 'v3.0.0', + 'version' => '3.0.0.0', + 'reference' => 'a633da6065e946cc491e1c962850344bb0bf3e78', + 'type' => 'library', + 'install_path' => __DIR__ . '/../mpdf/psr-log-aware-trait', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'myclabs/deep-copy' => array( + 'pretty_version' => '1.13.4', + 'version' => '1.13.4.0', + 'reference' => '07d290f0c47959fd5eed98c95ee5602db07e0b6a', + 'type' => 'library', + 'install_path' => __DIR__ . '/../myclabs/deep-copy', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'overtrue/pinyin' => array( + 'pretty_version' => '5.3.4', + 'version' => '5.3.4.0', + 'reference' => '03d8697763c32595f54c855911bc77abf00fea14', + 'type' => 'library', + 'install_path' => __DIR__ . '/../overtrue/pinyin', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'paragonie/random_compat' => array( + 'pretty_version' => 'v9.99.100', + 'version' => '9.99.100.0', + 'reference' => '996434e5492cb4c3edcb9168db6fbb1359ef965a', + 'type' => 'library', + 'install_path' => __DIR__ . '/../paragonie/random_compat', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'phpmailer/phpmailer' => array( + 'pretty_version' => 'v6.12.0', + 'version' => '6.12.0.0', + 'reference' => 'd1ac35d784bf9f5e61b424901d5a014967f15b12', + 'type' => 'library', + 'install_path' => __DIR__ . '/../phpmailer/phpmailer', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'phpoffice/math' => array( + 'pretty_version' => '0.3.0', + 'version' => '0.3.0.0', + 'reference' => 'fc31c8f57a7a81f962cbf389fd89f4d9d06fc99a', + 'type' => 'library', + 'install_path' => __DIR__ . '/../phpoffice/math', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'phpoffice/phpspreadsheet' => array( + 'pretty_version' => '1.30.6', + 'version' => '1.30.6.0', + 'reference' => 'a416375ffc8bf5b661c1bb4e6c60d8f3fddbe5ce', + 'type' => 'library', + 'install_path' => __DIR__ . '/../phpoffice/phpspreadsheet', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'phpoffice/phpword' => array( + 'pretty_version' => '1.4.0', + 'version' => '1.4.0.0', + 'reference' => '6d75328229bc93790b37e93741adf70646cea958', + 'type' => 'library', + 'install_path' => __DIR__ . '/../phpoffice/phpword', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'psr/container' => array( + 'pretty_version' => '2.0.2', + 'version' => '2.0.2.0', + 'reference' => 'c71ecc56dfe541dbd90c5360474fbc405f8d5963', + 'type' => 'library', + 'install_path' => __DIR__ . '/../psr/container', + 'aliases' => array(), + '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(), + 'dev_requirement' => false, + ), + 'psr/http-client-implementation' => array( + 'dev_requirement' => false, + 'provided' => array( + 0 => '1.0', + ), + ), + 'psr/http-factory' => array( + 'pretty_version' => '1.1.0', + 'version' => '1.1.0.0', + 'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a', + 'type' => 'library', + 'install_path' => __DIR__ . '/../psr/http-factory', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'psr/http-factory-implementation' => array( + 'dev_requirement' => false, + 'provided' => array( + 0 => '1.0', + ), + ), + 'psr/http-message' => array( + 'pretty_version' => '2.0', + 'version' => '2.0.0.0', + 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71', + 'type' => 'library', + 'install_path' => __DIR__ . '/../psr/http-message', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'psr/http-message-implementation' => array( + 'dev_requirement' => false, + 'provided' => array( + 0 => '1.0', + ), + ), + 'psr/log' => array( + 'pretty_version' => '3.0.2', + 'version' => '3.0.2.0', + 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3', + 'type' => 'library', + 'install_path' => __DIR__ . '/../psr/log', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'psr/simple-cache' => array( + 'pretty_version' => '3.0.0', + 'version' => '3.0.0.0', + 'reference' => '764e0b3939f5ca87cb904f570ef9be2d78a07865', + 'type' => 'library', + 'install_path' => __DIR__ . '/../psr/simple-cache', + 'aliases' => array(), + '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(), + 'dev_requirement' => false, + ), + 'setasign/fpdi' => array( + 'pretty_version' => 'v2.6.8', + 'version' => '2.6.8.0', + 'reference' => '881945be29a4996ad3d008eb18ddc01fa3df890c', + 'type' => 'library', + 'install_path' => __DIR__ . '/../setasign/fpdi', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'symfony/deprecation-contracts' => array( + 'pretty_version' => 'v3.7.1', + 'version' => '3.7.1.0', + 'reference' => 'f3202fa1b5097b0af062dc978b32ecf63404e31d', + 'type' => 'library', + 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'symfony/polyfill-mbstring' => array( + 'pretty_version' => 'v1.38.2', + 'version' => '1.38.2.0', + 'reference' => 'd3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6', + 'type' => 'library', + 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', + 'aliases' => array(), + 'dev_requirement' => true, + ), + 'symfony/polyfill-php80' => array( + 'pretty_version' => 'v1.37.0', + 'version' => '1.37.0.0', + 'reference' => 'dfb55726c3a76ea3b6459fcfda1ec2d80a682411', + 'type' => 'library', + 'install_path' => __DIR__ . '/../symfony/polyfill-php80', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'symfony/var-dumper' => array( + 'pretty_version' => 'v6.4.42', + 'version' => '6.4.42.0', + 'reference' => '29adc5e34255f42ca9b8ae61c22b4d9e3f611317', + 'type' => 'library', + 'install_path' => __DIR__ . '/../symfony/var-dumper', + 'aliases' => array(), + 'dev_requirement' => true, + ), + 'topthink/framework' => array( + 'pretty_version' => 'v8.1.4', + 'version' => '8.1.4.0', + 'reference' => '8e7b2b2364047cbf71a38c4e397a9ca0d4ef2b01', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/framework', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'topthink/think-captcha' => array( + 'pretty_version' => 'v3.0.11', + 'version' => '3.0.11.0', + 'reference' => '4f24f560a31011329e3d144732e5370d7676b3fb', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/think-captcha', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'topthink/think-container' => array( + 'pretty_version' => 'v3.0.2', + 'version' => '3.0.2.0', + 'reference' => 'b2df244be1e7399ad4c8be1ccc40ed57868f730a', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/think-container', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'topthink/think-filesystem' => array( + 'pretty_version' => 'v3.0.0', + 'version' => '3.0.0.0', + 'reference' => '7a1231a65bca278de9b7f9236767eef9741dfe5c', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/think-filesystem', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'topthink/think-helper' => array( + 'pretty_version' => 'v3.1.12', + 'version' => '3.1.12.0', + 'reference' => 'fe277121112a8f1c872e169a733ca80bb11c4acb', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/think-helper', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'topthink/think-image' => array( + 'pretty_version' => 'v1.0.8', + 'version' => '1.0.8.0', + 'reference' => 'd1d748cbb2fe2f29fca6138cf96cb8b5113892f1', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/think-image', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'topthink/think-multi-app' => array( + 'pretty_version' => 'v1.1.1', + 'version' => '1.1.1.0', + 'reference' => 'f93c604d5cfac2b613756273224ee2f88e457b88', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/think-multi-app', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'topthink/think-orm' => array( + 'pretty_version' => 'v4.0.51', + 'version' => '4.0.51.0', + 'reference' => '46abe2f824eb3bcb117d4c0ce93b203b592b79f7', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/think-orm', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'topthink/think-template' => array( + 'pretty_version' => 'v3.0.2', + 'version' => '3.0.2.0', + 'reference' => '0b88bd449f0f7626dd75b05f557c8bc208c08b0c', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/think-template', + 'aliases' => array(), + '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(), + 'dev_requirement' => true, + ), + 'topthink/think-validate' => array( + 'pretty_version' => 'v3.0.7', + 'version' => '3.0.7.0', + 'reference' => '85063f6d4ef8ed122f17a36179dc3e0949b30988', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/think-validate', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'topthink/think-view' => array( + 'pretty_version' => 'v2.0.5', + 'version' => '2.0.5.0', + 'reference' => 'b42009b98199b5a3833d3d6fd18c8a55aa511fad', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/think-view', + 'aliases' => array(), + 'dev_requirement' => false, + ), + ), +); diff --git a/vendor/composer/pcre/LICENSE b/vendor/composer/pcre/LICENSE new file mode 100644 index 0000000..c5a282f --- /dev/null +++ b/vendor/composer/pcre/LICENSE @@ -0,0 +1,19 @@ +Copyright (C) 2021 Composer + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/composer/pcre/README.md b/vendor/composer/pcre/README.md new file mode 100644 index 0000000..4906514 --- /dev/null +++ b/vendor/composer/pcre/README.md @@ -0,0 +1,189 @@ +composer/pcre +============= + +PCRE wrapping library that offers type-safe `preg_*` replacements. + +This library gives you a way to ensure `preg_*` functions do not fail silently, returning +unexpected `null`s that may not be handled. + +As of 3.0 this library enforces [`PREG_UNMATCHED_AS_NULL`](#preg_unmatched_as_null) usage +for all matching and replaceCallback functions, [read more below](#preg_unmatched_as_null) +to understand the implications. + +It thus makes it easier to work with static analysis tools like PHPStan or Psalm as it +simplifies and reduces the possible return values from all the `preg_*` functions which +are quite packed with edge cases. As of v2.2.0 / v3.2.0 the library also comes with a +[PHPStan extension](#phpstan-extension) for parsing regular expressions and giving you even better output types. + +This library is a thin wrapper around `preg_*` functions with [some limitations](#restrictions--limitations). +If you are looking for a richer API to handle regular expressions have a look at +[rawr/t-regx](https://packagist.org/packages/rawr/t-regx) instead. + +[![Continuous Integration](https://github.com/composer/pcre/workflows/Continuous%20Integration/badge.svg?branch=main)](https://github.com/composer/pcre/actions) + + +Installation +------------ + +Install the latest version with: + +```bash +$ composer require composer/pcre +``` + + +Requirements +------------ + +* PHP 7.4.0 is required for 3.x versions +* PHP 7.2.0 is required for 2.x versions +* PHP 5.3.2 is required for 1.x versions + + +Basic usage +----------- + +Instead of: + +```php +if (preg_match('{fo+}', $string, $matches)) { ... } +if (preg_match('{fo+}', $string, $matches, PREG_OFFSET_CAPTURE)) { ... } +if (preg_match_all('{fo+}', $string, $matches)) { ... } +$newString = preg_replace('{fo+}', 'bar', $string); +$newString = preg_replace_callback('{fo+}', function ($match) { return strtoupper($match[0]); }, $string); +$newString = preg_replace_callback_array(['{fo+}' => fn ($match) => strtoupper($match[0])], $string); +$filtered = preg_grep('{[a-z]}', $elements); +$array = preg_split('{[a-z]+}', $string); +``` + +You can now call these on the `Preg` class: + +```php +use Composer\Pcre\Preg; + +if (Preg::match('{fo+}', $string, $matches)) { ... } +if (Preg::matchWithOffsets('{fo+}', $string, $matches)) { ... } +if (Preg::matchAll('{fo+}', $string, $matches)) { ... } +$newString = Preg::replace('{fo+}', 'bar', $string); +$newString = Preg::replaceCallback('{fo+}', function ($match) { return strtoupper($match[0]); }, $string); +$newString = Preg::replaceCallbackArray(['{fo+}' => fn ($match) => strtoupper($match[0])], $string); +$filtered = Preg::grep('{[a-z]}', $elements); +$array = Preg::split('{[a-z]+}', $string); +``` + +The main difference is if anything fails to match/replace/.., it will throw a `Composer\Pcre\PcreException` +instead of returning `null` (or false in some cases), so you can now use the return values safely relying on +the fact that they can only be strings (for replace), ints (for match) or arrays (for grep/split). + +Additionally the `Preg` class provides match methods that return `bool` rather than `int`, for stricter type safety +when the number of pattern matches is not useful: + +```php +use Composer\Pcre\Preg; + +if (Preg::isMatch('{fo+}', $string, $matches)) // bool +if (Preg::isMatchAll('{fo+}', $string, $matches)) // bool +``` + +Finally the `Preg` class provides a few `*StrictGroups` method variants that ensure match groups +are always present and thus non-nullable, making it easier to write type-safe code: + +```php +use Composer\Pcre\Preg; + +// $matches is guaranteed to be an array of strings, if a subpattern does not match and produces a null it will throw +if (Preg::matchStrictGroups('{fo+}', $string, $matches)) +if (Preg::matchAllStrictGroups('{fo+}', $string, $matches)) +``` + +**Note:** This is generally safe to use as long as you do not have optional subpatterns (i.e. `(something)?` +or `(something)*` or branches with a `|` that result in some groups not being matched at all). +A subpattern that can match an empty string like `(.*)` is **not** optional, it will be present as an +empty string in the matches. A non-matching subpattern, even if optional like `(?:foo)?` will anyway not be present in +matches so it is also not a problem to use these with `*StrictGroups` methods. + +If you would prefer a slightly more verbose usage, replacing by-ref arguments by result objects, you can use the `Regex` class: + +```php +use Composer\Pcre\Regex; + +// this is useful when you are just interested in knowing if something matched +// as it returns a bool instead of int(1/0) for match +$bool = Regex::isMatch('{fo+}', $string); + +$result = Regex::match('{fo+}', $string); +if ($result->matched) { something($result->matches); } + +$result = Regex::matchWithOffsets('{fo+}', $string); +if ($result->matched) { something($result->matches); } + +$result = Regex::matchAll('{fo+}', $string); +if ($result->matched && $result->count > 3) { something($result->matches); } + +$newString = Regex::replace('{fo+}', 'bar', $string)->result; +$newString = Regex::replaceCallback('{fo+}', function ($match) { return strtoupper($match[0]); }, $string)->result; +$newString = Regex::replaceCallbackArray(['{fo+}' => fn ($match) => strtoupper($match[0])], $string)->result; +``` + +Note that `preg_grep` and `preg_split` are only callable via the `Preg` class as they do not have +complex return types warranting a specific result object. + +See the [MatchResult](src/MatchResult.php), [MatchWithOffsetsResult](src/MatchWithOffsetsResult.php), [MatchAllResult](src/MatchAllResult.php), +[MatchAllWithOffsetsResult](src/MatchAllWithOffsetsResult.php), and [ReplaceResult](src/ReplaceResult.php) class sources for more details. + +Restrictions / Limitations +-------------------------- + +Due to type safety requirements a few restrictions are in place. + +- matching using `PREG_OFFSET_CAPTURE` is made available via `matchWithOffsets` and `matchAllWithOffsets`. + You cannot pass the flag to `match`/`matchAll`. +- `Preg::split` will also reject `PREG_SPLIT_OFFSET_CAPTURE` and you should use `splitWithOffsets` + instead. +- `matchAll` rejects `PREG_SET_ORDER` as it also changes the shape of the returned matches. There + is no alternative provided as you can fairly easily code around it. +- `preg_filter` is not supported as it has a rather crazy API, most likely you should rather + use `Preg::grep` in combination with some loop and `Preg::replace`. +- `replace`, `replaceCallback` and `replaceCallbackArray` do not support an array `$subject`, + only simple strings. +- As of 2.0, the library always uses `PREG_UNMATCHED_AS_NULL` for matching, which offers [much + saner/more predictable results](#preg_unmatched_as_null). As of 3.0 the flag is also set for + `replaceCallback` and `replaceCallbackArray`. + +#### PREG_UNMATCHED_AS_NULL + +As of 2.0, this library always uses PREG_UNMATCHED_AS_NULL for all `match*` and `isMatch*` +functions. As of 3.0 it is also done for `replaceCallback` and `replaceCallbackArray`. + +This means your matches will always contain all matching groups, either as null if unmatched +or as string if it matched. + +The advantages in clarity and predictability are clearer if you compare the two outputs of +running this with and without PREG_UNMATCHED_AS_NULL in $flags: + +```php +preg_match('/(a)(b)*(c)(d)*/', 'ac', $matches, $flags); +``` + +| no flag | PREG_UNMATCHED_AS_NULL | +| --- | --- | +| array (size=4) | array (size=5) | +| 0 => string 'ac' (length=2) | 0 => string 'ac' (length=2) | +| 1 => string 'a' (length=1) | 1 => string 'a' (length=1) | +| 2 => string '' (length=0) | 2 => null | +| 3 => string 'c' (length=1) | 3 => string 'c' (length=1) | +| | 4 => null | +| group 2 (any unmatched group preceding one that matched) is set to `''`. You cannot tell if it matched an empty string or did not match at all | group 2 is `null` when unmatched and a string if it matched, easy to check for | +| group 4 (any optional group without a matching one following) is missing altogether. So you have to check with `isset()`, but really you want `isset($m[4]) && $m[4] !== ''` for safety unless you are very careful to check that a non-optional group follows it | group 4 is always set, and null in this case as there was no match, easy to check for with `$m[4] !== null` | + +PHPStan Extension +----------------- + +To use the PHPStan extension if you do not use `phpstan/extension-installer` you can include `vendor/composer/pcre/extension.neon` in your PHPStan config. + +The extension provides much better type information for $matches as well as regex validation where possible. + +License +------- + +composer/pcre is licensed under the MIT License, see the LICENSE file for details. diff --git a/vendor/composer/pcre/composer.json b/vendor/composer/pcre/composer.json new file mode 100644 index 0000000..a6e72c3 --- /dev/null +++ b/vendor/composer/pcre/composer.json @@ -0,0 +1,58 @@ +{ + "name": "composer/pcre", + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "type": "library", + "license": "MIT", + "keywords": [ + "pcre", + "regex", + "preg", + "regular expression" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "require": { + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^9", + "phpstan/phpstan": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpstan/phpstan-deprecation-rules": "^2" + }, + "conflict": { + "phpstan/phpstan": "<2.2.2" + }, + "autoload": { + "psr-4": { + "Composer\\Pcre\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "Composer\\Pcre\\": "tests" + } + }, + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "scripts": { + "test": [ + "@php vendor/bin/phpunit", + "@php vendor/bin/phpunit --testsuite phpstan" + ], + "phpstan": "@php phpstan analyse" + } +} diff --git a/vendor/composer/pcre/extension.neon b/vendor/composer/pcre/extension.neon new file mode 100644 index 0000000..b9cea11 --- /dev/null +++ b/vendor/composer/pcre/extension.neon @@ -0,0 +1,22 @@ +# composer/pcre PHPStan extensions +# +# These can be reused by third party packages by including 'vendor/composer/pcre/extension.neon' +# in your phpstan config + +services: + - + class: Composer\Pcre\PHPStan\PregMatchParameterOutTypeExtension + tags: + - phpstan.staticMethodParameterOutTypeExtension + - + class: Composer\Pcre\PHPStan\PregMatchTypeSpecifyingExtension + tags: + - phpstan.typeSpecifier.staticMethodTypeSpecifyingExtension + - + class: Composer\Pcre\PHPStan\PregReplaceCallbackClosureTypeExtension + tags: + - phpstan.staticMethodParameterClosureTypeExtension + +rules: + - Composer\Pcre\PHPStan\UnsafeStrictGroupsCallRule + - Composer\Pcre\PHPStan\InvalidRegexPatternRule diff --git a/vendor/composer/pcre/src/MatchAllResult.php b/vendor/composer/pcre/src/MatchAllResult.php new file mode 100644 index 0000000..b22b52d --- /dev/null +++ b/vendor/composer/pcre/src/MatchAllResult.php @@ -0,0 +1,46 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +namespace Composer\Pcre; + +final class MatchAllResult +{ + /** + * An array of match group => list of matched strings + * + * @readonly + * @var array> + */ + public $matches; + + /** + * @readonly + * @var 0|positive-int + */ + public $count; + + /** + * @readonly + * @var bool + */ + public $matched; + + /** + * @param 0|positive-int $count + * @param array> $matches + */ + public function __construct(int $count, array $matches) + { + $this->matches = $matches; + $this->matched = (bool) $count; + $this->count = $count; + } +} diff --git a/vendor/composer/pcre/src/MatchAllStrictGroupsResult.php b/vendor/composer/pcre/src/MatchAllStrictGroupsResult.php new file mode 100644 index 0000000..b7ec397 --- /dev/null +++ b/vendor/composer/pcre/src/MatchAllStrictGroupsResult.php @@ -0,0 +1,46 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +namespace Composer\Pcre; + +final class MatchAllStrictGroupsResult +{ + /** + * An array of match group => list of matched strings + * + * @readonly + * @var array> + */ + public $matches; + + /** + * @readonly + * @var 0|positive-int + */ + public $count; + + /** + * @readonly + * @var bool + */ + public $matched; + + /** + * @param 0|positive-int $count + * @param array> $matches + */ + public function __construct(int $count, array $matches) + { + $this->matches = $matches; + $this->matched = (bool) $count; + $this->count = $count; + } +} diff --git a/vendor/composer/pcre/src/MatchAllWithOffsetsResult.php b/vendor/composer/pcre/src/MatchAllWithOffsetsResult.php new file mode 100644 index 0000000..032a02c --- /dev/null +++ b/vendor/composer/pcre/src/MatchAllWithOffsetsResult.php @@ -0,0 +1,48 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +namespace Composer\Pcre; + +final class MatchAllWithOffsetsResult +{ + /** + * An array of match group => list of matches, every match being a pair of string matched + offset in bytes (or -1 if no match) + * + * @readonly + * @var array> + * @phpstan-var array}>> + */ + public $matches; + + /** + * @readonly + * @var 0|positive-int + */ + public $count; + + /** + * @readonly + * @var bool + */ + public $matched; + + /** + * @param 0|positive-int $count + * @param array> $matches + * @phpstan-param array}>> $matches + */ + public function __construct(int $count, array $matches) + { + $this->matches = $matches; + $this->matched = (bool) $count; + $this->count = $count; + } +} diff --git a/vendor/composer/pcre/src/MatchResult.php b/vendor/composer/pcre/src/MatchResult.php new file mode 100644 index 0000000..e951a5e --- /dev/null +++ b/vendor/composer/pcre/src/MatchResult.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +namespace Composer\Pcre; + +final class MatchResult +{ + /** + * An array of match group => string matched + * + * @readonly + * @var array + */ + public $matches; + + /** + * @readonly + * @var bool + */ + public $matched; + + /** + * @param 0|positive-int $count + * @param array $matches + */ + public function __construct(int $count, array $matches) + { + $this->matches = $matches; + $this->matched = (bool) $count; + } +} diff --git a/vendor/composer/pcre/src/MatchStrictGroupsResult.php b/vendor/composer/pcre/src/MatchStrictGroupsResult.php new file mode 100644 index 0000000..126ee62 --- /dev/null +++ b/vendor/composer/pcre/src/MatchStrictGroupsResult.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +namespace Composer\Pcre; + +final class MatchStrictGroupsResult +{ + /** + * An array of match group => string matched + * + * @readonly + * @var array + */ + public $matches; + + /** + * @readonly + * @var bool + */ + public $matched; + + /** + * @param 0|positive-int $count + * @param array $matches + */ + public function __construct(int $count, array $matches) + { + $this->matches = $matches; + $this->matched = (bool) $count; + } +} diff --git a/vendor/composer/pcre/src/MatchWithOffsetsResult.php b/vendor/composer/pcre/src/MatchWithOffsetsResult.php new file mode 100644 index 0000000..ba4d4bc --- /dev/null +++ b/vendor/composer/pcre/src/MatchWithOffsetsResult.php @@ -0,0 +1,41 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +namespace Composer\Pcre; + +final class MatchWithOffsetsResult +{ + /** + * An array of match group => pair of string matched + offset in bytes (or -1 if no match) + * + * @readonly + * @var array + * @phpstan-var array}> + */ + public $matches; + + /** + * @readonly + * @var bool + */ + public $matched; + + /** + * @param 0|positive-int $count + * @param array $matches + * @phpstan-param array}> $matches + */ + public function __construct(int $count, array $matches) + { + $this->matches = $matches; + $this->matched = (bool) $count; + } +} diff --git a/vendor/composer/pcre/src/PHPStan/InvalidRegexPatternRule.php b/vendor/composer/pcre/src/PHPStan/InvalidRegexPatternRule.php new file mode 100644 index 0000000..8a05fb2 --- /dev/null +++ b/vendor/composer/pcre/src/PHPStan/InvalidRegexPatternRule.php @@ -0,0 +1,142 @@ + + */ +class InvalidRegexPatternRule implements Rule +{ + public function getNodeType(): string + { + return StaticCall::class; + } + + public function processNode(Node $node, Scope $scope): array + { + $patterns = $this->extractPatterns($node, $scope); + + $errors = []; + foreach ($patterns as $pattern) { + $errorMessage = $this->validatePattern($pattern); + if ($errorMessage === null) { + continue; + } + + $errors[] = RuleErrorBuilder::message(sprintf('Regex pattern is invalid: %s', $errorMessage))->identifier('regexp.pattern')->build(); + } + + return $errors; + } + + /** + * @return string[] + */ + private function extractPatterns(StaticCall $node, Scope $scope): array + { + if (!$node->class instanceof FullyQualified) { + return []; + } + $isRegex = $node->class->toString() === Regex::class; + $isPreg = $node->class->toString() === Preg::class; + if (!$isRegex && !$isPreg) { + return []; + } + if (!$node->name instanceof Node\Identifier || !Preg::isMatch('{^(match|isMatch|grep|replace|split)}', $node->name->name)) { + return []; + } + + $functionName = $node->name->name; + if (!isset($node->getArgs()[0])) { + return []; + } + + $patternNode = $node->getArgs()[0]->value; + $patternType = $scope->getType($patternNode); + + $patternStrings = []; + + foreach ($patternType->getConstantStrings() as $constantStringType) { + if ($functionName === 'replaceCallbackArray') { + continue; + } + + $patternStrings[] = $constantStringType->getValue(); + } + + foreach ($patternType->getConstantArrays() as $constantArrayType) { + if ( + in_array($functionName, [ + 'replace', + 'replaceCallback', + ], true) + ) { + foreach ($constantArrayType->getValueTypes() as $arrayKeyType) { + foreach ($arrayKeyType->getConstantStrings() as $constantString) { + $patternStrings[] = $constantString->getValue(); + } + } + } + + if ($functionName !== 'replaceCallbackArray') { + continue; + } + + foreach ($constantArrayType->getKeyTypes() as $arrayKeyType) { + foreach ($arrayKeyType->getConstantStrings() as $constantString) { + $patternStrings[] = $constantString->getValue(); + } + } + } + + return $patternStrings; + } + + private function validatePattern(string $pattern): ?string + { + try { + $msg = null; + $prev = set_error_handler(function (int $severity, string $message, string $file) use (&$msg): bool { + $msg = preg_replace("#^preg_match(_all)?\\(.*?\\): #", '', $message); + + return true; + }); + + if ($pattern === '') { + return 'Empty string is not a valid regular expression'; + } + + Preg::match($pattern, ''); + if ($msg !== null) { + return $msg; + } + } catch (PcreException $e) { + if ($e->getCode() === PREG_INTERNAL_ERROR && $msg !== null) { + return $msg; + } + + return preg_replace('{.*? failed executing ".*": }', '', $e->getMessage()); + } finally { + restore_error_handler(); + } + + return null; + } + +} diff --git a/vendor/composer/pcre/src/PHPStan/PregMatchFlags.php b/vendor/composer/pcre/src/PHPStan/PregMatchFlags.php new file mode 100644 index 0000000..aa30ab3 --- /dev/null +++ b/vendor/composer/pcre/src/PHPStan/PregMatchFlags.php @@ -0,0 +1,70 @@ +getType($flagsArg->value); + + $constantScalars = $flagsType->getConstantScalarValues(); + if ($constantScalars === []) { + return null; + } + + $internalFlagsTypes = []; + foreach ($flagsType->getConstantScalarValues() as $constantScalarValue) { + if (!is_int($constantScalarValue)) { + return null; + } + + $internalFlagsTypes[] = new ConstantIntegerType($constantScalarValue | PREG_UNMATCHED_AS_NULL); + } + return TypeCombinator::union(...$internalFlagsTypes); + } + + static public function removeNullFromMatches(Type $matchesType): Type + { + return TypeTraverser::map($matchesType, static function (Type $type, callable $traverse): Type { + if ($type instanceof UnionType || $type instanceof IntersectionType) { + return $traverse($type); + } + + if ($type instanceof ConstantArrayType) { + return new ConstantArrayType( + $type->getKeyTypes(), + array_map(static function (Type $valueType) use ($traverse): Type { + return $traverse($valueType); + }, $type->getValueTypes()), + $type->getNextAutoIndexes(), + [], + $type->isList() + ); + } + + if ($type instanceof ArrayType) { + return new ArrayType($type->getKeyType(), $traverse($type->getItemType())); + } + + return TypeCombinator::removeNull($type); + }); + } + +} diff --git a/vendor/composer/pcre/src/PHPStan/PregMatchParameterOutTypeExtension.php b/vendor/composer/pcre/src/PHPStan/PregMatchParameterOutTypeExtension.php new file mode 100644 index 0000000..e0d6020 --- /dev/null +++ b/vendor/composer/pcre/src/PHPStan/PregMatchParameterOutTypeExtension.php @@ -0,0 +1,65 @@ +regexShapeMatcher = $regexShapeMatcher; + } + + public function isStaticMethodSupported(MethodReflection $methodReflection, ParameterReflection $parameter): bool + { + return + $methodReflection->getDeclaringClass()->getName() === Preg::class + && in_array($methodReflection->getName(), [ + 'match', 'isMatch', 'matchStrictGroups', 'isMatchStrictGroups', + 'matchAll', 'isMatchAll', 'matchAllStrictGroups', 'isMatchAllStrictGroups' + ], true) + && $parameter->getName() === 'matches'; + } + + public function getParameterOutTypeFromStaticMethodCall(MethodReflection $methodReflection, StaticCall $methodCall, ParameterReflection $parameter, Scope $scope): ?Type + { + $args = $methodCall->getArgs(); + $patternArg = $args[0] ?? null; + $matchesArg = $args[2] ?? null; + $flagsArg = $args[3] ?? null; + + if ( + $patternArg === null || $matchesArg === null + ) { + return null; + } + + $flagsType = PregMatchFlags::getType($flagsArg, $scope); + if ($flagsType === null) { + return null; + } + + if (stripos($methodReflection->getName(), 'matchAll') !== false) { + return $this->regexShapeMatcher->matchAllExpr($patternArg->value, $flagsType, TrinaryLogic::createMaybe(), $scope); + } + + return $this->regexShapeMatcher->matchExpr($patternArg->value, $flagsType, TrinaryLogic::createMaybe(), $scope); + } + +} diff --git a/vendor/composer/pcre/src/PHPStan/PregMatchTypeSpecifyingExtension.php b/vendor/composer/pcre/src/PHPStan/PregMatchTypeSpecifyingExtension.php new file mode 100644 index 0000000..e492c79 --- /dev/null +++ b/vendor/composer/pcre/src/PHPStan/PregMatchTypeSpecifyingExtension.php @@ -0,0 +1,125 @@ +regexShapeMatcher = $regexShapeMatcher; + } + + public function setTypeSpecifier(TypeSpecifier $typeSpecifier): void + { + $this->typeSpecifier = $typeSpecifier; + } + + public function getClass(): string + { + return Preg::class; + } + + public function isStaticMethodSupported(MethodReflection $methodReflection, StaticCall $node, TypeSpecifierContext $context): bool + { + return in_array($methodReflection->getName(), [ + 'match', 'isMatch', 'matchStrictGroups', 'isMatchStrictGroups', + 'matchAll', 'isMatchAll', 'matchAllStrictGroups', 'isMatchAllStrictGroups' + ], true) + && !$context->null(); + } + + public function specifyTypes(MethodReflection $methodReflection, StaticCall $node, Scope $scope, TypeSpecifierContext $context): SpecifiedTypes + { + $args = $node->getArgs(); + $patternArg = $args[0] ?? null; + $subjectArg = $args[1] ?? null; + $matchesArg = $args[2] ?? null; + $flagsArg = $args[3] ?? null; + + $subjectTypes = new SpecifiedTypes(); + if ($patternArg === null) { + return $subjectTypes; + } + + if ( + $subjectArg !== null + && $context->true() + && $scope->getType($subjectArg->value)->isString()->yes() + ) { + $subjectType = $this->regexShapeMatcher->matchSubjectExpr($patternArg->value, $scope); + if ($subjectType !== null) { + $subjectTypes = $this->typeSpecifier->create( + $subjectArg->value, + $subjectType, + $context, + $scope, + )->setRootExpr($node); + } + } + + if ($matchesArg === null) { + return $subjectTypes; + } + + $flagsType = PregMatchFlags::getType($flagsArg, $scope); + if ($flagsType === null) { + return $subjectTypes; + } + + if (stripos($methodReflection->getName(), 'matchAll') !== false) { + $matchedType = $this->regexShapeMatcher->matchAllExpr($patternArg->value, $flagsType, TrinaryLogic::createFromBoolean($context->true()), $scope); + } else { + $matchedType = $this->regexShapeMatcher->matchExpr($patternArg->value, $flagsType, TrinaryLogic::createFromBoolean($context->true()), $scope); + } + + if ($matchedType === null) { + return $subjectTypes; + } + + if ( + in_array($methodReflection->getName(), ['matchStrictGroups', 'isMatchStrictGroups', 'matchAllStrictGroups', 'isMatchAllStrictGroups'], true) + ) { + $matchedType = PregMatchFlags::removeNullFromMatches($matchedType); + } + + $overwrite = false; + if ($context->false()) { + $overwrite = true; + $context = $context->negate(); + } + + $specifiedTypes = $this->typeSpecifier->create( + $matchesArg->value, + $matchedType, + $context, + $scope + )->setRootExpr($node); + + return $subjectTypes->unionWith($overwrite ? $specifiedTypes->setAlwaysOverwriteTypes() : $specifiedTypes); + } +} diff --git a/vendor/composer/pcre/src/PHPStan/PregReplaceCallbackClosureTypeExtension.php b/vendor/composer/pcre/src/PHPStan/PregReplaceCallbackClosureTypeExtension.php new file mode 100644 index 0000000..7b95367 --- /dev/null +++ b/vendor/composer/pcre/src/PHPStan/PregReplaceCallbackClosureTypeExtension.php @@ -0,0 +1,91 @@ +regexShapeMatcher = $regexShapeMatcher; + } + + public function isStaticMethodSupported(MethodReflection $methodReflection, ParameterReflection $parameter): bool + { + return in_array($methodReflection->getDeclaringClass()->getName(), [Preg::class, Regex::class], true) + && in_array($methodReflection->getName(), ['replaceCallback', 'replaceCallbackStrictGroups'], true) + && $parameter->getName() === 'replacement'; + } + + public function getTypeFromStaticMethodCall(MethodReflection $methodReflection, StaticCall $methodCall, ParameterReflection $parameter, Scope $scope): ?Type + { + $args = $methodCall->getArgs(); + $patternArg = $args[0] ?? null; + $flagsArg = $args[5] ?? null; + + if ( + $patternArg === null + ) { + return null; + } + + $flagsType = PregMatchFlags::getType($flagsArg, $scope); + + $matchesType = $this->regexShapeMatcher->matchExpr($patternArg->value, $flagsType, TrinaryLogic::createYes(), $scope); + if ($matchesType === null) { + return null; + } + + if ($methodReflection->getName() === 'replaceCallbackStrictGroups' && count($matchesType->getConstantArrays()) === 1) { + $matchesType = $matchesType->getConstantArrays()[0]; + $matchesType = new ConstantArrayType( + $matchesType->getKeyTypes(), + array_map(static function (Type $valueType): Type { + if (count($valueType->getConstantArrays()) === 1) { + $valueTypeArray = $valueType->getConstantArrays()[0]; + return new ConstantArrayType( + $valueTypeArray->getKeyTypes(), + array_map(static function (Type $valueType): Type { + return TypeCombinator::removeNull($valueType); + }, $valueTypeArray->getValueTypes()), + $valueTypeArray->getNextAutoIndexes(), + [], + $valueTypeArray->isList() + ); + } + return TypeCombinator::removeNull($valueType); + }, $matchesType->getValueTypes()), + $matchesType->getNextAutoIndexes(), + [], + $matchesType->isList() + ); + } + + return new ClosureType( + [ + new NativeParameterReflection($parameter->getName(), $parameter->isOptional(), $matchesType, $parameter->passedByReference(), $parameter->isVariadic(), $parameter->getDefaultValue()), + ], + new StringType() + ); + } +} diff --git a/vendor/composer/pcre/src/PHPStan/UnsafeStrictGroupsCallRule.php b/vendor/composer/pcre/src/PHPStan/UnsafeStrictGroupsCallRule.php new file mode 100644 index 0000000..5bced50 --- /dev/null +++ b/vendor/composer/pcre/src/PHPStan/UnsafeStrictGroupsCallRule.php @@ -0,0 +1,112 @@ + + */ +final class UnsafeStrictGroupsCallRule implements Rule +{ + /** + * @var RegexArrayShapeMatcher + */ + private $regexShapeMatcher; + + public function __construct(RegexArrayShapeMatcher $regexShapeMatcher) + { + $this->regexShapeMatcher = $regexShapeMatcher; + } + + public function getNodeType(): string + { + return StaticCall::class; + } + + public function processNode(Node $node, Scope $scope): array + { + if (!$node->class instanceof FullyQualified) { + return []; + } + $isRegex = $node->class->toString() === Regex::class; + $isPreg = $node->class->toString() === Preg::class; + if (!$isRegex && !$isPreg) { + return []; + } + if (!$node->name instanceof Node\Identifier || !in_array($node->name->name, ['matchStrictGroups', 'isMatchStrictGroups', 'matchAllStrictGroups', 'isMatchAllStrictGroups'], true)) { + return []; + } + + $args = $node->getArgs(); + if (!isset($args[0])) { + return []; + } + + $patternArg = $args[0] ?? null; + if ($isPreg) { + if (!isset($args[2])) { // no matches set, skip as the matches won't be used anyway + return []; + } + $flagsArg = $args[3] ?? null; + } else { + $flagsArg = $args[2] ?? null; + } + + if ($patternArg === null) { + return []; + } + + $flagsType = PregMatchFlags::getType($flagsArg, $scope); + if ($flagsType === null) { + return []; + } + + $matchedType = $this->regexShapeMatcher->matchExpr($patternArg->value, $flagsType, TrinaryLogic::createYes(), $scope); + if ($matchedType === null) { + return [ + RuleErrorBuilder::message(sprintf('The %s call is potentially unsafe as $matches\' type could not be inferred.', $node->name->name)) + ->identifier('composerPcre.maybeUnsafeStrictGroups') + ->build(), + ]; + } + + if (count($matchedType->getConstantArrays()) === 1) { + $matchedType = $matchedType->getConstantArrays()[0]; + $nullableGroups = []; + foreach ($matchedType->getValueTypes() as $index => $type) { + if (TypeCombinator::containsNull($type)) { + $nullableGroups[] = $matchedType->getKeyTypes()[$index]->getValue(); + } + } + + if (\count($nullableGroups) > 0) { + return [ + RuleErrorBuilder::message(sprintf( + 'The %s call is unsafe as match group%s "%s" %s optional and may be null.', + $node->name->name, + \count($nullableGroups) > 1 ? 's' : '', + implode('", "', $nullableGroups), + \count($nullableGroups) > 1 ? 'are' : 'is' + ))->identifier('composerPcre.unsafeStrictGroups')->build(), + ]; + } + } + + return []; + } +} diff --git a/vendor/composer/pcre/src/PcreException.php b/vendor/composer/pcre/src/PcreException.php new file mode 100644 index 0000000..23d9327 --- /dev/null +++ b/vendor/composer/pcre/src/PcreException.php @@ -0,0 +1,55 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +namespace Composer\Pcre; + +class PcreException extends \RuntimeException +{ + /** + * @param string $function + * @param string|string[] $pattern + * @return self + */ + public static function fromFunction($function, $pattern) + { + $code = preg_last_error(); + + if (is_array($pattern)) { + $pattern = implode(', ', $pattern); + } + + return new PcreException($function.'(): failed executing "'.$pattern.'": '.self::pcreLastErrorMessage($code), $code); + } + + /** + * @param int $code + * @return string + */ + private static function pcreLastErrorMessage($code) + { + if (function_exists('preg_last_error_msg')) { + return preg_last_error_msg(); + } + + $constants = get_defined_constants(true); + if (!isset($constants['pcre']) || !is_array($constants['pcre'])) { + return 'UNDEFINED_ERROR'; + } + + foreach ($constants['pcre'] as $const => $val) { + if ($val === $code && substr($const, -6) === '_ERROR') { + return $const; + } + } + + return 'UNDEFINED_ERROR'; + } +} diff --git a/vendor/composer/pcre/src/Preg.php b/vendor/composer/pcre/src/Preg.php new file mode 100644 index 0000000..98b4d29 --- /dev/null +++ b/vendor/composer/pcre/src/Preg.php @@ -0,0 +1,430 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +namespace Composer\Pcre; + +class Preg +{ + /** @internal */ + public const ARRAY_MSG = '$subject as an array is not supported. You can use \'foreach\' instead.'; + /** @internal */ + public const INVALID_TYPE_MSG = '$subject must be a string, %s given.'; + + /** + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * @return 0|1 + * + * @param-out array $matches + */ + public static function match(string $pattern, string $subject, ?array &$matches = null, int $flags = 0, int $offset = 0): int + { + self::checkOffsetCapture($flags, 'matchWithOffsets'); + + $result = preg_match($pattern, $subject, $matches, $flags | PREG_UNMATCHED_AS_NULL, $offset); + if ($result === false) { + throw PcreException::fromFunction('preg_match', $pattern); + } + + return $result; + } + + /** + * Variant of `match()` which outputs non-null matches (or throws) + * + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * @return 0|1 + * @throws UnexpectedNullMatchException + * + * @param-out array $matches + */ + public static function matchStrictGroups(string $pattern, string $subject, ?array &$matches = null, int $flags = 0, int $offset = 0): int + { + $result = self::match($pattern, $subject, $matchesInternal, $flags, $offset); + $matches = self::enforceNonNullMatches($pattern, $matchesInternal, 'match'); + + return $result; + } + + /** + * Runs preg_match with PREG_OFFSET_CAPTURE + * + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL and PREG_OFFSET_CAPTURE are always set, no other flags are supported + * @return 0|1 + * + * @param-out array}> $matches + */ + public static function matchWithOffsets(string $pattern, string $subject, ?array &$matches, int $flags = 0, int $offset = 0): int + { + $result = preg_match($pattern, $subject, $matches, $flags | PREG_UNMATCHED_AS_NULL | PREG_OFFSET_CAPTURE, $offset); + if ($result === false) { + throw PcreException::fromFunction('preg_match', $pattern); + } + + return $result; + } + + /** + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * @return 0|positive-int + * + * @param-out array> $matches + */ + public static function matchAll(string $pattern, string $subject, ?array &$matches = null, int $flags = 0, int $offset = 0): int + { + self::checkOffsetCapture($flags, 'matchAllWithOffsets'); + self::checkSetOrder($flags); + + $result = preg_match_all($pattern, $subject, $matches, $flags | PREG_UNMATCHED_AS_NULL, $offset); + if (!is_int($result)) { // PHP < 8 may return null, 8+ returns int|false + throw PcreException::fromFunction('preg_match_all', $pattern); + } + + return $result; + } + + /** + * Variant of `match()` which outputs non-null matches (or throws) + * + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * @return 0|positive-int + * @throws UnexpectedNullMatchException + * + * @param-out array> $matches + */ + public static function matchAllStrictGroups(string $pattern, string $subject, ?array &$matches = null, int $flags = 0, int $offset = 0): int + { + $result = self::matchAll($pattern, $subject, $matchesInternal, $flags, $offset); + $matches = self::enforceNonNullMatchAll($pattern, $matchesInternal, 'matchAll'); + + return $result; + } + + /** + * Runs preg_match_all with PREG_OFFSET_CAPTURE + * + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL and PREG_MATCH_OFFSET are always set, no other flags are supported + * @return 0|positive-int + * + * @param-out array}>> $matches + */ + public static function matchAllWithOffsets(string $pattern, string $subject, ?array &$matches, int $flags = 0, int $offset = 0): int + { + self::checkSetOrder($flags); + + $result = preg_match_all($pattern, $subject, $matches, $flags | PREG_UNMATCHED_AS_NULL | PREG_OFFSET_CAPTURE, $offset); + if (!is_int($result)) { // PHP < 8 may return null, 8+ returns int|false + throw PcreException::fromFunction('preg_match_all', $pattern); + } + + return $result; + } + + /** + * @param string|string[] $pattern + * @param string|string[] $replacement + * @param string $subject + * @param int $count Set by method + * + * @param-out int<0, max> $count + */ + public static function replace($pattern, $replacement, $subject, int $limit = -1, ?int &$count = null): string + { + if (!is_scalar($subject)) { + if (is_array($subject)) { + throw new \InvalidArgumentException(static::ARRAY_MSG); + } + + throw new \TypeError(sprintf(static::INVALID_TYPE_MSG, gettype($subject))); + } + + $result = preg_replace($pattern, $replacement, $subject, $limit, $count); + if ($result === null) { + throw PcreException::fromFunction('preg_replace', $pattern); + } + + return $result; + } + + /** + * @param string|string[] $pattern + * @param ($flags is PREG_OFFSET_CAPTURE ? (callable(array}>): string) : callable(array): string) $replacement + * @param string $subject + * @param int $count Set by method + * @param int-mask $flags PREG_OFFSET_CAPTURE is supported, PREG_UNMATCHED_AS_NULL is always set + * + * @param-out int<0, max> $count + */ + public static function replaceCallback($pattern, callable $replacement, $subject, int $limit = -1, ?int &$count = null, int $flags = 0): string + { + if (!is_scalar($subject)) { + if (is_array($subject)) { + throw new \InvalidArgumentException(static::ARRAY_MSG); + } + + throw new \TypeError(sprintf(static::INVALID_TYPE_MSG, gettype($subject))); + } + + $result = preg_replace_callback($pattern, $replacement, $subject, $limit, $count, $flags | PREG_UNMATCHED_AS_NULL); + if ($result === null) { + throw PcreException::fromFunction('preg_replace_callback', $pattern); + } + + return $result; + } + + /** + * Variant of `replaceCallback()` which outputs non-null matches (or throws) + * + * @param string $pattern + * @param ($flags is PREG_OFFSET_CAPTURE ? (callable(array}>): string) : callable(array): string) $replacement + * @param string $subject + * @param int $count Set by method + * @param int-mask $flags PREG_OFFSET_CAPTURE is supported, PREG_UNMATCHED_AS_NULL is always set + * + * @param-out int<0, max> $count + */ + public static function replaceCallbackStrictGroups(string $pattern, callable $replacement, $subject, int $limit = -1, ?int &$count = null, int $flags = 0): string + { + return self::replaceCallback($pattern, function (array $matches) use ($pattern, $replacement) { + return $replacement(self::enforceNonNullMatches($pattern, $matches, 'replaceCallback')); + }, $subject, $limit, $count, $flags); + } + + /** + * @param ($flags is PREG_OFFSET_CAPTURE ? (array}>): string>) : array): string>) $pattern + * @param string $subject + * @param int $count Set by method + * @param int-mask $flags PREG_OFFSET_CAPTURE is supported, PREG_UNMATCHED_AS_NULL is always set + * + * @param-out int<0, max> $count + */ + public static function replaceCallbackArray(array $pattern, $subject, int $limit = -1, ?int &$count = null, int $flags = 0): string + { + if (!is_scalar($subject)) { + if (is_array($subject)) { + throw new \InvalidArgumentException(static::ARRAY_MSG); + } + + throw new \TypeError(sprintf(static::INVALID_TYPE_MSG, gettype($subject))); + } + + $result = preg_replace_callback_array($pattern, $subject, $limit, $count, $flags | PREG_UNMATCHED_AS_NULL); + if ($result === null) { + $pattern = array_keys($pattern); + throw PcreException::fromFunction('preg_replace_callback_array', $pattern); + } + + return $result; + } + + /** + * @param int-mask $flags PREG_SPLIT_NO_EMPTY or PREG_SPLIT_DELIM_CAPTURE + * @return list + */ + public static function split(string $pattern, string $subject, int $limit = -1, int $flags = 0): array + { + if (($flags & PREG_SPLIT_OFFSET_CAPTURE) !== 0) { + throw new \InvalidArgumentException('PREG_SPLIT_OFFSET_CAPTURE is not supported as it changes the type of $matches, use splitWithOffsets() instead'); + } + + $result = preg_split($pattern, $subject, $limit, $flags); + if ($result === false) { + throw PcreException::fromFunction('preg_split', $pattern); + } + + return $result; + } + + /** + * @param int-mask $flags PREG_SPLIT_NO_EMPTY or PREG_SPLIT_DELIM_CAPTURE, PREG_SPLIT_OFFSET_CAPTURE is always set + * @return list + * @phpstan-return list}> + */ + public static function splitWithOffsets(string $pattern, string $subject, int $limit = -1, int $flags = 0): array + { + $result = preg_split($pattern, $subject, $limit, $flags | PREG_SPLIT_OFFSET_CAPTURE); + if ($result === false) { + throw PcreException::fromFunction('preg_split', $pattern); + } + + return $result; + } + + /** + * @template T of string|\Stringable + * @param string $pattern + * @param array $array + * @param int-mask $flags PREG_GREP_INVERT + * @return array + */ + public static function grep(string $pattern, array $array, int $flags = 0): array + { + $result = preg_grep($pattern, $array, $flags); + if ($result === false) { + throw PcreException::fromFunction('preg_grep', $pattern); + } + + return $result; + } + + /** + * Variant of match() which returns a bool instead of int + * + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * + * @param-out array $matches + */ + public static function isMatch(string $pattern, string $subject, ?array &$matches = null, int $flags = 0, int $offset = 0): bool + { + return (bool) static::match($pattern, $subject, $matches, $flags, $offset); + } + + /** + * Variant of `isMatch()` which outputs non-null matches (or throws) + * + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * @throws UnexpectedNullMatchException + * + * @param-out array $matches + */ + public static function isMatchStrictGroups(string $pattern, string $subject, ?array &$matches = null, int $flags = 0, int $offset = 0): bool + { + return (bool) self::matchStrictGroups($pattern, $subject, $matches, $flags, $offset); + } + + /** + * Variant of matchAll() which returns a bool instead of int + * + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * + * @param-out array> $matches + */ + public static function isMatchAll(string $pattern, string $subject, ?array &$matches = null, int $flags = 0, int $offset = 0): bool + { + return (bool) static::matchAll($pattern, $subject, $matches, $flags, $offset); + } + + /** + * Variant of `isMatchAll()` which outputs non-null matches (or throws) + * + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * + * @param-out array> $matches + */ + public static function isMatchAllStrictGroups(string $pattern, string $subject, ?array &$matches = null, int $flags = 0, int $offset = 0): bool + { + return (bool) self::matchAllStrictGroups($pattern, $subject, $matches, $flags, $offset); + } + + /** + * Variant of matchWithOffsets() which returns a bool instead of int + * + * Runs preg_match with PREG_OFFSET_CAPTURE + * + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * + * @param-out array}> $matches + */ + public static function isMatchWithOffsets(string $pattern, string $subject, ?array &$matches, int $flags = 0, int $offset = 0): bool + { + return (bool) static::matchWithOffsets($pattern, $subject, $matches, $flags, $offset); + } + + /** + * Variant of matchAllWithOffsets() which returns a bool instead of int + * + * Runs preg_match_all with PREG_OFFSET_CAPTURE + * + * @param non-empty-string $pattern + * @param array $matches Set by method + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * + * @param-out array}>> $matches + */ + public static function isMatchAllWithOffsets(string $pattern, string $subject, ?array &$matches, int $flags = 0, int $offset = 0): bool + { + return (bool) static::matchAllWithOffsets($pattern, $subject, $matches, $flags, $offset); + } + + private static function checkOffsetCapture(int $flags, string $useFunctionName): void + { + if (($flags & PREG_OFFSET_CAPTURE) !== 0) { + throw new \InvalidArgumentException('PREG_OFFSET_CAPTURE is not supported as it changes the type of $matches, use ' . $useFunctionName . '() instead'); + } + } + + private static function checkSetOrder(int $flags): void + { + if (($flags & PREG_SET_ORDER) !== 0) { + throw new \InvalidArgumentException('PREG_SET_ORDER is not supported as it changes the type of $matches'); + } + } + + /** + * @param array $matches + * @return array + * @throws UnexpectedNullMatchException + */ + private static function enforceNonNullMatches(string $pattern, array $matches, string $variantMethod): array + { + foreach ($matches as $group => $match) { + if (is_string($match) || (is_array($match) && is_string($match[0]))) { + continue; + } + + throw new UnexpectedNullMatchException('Pattern "'.$pattern.'" had an unexpected unmatched group "'.$group.'", make sure the pattern always matches or use '.$variantMethod.'() instead.'); + } + + /** @var array */ + return $matches; + } + + /** + * @param array> $matches + * @return array> + * @throws UnexpectedNullMatchException + */ + private static function enforceNonNullMatchAll(string $pattern, array $matches, string $variantMethod): array + { + foreach ($matches as $group => $groupMatches) { + foreach ($groupMatches as $match) { + if (null === $match) { + throw new UnexpectedNullMatchException('Pattern "'.$pattern.'" had an unexpected unmatched group "'.$group.'", make sure the pattern always matches or use '.$variantMethod.'() instead.'); + } + } + } + + /** @var array> */ + return $matches; + } +} diff --git a/vendor/composer/pcre/src/Regex.php b/vendor/composer/pcre/src/Regex.php new file mode 100644 index 0000000..038cf06 --- /dev/null +++ b/vendor/composer/pcre/src/Regex.php @@ -0,0 +1,176 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +namespace Composer\Pcre; + +class Regex +{ + /** + * @param non-empty-string $pattern + */ + public static function isMatch(string $pattern, string $subject, int $offset = 0): bool + { + return (bool) Preg::match($pattern, $subject, $matches, 0, $offset); + } + + /** + * @param non-empty-string $pattern + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + */ + public static function match(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchResult + { + self::checkOffsetCapture($flags, 'matchWithOffsets'); + + $count = Preg::match($pattern, $subject, $matches, $flags, $offset); + + return new MatchResult($count, $matches); + } + + /** + * Variant of `match()` which returns non-null matches (or throws) + * + * @param non-empty-string $pattern + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * @throws UnexpectedNullMatchException + */ + public static function matchStrictGroups(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchStrictGroupsResult + { + // @phpstan-ignore composerPcre.maybeUnsafeStrictGroups + $count = Preg::matchStrictGroups($pattern, $subject, $matches, $flags, $offset); + + return new MatchStrictGroupsResult($count, $matches); + } + + /** + * Runs preg_match with PREG_OFFSET_CAPTURE + * + * @param non-empty-string $pattern + * @param int-mask $flags PREG_UNMATCHED_AS_NULL and PREG_MATCH_OFFSET are always set, no other flags are supported + */ + public static function matchWithOffsets(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchWithOffsetsResult + { + $count = Preg::matchWithOffsets($pattern, $subject, $matches, $flags, $offset); + + return new MatchWithOffsetsResult($count, $matches); + } + + /** + * @param non-empty-string $pattern + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + */ + public static function matchAll(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchAllResult + { + self::checkOffsetCapture($flags, 'matchAllWithOffsets'); + self::checkSetOrder($flags); + + $count = Preg::matchAll($pattern, $subject, $matches, $flags, $offset); + + return new MatchAllResult($count, $matches); + } + + /** + * Variant of `matchAll()` which returns non-null matches (or throws) + * + * @param non-empty-string $pattern + * @param int-mask $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported + * @throws UnexpectedNullMatchException + */ + public static function matchAllStrictGroups(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchAllStrictGroupsResult + { + self::checkOffsetCapture($flags, 'matchAllWithOffsets'); + self::checkSetOrder($flags); + + // @phpstan-ignore composerPcre.maybeUnsafeStrictGroups + $count = Preg::matchAllStrictGroups($pattern, $subject, $matches, $flags, $offset); + + return new MatchAllStrictGroupsResult($count, $matches); + } + + /** + * Runs preg_match_all with PREG_OFFSET_CAPTURE + * + * @param non-empty-string $pattern + * @param int-mask $flags PREG_UNMATCHED_AS_NULL and PREG_MATCH_OFFSET are always set, no other flags are supported + */ + public static function matchAllWithOffsets(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchAllWithOffsetsResult + { + self::checkSetOrder($flags); + + $count = Preg::matchAllWithOffsets($pattern, $subject, $matches, $flags, $offset); + + return new MatchAllWithOffsetsResult($count, $matches); + } + /** + * @param string|string[] $pattern + * @param string|string[] $replacement + * @param string $subject + */ + public static function replace($pattern, $replacement, $subject, int $limit = -1): ReplaceResult + { + $result = Preg::replace($pattern, $replacement, $subject, $limit, $count); + + return new ReplaceResult($count, $result); + } + + /** + * @param string|string[] $pattern + * @param ($flags is PREG_OFFSET_CAPTURE ? (callable(array}>): string) : callable(array): string) $replacement + * @param string $subject + * @param int-mask $flags PREG_OFFSET_CAPTURE is supported, PREG_UNMATCHED_AS_NULL is always set + */ + public static function replaceCallback($pattern, callable $replacement, $subject, int $limit = -1, int $flags = 0): ReplaceResult + { + $result = Preg::replaceCallback($pattern, $replacement, $subject, $limit, $count, $flags); + + return new ReplaceResult($count, $result); + } + + /** + * Variant of `replaceCallback()` which outputs non-null matches (or throws) + * + * @param string $pattern + * @param ($flags is PREG_OFFSET_CAPTURE ? (callable(array}>): string) : callable(array): string) $replacement + * @param string $subject + * @param int-mask $flags PREG_OFFSET_CAPTURE is supported, PREG_UNMATCHED_AS_NULL is always set + */ + public static function replaceCallbackStrictGroups($pattern, callable $replacement, $subject, int $limit = -1, int $flags = 0): ReplaceResult + { + $result = Preg::replaceCallbackStrictGroups($pattern, $replacement, $subject, $limit, $count, $flags); + + return new ReplaceResult($count, $result); + } + + /** + * @param ($flags is PREG_OFFSET_CAPTURE ? (array}>): string>) : array): string>) $pattern + * @param string $subject + * @param int-mask $flags PREG_OFFSET_CAPTURE is supported, PREG_UNMATCHED_AS_NULL is always set + */ + public static function replaceCallbackArray(array $pattern, $subject, int $limit = -1, int $flags = 0): ReplaceResult + { + $result = Preg::replaceCallbackArray($pattern, $subject, $limit, $count, $flags); + + return new ReplaceResult($count, $result); + } + + private static function checkOffsetCapture(int $flags, string $useFunctionName): void + { + if (($flags & PREG_OFFSET_CAPTURE) !== 0) { + throw new \InvalidArgumentException('PREG_OFFSET_CAPTURE is not supported as it changes the return type, use '.$useFunctionName.'() instead'); + } + } + + private static function checkSetOrder(int $flags): void + { + if (($flags & PREG_SET_ORDER) !== 0) { + throw new \InvalidArgumentException('PREG_SET_ORDER is not supported as it changes the return type'); + } + } +} diff --git a/vendor/composer/pcre/src/ReplaceResult.php b/vendor/composer/pcre/src/ReplaceResult.php new file mode 100644 index 0000000..3384771 --- /dev/null +++ b/vendor/composer/pcre/src/ReplaceResult.php @@ -0,0 +1,43 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +namespace Composer\Pcre; + +final class ReplaceResult +{ + /** + * @readonly + * @var string + */ + public $result; + + /** + * @readonly + * @var 0|positive-int + */ + public $count; + + /** + * @readonly + * @var bool + */ + public $matched; + + /** + * @param 0|positive-int $count + */ + public function __construct(int $count, string $result) + { + $this->count = $count; + $this->matched = (bool) $count; + $this->result = $result; + } +} diff --git a/vendor/composer/pcre/src/UnexpectedNullMatchException.php b/vendor/composer/pcre/src/UnexpectedNullMatchException.php new file mode 100644 index 0000000..f123828 --- /dev/null +++ b/vendor/composer/pcre/src/UnexpectedNullMatchException.php @@ -0,0 +1,20 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +namespace Composer\Pcre; + +class UnexpectedNullMatchException extends PcreException +{ + public static function fromFunction($function, $pattern) + { + throw new \LogicException('fromFunction should not be called on '.self::class.', use '.PcreException::class); + } +} diff --git a/vendor/composer/platform_check.php b/vendor/composer/platform_check.php new file mode 100644 index 0000000..f677942 --- /dev/null +++ b/vendor/composer/platform_check.php @@ -0,0 +1,30 @@ += 80300)) { + $issues[] = 'Your Composer dependencies require a PHP version ">= 8.3.0". You are running ' . PHP_VERSION . '.'; +} + +if (PHP_INT_SIZE !== 8) { + $issues[] = 'Your Composer dependencies require a 64-bit build of PHP.'; +} + +if ($issues) { + if (!headers_sent()) { + header('HTTP/1.1 500 Internal Server Error'); + } + if (!ini_get('display_errors')) { + if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { + fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); + } elseif (!headers_sent()) { + echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; + } + } + trigger_error( + 'Composer detected issues in your platform: ' . implode(' ', $issues), + E_USER_ERROR + ); +} diff --git a/vendor/ezyang/htmlpurifier/CREDITS b/vendor/ezyang/htmlpurifier/CREDITS new file mode 100644 index 0000000..7921b45 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/CREDITS @@ -0,0 +1,9 @@ + +CREDITS + +Almost everything written by Edward Z. Yang (Ambush Commander). Lots of thanks +to the DevNetwork Community for their help (see docs/ref-devnetwork.html for +more details), Feyd especially (namely IPv6 and optimization). Thanks to RSnake +for letting me package his fantastic XSS cheatsheet for a smoketest. + + vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/LICENSE b/vendor/ezyang/htmlpurifier/LICENSE new file mode 100644 index 0000000..8c88a20 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/LICENSE @@ -0,0 +1,504 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/README.md b/vendor/ezyang/htmlpurifier/README.md new file mode 100644 index 0000000..e6b7199 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/README.md @@ -0,0 +1,29 @@ +HTML Purifier [![Build Status](https://github.com/ezyang/htmlpurifier/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/ezyang/htmlpurifier/actions/workflows/ci.yml) +============= + +HTML Purifier is an HTML filtering solution that uses a unique combination +of robust whitelists and aggressive parsing to ensure that not only are +XSS attacks thwarted, but the resulting HTML is standards compliant. + +HTML Purifier is oriented towards richly formatted documents from +untrusted sources that require CSS and a full tag-set. This library can +be configured to accept a more restrictive set of tags, but it won't be +as efficient as more bare-bones parsers. It will, however, do the job +right, which may be more important. + +Places to go: + +* See INSTALL for a quick installation guide +* See docs/ for developer-oriented documentation, code examples and + an in-depth installation guide. +* See WYSIWYG for information on editors like TinyMCE and FCKeditor + +HTML Purifier can be found on the web at: [http://htmlpurifier.org/](http://htmlpurifier.org/) + +## Installation + +Package available on [Composer](https://packagist.org/packages/ezyang/htmlpurifier). + +If you're using Composer to manage dependencies, you can use + + $ composer require ezyang/htmlpurifier diff --git a/vendor/ezyang/htmlpurifier/VERSION b/vendor/ezyang/htmlpurifier/VERSION new file mode 100644 index 0000000..35e3d1b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/VERSION @@ -0,0 +1 @@ +4.19.0 \ No newline at end of file diff --git a/vendor/ezyang/htmlpurifier/composer.json b/vendor/ezyang/htmlpurifier/composer.json new file mode 100644 index 0000000..cfb7151 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/composer.json @@ -0,0 +1,45 @@ +{ + "name": "ezyang/htmlpurifier", + "description": "Standards compliant HTML filter written in PHP", + "type": "library", + "keywords": ["html"], + "homepage": "http://htmlpurifier.org/", + "license": "LGPL-2.1-or-later", + "authors": [ + { + "name": "Edward Z. Yang", + "email": "admin@htmlpurifier.org", + "homepage": "http://ezyang.com" + } + ], + "require": { + "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0" + }, + "require-dev": { + "cerdic/css-tidy": "^1.7 || ^2.0", + "simpletest/simpletest": "dev-master" + }, + "autoload": { + "psr-0": { "HTMLPurifier": "library/" }, + "files": ["library/HTMLPurifier.composer.php"], + "exclude-from-classmap": [ + "/library/HTMLPurifier/Language/" + ] + }, + "suggest": { + "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", + "ext-iconv": "Converts text to and from non-UTF-8 encodings", + "ext-bcmath": "Used for unit conversion and imagecrash protection", + "ext-tidy": "Used for pretty-printing HTML" + }, + "config": { + "sort-packages": true + }, + "repositories": [ + { + "type": "vcs", + "url": "https://github.com/ezyang/simpletest.git", + "no-api": true + } + ] +} diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier.auto.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.auto.php new file mode 100644 index 0000000..1960c39 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.auto.php @@ -0,0 +1,11 @@ +purify($html, $config); +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier.includes.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.includes.php new file mode 100644 index 0000000..1f99a4a --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.includes.php @@ -0,0 +1,236 @@ + $attributes) { + $allowed_elements[$element] = true; + foreach ($attributes as $attribute => $x) { + $allowed_attributes["$element.$attribute"] = true; + } + } + $config->set('HTML.AllowedElements', $allowed_elements); + $config->set('HTML.AllowedAttributes', $allowed_attributes); + if ($allowed_protocols !== null) { + $config->set('URI.AllowedSchemes', $allowed_protocols); + } + $purifier = new HTMLPurifier($config); + return $purifier->purify($string); +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier.path.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.path.php new file mode 100644 index 0000000..39b1b65 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.path.php @@ -0,0 +1,11 @@ +config = HTMLPurifier_Config::create($config); + $this->strategy = new HTMLPurifier_Strategy_Core(); + } + + /** + * Adds a filter to process the output. First come first serve + * + * @param HTMLPurifier_Filter $filter HTMLPurifier_Filter object + */ + public function addFilter($filter) + { + trigger_error( + 'HTMLPurifier->addFilter() is deprecated, use configuration directives' . + ' in the Filter namespace or Filter.Custom', + E_USER_WARNING + ); + $this->filters[] = $filter; + } + + /** + * Filters an HTML snippet/document to be XSS-free and standards-compliant. + * + * @param string $html String of HTML to purify + * @param HTMLPurifier_Config $config Config object for this operation, + * if omitted, defaults to the config object specified during this + * object's construction. The parameter can also be any type + * that HTMLPurifier_Config::create() supports. + * + * @return string Purified HTML + */ + public function purify($html, $config = null) + { + // :TODO: make the config merge in, instead of replace + $config = $config ? HTMLPurifier_Config::create($config) : $this->config; + + // implementation is partially environment dependant, partially + // configuration dependant + $lexer = HTMLPurifier_Lexer::create($config); + + $context = new HTMLPurifier_Context(); + + // setup HTML generator + $this->generator = new HTMLPurifier_Generator($config, $context); + $context->register('Generator', $this->generator); + + // set up global context variables + if ($config->get('Core.CollectErrors')) { + // may get moved out if other facilities use it + $language_factory = HTMLPurifier_LanguageFactory::instance(); + $language = $language_factory->create($config, $context); + $context->register('Locale', $language); + + $error_collector = new HTMLPurifier_ErrorCollector($context); + $context->register('ErrorCollector', $error_collector); + } + + // setup id_accumulator context, necessary due to the fact that + // AttrValidator can be called from many places + $id_accumulator = HTMLPurifier_IDAccumulator::build($config, $context); + $context->register('IDAccumulator', $id_accumulator); + + $html = HTMLPurifier_Encoder::convertToUTF8($html, $config, $context); + + // setup filters + $filter_flags = $config->getBatch('Filter'); + $custom_filters = $filter_flags['Custom']; + unset($filter_flags['Custom']); + $filters = array(); + foreach ($filter_flags as $filter => $flag) { + if (!$flag) { + continue; + } + if (strpos($filter, '.') !== false) { + continue; + } + $class = "HTMLPurifier_Filter_$filter"; + $filters[] = new $class; + } + foreach ($custom_filters as $filter) { + // maybe "HTMLPurifier_Filter_$filter", but be consistent with AutoFormat + $filters[] = $filter; + } + $filters = array_merge($filters, $this->filters); + // maybe prepare(), but later + + for ($i = 0, $filter_size = count($filters); $i < $filter_size; $i++) { + $html = $filters[$i]->preFilter($html, $config, $context); + } + + // purified HTML + $html = + $this->generator->generateFromTokens( + // list of tokens + $this->strategy->execute( + // list of un-purified tokens + $lexer->tokenizeHTML( + // un-purified HTML + $html, + $config, + $context + ), + $config, + $context + ) + ); + + for ($i = $filter_size - 1; $i >= 0; $i--) { + $html = $filters[$i]->postFilter($html, $config, $context); + } + + $html = HTMLPurifier_Encoder::convertFromUTF8($html, $config, $context); + $this->context =& $context; + return $html; + } + + /** + * Filters an array of HTML snippets + * + * @param string[] $array_of_html Array of html snippets + * @param HTMLPurifier_Config $config Optional config object for this operation. + * See HTMLPurifier::purify() for more details. + * + * @return string[] Array of purified HTML + */ + public function purifyArray($array_of_html, $config = null) + { + $context_array = array(); + $array = array(); + foreach($array_of_html as $key=>$value){ + if (is_array($value)) { + $array[$key] = $this->purifyArray($value, $config); + } else { + $array[$key] = $this->purify($value, $config); + } + $context_array[$key] = $this->context; + } + $this->context = $context_array; + return $array; + } + + /** + * Singleton for enforcing just one HTML Purifier in your system + * + * @param HTMLPurifier|HTMLPurifier_Config $prototype Optional prototype + * HTMLPurifier instance to overload singleton with, + * or HTMLPurifier_Config instance to configure the + * generated version with. + * + * @return HTMLPurifier + */ + public static function instance($prototype = null) + { + if (!self::$instance || $prototype) { + if ($prototype instanceof HTMLPurifier) { + self::$instance = $prototype; + } elseif ($prototype) { + self::$instance = new HTMLPurifier($prototype); + } else { + self::$instance = new HTMLPurifier(); + } + } + return self::$instance; + } + + /** + * Singleton for enforcing just one HTML Purifier in your system + * + * @param HTMLPurifier|HTMLPurifier_Config $prototype Optional prototype + * HTMLPurifier instance to overload singleton with, + * or HTMLPurifier_Config instance to configure the + * generated version with. + * + * @return HTMLPurifier + * @note Backwards compatibility, see instance() + */ + public static function getInstance($prototype = null) + { + return HTMLPurifier::instance($prototype); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier.safe-includes.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.safe-includes.php new file mode 100644 index 0000000..8a417d2 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier.safe-includes.php @@ -0,0 +1,230 @@ +getHTMLDefinition(); + $parent = new HTMLPurifier_Token_Start($definition->info_parent); + $stack = array($parent->toNode()); + foreach ($tokens as $token) { + $token->skip = null; // [MUT] + $token->carryover = null; // [MUT] + if ($token instanceof HTMLPurifier_Token_End) { + $token->start = null; // [MUT] + $r = array_pop($stack); + //assert($r->name === $token->name); + //assert(empty($token->attr)); + $r->endCol = $token->col; + $r->endLine = $token->line; + $r->endArmor = $token->armor; + continue; + } + $node = $token->toNode(); + $stack[count($stack)-1]->children[] = $node; + if ($token instanceof HTMLPurifier_Token_Start) { + $stack[] = $node; + } + } + //assert(count($stack) == 1); + return $stack[0]; + } + + public static function flatten($node, $config, $context) { + $level = 0; + $nodes = array($level => new HTMLPurifier_Queue(array($node))); + $closingTokens = array(); + $tokens = array(); + do { + while (!$nodes[$level]->isEmpty()) { + $node = $nodes[$level]->shift(); // FIFO + list($start, $end) = $node->toTokenPair(); + if ($level > 0) { + $tokens[] = $start; + } + if ($end !== NULL) { + $closingTokens[$level][] = $end; + } + if ($node instanceof HTMLPurifier_Node_Element) { + $level++; + $nodes[$level] = new HTMLPurifier_Queue(); + foreach ($node->children as $childNode) { + $nodes[$level]->push($childNode); + } + } + } + $level--; + if ($level && isset($closingTokens[$level])) { + while ($token = array_pop($closingTokens[$level])) { + $tokens[] = $token; + } + } + } while ($level > 0); + return $tokens; + } +} diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrCollections.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrCollections.php new file mode 100644 index 0000000..c7b17cf --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrCollections.php @@ -0,0 +1,148 @@ +doConstruct($attr_types, $modules); + } + + public function doConstruct($attr_types, $modules) + { + // load extensions from the modules + foreach ($modules as $module) { + foreach ($module->attr_collections as $coll_i => $coll) { + if (!isset($this->info[$coll_i])) { + $this->info[$coll_i] = array(); + } + foreach ($coll as $attr_i => $attr) { + if ($attr_i === 0 && isset($this->info[$coll_i][$attr_i])) { + // merge in includes + $this->info[$coll_i][$attr_i] = array_merge( + $this->info[$coll_i][$attr_i], + $attr + ); + continue; + } + $this->info[$coll_i][$attr_i] = $attr; + } + } + } + // perform internal expansions and inclusions + foreach ($this->info as $name => $attr) { + // merge attribute collections that include others + $this->performInclusions($this->info[$name]); + // replace string identifiers with actual attribute objects + $this->expandIdentifiers($this->info[$name], $attr_types); + } + } + + /** + * Takes a reference to an attribute associative array and performs + * all inclusions specified by the zero index. + * @param array &$attr Reference to attribute array + */ + public function performInclusions(&$attr) + { + if (!isset($attr[0])) { + return; + } + $merge = $attr[0]; + $seen = array(); // recursion guard + // loop through all the inclusions + for ($i = 0; isset($merge[$i]); $i++) { + if (isset($seen[$merge[$i]])) { + continue; + } + $seen[$merge[$i]] = true; + // foreach attribute of the inclusion, copy it over + if (!isset($this->info[$merge[$i]])) { + continue; + } + foreach ($this->info[$merge[$i]] as $key => $value) { + if (isset($attr[$key])) { + continue; + } // also catches more inclusions + $attr[$key] = $value; + } + if (isset($this->info[$merge[$i]][0])) { + // recursion + $merge = array_merge($merge, $this->info[$merge[$i]][0]); + } + } + unset($attr[0]); + } + + /** + * Expands all string identifiers in an attribute array by replacing + * them with the appropriate values inside HTMLPurifier_AttrTypes + * @param array &$attr Reference to attribute array + * @param HTMLPurifier_AttrTypes $attr_types HTMLPurifier_AttrTypes instance + */ + public function expandIdentifiers(&$attr, $attr_types) + { + // because foreach will process new elements we add, make sure we + // skip duplicates + $processed = array(); + + foreach ($attr as $def_i => $def) { + // skip inclusions + if ($def_i === 0) { + continue; + } + + if (isset($processed[$def_i])) { + continue; + } + + // determine whether or not attribute is required + if ($required = (strpos($def_i, '*') !== false)) { + // rename the definition + unset($attr[$def_i]); + $def_i = trim($def_i, '*'); + $attr[$def_i] = $def; + } + + $processed[$def_i] = true; + + // if we've already got a literal object, move on + if (is_object($def)) { + // preserve previous required + $attr[$def_i]->required = ($required || $attr[$def_i]->required); + continue; + } + + if ($def === false) { + unset($attr[$def_i]); + continue; + } + + if ($t = $attr_types->get($def)) { + $attr[$def_i] = $t; + $attr[$def_i]->required = $required; + } else { + unset($attr[$def_i]); + } + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef.php new file mode 100644 index 0000000..739646f --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef.php @@ -0,0 +1,144 @@ + by removing + * leading and trailing whitespace, ignoring line feeds, and replacing + * carriage returns and tabs with spaces. While most useful for HTML + * attributes specified as CDATA, it can also be applied to most CSS + * values. + * + * @note This method is not entirely standards compliant, as trim() removes + * more types of whitespace than specified in the spec. In practice, + * this is rarely a problem, as those extra characters usually have + * already been removed by HTMLPurifier_Encoder. + * + * @warning This processing is inconsistent with XML's whitespace handling + * as specified by section 3.3.3 and referenced XHTML 1.0 section + * 4.7. However, note that we are NOT necessarily + * parsing XML, thus, this behavior may still be correct. We + * assume that newlines have been normalized. + */ + public function parseCDATA($string) + { + $string = trim($string); + $string = str_replace(array("\n", "\t", "\r"), ' ', $string); + return $string; + } + + /** + * Factory method for creating this class from a string. + * @param string $string String construction info + * @return HTMLPurifier_AttrDef Created AttrDef object corresponding to $string + */ + public function make($string) + { + // default implementation, return a flyweight of this object. + // If $string has an effect on the returned object (i.e. you + // need to overload this method), it is best + // to clone or instantiate new copies. (Instantiation is safer.) + return $this; + } + + /** + * Removes spaces from rgb(0, 0, 0) so that shorthand CSS properties work + * properly. THIS IS A HACK! + * @param string $string a CSS colour definition + * @return string + */ + protected function mungeRgb($string) + { + $p = '\s*(\d+(\.\d+)?([%]?))\s*'; + + if (preg_match('/(rgba|hsla)\(/', $string)) { + return preg_replace('/(rgba|hsla)\('.$p.','.$p.','.$p.','.$p.'\)/', '\1(\2,\5,\8,\11)', $string); + } + + return preg_replace('/(rgb|hsl)\('.$p.','.$p.','.$p.'\)/', '\1(\2,\5,\8)', $string); + } + + /** + * Parses a possibly escaped CSS string and returns the "pure" + * version of it. + */ + protected function expandCSSEscape($string) + { + // flexibly parse it + $ret = ''; + for ($i = 0, $c = strlen($string); $i < $c; $i++) { + if ($string[$i] === '\\') { + $i++; + if ($i >= $c) { + $ret .= '\\'; + break; + } + if (ctype_xdigit($string[$i])) { + $code = $string[$i]; + for ($a = 1, $i++; $i < $c && $a < 6; $i++, $a++) { + if (!ctype_xdigit($string[$i])) { + break; + } + $code .= $string[$i]; + } + // We have to be extremely careful when adding + // new characters, to make sure we're not breaking + // the encoding. + $char = HTMLPurifier_Encoder::unichr(hexdec($code)); + if (HTMLPurifier_Encoder::cleanUTF8($char) === '') { + continue; + } + $ret .= $char; + if ($i < $c && trim($string[$i]) !== '') { + $i--; + } + continue; + } + if ($string[$i] === "\n") { + continue; + } + } + $ret .= $string[$i]; + } + return $ret; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php new file mode 100644 index 0000000..af6b8a0 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php @@ -0,0 +1,140 @@ +parseCDATA($css); + + $definition = $config->getCSSDefinition(); + $allow_duplicates = $config->get("CSS.AllowDuplicates"); + + $universal_attrdef = new HTMLPurifier_AttrDef_Enum( + array( + 'initial', + 'inherit', + 'unset', + ) + ); + + // According to the CSS2.1 spec, the places where a + // non-delimiting semicolon can appear are in strings + // escape sequences. So here is some dumb hack to + // handle quotes. + $len = strlen($css); + $accum = ""; + $declarations = array(); + $quoted = false; + for ($i = 0; $i < $len; $i++) { + $c = strcspn($css, ";'\"", $i); + $accum .= substr($css, $i, $c); + $i += $c; + if ($i == $len) break; + $d = $css[$i]; + if ($quoted) { + $accum .= $d; + if ($d == $quoted) { + $quoted = false; + } + } else { + if ($d == ";") { + $declarations[] = $accum; + $accum = ""; + } else { + $accum .= $d; + $quoted = $d; + } + } + } + if ($accum != "") $declarations[] = $accum; + + $propvalues = array(); + $new_declarations = ''; + + /** + * Name of the current CSS property being validated. + */ + $property = false; + $context->register('CurrentCSSProperty', $property); + + foreach ($declarations as $declaration) { + if (!$declaration) { + continue; + } + if (!strpos($declaration, ':')) { + continue; + } + list($property, $value) = explode(':', $declaration, 2); + $property = trim($property); + $value = trim($value); + $ok = false; + do { + if (isset($definition->info[$property])) { + $ok = true; + break; + } + if (ctype_lower($property)) { + break; + } + $property = strtolower($property); + if (isset($definition->info[$property])) { + $ok = true; + break; + } + } while (0); + if (!$ok) { + continue; + } + $result = $universal_attrdef->validate($value, $config, $context); + if ($result === false) { + $result = $definition->info[$property]->validate( + $value, + $config, + $context + ); + } + if ($result === false) { + continue; + } + if ($allow_duplicates) { + $new_declarations .= "$property:$result;"; + } else { + $propvalues[$property] = $result; + } + } + + $context->destroy('CurrentCSSProperty'); + + // procedure does not write the new CSS simultaneously, so it's + // slightly inefficient, but it's the only way of getting rid of + // duplicates. Perhaps config to optimize it, but not now. + + foreach ($propvalues as $prop => $value) { + $new_declarations .= "$prop:$value;"; + } + + return $new_declarations ? $new_declarations : false; + + } + +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php new file mode 100644 index 0000000..af2b83d --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php @@ -0,0 +1,34 @@ + 1.0) { + $result = '1'; + } + return $result; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php new file mode 100644 index 0000000..28c4988 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php @@ -0,0 +1,113 @@ +getCSSDefinition(); + $this->info['background-color'] = $def->info['background-color']; + $this->info['background-image'] = $def->info['background-image']; + $this->info['background-repeat'] = $def->info['background-repeat']; + $this->info['background-attachment'] = $def->info['background-attachment']; + $this->info['background-position'] = $def->info['background-position']; + $this->info['background-size'] = $def->info['background-size']; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + // regular pre-processing + $string = $this->parseCDATA($string); + if ($string === '') { + return false; + } + + // munge rgb() decl if necessary + $string = $this->mungeRgb($string); + + // assumes URI doesn't have spaces in it + $bits = explode(' ', $string); // bits to process + + $caught = array(); + $caught['color'] = false; + $caught['image'] = false; + $caught['repeat'] = false; + $caught['attachment'] = false; + $caught['position'] = false; + $caught['size'] = false; + + $i = 0; // number of catches + + foreach ($bits as $bit) { + if ($bit === '') { + continue; + } + foreach ($caught as $key => $status) { + if ($key != 'position') { + if ($status !== false) { + continue; + } + $r = $this->info['background-' . $key]->validate($bit, $config, $context); + } else { + $r = $bit; + } + if ($r === false) { + continue; + } + if ($key == 'position') { + if ($caught[$key] === false) { + $caught[$key] = ''; + } + $caught[$key] .= $r . ' '; + } else { + $caught[$key] = $r; + } + $i++; + break; + } + } + + if (!$i) { + return false; + } + if ($caught['position'] !== false) { + $caught['position'] = $this->info['background-position']-> + validate($caught['position'], $config, $context); + } + + $ret = array(); + foreach ($caught as $value) { + if ($value === false) { + continue; + } + $ret[] = $value; + } + + if (empty($ret)) { + return false; + } + return implode(' ', $ret); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php new file mode 100644 index 0000000..4580ef5 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php @@ -0,0 +1,157 @@ + | | left | center | right + ] + [ + | | top | center | bottom + ]? + ] | + [ // this signifies that the vertical and horizontal adjectives + // can be arbitrarily ordered, however, there can only be two, + // one of each, or none at all + [ + left | center | right + ] || + [ + top | center | bottom + ] + ] + top, left = 0% + center, (none) = 50% + bottom, right = 100% +*/ + +/* QuirksMode says: + keyword + length/percentage must be ordered correctly, as per W3C + + Internet Explorer and Opera, however, support arbitrary ordering. We + should fix it up. + + Minor issue though, not strictly necessary. +*/ + +// control freaks may appreciate the ability to convert these to +// percentages or something, but it's not necessary + +/** + * Validates the value of background-position. + */ +class HTMLPurifier_AttrDef_CSS_BackgroundPosition extends HTMLPurifier_AttrDef +{ + + /** + * @type HTMLPurifier_AttrDef_CSS_Length + */ + protected $length; + + /** + * @type HTMLPurifier_AttrDef_CSS_Percentage + */ + protected $percentage; + + public function __construct() + { + $this->length = new HTMLPurifier_AttrDef_CSS_Length(); + $this->percentage = new HTMLPurifier_AttrDef_CSS_Percentage(); + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + $string = $this->parseCDATA($string); + $bits = explode(' ', $string); + + $keywords = array(); + $keywords['h'] = false; // left, right + $keywords['v'] = false; // top, bottom + $keywords['ch'] = false; // center (first word) + $keywords['cv'] = false; // center (second word) + $measures = array(); + + $i = 0; + + $lookup = array( + 'top' => 'v', + 'bottom' => 'v', + 'left' => 'h', + 'right' => 'h', + 'center' => 'c' + ); + + foreach ($bits as $bit) { + if ($bit === '') { + continue; + } + + // test for keyword + $lbit = ctype_lower($bit) ? $bit : strtolower($bit); + if (isset($lookup[$lbit])) { + $status = $lookup[$lbit]; + if ($status == 'c') { + if ($i == 0) { + $status = 'ch'; + } else { + $status = 'cv'; + } + } + $keywords[$status] = $lbit; + $i++; + } + + // test for length + $r = $this->length->validate($bit, $config, $context); + if ($r !== false) { + $measures[] = $r; + $i++; + } + + // test for percentage + $r = $this->percentage->validate($bit, $config, $context); + if ($r !== false) { + $measures[] = $r; + $i++; + } + } + + if (!$i) { + return false; + } // no valid values were caught + + $ret = array(); + + // first keyword + if ($keywords['h']) { + $ret[] = $keywords['h']; + } elseif ($keywords['ch']) { + $ret[] = $keywords['ch']; + $keywords['cv'] = false; // prevent re-use: center = center center + } elseif (count($measures)) { + $ret[] = array_shift($measures); + } + + if ($keywords['v']) { + $ret[] = $keywords['v']; + } elseif ($keywords['cv']) { + $ret[] = $keywords['cv']; + } elseif (count($measures)) { + $ret[] = array_shift($measures); + } + + if (empty($ret)) { + return false; + } + return implode(' ', $ret); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php new file mode 100644 index 0000000..16243ba --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php @@ -0,0 +1,56 @@ +getCSSDefinition(); + $this->info['border-width'] = $def->info['border-width']; + $this->info['border-style'] = $def->info['border-style']; + $this->info['border-top-color'] = $def->info['border-top-color']; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + $string = $this->parseCDATA($string); + $string = $this->mungeRgb($string); + $bits = explode(' ', $string); + $done = array(); // segments we've finished + $ret = ''; // return value + foreach ($bits as $bit) { + foreach ($this->info as $propname => $validator) { + if (isset($done[$propname])) { + continue; + } + $r = $validator->validate($bit, $config, $context); + if ($r !== false) { + $ret .= $r . ' '; + $done[$propname] = true; + break; + } + } + } + return rtrim($ret); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php new file mode 100644 index 0000000..d7287a0 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php @@ -0,0 +1,161 @@ +alpha = new HTMLPurifier_AttrDef_CSS_AlphaValue(); + } + + /** + * @param string $color + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($color, $config, $context) + { + static $colors = null; + if ($colors === null) { + $colors = $config->get('Core.ColorKeywords'); + } + + $color = trim($color); + if ($color === '') { + return false; + } + + $lower = strtolower($color); + if (isset($colors[$lower])) { + return $colors[$lower]; + } + + if (preg_match('#(rgb|rgba|hsl|hsla)\(#', $color, $matches) === 1) { + $length = strlen($color); + if (strpos($color, ')') !== $length - 1) { + return false; + } + + // get used function : rgb, rgba, hsl or hsla + $function = $matches[1]; + + $parameters_size = 3; + $alpha_channel = false; + if (substr($function, -1) === 'a') { + $parameters_size = 4; + $alpha_channel = true; + } + + /* + * Allowed types for values : + * parameter_position => [type => max_value] + */ + $allowed_types = array( + 1 => array('percentage' => 100, 'integer' => 255), + 2 => array('percentage' => 100, 'integer' => 255), + 3 => array('percentage' => 100, 'integer' => 255), + ); + $allow_different_types = false; + + if (strpos($function, 'hsl') !== false) { + $allowed_types = array( + 1 => array('integer' => 360), + 2 => array('percentage' => 100), + 3 => array('percentage' => 100), + ); + $allow_different_types = true; + } + + $values = trim(str_replace($function, '', $color), ' ()'); + + $parts = explode(',', $values); + if (count($parts) !== $parameters_size) { + return false; + } + + $type = false; + $new_parts = array(); + $i = 0; + + foreach ($parts as $part) { + $i++; + $part = trim($part); + + if ($part === '') { + return false; + } + + // different check for alpha channel + if ($alpha_channel === true && $i === count($parts)) { + $result = $this->alpha->validate($part, $config, $context); + + if ($result === false) { + return false; + } + + $new_parts[] = (string)$result; + continue; + } + + if (substr($part, -1) === '%') { + $current_type = 'percentage'; + } else { + $current_type = 'integer'; + } + + if (!array_key_exists($current_type, $allowed_types[$i])) { + return false; + } + + if (!$type) { + $type = $current_type; + } + + if ($allow_different_types === false && $type != $current_type) { + return false; + } + + $max_value = $allowed_types[$i][$current_type]; + + if ($current_type == 'integer') { + // Return value between range 0 -> $max_value + $new_parts[] = (int)max(min($part, $max_value), 0); + } elseif ($current_type == 'percentage') { + $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%'; + } + } + + $new_values = implode(',', $new_parts); + + $color = $function . '(' . $new_values . ')'; + } else { + // hexadecimal handling + if ($color[0] === '#') { + $hex = substr($color, 1); + } else { + $hex = $color; + $color = '#' . $color; + } + $length = strlen($hex); + if ($length !== 3 && $length !== 6) { + return false; + } + if (!ctype_xdigit($hex)) { + return false; + } + } + return $color; + } + +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php new file mode 100644 index 0000000..9c17505 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php @@ -0,0 +1,48 @@ +defs = $defs; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + foreach ($this->defs as $i => $def) { + $result = $this->defs[$i]->validate($string, $config, $context); + if ($result !== false) { + return $result; + } + } + return false; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php new file mode 100644 index 0000000..9d77cc9 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php @@ -0,0 +1,44 @@ +def = $def; + $this->element = $element; + } + + /** + * Checks if CurrentToken is set and equal to $this->element + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + $token = $context->get('CurrentToken', true); + if ($token && $token->name == $this->element) { + return false; + } + return $this->def->validate($string, $config, $context); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php new file mode 100644 index 0000000..bde4c33 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php @@ -0,0 +1,77 @@ +intValidator = new HTMLPurifier_AttrDef_Integer(); + } + + /** + * @param string $value + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($value, $config, $context) + { + $value = $this->parseCDATA($value); + if ($value === 'none') { + return $value; + } + // if we looped this we could support multiple filters + $function_length = strcspn($value, '('); + $function = trim(substr($value, 0, $function_length)); + if ($function !== 'alpha' && + $function !== 'Alpha' && + $function !== 'progid:DXImageTransform.Microsoft.Alpha' + ) { + return false; + } + $cursor = $function_length + 1; + $parameters_length = strcspn($value, ')', $cursor); + $parameters = substr($value, $cursor, $parameters_length); + $params = explode(',', $parameters); + $ret_params = array(); + $lookup = array(); + foreach ($params as $param) { + list($key, $value) = explode('=', $param); + $key = trim($key); + $value = trim($value); + if (isset($lookup[$key])) { + continue; + } + if ($key !== 'opacity') { + continue; + } + $value = $this->intValidator->validate($value, $config, $context); + if ($value === false) { + continue; + } + $int = (int)$value; + if ($int > 100) { + $value = '100'; + } + if ($int < 0) { + $value = '0'; + } + $ret_params[] = "$key=$value"; + $lookup[$key] = true; + } + $ret_parameters = implode(',', $ret_params); + $ret_function = "$function($ret_parameters)"; + return $ret_function; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php new file mode 100644 index 0000000..579b97e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php @@ -0,0 +1,176 @@ +getCSSDefinition(); + $this->info['font-style'] = $def->info['font-style']; + $this->info['font-variant'] = $def->info['font-variant']; + $this->info['font-weight'] = $def->info['font-weight']; + $this->info['font-size'] = $def->info['font-size']; + $this->info['line-height'] = $def->info['line-height']; + $this->info['font-family'] = $def->info['font-family']; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + static $system_fonts = array( + 'caption' => true, + 'icon' => true, + 'menu' => true, + 'message-box' => true, + 'small-caption' => true, + 'status-bar' => true + ); + + // regular pre-processing + $string = $this->parseCDATA($string); + if ($string === '') { + return false; + } + + // check if it's one of the keywords + $lowercase_string = strtolower($string); + if (isset($system_fonts[$lowercase_string])) { + return $lowercase_string; + } + + $bits = explode(' ', $string); // bits to process + $stage = 0; // this indicates what we're looking for + $caught = array(); // which stage 0 properties have we caught? + $stage_1 = array('font-style', 'font-variant', 'font-weight'); + $final = ''; // output + + for ($i = 0, $size = count($bits); $i < $size; $i++) { + if ($bits[$i] === '') { + continue; + } + switch ($stage) { + case 0: // attempting to catch font-style, font-variant or font-weight + foreach ($stage_1 as $validator_name) { + if (isset($caught[$validator_name])) { + continue; + } + $r = $this->info[$validator_name]->validate( + $bits[$i], + $config, + $context + ); + if ($r !== false) { + $final .= $r . ' '; + $caught[$validator_name] = true; + break; + } + } + // all three caught, continue on + if (count($caught) >= 3) { + $stage = 1; + } + if ($r !== false) { + break; + } + case 1: // attempting to catch font-size and perhaps line-height + $found_slash = false; + if (strpos($bits[$i], '/') !== false) { + list($font_size, $line_height) = + explode('/', $bits[$i]); + if ($line_height === '') { + // ooh, there's a space after the slash! + $line_height = false; + $found_slash = true; + } + } else { + $font_size = $bits[$i]; + $line_height = false; + } + $r = $this->info['font-size']->validate( + $font_size, + $config, + $context + ); + if ($r !== false) { + $final .= $r; + // attempt to catch line-height + if ($line_height === false) { + // we need to scroll forward + for ($j = $i + 1; $j < $size; $j++) { + if ($bits[$j] === '') { + continue; + } + if ($bits[$j] === '/') { + if ($found_slash) { + return false; + } else { + $found_slash = true; + continue; + } + } + $line_height = $bits[$j]; + break; + } + } else { + // slash already found + $found_slash = true; + $j = $i; + } + if ($found_slash) { + $i = $j; + $r = $this->info['line-height']->validate( + $line_height, + $config, + $context + ); + if ($r !== false) { + $final .= '/' . $r; + } + } + $final .= ' '; + $stage = 2; + break; + } + return false; + case 2: // attempting to catch font-family + $font_family = + implode(' ', array_slice($bits, $i, $size - $i)); + $r = $this->info['font-family']->validate( + $font_family, + $config, + $context + ); + if ($r !== false) { + $final .= $r . ' '; + // processing completed successfully + return rtrim($final); + } + return false; + } + } + return false; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php new file mode 100644 index 0000000..799166b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php @@ -0,0 +1,217 @@ +mask = array_reduce($c, function ($carry, $value) { + return $carry . $value; + }, '_- '); + + /* + PHP's internal strcspn implementation is + O(length of string * length of mask), making it inefficient + for large masks. However, it's still faster than + preg_match 8) + for (p = s1;;) { + spanp = s2; + do { + if (*spanp == c || p == s1_end) { + return p - s1; + } + } while (spanp++ < (s2_end - 1)); + c = *++p; + } + */ + // possible optimization: invert the mask. + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + static $generic_names = array( + 'serif' => true, + 'sans-serif' => true, + 'monospace' => true, + 'fantasy' => true, + 'cursive' => true + ); + $allowed_fonts = $config->get('CSS.AllowedFonts'); + + // assume that no font names contain commas in them + $fonts = explode(',', $string); + $final = ''; + foreach ($fonts as $font) { + $font = trim($font); + if ($font === '') { + continue; + } + // match a generic name + if (isset($generic_names[$font])) { + if ($allowed_fonts === null || isset($allowed_fonts[$font])) { + $final .= $font . ', '; + } + continue; + } + // match a quoted name + if ($font[0] === '"' || $font[0] === "'") { + $length = strlen($font); + if ($length <= 2) { + continue; + } + $quote = $font[0]; + if ($font[$length - 1] !== $quote) { + continue; + } + $font = substr($font, 1, $length - 2); + } + + $font = $this->expandCSSEscape($font); + + // $font is a pure representation of the font name + + if ($allowed_fonts !== null && !isset($allowed_fonts[$font])) { + continue; + } + + if (ctype_alnum($font) && $font !== '') { + // very simple font, allow it in unharmed + $final .= $font . ', '; + continue; + } + + // bugger out on whitespace. form feed (0C) really + // shouldn't show up regardless + $font = str_replace(array("\n", "\t", "\r", "\x0C"), ' ', $font); + + // Here, there are various classes of characters which need + // to be treated differently: + // - Alphanumeric characters are essentially safe. We + // handled these above. + // - Spaces require quoting, though most parsers will do + // the right thing if there aren't any characters that + // can be misinterpreted + // - Dashes rarely occur, but they fairly unproblematic + // for parsing/rendering purposes. + // The above characters cover the majority of Western font + // names. + // - Arbitrary Unicode characters not in ASCII. Because + // most parsers give little thought to Unicode, treatment + // of these codepoints is basically uniform, even for + // punctuation-like codepoints. These characters can + // show up in non-Western pages and are supported by most + // major browsers, for example: "MS 明朝" is a + // legitimate font-name + // . See + // the CSS3 spec for more examples: + // + // You can see live samples of these on the Internet: + // + // However, most of these fonts have ASCII equivalents: + // for example, 'MS Mincho', and it's considered + // professional to use ASCII font names instead of + // Unicode font names. Thanks Takeshi Terada for + // providing this information. + // The following characters, to my knowledge, have not been + // used to name font names. + // - Single quote. While theoretically you might find a + // font name that has a single quote in its name (serving + // as an apostrophe, e.g. Dave's Scribble), I haven't + // been able to find any actual examples of this. + // Internet Explorer's cssText translation (which I + // believe is invoked by innerHTML) normalizes any + // quoting to single quotes, and fails to escape single + // quotes. (Note that this is not IE's behavior for all + // CSS properties, just some sort of special casing for + // font-family). So a single quote *cannot* be used + // safely in the font-family context if there will be an + // innerHTML/cssText translation. Note that Firefox 3.x + // does this too. + // - Double quote. In IE, these get normalized to + // single-quotes, no matter what the encoding. (Fun + // fact, in IE8, the 'content' CSS property gained + // support, where they special cased to preserve encoded + // double quotes, but still translate unadorned double + // quotes into single quotes.) So, because their + // fixpoint behavior is identical to single quotes, they + // cannot be allowed either. Firefox 3.x displays + // single-quote style behavior. + // - Backslashes are reduced by one (so \\ -> \) every + // iteration, so they cannot be used safely. This shows + // up in IE7, IE8 and FF3 + // - Semicolons, commas and backticks are handled properly. + // - The rest of the ASCII punctuation is handled properly. + // We haven't checked what browsers do to unadorned + // versions, but this is not important as long as the + // browser doesn't /remove/ surrounding quotes (as IE does + // for HTML). + // + // With these results in hand, we conclude that there are + // various levels of safety: + // - Paranoid: alphanumeric, spaces and dashes(?) + // - International: Paranoid + non-ASCII Unicode + // - Edgy: Everything except quotes, backslashes + // - NoJS: Standards compliance, e.g. sod IE. Note that + // with some judicious character escaping (since certain + // types of escaping doesn't work) this is theoretically + // OK as long as innerHTML/cssText is not called. + // We believe that international is a reasonable default + // (that we will implement now), and once we do more + // extensive research, we may feel comfortable with dropping + // it down to edgy. + + // Edgy: alphanumeric, spaces, dashes, underscores and Unicode. Use of + // str(c)spn assumes that the string was already well formed + // Unicode (which of course it is). + if (strspn($font, $this->mask) !== strlen($font)) { + continue; + } + + // Historical: + // In the absence of innerHTML/cssText, these ugly + // transforms don't pose a security risk (as \\ and \" + // might--these escapes are not supported by most browsers). + // We could try to be clever and use single-quote wrapping + // when there is a double quote present, but I have chosen + // not to implement that. (NOTE: you can reduce the amount + // of escapes by one depending on what quoting style you use) + // $font = str_replace('\\', '\\5C ', $font); + // $font = str_replace('"', '\\22 ', $font); + // $font = str_replace("'", '\\27 ', $font); + + // font possibly with spaces, requires quoting + $final .= "'$font', "; + } + $final = rtrim($final, ', '); + if ($final === '') { + return false; + } + return $final; + } + +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php new file mode 100644 index 0000000..973002c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php @@ -0,0 +1,32 @@ +def = $def; + $this->allow = $allow; + } + + /** + * Intercepts and removes !important if necessary + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + // test for ! and important tokens + $string = trim($string); + $is_important = false; + // :TODO: optimization: test directly for !important and ! important + if (strlen($string) >= 9 && substr($string, -9) === 'important') { + $temp = rtrim(substr($string, 0, -9)); + // use a temp, because we might want to restore important + if (strlen($temp) >= 1 && substr($temp, -1) === '!') { + $string = rtrim(substr($temp, 0, -1)); + $is_important = true; + } + } + $string = $this->def->validate($string, $config, $context); + if ($this->allow && $is_important) { + $string .= ' !important'; + } + return $string; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php new file mode 100644 index 0000000..f12453a --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php @@ -0,0 +1,77 @@ +min = $min !== null ? HTMLPurifier_Length::make($min) : null; + $this->max = $max !== null ? HTMLPurifier_Length::make($max) : null; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + $string = $this->parseCDATA($string); + + // Optimizations + if ($string === '') { + return false; + } + if ($string === '0') { + return '0'; + } + if (strlen($string) === 1) { + return false; + } + + $length = HTMLPurifier_Length::make($string); + if (!$length->isValid()) { + return false; + } + + if ($this->min) { + $c = $length->compareTo($this->min); + if ($c === false) { + return false; + } + if ($c < 0) { + return false; + } + } + if ($this->max) { + $c = $length->compareTo($this->max); + if ($c === false) { + return false; + } + if ($c > 0) { + return false; + } + } + return $length->toString(); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php new file mode 100644 index 0000000..e74d426 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php @@ -0,0 +1,112 @@ +getCSSDefinition(); + $this->info['list-style-type'] = $def->info['list-style-type']; + $this->info['list-style-position'] = $def->info['list-style-position']; + $this->info['list-style-image'] = $def->info['list-style-image']; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + // regular pre-processing + $string = $this->parseCDATA($string); + if ($string === '') { + return false; + } + + // assumes URI doesn't have spaces in it + $bits = explode(' ', strtolower($string)); // bits to process + + $caught = array(); + $caught['type'] = false; + $caught['position'] = false; + $caught['image'] = false; + + $i = 0; // number of catches + $none = false; + + foreach ($bits as $bit) { + if ($i >= 3) { + return; + } // optimization bit + if ($bit === '') { + continue; + } + foreach ($caught as $key => $status) { + if ($status !== false) { + continue; + } + $r = $this->info['list-style-' . $key]->validate($bit, $config, $context); + if ($r === false) { + continue; + } + if ($r === 'none') { + if ($none) { + continue; + } else { + $none = true; + } + if ($key == 'image') { + continue; + } + } + $caught[$key] = $r; + $i++; + break; + } + } + + if (!$i) { + return false; + } + + $ret = array(); + + // construct type + if ($caught['type']) { + $ret[] = $caught['type']; + } + + // construct image + if ($caught['image']) { + $ret[] = $caught['image']; + } + + // construct position + if ($caught['position']) { + $ret[] = $caught['position']; + } + + if (empty($ret)) { + return false; + } + return implode(' ', $ret); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php new file mode 100644 index 0000000..e707f87 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php @@ -0,0 +1,71 @@ +single = $single; + $this->max = $max; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + $string = $this->mungeRgb($this->parseCDATA($string)); + if ($string === '') { + return false; + } + $parts = explode(' ', $string); // parseCDATA replaced \r, \t and \n + $length = count($parts); + $final = ''; + for ($i = 0, $num = 0; $i < $length && $num < $this->max; $i++) { + if (ctype_space($parts[$i])) { + continue; + } + $result = $this->single->validate($parts[$i], $config, $context); + if ($result !== false) { + $final .= $result . ' '; + $num++; + } + } + if ($final === '') { + return false; + } + return rtrim($final); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php new file mode 100644 index 0000000..ef49d20 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php @@ -0,0 +1,90 @@ +non_negative = $non_negative; + } + + /** + * @param string $number + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return string|bool + * @warning Some contexts do not pass $config, $context. These + * variables should not be used without checking HTMLPurifier_Length + */ + public function validate($number, $config, $context) + { + $number = $this->parseCDATA($number); + + if ($number === '') { + return false; + } + if ($number === '0') { + return '0'; + } + + $sign = ''; + switch ($number[0]) { + case '-': + if ($this->non_negative) { + return false; + } + $sign = '-'; + case '+': + $number = substr($number, 1); + } + + if (ctype_digit($number)) { + $number = ltrim($number, '0'); + return $number ? $sign . $number : '0'; + } + + // Period is the only non-numeric character allowed + if (strpos($number, '.') === false) { + return false; + } + + list($left, $right) = explode('.', $number, 2); + + if ($left === '' && $right === '') { + return false; + } + if ($left !== '' && !ctype_digit($left)) { + return false; + } + + // Remove leading zeros until positive number or a zero stays left + if (ltrim($left, '0') != '') { + $left = ltrim($left, '0'); + } else { + $left = '0'; + } + + $right = rtrim($right, '0'); + + if ($right === '') { + return $left ? $sign . $left : '0'; + } elseif (!ctype_digit($right)) { + return false; + } + return $sign . $left . '.' . $right; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php new file mode 100644 index 0000000..f0f25c5 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php @@ -0,0 +1,54 @@ +number_def = new HTMLPurifier_AttrDef_CSS_Number($non_negative); + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + $string = $this->parseCDATA($string); + + if ($string === '') { + return false; + } + $length = strlen($string); + if ($length === 1) { + return false; + } + if ($string[$length - 1] !== '%') { + return false; + } + + $number = substr($string, 0, $length - 1); + $number = $this->number_def->validate($number, $config, $context); + + if ($number === false) { + return false; + } + return "$number%"; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ratio.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ratio.php new file mode 100644 index 0000000..e08e2c4 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ratio.php @@ -0,0 +1,46 @@ +parseCDATA($ratio); + + $parts = explode('/', $ratio, 2); + $length = count($parts); + + if ($length < 1 || $length > 2) { + return false; + } + + $num = new \HTMLPurifier_AttrDef_CSS_Number(); + + if ($length === 1) { + return $num->validate($parts[0], $config, $context); + } + + $num1 = $num->validate($parts[0], $config, $context); + $num2 = $num->validate($parts[1], $config, $context); + + if ($num1 === false || $num2 === false) { + return false; + } + + return $num1 . '/' . $num2; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php new file mode 100644 index 0000000..5fd4b7f --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php @@ -0,0 +1,46 @@ + true, + 'overline' => true, + 'underline' => true, + ); + + $string = strtolower($this->parseCDATA($string)); + + if ($string === 'none') { + return $string; + } + + $parts = explode(' ', $string); + $final = ''; + foreach ($parts as $part) { + if (isset($allowed_values[$part])) { + $final .= $part . ' '; + } + } + $final = rtrim($final); + if ($final === '') { + return false; + } + return $final; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php new file mode 100644 index 0000000..6617aca --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php @@ -0,0 +1,77 @@ +parseCDATA($uri_string); + if (strpos($uri_string, 'url(') !== 0) { + return false; + } + $uri_string = substr($uri_string, 4); + if (strlen($uri_string) == 0) { + return false; + } + $new_length = strlen($uri_string) - 1; + if ($uri_string[$new_length] != ')') { + return false; + } + $uri = trim(substr($uri_string, 0, $new_length)); + + if (!empty($uri) && ($uri[0] == "'" || $uri[0] == '"')) { + $quote = $uri[0]; + $new_length = strlen($uri) - 1; + if ($uri[$new_length] !== $quote) { + return false; + } + $uri = substr($uri, 1, $new_length - 1); + } + + $uri = $this->expandCSSEscape($uri); + + $result = parent::validate($uri, $config, $context); + + if ($result === false) { + return false; + } + + // extra sanity check; should have been done by URI + $result = str_replace(array('"', "\\", "\n", "\x0c", "\r"), "", $result); + + // suspicious characters are ()'; we're going to percent encode + // them for safety. + $result = str_replace(array('(', ')', "'"), array('%28', '%29', '%27'), $result); + + // there's an extra bug where ampersands lose their escaping on + // an innerHTML cycle, so a very unlucky query parameter could + // then change the meaning of the URL. Unfortunately, there's + // not much we can do about that... + return "url(\"$result\")"; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php new file mode 100644 index 0000000..6698a00 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php @@ -0,0 +1,44 @@ +clone = $clone; + } + + /** + * @param string $v + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($v, $config, $context) + { + return $this->clone->validate($v, $config, $context); + } + + /** + * @param string $string + * @return HTMLPurifier_AttrDef + */ + public function make($string) + { + return clone $this->clone; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php new file mode 100644 index 0000000..8abda7f --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php @@ -0,0 +1,73 @@ +valid_values = array_flip($valid_values); + $this->case_sensitive = $case_sensitive; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + $string = trim($string); + if (!$this->case_sensitive) { + // we may want to do full case-insensitive libraries + $string = ctype_lower($string) ? $string : strtolower($string); + } + $result = isset($this->valid_values[$string]); + + return $result ? $string : false; + } + + /** + * @param string $string In form of comma-delimited list of case-insensitive + * valid values. Example: "foo,bar,baz". Prepend "s:" to make + * case sensitive + * @return HTMLPurifier_AttrDef_Enum + */ + public function make($string) + { + if (strlen($string) > 2 && $string[0] == 's' && $string[1] == ':') { + $string = substr($string, 2); + $sensitive = true; + } else { + $sensitive = false; + } + $values = explode(',', $string); + return new HTMLPurifier_AttrDef_Enum($values, $sensitive); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php new file mode 100644 index 0000000..be3bbc8 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php @@ -0,0 +1,48 @@ +name = $name; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + return $this->name; + } + + /** + * @param string $string Name of attribute + * @return HTMLPurifier_AttrDef_HTML_Bool + */ + public function make($string) + { + return new HTMLPurifier_AttrDef_HTML_Bool($string); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php new file mode 100644 index 0000000..d501348 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php @@ -0,0 +1,48 @@ +getDefinition('HTML')->doctype->name; + if ($name == "XHTML 1.1" || $name == "XHTML 2.0") { + return parent::split($string, $config, $context); + } else { + return preg_split('/\s+/', $string); + } + } + + /** + * @param array $tokens + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + protected function filter($tokens, $config, $context) + { + $allowed = $config->get('Attr.AllowedClasses'); + $forbidden = $config->get('Attr.ForbiddenClasses'); + $ret = array(); + foreach ($tokens as $token) { + if (($allowed === null || isset($allowed[$token])) && + !isset($forbidden[$token]) && + // We need this O(n) check because of PHP's array + // implementation that casts -0 to 0. + !in_array($token, $ret, true) + ) { + $ret[] = $token; + } + } + return $ret; + } +} diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php new file mode 100644 index 0000000..946ebb7 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php @@ -0,0 +1,51 @@ +get('Core.ColorKeywords'); + } + + $string = trim($string); + + if (empty($string)) { + return false; + } + $lower = strtolower($string); + if (isset($colors[$lower])) { + return $colors[$lower]; + } + if ($string[0] === '#') { + $hex = substr($string, 1); + } else { + $hex = $string; + } + + $length = strlen($hex); + if ($length !== 3 && $length !== 6) { + return false; + } + if (!ctype_xdigit($hex)) { + return false; + } + if ($length === 3) { + $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2]; + } + return "#$hex"; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ContentEditable.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ContentEditable.php new file mode 100644 index 0000000..5b03d3e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ContentEditable.php @@ -0,0 +1,16 @@ +get('HTML.Trusted')) { + $allowed = array('', 'true', 'false'); + } + + $enum = new HTMLPurifier_AttrDef_Enum($allowed); + + return $enum->validate($string, $config, $context); + } +} diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php new file mode 100644 index 0000000..d79ba12 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php @@ -0,0 +1,38 @@ +valid_values === false) { + $this->valid_values = $config->get('Attr.AllowedFrameTargets'); + } + return parent::validate($string, $config, $context); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php new file mode 100644 index 0000000..4ba4561 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php @@ -0,0 +1,113 @@ +selector = $selector; + } + + /** + * @param string $id + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($id, $config, $context) + { + if (!$this->selector && !$config->get('Attr.EnableID')) { + return false; + } + + $id = trim($id); // trim it first + + if ($id === '') { + return false; + } + + $prefix = $config->get('Attr.IDPrefix'); + if ($prefix !== '') { + $prefix .= $config->get('Attr.IDPrefixLocal'); + // prevent re-appending the prefix + if (strpos($id, $prefix) !== 0) { + $id = $prefix . $id; + } + } elseif ($config->get('Attr.IDPrefixLocal') !== '') { + trigger_error( + '%Attr.IDPrefixLocal cannot be used unless ' . + '%Attr.IDPrefix is set', + E_USER_WARNING + ); + } + + if (!$this->selector) { + $id_accumulator =& $context->get('IDAccumulator'); + if (isset($id_accumulator->ids[$id])) { + return false; + } + } + + // we purposely avoid using regex, hopefully this is faster + + if ($config->get('Attr.ID.HTML5') === true) { + if (preg_match('/[\t\n\x0b\x0c ]/', $id)) { + return false; + } + } else { + if (ctype_alpha($id)) { + // OK + } else { + if (!ctype_alpha(@$id[0])) { + return false; + } + // primitive style of regexps, I suppose + $trim = trim( + $id, + 'A..Za..z0..9:-._' + ); + if ($trim !== '') { + return false; + } + } + } + + $regexp = $config->get('Attr.IDBlacklistRegexp'); + if ($regexp && preg_match($regexp, $id)) { + return false; + } + + if (!$this->selector) { + $id_accumulator->add($id); + } + + // if no change was made to the ID, return the result + // else, return the new id if stripping whitespace made it + // valid, or return false. + return $id; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php new file mode 100644 index 0000000..1c4006f --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php @@ -0,0 +1,56 @@ + 100) { + return '100%'; + } + return ((string)$points) . '%'; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php new file mode 100644 index 0000000..3decf0c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php @@ -0,0 +1,67 @@ + 'AllowedRel', + 'rev' => 'AllowedRev' + ); + if (!isset($configLookup[$name])) { + throw new Exception('Unrecognized attribute name for link relationship.'); + } + $this->name = $configLookup[$name]; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + $allowed = $config->get('Attr.' . $this->name); + if (empty($allowed)) { + return false; + } + + $string = $this->parseCDATA($string); + $parts = explode(' ', $string); + + // lookup to prevent duplicates + $ret_lookup = array(); + foreach ($parts as $part) { + $part = strtolower(trim($part)); + if (!isset($allowed[$part])) { + continue; + } + $ret_lookup[$part] = true; + } + + if (empty($ret_lookup)) { + return false; + } + $string = implode(' ', array_keys($ret_lookup)); + return $string; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php new file mode 100644 index 0000000..bbb20f2 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php @@ -0,0 +1,60 @@ +split($string, $config, $context); + $tokens = $this->filter($tokens, $config, $context); + if (empty($tokens)) { + return false; + } + return implode(' ', $tokens); + } + + /** + * Splits a space separated list of tokens into its constituent parts. + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + protected function split($string, $config, $context) + { + // OPTIMIZABLE! + // do the preg_match, capture all subpatterns for reformulation + + // we don't support U+00A1 and up codepoints or + // escaping because I don't know how to do that with regexps + // and plus it would complicate optimization efforts (you never + // see that anyway). + $pattern = '/(?:(?<=\s)|\A)' . // look behind for space or string start + '((?:--|-?[A-Za-z_])[A-Za-z_\-0-9]*)' . + '(?:(?=\s)|\z)/'; // look ahead for space or string end + preg_match_all($pattern, $string, $matches); + return $matches[1]; + } + + /** + * Template method for removing certain tokens based on arbitrary criteria. + * @note If we wanted to be really functional, we'd do an array_filter + * with a callback. But... we're not. + * @param array $tokens + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + protected function filter($tokens, $config, $context) + { + return $tokens; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php new file mode 100644 index 0000000..a1d019e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php @@ -0,0 +1,76 @@ +max = $max; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + $string = trim($string); + if ($string === '0') { + return $string; + } + if ($string === '') { + return false; + } + $length = strlen($string); + if (substr($string, $length - 2) == 'px') { + $string = substr($string, 0, $length - 2); + } + if (!is_numeric($string)) { + return false; + } + $int = (int)$string; + + if ($int < 0) { + return '0'; + } + + // upper-bound value, extremely high values can + // crash operating systems, see + // WARNING, above link WILL crash you if you're using Windows + + if ($this->max !== null && $int > $this->max) { + return (string)$this->max; + } + return (string)$int; + } + + /** + * @param string $string + * @return HTMLPurifier_AttrDef + */ + public function make($string) + { + if ($string === '') { + $max = null; + } else { + $max = (int)$string; + } + $class = get_class($this); + return new $class($max); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php new file mode 100644 index 0000000..400e707 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php @@ -0,0 +1,91 @@ +negative = $negative; + $this->zero = $zero; + $this->positive = $positive; + } + + /** + * @param string $integer + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($integer, $config, $context) + { + $integer = $this->parseCDATA($integer); + if ($integer === '') { + return false; + } + + // we could possibly simply typecast it to integer, but there are + // certain fringe cases that must not return an integer. + + // clip leading sign + if ($this->negative && $integer[0] === '-') { + $digits = substr($integer, 1); + if ($digits === '0') { + $integer = '0'; + } // rm minus sign for zero + } elseif ($this->positive && $integer[0] === '+') { + $digits = $integer = substr($integer, 1); // rm unnecessary plus + } else { + $digits = $integer; + } + + // test if it's numeric + if (!ctype_digit($digits)) { + return false; + } + + // perform scope tests + if (!$this->zero && $integer == 0) { + return false; + } + if (!$this->positive && $integer > 0) { + return false; + } + if (!$this->negative && $integer < 0) { + return false; + } + + return $integer; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php new file mode 100644 index 0000000..2a55cea --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php @@ -0,0 +1,86 @@ + 8 || !ctype_alnum($subtags[1])) { + return $new_string; + } + if (!ctype_lower($subtags[1])) { + $subtags[1] = strtolower($subtags[1]); + } + + $new_string .= '-' . $subtags[1]; + if ($num_subtags == 2) { + return $new_string; + } + + // process all other subtags, index 2 and up + for ($i = 2; $i < $num_subtags; $i++) { + $length = strlen($subtags[$i]); + if ($length == 0 || $length > 8 || !ctype_alnum($subtags[$i])) { + return $new_string; + } + if (!ctype_lower($subtags[$i])) { + $subtags[$i] = strtolower($subtags[$i]); + } + $new_string .= '-' . $subtags[$i]; + } + return $new_string; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Switch.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Switch.php new file mode 100644 index 0000000..c7eb319 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Switch.php @@ -0,0 +1,53 @@ +tag = $tag; + $this->withTag = $with_tag; + $this->withoutTag = $without_tag; + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + $token = $context->get('CurrentToken', true); + if (!$token || $token->name !== $this->tag) { + return $this->withoutTag->validate($string, $config, $context); + } else { + return $this->withTag->validate($string, $config, $context); + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php new file mode 100644 index 0000000..4553a4e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php @@ -0,0 +1,21 @@ +parseCDATA($string); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php new file mode 100644 index 0000000..c1cd897 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php @@ -0,0 +1,111 @@ +parser = new HTMLPurifier_URIParser(); + $this->embedsResource = (bool)$embeds_resource; + } + + /** + * @param string $string + * @return HTMLPurifier_AttrDef_URI + */ + public function make($string) + { + $embeds = ($string === 'embedded'); + return new HTMLPurifier_AttrDef_URI($embeds); + } + + /** + * @param string $uri + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($uri, $config, $context) + { + if ($config->get('URI.Disable')) { + return false; + } + + $uri = $this->parseCDATA($uri); + + // parse the URI + $uri = $this->parser->parse($uri); + if ($uri === false) { + return false; + } + + // add embedded flag to context for validators + $context->register('EmbeddedURI', $this->embedsResource); + + $ok = false; + do { + + // generic validation + $result = $uri->validate($config, $context); + if (!$result) { + break; + } + + // chained filtering + $uri_def = $config->getDefinition('URI'); + $result = $uri_def->filter($uri, $config, $context); + if (!$result) { + break; + } + + // scheme-specific validation + $scheme_obj = $uri->getSchemeObj($config, $context); + if (!$scheme_obj) { + break; + } + if ($this->embedsResource && !$scheme_obj->browsable) { + break; + } + $result = $scheme_obj->validate($uri, $config, $context); + if (!$result) { + break; + } + + // Post chained filtering + $result = $uri_def->postFilter($uri, $config, $context); + if (!$result) { + break; + } + + // survived gauntlet + $ok = true; + + } while (false); + + $context->destroy('EmbeddedURI'); + if (!$ok) { + return false; + } + // back to string + return $uri->toString(); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php new file mode 100644 index 0000000..daf32b7 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php @@ -0,0 +1,20 @@ +" + // that needs more percent encoding to be done + if ($string == '') { + return false; + } + $string = trim($string); + $result = preg_match('/^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i', $string); + return $result ? $string : false; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php new file mode 100644 index 0000000..17a97c1 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php @@ -0,0 +1,136 @@ +ipv4 = new HTMLPurifier_AttrDef_URI_IPv4(); + $this->ipv6 = new HTMLPurifier_AttrDef_URI_IPv6(); + } + + /** + * @param string $string + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool|string + */ + public function validate($string, $config, $context) + { + $length = strlen($string); + // empty hostname is OK; it's usually semantically equivalent: + // the default host as defined by a URI scheme is used: + // + // If the URI scheme defines a default for host, then that + // default applies when the host subcomponent is undefined + // or when the registered name is empty (zero length). + if ($string === '') { + return ''; + } + if ($length > 1 && $string[0] === '[' && $string[$length - 1] === ']') { + //IPv6 + $ip = substr($string, 1, $length - 2); + $valid = $this->ipv6->validate($ip, $config, $context); + if ($valid === false) { + return false; + } + return '[' . $valid . ']'; + } + + // need to do checks on unusual encodings too + $ipv4 = $this->ipv4->validate($string, $config, $context); + if ($ipv4 !== false) { + return $ipv4; + } + + // A regular domain name. + + // This doesn't match I18N domain names, but we don't have proper IRI support, + // so force users to insert Punycode. + + // Underscores defined as Unreserved Characters in RFC 3986 are + // allowed in a URI. There are cases where we want to consider a + // URI containing "_" such as "_dmarc.example.com". + // Underscores are not allowed in the default. If you want to + // allow it, set Core.AllowHostnameUnderscore to true. + $underscore = $config->get('Core.AllowHostnameUnderscore') ? '_' : ''; + + // Based off of RFC 1738, but amended so that + // as per RFC 3696, the top label need only not be all numeric. + // The productions describing this are: + $a = '[a-z]'; // alpha + $an = "[a-z0-9$underscore]"; // alphanum + $and = "[a-z0-9-$underscore]"; // alphanum | "-" + // domainlabel = alphanum | alphanum *( alphanum | "-" ) alphanum + $domainlabel = "$an(?:$and*$an)?"; + // AMENDED as per RFC 3696 + // toplabel = alphanum | alphanum *( alphanum | "-" ) alphanum + // side condition: not all numeric + $toplabel = "$an(?:$and*$an)?"; + // hostname = *( domainlabel "." ) toplabel [ "." ] + if (preg_match("/^(?:$domainlabel\.)*($toplabel)\.?$/i", $string, $matches)) { + if (!ctype_digit($matches[1])) { + return $string; + } + } + + // PHP 5.3 and later support this functionality natively + if (function_exists('idn_to_ascii')) { + if (defined('IDNA_NONTRANSITIONAL_TO_ASCII') && defined('INTL_IDNA_VARIANT_UTS46')) { + $string = idn_to_ascii($string, IDNA_NONTRANSITIONAL_TO_ASCII, INTL_IDNA_VARIANT_UTS46); + } else { + $string = idn_to_ascii($string); + } + + // If we have Net_IDNA2 support, we can support IRIs by + // punycoding them. (This is the most portable thing to do, + // since otherwise we have to assume browsers support + } elseif ($config->get('Core.EnableIDNA') && class_exists('Net_IDNA2')) { + $idna = new Net_IDNA2(array('encoding' => 'utf8', 'overlong' => false, 'strict' => true)); + // we need to encode each period separately + $parts = explode('.', $string); + try { + $new_parts = array(); + foreach ($parts as $part) { + $encodable = false; + for ($i = 0, $c = strlen($part); $i < $c; $i++) { + if (ord($part[$i]) > 0x7a) { + $encodable = true; + break; + } + } + if (!$encodable) { + $new_parts[] = $part; + } else { + $new_parts[] = $idna->encode($part); + } + } + $string = implode('.', $new_parts); + } catch (Exception $e) { + // XXX error reporting + } + } + // Try again + if (preg_match("/^($domainlabel\.)*$toplabel\.?$/i", $string)) { + return $string; + } + return false; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php new file mode 100644 index 0000000..30ac16c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php @@ -0,0 +1,45 @@ +ip4) { + $this->_loadRegex(); + } + + if (preg_match('#^' . $this->ip4 . '$#s', $aIP)) { + return $aIP; + } + return false; + } + + /** + * Lazy load function to prevent regex from being stuffed in + * cache. + */ + protected function _loadRegex() + { + $oct = '(?:25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])'; // 0-255 + $this->ip4 = "(?:{$oct}\\.{$oct}\\.{$oct}\\.{$oct})"; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php new file mode 100644 index 0000000..dc4ef62 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php @@ -0,0 +1,89 @@ +ip4) { + $this->_loadRegex(); + } + + $original = $aIP; + + $hex = '[0-9a-fA-F]'; + $blk = '(?:' . $hex . '{1,4})'; + $pre = '(?:/(?:12[0-8]|1[0-1][0-9]|[1-9][0-9]|[0-9]))'; // /0 - /128 + + // prefix check + if (strpos($aIP, '/') !== false) { + if (preg_match('#' . $pre . '$#s', $aIP, $find)) { + $aIP = substr($aIP, 0, 0 - strlen($find[0])); + unset($find); + } else { + return false; + } + } + + // IPv4-compatibility check + if (preg_match('#(?<=:' . ')' . $this->ip4 . '$#s', $aIP, $find)) { + $aIP = substr($aIP, 0, 0 - strlen($find[0])); + $ip = explode('.', $find[0]); + $ip = array_map('dechex', $ip); + $aIP .= $ip[0] . $ip[1] . ':' . $ip[2] . $ip[3]; + unset($find, $ip); + } + + // compression check + $aIP = explode('::', $aIP); + $c = count($aIP); + if ($c > 2) { + return false; + } elseif ($c == 2) { + list($first, $second) = $aIP; + $first = explode(':', $first); + $second = explode(':', $second); + + if (count($first) + count($second) > 8) { + return false; + } + + while (count($first) < 8) { + array_push($first, '0'); + } + + array_splice($first, 8 - count($second), 8, $second); + $aIP = $first; + unset($first, $second); + } else { + $aIP = explode(':', $aIP[0]); + } + $c = count($aIP); + + if ($c != 8) { + return false; + } + + // All the pieces should be 16-bit hex strings. Are they? + foreach ($aIP as $piece) { + if (!preg_match('#^[0-9a-fA-F]{4}$#s', sprintf('%04s', $piece))) { + return false; + } + } + return $original; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform.php new file mode 100644 index 0000000..b428331 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform.php @@ -0,0 +1,60 @@ +confiscateAttr($attr, 'background'); + // some validation should happen here + + $this->prependCSS($attr, "background-image:url($background);"); + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BdoDir.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BdoDir.php new file mode 100644 index 0000000..d769c6f --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BdoDir.php @@ -0,0 +1,27 @@ +get('Attr.DefaultTextDir'); + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BgColor.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BgColor.php new file mode 100644 index 0000000..0f51fd2 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BgColor.php @@ -0,0 +1,28 @@ +confiscateAttr($attr, 'bgcolor'); + // some validation should happen here + + $this->prependCSS($attr, "background-color:$bgcolor;"); + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BoolToCSS.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BoolToCSS.php new file mode 100644 index 0000000..f25cd01 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/BoolToCSS.php @@ -0,0 +1,47 @@ +attr = $attr; + $this->css = $css; + } + + /** + * @param array $attr + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function transform($attr, $config, $context) + { + if (!isset($attr[$this->attr])) { + return $attr; + } + unset($attr[$this->attr]); + $this->prependCSS($attr, $this->css); + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Border.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Border.php new file mode 100644 index 0000000..057dc01 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Border.php @@ -0,0 +1,26 @@ +confiscateAttr($attr, 'border'); + // some validation should happen here + $this->prependCSS($attr, "border:{$border_width}px solid;"); + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/EnumToCSS.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/EnumToCSS.php new file mode 100644 index 0000000..7ccd0e3 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/EnumToCSS.php @@ -0,0 +1,68 @@ +attr = $attr; + $this->enumToCSS = $enum_to_css; + $this->caseSensitive = (bool)$case_sensitive; + } + + /** + * @param array $attr + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function transform($attr, $config, $context) + { + if (!isset($attr[$this->attr])) { + return $attr; + } + + $value = trim($attr[$this->attr]); + unset($attr[$this->attr]); + + if (!$this->caseSensitive) { + $value = strtolower($value); + } + + if (!isset($this->enumToCSS[$value])) { + return $attr; + } + $this->prependCSS($attr, $this->enumToCSS[$value]); + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgRequired.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgRequired.php new file mode 100644 index 0000000..235ebb3 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgRequired.php @@ -0,0 +1,47 @@ +get('Core.RemoveInvalidImg')) { + return $attr; + } + $attr['src'] = $config->get('Attr.DefaultInvalidImage'); + $src = false; + } + + if (!isset($attr['alt'])) { + if ($src) { + $alt = $config->get('Attr.DefaultImageAlt'); + if ($alt === null) { + $attr['alt'] = basename($attr['src']); + } else { + $attr['alt'] = $alt; + } + } else { + $attr['alt'] = $config->get('Attr.DefaultInvalidImageAlt'); + } + } + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgSpace.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgSpace.php new file mode 100644 index 0000000..350b335 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgSpace.php @@ -0,0 +1,61 @@ + array('left', 'right'), + 'vspace' => array('top', 'bottom') + ); + + /** + * @param string $attr + */ + public function __construct($attr) + { + $this->attr = $attr; + if (!isset($this->css[$attr])) { + trigger_error(htmlspecialchars($attr) . ' is not valid space attribute'); + } + } + + /** + * @param array $attr + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function transform($attr, $config, $context) + { + if (!isset($attr[$this->attr])) { + return $attr; + } + + $width = $this->confiscateAttr($attr, $this->attr); + // some validation could happen here + + if (!isset($this->css[$this->attr])) { + return $attr; + } + + $style = ''; + foreach ($this->css[$this->attr] as $suffix) { + $property = "margin-$suffix"; + $style .= "$property:{$width}px;"; + } + $this->prependCSS($attr, $style); + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Input.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Input.php new file mode 100644 index 0000000..3ab47ed --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Input.php @@ -0,0 +1,56 @@ +pixels = new HTMLPurifier_AttrDef_HTML_Pixels(); + } + + /** + * @param array $attr + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function transform($attr, $config, $context) + { + if (!isset($attr['type'])) { + $t = 'text'; + } else { + $t = strtolower($attr['type']); + } + if (isset($attr['checked']) && $t !== 'radio' && $t !== 'checkbox') { + unset($attr['checked']); + } + if (isset($attr['maxlength']) && $t !== 'text' && $t !== 'password') { + unset($attr['maxlength']); + } + if (isset($attr['size']) && $t !== 'text' && $t !== 'password') { + $result = $this->pixels->validate($attr['size'], $config, $context); + if ($result === false) { + unset($attr['size']); + } else { + $attr['size'] = $result; + } + } + if (isset($attr['src']) && $t !== 'image') { + unset($attr['src']); + } + if (!isset($attr['value']) && ($t === 'radio' || $t === 'checkbox')) { + $attr['value'] = ''; + } + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Lang.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Lang.php new file mode 100644 index 0000000..5b0aff0 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Lang.php @@ -0,0 +1,31 @@ +name = $name; + $this->cssName = $css_name ? $css_name : $name; + } + + /** + * @param array $attr + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function transform($attr, $config, $context) + { + if (!isset($attr[$this->name])) { + return $attr; + } + $length = $this->confiscateAttr($attr, $this->name); + if (ctype_digit($length)) { + $length .= 'px'; + } + $this->prependCSS($attr, $this->cssName . ":$length;"); + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Name.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Name.php new file mode 100644 index 0000000..63cce68 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Name.php @@ -0,0 +1,33 @@ +get('HTML.Attr.Name.UseCDATA')) { + return $attr; + } + if (!isset($attr['name'])) { + return $attr; + } + $id = $this->confiscateAttr($attr, 'name'); + if (isset($attr['id'])) { + return $attr; + } + $attr['id'] = $id; + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/NameSync.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/NameSync.php new file mode 100644 index 0000000..5a1fdbb --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/NameSync.php @@ -0,0 +1,46 @@ +idDef = new HTMLPurifier_AttrDef_HTML_ID(); + } + + /** + * @param array $attr + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function transform($attr, $config, $context) + { + if (!isset($attr['name'])) { + return $attr; + } + $name = $attr['name']; + if (isset($attr['id']) && $attr['id'] === $name) { + return $attr; + } + $result = $this->idDef->validate($name, $config, $context); + if ($result === false) { + unset($attr['name']); + } else { + $attr['name'] = $result; + } + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Nofollow.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Nofollow.php new file mode 100644 index 0000000..1057ebe --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/Nofollow.php @@ -0,0 +1,52 @@ +parser = new HTMLPurifier_URIParser(); + } + + /** + * @param array $attr + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function transform($attr, $config, $context) + { + if (!isset($attr['href'])) { + return $attr; + } + + // XXX Kind of inefficient + $url = $this->parser->parse($attr['href']); + $scheme = $url->getSchemeObj($config, $context); + + if ($scheme->browsable && !$url->isLocal($config, $context)) { + if (isset($attr['rel'])) { + $rels = explode(' ', $attr['rel']); + if (!in_array('nofollow', $rels)) { + $rels[] = 'nofollow'; + } + $attr['rel'] = implode(' ', $rels); + } else { + $attr['rel'] = 'nofollow'; + } + } + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeEmbed.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeEmbed.php new file mode 100644 index 0000000..231c81a --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeEmbed.php @@ -0,0 +1,25 @@ +uri = new HTMLPurifier_AttrDef_URI(true); // embedded + $this->wmode = new HTMLPurifier_AttrDef_Enum(array('window', 'opaque', 'transparent')); + } + + /** + * @param array $attr + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function transform($attr, $config, $context) + { + // If we add support for other objects, we'll need to alter the + // transforms. + switch ($attr['name']) { + // application/x-shockwave-flash + // Keep this synchronized with Injector/SafeObject.php + case 'allowScriptAccess': + $attr['value'] = 'never'; + break; + case 'allowNetworking': + $attr['value'] = 'internal'; + break; + case 'allowFullScreen': + if ($config->get('HTML.FlashAllowFullScreen')) { + $attr['value'] = ($attr['value'] == 'true') ? 'true' : 'false'; + } else { + $attr['value'] = 'false'; + } + break; + case 'wmode': + $attr['value'] = $this->wmode->validate($attr['value'], $config, $context); + break; + case 'movie': + case 'src': + $attr['name'] = "movie"; + $attr['value'] = $this->uri->validate($attr['value'], $config, $context); + break; + case 'flashvars': + // we're going to allow arbitrary inputs to the SWF, on + // the reasoning that it could only hack the SWF, not us. + break; + // add other cases to support other param name/value pairs + default: + $attr['name'] = $attr['value'] = null; + } + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ScriptRequired.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ScriptRequired.php new file mode 100644 index 0000000..b7057bb --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/ScriptRequired.php @@ -0,0 +1,23 @@ + + */ +class HTMLPurifier_AttrTransform_ScriptRequired extends HTMLPurifier_AttrTransform +{ + /** + * @param array $attr + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function transform($attr, $config, $context) + { + if (!isset($attr['type'])) { + $attr['type'] = 'text/javascript'; + } + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetBlank.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetBlank.php new file mode 100644 index 0000000..cc30ab8 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetBlank.php @@ -0,0 +1,49 @@ +parser = new HTMLPurifier_URIParser(); + } + + /** + * @param array $attr + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function transform($attr, $config, $context) + { + if (!isset($attr['href'])) { + return $attr; + } + + // XXX Kind of inefficient + $url = $this->parser->parse($attr['href']); + + // Ignore invalid schemes (e.g. `javascript:`) + if (!($scheme = $url->getSchemeObj($config, $context))) { + return $attr; + } + + if ($scheme->browsable && !$url->isBenign($config, $context)) { + $attr['target'] = '_blank'; + } + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetNoopener.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetNoopener.php new file mode 100644 index 0000000..1db3c6c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetNoopener.php @@ -0,0 +1,37 @@ + + */ +class HTMLPurifier_AttrTransform_Textarea extends HTMLPurifier_AttrTransform +{ + /** + * @param array $attr + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function transform($attr, $config, $context) + { + // Calculated from Firefox + if (!isset($attr['cols'])) { + $attr['cols'] = '22'; + } + if (!isset($attr['rows'])) { + $attr['rows'] = '3'; + } + return $attr; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTypes.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTypes.php new file mode 100644 index 0000000..62575ca --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTypes.php @@ -0,0 +1,97 @@ +info['Enum'] = new HTMLPurifier_AttrDef_Enum(); + $this->info['Bool'] = new HTMLPurifier_AttrDef_HTML_Bool(); + + $this->info['CDATA'] = new HTMLPurifier_AttrDef_Text(); + $this->info['ID'] = new HTMLPurifier_AttrDef_HTML_ID(); + $this->info['Length'] = new HTMLPurifier_AttrDef_HTML_Length(); + $this->info['MultiLength'] = new HTMLPurifier_AttrDef_HTML_MultiLength(); + $this->info['NMTOKENS'] = new HTMLPurifier_AttrDef_HTML_Nmtokens(); + $this->info['Pixels'] = new HTMLPurifier_AttrDef_HTML_Pixels(); + $this->info['Text'] = new HTMLPurifier_AttrDef_Text(); + $this->info['URI'] = new HTMLPurifier_AttrDef_URI(); + $this->info['LanguageCode'] = new HTMLPurifier_AttrDef_Lang(); + $this->info['Color'] = new HTMLPurifier_AttrDef_HTML_Color(); + $this->info['IAlign'] = self::makeEnum('top,middle,bottom,left,right'); + $this->info['LAlign'] = self::makeEnum('top,bottom,left,right'); + $this->info['FrameTarget'] = new HTMLPurifier_AttrDef_HTML_FrameTarget(); + $this->info['ContentEditable'] = new HTMLPurifier_AttrDef_HTML_ContentEditable(); + + // unimplemented aliases + $this->info['ContentType'] = new HTMLPurifier_AttrDef_Text(); + $this->info['ContentTypes'] = new HTMLPurifier_AttrDef_Text(); + $this->info['Charsets'] = new HTMLPurifier_AttrDef_Text(); + $this->info['Character'] = new HTMLPurifier_AttrDef_Text(); + + // "proprietary" types + $this->info['Class'] = new HTMLPurifier_AttrDef_HTML_Class(); + + // number is really a positive integer (one or more digits) + // FIXME: ^^ not always, see start and value of list items + $this->info['Number'] = new HTMLPurifier_AttrDef_Integer(false, false, true); + } + + private static function makeEnum($in) + { + return new HTMLPurifier_AttrDef_Clone(new HTMLPurifier_AttrDef_Enum(explode(',', $in))); + } + + /** + * Retrieves a type + * @param string $type String type name + * @return HTMLPurifier_AttrDef Object AttrDef for type + */ + public function get($type) + { + // determine if there is any extra info tacked on + if (strpos($type, '#') !== false) { + list($type, $string) = explode('#', $type, 2); + } else { + $string = ''; + } + + if (!isset($this->info[$type])) { + throw new Exception('Cannot retrieve undefined attribute type ' . $type); + return; + } + return $this->info[$type]->make($string); + } + + /** + * Sets a new implementation for a type + * @param string $type String type name + * @param HTMLPurifier_AttrDef $impl Object AttrDef for type + */ + public function set($type, $impl) + { + $this->info[$type] = $impl; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrValidator.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrValidator.php new file mode 100644 index 0000000..350330b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrValidator.php @@ -0,0 +1,178 @@ +getHTMLDefinition(); + $e =& $context->get('ErrorCollector', true); + + // initialize IDAccumulator if necessary + $ok =& $context->get('IDAccumulator', true); + if (!$ok) { + $id_accumulator = HTMLPurifier_IDAccumulator::build($config, $context); + $context->register('IDAccumulator', $id_accumulator); + } + + // initialize CurrentToken if necessary + $current_token =& $context->get('CurrentToken', true); + if (!$current_token) { + $context->register('CurrentToken', $token); + } + + if (!$token instanceof HTMLPurifier_Token_Start && + !$token instanceof HTMLPurifier_Token_Empty + ) { + return; + } + + // create alias to global definition array, see also $defs + // DEFINITION CALL + $d_defs = $definition->info_global_attr; + + // don't update token until the very end, to ensure an atomic update + $attr = $token->attr; + + // do global transformations (pre) + // nothing currently utilizes this + foreach ($definition->info_attr_transform_pre as $transform) { + $attr = $transform->transform($o = $attr, $config, $context); + if ($e) { + if ($attr != $o) { + $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr); + } + } + } + + // do local transformations only applicable to this element (pre) + // ex.

to

+ foreach ($definition->info[$token->name]->attr_transform_pre as $transform) { + $attr = $transform->transform($o = $attr, $config, $context); + if ($e) { + if ($attr != $o) { + $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr); + } + } + } + + // create alias to this element's attribute definition array, see + // also $d_defs (global attribute definition array) + // DEFINITION CALL + $defs = $definition->info[$token->name]->attr; + + $attr_key = false; + $context->register('CurrentAttr', $attr_key); + + // iterate through all the attribute keypairs + // Watch out for name collisions: $key has previously been used + foreach ($attr as $attr_key => $value) { + + // call the definition + if (isset($defs[$attr_key])) { + // there is a local definition defined + if ($defs[$attr_key] === false) { + // We've explicitly been told not to allow this element. + // This is usually when there's a global definition + // that must be overridden. + // Theoretically speaking, we could have a + // AttrDef_DenyAll, but this is faster! + $result = false; + } else { + // validate according to the element's definition + $result = $defs[$attr_key]->validate( + $value, + $config, + $context + ); + } + } elseif (isset($d_defs[$attr_key])) { + // there is a global definition defined, validate according + // to the global definition + $result = $d_defs[$attr_key]->validate( + $value, + $config, + $context + ); + } else { + // system never heard of the attribute? DELETE! + $result = false; + } + + // put the results into effect + if ($result === false || $result === null) { + // this is a generic error message that should replaced + // with more specific ones when possible + if ($e) { + $e->send(E_ERROR, 'AttrValidator: Attribute removed'); + } + + // remove the attribute + unset($attr[$attr_key]); + } elseif (is_string($result)) { + // generally, if a substitution is happening, there + // was some sort of implicit correction going on. We'll + // delegate it to the attribute classes to say exactly what. + + // simple substitution + $attr[$attr_key] = $result; + } else { + // nothing happens + } + + // we'd also want slightly more complicated substitution + // involving an array as the return value, + // although we're not sure how colliding attributes would + // resolve (certain ones would be completely overridden, + // others would prepend themselves). + } + + $context->destroy('CurrentAttr'); + + // post transforms + + // global (error reporting untested) + foreach ($definition->info_attr_transform_post as $transform) { + $attr = $transform->transform($o = $attr, $config, $context); + if ($e) { + if ($attr != $o) { + $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr); + } + } + } + + // local (error reporting untested) + foreach ($definition->info[$token->name]->attr_transform_post as $transform) { + $attr = $transform->transform($o = $attr, $config, $context); + if ($e) { + if ($attr != $o) { + $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr); + } + } + } + + $token->attr = $attr; + + // destroy CurrentToken if we made it ourselves + if (!$current_token) { + $context->destroy('CurrentToken'); + } + + } + + +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Bootstrap.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Bootstrap.php new file mode 100644 index 0000000..8805ecc --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Bootstrap.php @@ -0,0 +1,91 @@ + +if (!defined('PHP_EOL')) { + switch (strtoupper(substr(PHP_OS, 0, 3))) { + case 'WIN': + define('PHP_EOL', "\r\n"); + break; + case 'DAR': + define('PHP_EOL', "\r"); + break; + default: + define('PHP_EOL', "\n"); + } +} + +/** + * Bootstrap class that contains meta-functionality for HTML Purifier such as + * the autoload function. + * + * @note + * This class may be used without any other files from HTML Purifier. + */ +class HTMLPurifier_Bootstrap +{ + + /** + * Autoload function for HTML Purifier + * @param string $class Class to load + * @return bool + */ + public static function autoload($class) + { + $file = HTMLPurifier_Bootstrap::getPath($class); + if (!$file) { + return false; + } + // Technically speaking, it should be ok and more efficient to + // just do 'require', but Antonio Parraga reports that with + // Zend extensions such as Zend debugger and APC, this invariant + // may be broken. Since we have efficient alternatives, pay + // the cost here and avoid the bug. + require_once HTMLPURIFIER_PREFIX . '/' . $file; + return true; + } + + /** + * Returns the path for a specific class. + * @param string $class Class path to get + * @return string + */ + public static function getPath($class) + { + if (strncmp('HTMLPurifier', $class, 12) !== 0) { + return false; + } + // Custom implementations + if (strncmp('HTMLPurifier_Language_', $class, 22) === 0) { + $code = str_replace('_', '-', substr($class, 22)); + $file = 'HTMLPurifier/Language/classes/' . $code . '.php'; + } else { + $file = str_replace('_', '/', $class) . '.php'; + } + if (!file_exists(HTMLPURIFIER_PREFIX . '/' . $file)) { + return false; + } + return $file; + } + + /** + * "Pre-registers" our autoloader on the SPL stack. + */ + public static function registerAutoload() + { + $autoload = array('HTMLPurifier_Bootstrap', 'autoload'); + if (spl_autoload_functions() === false) { + spl_autoload_register($autoload); + } else { + // prepend flag exists, no need for shenanigans + spl_autoload_register($autoload, true, true); + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php new file mode 100644 index 0000000..923d6f3 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php @@ -0,0 +1,570 @@ +info['text-align'] = new HTMLPurifier_AttrDef_Enum( + ['left', 'right', 'center', 'justify'], + false + ); + + $this->info['direction'] = new HTMLPurifier_AttrDef_Enum( + ['ltr', 'rtl'], + false + ); + + $border_style = + $this->info['border-bottom-style'] = + $this->info['border-right-style'] = + $this->info['border-left-style'] = + $this->info['border-top-style'] = new HTMLPurifier_AttrDef_Enum( + [ + 'none', + 'hidden', + 'dotted', + 'dashed', + 'solid', + 'double', + 'groove', + 'ridge', + 'inset', + 'outset' + ], + false + ); + + $this->info['border-style'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_style); + + $this->info['clear'] = new HTMLPurifier_AttrDef_Enum( + ['none', 'left', 'right', 'both'], + false + ); + $this->info['float'] = new HTMLPurifier_AttrDef_Enum( + ['none', 'left', 'right'], + false + ); + $this->info['font-style'] = new HTMLPurifier_AttrDef_Enum( + ['normal', 'italic', 'oblique'], + false + ); + $this->info['font-variant'] = new HTMLPurifier_AttrDef_Enum( + ['normal', 'small-caps'], + false + ); + + $uri_or_none = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_Enum(['none']), + new HTMLPurifier_AttrDef_CSS_URI() + ] + ); + + $this->info['list-style-position'] = new HTMLPurifier_AttrDef_Enum( + ['inside', 'outside'], + false + ); + $this->info['list-style-type'] = new HTMLPurifier_AttrDef_Enum( + [ + 'disc', + 'circle', + 'square', + 'decimal', + 'lower-roman', + 'upper-roman', + 'lower-alpha', + 'upper-alpha', + 'none' + ], + false + ); + $this->info['list-style-image'] = $uri_or_none; + + $this->info['list-style'] = new HTMLPurifier_AttrDef_CSS_ListStyle($config); + + $this->info['text-transform'] = new HTMLPurifier_AttrDef_Enum( + ['capitalize', 'uppercase', 'lowercase', 'none'], + false + ); + $this->info['color'] = new HTMLPurifier_AttrDef_CSS_Color(); + + $this->info['background-image'] = $uri_or_none; + $this->info['background-repeat'] = new HTMLPurifier_AttrDef_Enum( + ['repeat', 'repeat-x', 'repeat-y', 'no-repeat'] + ); + $this->info['background-attachment'] = new HTMLPurifier_AttrDef_Enum( + ['scroll', 'fixed'] + ); + $this->info['background-position'] = new HTMLPurifier_AttrDef_CSS_BackgroundPosition(); + + $this->info['background-size'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_Enum( + [ + 'auto', + 'cover', + 'contain', + ] + ), + new HTMLPurifier_AttrDef_CSS_Percentage(), + new HTMLPurifier_AttrDef_CSS_Length() + ] + ); + + $border_color = + $this->info['border-top-color'] = + $this->info['border-bottom-color'] = + $this->info['border-left-color'] = + $this->info['border-right-color'] = + $this->info['background-color'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_Enum(['transparent']), + new HTMLPurifier_AttrDef_CSS_Color() + ] + ); + + $this->info['background'] = new HTMLPurifier_AttrDef_CSS_Background($config); + + $this->info['border-color'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_color); + + $border_width = + $this->info['border-top-width'] = + $this->info['border-bottom-width'] = + $this->info['border-left-width'] = + $this->info['border-right-width'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_Enum(['thin', 'medium', 'thick']), + new HTMLPurifier_AttrDef_CSS_Length('0') //disallow negative + ] + ); + + $this->info['border-width'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_width); + + $this->info['letter-spacing'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_Enum(['normal']), + new HTMLPurifier_AttrDef_CSS_Length() + ] + ); + + $this->info['word-spacing'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_Enum(['normal']), + new HTMLPurifier_AttrDef_CSS_Length() + ] + ); + + $this->info['font-size'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_Enum( + [ + 'xx-small', + 'x-small', + 'small', + 'medium', + 'large', + 'x-large', + 'xx-large', + 'larger', + 'smaller' + ] + ), + new HTMLPurifier_AttrDef_CSS_Percentage(), + new HTMLPurifier_AttrDef_CSS_Length() + ] + ); + + $this->info['line-height'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_Enum(['normal']), + new HTMLPurifier_AttrDef_CSS_Number(true), // no negatives + new HTMLPurifier_AttrDef_CSS_Length('0'), + new HTMLPurifier_AttrDef_CSS_Percentage(true) + ] + ); + + $margin = + $this->info['margin-top'] = + $this->info['margin-bottom'] = + $this->info['margin-left'] = + $this->info['margin-right'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_CSS_Length(), + new HTMLPurifier_AttrDef_CSS_Percentage(), + new HTMLPurifier_AttrDef_Enum(['auto']) + ] + ); + + $this->info['margin'] = new HTMLPurifier_AttrDef_CSS_Multiple($margin); + + // non-negative + $padding = + $this->info['padding-top'] = + $this->info['padding-bottom'] = + $this->info['padding-left'] = + $this->info['padding-right'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_CSS_Length('0'), + new HTMLPurifier_AttrDef_CSS_Percentage(true) + ] + ); + + $this->info['padding'] = new HTMLPurifier_AttrDef_CSS_Multiple($padding); + + $this->info['text-indent'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_CSS_Length(), + new HTMLPurifier_AttrDef_CSS_Percentage() + ] + ); + + $trusted_wh = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_CSS_Length('0'), + new HTMLPurifier_AttrDef_CSS_Percentage(true), + new HTMLPurifier_AttrDef_Enum(['auto']) + ] + ); + $trusted_min_wh = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_CSS_Length('0'), + new HTMLPurifier_AttrDef_CSS_Percentage(true), + ] + ); + $trusted_max_wh = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_CSS_Length('0'), + new HTMLPurifier_AttrDef_CSS_Percentage(true), + new HTMLPurifier_AttrDef_Enum(['none']) + ] + ); + $max = $config->get('CSS.MaxImgLength'); + + $this->info['width'] = + $this->info['height'] = + $max === null ? + $trusted_wh : + new HTMLPurifier_AttrDef_Switch( + 'img', + // For img tags: + new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_CSS_Length('0', $max), + new HTMLPurifier_AttrDef_Enum(['auto']) + ] + ), + // For everyone else: + $trusted_wh + ); + $this->info['min-width'] = + $this->info['min-height'] = + $max === null ? + $trusted_min_wh : + new HTMLPurifier_AttrDef_Switch( + 'img', + // For img tags: + new HTMLPurifier_AttrDef_CSS_Length('0', $max), + // For everyone else: + $trusted_min_wh + ); + $this->info['max-width'] = + $this->info['max-height'] = + $max === null ? + $trusted_max_wh : + new HTMLPurifier_AttrDef_Switch( + 'img', + // For img tags: + new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_CSS_Length('0', $max), + new HTMLPurifier_AttrDef_Enum(['none']) + ] + ), + // For everyone else: + $trusted_max_wh + ); + + $this->info['aspect-ratio'] = new HTMLPurifier_AttrDef_CSS_Multiple( + new HTMLPurifier_AttrDef_CSS_Composite([ + new HTMLPurifier_AttrDef_CSS_Ratio(), + new HTMLPurifier_AttrDef_Enum(['auto']), + ]) + ); + + // text-decoration and related shorthands + $this->info['text-decoration'] = new HTMLPurifier_AttrDef_CSS_TextDecoration(); + + $this->info['text-decoration-line'] = new HTMLPurifier_AttrDef_Enum( + ['none', 'underline', 'overline', 'line-through'] + ); + + $this->info['text-decoration-style'] = new HTMLPurifier_AttrDef_Enum( + ['solid', 'double', 'dotted', 'dashed', 'wavy'] + ); + + $this->info['text-decoration-color'] = new HTMLPurifier_AttrDef_CSS_Color(); + + $this->info['text-decoration-thickness'] = new HTMLPurifier_AttrDef_CSS_Composite([ + new HTMLPurifier_AttrDef_CSS_Length(), + new HTMLPurifier_AttrDef_CSS_Percentage(), + new HTMLPurifier_AttrDef_Enum(['auto', 'from-font']) + ]); + + $this->info['font-family'] = new HTMLPurifier_AttrDef_CSS_FontFamily(); + + // this could use specialized code + $this->info['font-weight'] = new HTMLPurifier_AttrDef_Enum( + [ + 'normal', + 'bold', + 'bolder', + 'lighter', + '100', + '200', + '300', + '400', + '500', + '600', + '700', + '800', + '900' + ], + false + ); + + // MUST be called after other font properties, as it references + // a CSSDefinition object + $this->info['font'] = new HTMLPurifier_AttrDef_CSS_Font($config); + + // same here + $this->info['border'] = + $this->info['border-bottom'] = + $this->info['border-top'] = + $this->info['border-left'] = + $this->info['border-right'] = new HTMLPurifier_AttrDef_CSS_Border($config); + + $this->info['border-collapse'] = new HTMLPurifier_AttrDef_Enum( + ['collapse', 'separate'] + ); + + $this->info['caption-side'] = new HTMLPurifier_AttrDef_Enum( + ['top', 'bottom'] + ); + + $this->info['table-layout'] = new HTMLPurifier_AttrDef_Enum( + ['auto', 'fixed'] + ); + + $this->info['vertical-align'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_Enum( + [ + 'baseline', + 'sub', + 'super', + 'top', + 'text-top', + 'middle', + 'bottom', + 'text-bottom' + ] + ), + new HTMLPurifier_AttrDef_CSS_Length(), + new HTMLPurifier_AttrDef_CSS_Percentage() + ] + ); + + $this->info['border-spacing'] = new HTMLPurifier_AttrDef_CSS_Multiple(new HTMLPurifier_AttrDef_CSS_Length(), 2); + + // These CSS properties don't work on many browsers, but we live + // in THE FUTURE! + $this->info['white-space'] = new HTMLPurifier_AttrDef_Enum( + ['nowrap', 'normal', 'pre', 'pre-wrap', 'pre-line'] + ); + + if ($config->get('CSS.Proprietary')) { + $this->doSetupProprietary($config); + } + + if ($config->get('CSS.AllowTricky')) { + $this->doSetupTricky($config); + } + + if ($config->get('CSS.Trusted')) { + $this->doSetupTrusted($config); + } + + $allow_important = $config->get('CSS.AllowImportant'); + // wrap all attr-defs with decorator that handles !important + foreach ($this->info as $k => $v) { + $this->info[$k] = new HTMLPurifier_AttrDef_CSS_ImportantDecorator($v, $allow_important); + } + + $this->setupConfigStuff($config); + } + + /** + * @param HTMLPurifier_Config $config + */ + protected function doSetupProprietary($config) + { + // Internet Explorer only scrollbar colors + $this->info['scrollbar-arrow-color'] = new HTMLPurifier_AttrDef_CSS_Color(); + $this->info['scrollbar-base-color'] = new HTMLPurifier_AttrDef_CSS_Color(); + $this->info['scrollbar-darkshadow-color'] = new HTMLPurifier_AttrDef_CSS_Color(); + $this->info['scrollbar-face-color'] = new HTMLPurifier_AttrDef_CSS_Color(); + $this->info['scrollbar-highlight-color'] = new HTMLPurifier_AttrDef_CSS_Color(); + $this->info['scrollbar-shadow-color'] = new HTMLPurifier_AttrDef_CSS_Color(); + + // vendor specific prefixes of opacity + $this->info['-moz-opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue(); + $this->info['-khtml-opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue(); + + // only opacity, for now + $this->info['filter'] = new HTMLPurifier_AttrDef_CSS_Filter(); + + // more CSS3 + $this->info['page-break-after'] = + $this->info['page-break-before'] = new HTMLPurifier_AttrDef_Enum( + [ + 'auto', + 'always', + 'avoid', + 'left', + 'right' + ] + ); + $this->info['page-break-inside'] = new HTMLPurifier_AttrDef_Enum(['auto', 'avoid']); + + $border_radius = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_CSS_Percentage(true), // disallow negative + new HTMLPurifier_AttrDef_CSS_Length('0') // disallow negative + ]); + + $this->info['border-top-left-radius'] = + $this->info['border-top-right-radius'] = + $this->info['border-bottom-right-radius'] = + $this->info['border-bottom-left-radius'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_radius, 2); + // TODO: support SLASH syntax + $this->info['border-radius'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_radius, 4); + + } + + /** + * @param HTMLPurifier_Config $config + */ + protected function doSetupTricky($config) + { + $this->info['display'] = new HTMLPurifier_AttrDef_Enum( + [ + 'inline', + 'block', + 'list-item', + 'run-in', + 'compact', + 'marker', + 'table', + 'inline-block', + 'inline-table', + 'table-row-group', + 'table-header-group', + 'table-footer-group', + 'table-row', + 'table-column-group', + 'table-column', + 'table-cell', + 'table-caption', + 'none' + ] + ); + $this->info['visibility'] = new HTMLPurifier_AttrDef_Enum( + ['visible', 'hidden', 'collapse'] + ); + $this->info['overflow'] = new HTMLPurifier_AttrDef_Enum(['visible', 'hidden', 'auto', 'scroll']); + $this->info['opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue(); + } + + /** + * @param HTMLPurifier_Config $config + */ + protected function doSetupTrusted($config) + { + $this->info['position'] = new HTMLPurifier_AttrDef_Enum( + ['static', 'relative', 'absolute', 'fixed'] + ); + $this->info['top'] = + $this->info['left'] = + $this->info['right'] = + $this->info['bottom'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_CSS_Length(), + new HTMLPurifier_AttrDef_CSS_Percentage(), + new HTMLPurifier_AttrDef_Enum(['auto']), + ] + ); + $this->info['z-index'] = new HTMLPurifier_AttrDef_CSS_Composite( + [ + new HTMLPurifier_AttrDef_Integer(), + new HTMLPurifier_AttrDef_Enum(['auto']), + ] + ); + } + + /** + * Performs extra config-based processing. Based off of + * HTMLPurifier_HTMLDefinition. + * @param HTMLPurifier_Config $config + * @todo Refactor duplicate elements into common class (probably using + * composition, not inheritance). + */ + protected function setupConfigStuff($config) + { + // setup allowed elements + $support = "(for information on implementing this, see the " . + "support forums) "; + $allowed_properties = $config->get('CSS.AllowedProperties'); + if ($allowed_properties !== null) { + foreach ($this->info as $name => $d) { + if (!isset($allowed_properties[$name])) { + unset($this->info[$name]); + } + unset($allowed_properties[$name]); + } + // emit errors + foreach ($allowed_properties as $name => $d) { + // :TODO: Is this htmlspecialchars() call really necessary? + $name = htmlspecialchars($name); + trigger_error("Style attribute '$name' is not supported $support", E_USER_WARNING); + } + } + + $forbidden_properties = $config->get('CSS.ForbiddenProperties'); + if ($forbidden_properties !== null) { + foreach ($this->info as $name => $d) { + if (isset($forbidden_properties[$name])) { + unset($this->info[$name]); + } + } + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef.php new file mode 100644 index 0000000..8eb17b8 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef.php @@ -0,0 +1,52 @@ +elements; + } + + /** + * Validates nodes according to definition and returns modification. + * + * @param HTMLPurifier_Node[] $children Array of HTMLPurifier_Node + * @param HTMLPurifier_Config $config HTMLPurifier_Config object + * @param HTMLPurifier_Context $context HTMLPurifier_Context object + * @return bool|array true to leave nodes as is, false to remove parent node, array of replacement children + */ + abstract public function validateChildren($children, $config, $context); +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php new file mode 100644 index 0000000..7439be2 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php @@ -0,0 +1,67 @@ +inline = new HTMLPurifier_ChildDef_Optional($inline); + $this->block = new HTMLPurifier_ChildDef_Optional($block); + $this->elements = $this->block->elements; + } + + /** + * @param HTMLPurifier_Node[] $children + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool + */ + public function validateChildren($children, $config, $context) + { + if ($context->get('IsInline') === false) { + return $this->block->validateChildren( + $children, + $config, + $context + ); + } else { + return $this->inline->validateChildren( + $children, + $config, + $context + ); + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php new file mode 100644 index 0000000..f515888 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php @@ -0,0 +1,102 @@ +dtd_regex = $dtd_regex; + $this->_compileRegex(); + } + + /** + * Compiles the PCRE regex from a DTD regex ($dtd_regex to $_pcre_regex) + */ + protected function _compileRegex() + { + $raw = str_replace(' ', '', $this->dtd_regex); + if ($raw[0] != '(') { + $raw = "($raw)"; + } + $el = '[#a-zA-Z0-9_.-]+'; + $reg = $raw; + + // COMPLICATED! AND MIGHT BE BUGGY! I HAVE NO CLUE WHAT I'M + // DOING! Seriously: if there's problems, please report them. + + // collect all elements into the $elements array + preg_match_all("/$el/", $reg, $matches); + foreach ($matches[0] as $match) { + $this->elements[$match] = true; + } + + // setup all elements as parentheticals with leading commas + $reg = preg_replace("/$el/", '(,\\0)', $reg); + + // remove commas when they were not solicited + $reg = preg_replace("/([^,(|]\(+),/", '\\1', $reg); + + // remove all non-paranthetical commas: they are handled by first regex + $reg = preg_replace("/,\(/", '(', $reg); + + $this->_pcre_regex = $reg; + } + + /** + * @param HTMLPurifier_Node[] $children + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return bool + */ + public function validateChildren($children, $config, $context) + { + $list_of_children = ''; + $nesting = 0; // depth into the nest + foreach ($children as $node) { + if (!empty($node->is_whitespace)) { + continue; + } + $list_of_children .= $node->name . ','; + } + // add leading comma to deal with stray comma declarations + $list_of_children = ',' . rtrim($list_of_children, ','); + $okay = + preg_match( + '/^,?' . $this->_pcre_regex . '$/', + $list_of_children + ); + return (bool)$okay; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php new file mode 100644 index 0000000..a8a6cbd --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php @@ -0,0 +1,38 @@ + true, 'ul' => true, 'ol' => true); + + public $whitespace; + + /** + * @param array $children + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function validateChildren($children, $config, $context) + { + // Flag for subclasses + $this->whitespace = false; + + // if there are no tokens, delete parent node + if (empty($children)) { + return false; + } + + // if li is not allowed, delete parent node + if (!isset($config->getHTMLDefinition()->info['li'])) { + trigger_error("Cannot allow ul/ol without allowing li", E_USER_WARNING); + return false; + } + + // the new set of children + $result = array(); + + // a little sanity check to make sure it's not ALL whitespace + $all_whitespace = true; + + $current_li = null; + + foreach ($children as $node) { + if (!empty($node->is_whitespace)) { + $result[] = $node; + continue; + } + $all_whitespace = false; // phew, we're not talking about whitespace + + if ($node->name === 'li') { + // good + $current_li = $node; + $result[] = $node; + } else { + // we want to tuck this into the previous li + // Invariant: we expect the node to be ol/ul + // ToDo: Make this more robust in the case of not ol/ul + // by distinguishing between existing li and li created + // to handle non-list elements; non-list elements should + // not be appended to an existing li; only li created + // for non-list. This distinction is not currently made. + if ($current_li === null) { + $current_li = new HTMLPurifier_Node_Element('li'); + $result[] = $current_li; + } + $current_li->children[] = $node; + $current_li->empty = false; // XXX fascinating! Check for this error elsewhere ToDo + } + } + if (empty($result)) { + return false; + } + if ($all_whitespace) { + return false; + } + return $result; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php new file mode 100644 index 0000000..b946806 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php @@ -0,0 +1,45 @@ +whitespace) { + return $children; + } else { + return array(); + } + } + return $result; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php new file mode 100644 index 0000000..0d1c8f5 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php @@ -0,0 +1,118 @@ + $x) { + $elements[$i] = true; + if (empty($i)) { + unset($elements[$i]); + } // remove blank + } + } + $this->elements = $elements; + } + + /** + * @type bool + */ + public $allow_empty = false; + + /** + * @type string + */ + public $type = 'required'; + + /** + * @param array $children + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function validateChildren($children, $config, $context) + { + // Flag for subclasses + $this->whitespace = false; + + // if there are no tokens, delete parent node + if (empty($children)) { + return false; + } + + // the new set of children + $result = array(); + + // whether or not parsed character data is allowed + // this controls whether or not we silently drop a tag + // or generate escaped HTML from it + $pcdata_allowed = isset($this->elements['#PCDATA']); + + // a little sanity check to make sure it's not ALL whitespace + $all_whitespace = true; + + $stack = array_reverse($children); + while (!empty($stack)) { + $node = array_pop($stack); + if (!empty($node->is_whitespace)) { + $result[] = $node; + continue; + } + $all_whitespace = false; // phew, we're not talking about whitespace + + if (!isset($this->elements[$node->name])) { + // special case text + // XXX One of these ought to be redundant or something + if ($pcdata_allowed && $node instanceof HTMLPurifier_Node_Text) { + $result[] = $node; + continue; + } + // spill the child contents in + // ToDo: Make configurable + if ($node instanceof HTMLPurifier_Node_Element) { + for ($i = count($node->children) - 1; $i >= 0; $i--) { + $stack[] = $node->children[$i]; + } + continue; + } + continue; + } + $result[] = $node; + } + if (empty($result)) { + return false; + } + if ($all_whitespace) { + $this->whitespace = true; + return false; + } + return $result; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php new file mode 100644 index 0000000..3270a46 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php @@ -0,0 +1,110 @@ +init($config); + return $this->fake_elements; + } + + /** + * @param array $children + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function validateChildren($children, $config, $context) + { + $this->init($config); + + // trick the parent class into thinking it allows more + $this->elements = $this->fake_elements; + $result = parent::validateChildren($children, $config, $context); + $this->elements = $this->real_elements; + + if ($result === false) { + return array(); + } + if ($result === true) { + $result = $children; + } + + $def = $config->getHTMLDefinition(); + $block_wrap_name = $def->info_block_wrapper; + $block_wrap = false; + $ret = array(); + + foreach ($result as $node) { + if ($block_wrap === false) { + if (($node instanceof HTMLPurifier_Node_Text && !$node->is_whitespace) || + ($node instanceof HTMLPurifier_Node_Element && !isset($this->elements[$node->name]))) { + $block_wrap = new HTMLPurifier_Node_Element($def->info_block_wrapper); + $ret[] = $block_wrap; + } + } else { + if ($node instanceof HTMLPurifier_Node_Element && isset($this->elements[$node->name])) { + $block_wrap = false; + + } + } + if ($block_wrap) { + $block_wrap->children[] = $node; + } else { + $ret[] = $node; + } + } + return $ret; + } + + /** + * @param HTMLPurifier_Config $config + */ + private function init($config) + { + if (!$this->init) { + $def = $config->getHTMLDefinition(); + // allow all inline elements + $this->real_elements = $this->elements; + $this->fake_elements = $def->info_content_sets['Flow']; + $this->fake_elements['#PCDATA'] = true; + $this->init = true; + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php new file mode 100644 index 0000000..d92205b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php @@ -0,0 +1,227 @@ + true, + 'tbody' => true, + 'thead' => true, + 'tfoot' => true, + 'caption' => true, + 'colgroup' => true, + 'col' => true + ); + + public function __construct() + { + } + + /** + * @param array $children + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array + */ + public function validateChildren($children, $config, $context) + { + if (empty($children)) { + return false; + } + + // only one of these elements is allowed in a table + $caption = false; + $thead = false; + $tfoot = false; + + // whitespace + $initial_ws = array(); + $after_caption_ws = array(); + $after_thead_ws = array(); + $after_tfoot_ws = array(); + + // as many of these as you want + $cols = array(); + $content = array(); + + $tbody_mode = false; // if true, then we need to wrap any stray + // s with a . + + $ws_accum =& $initial_ws; + + foreach ($children as $node) { + if ($node instanceof HTMLPurifier_Node_Comment) { + $ws_accum[] = $node; + continue; + } + switch ($node->name) { + case 'tbody': + $tbody_mode = true; + // fall through + case 'tr': + $content[] = $node; + $ws_accum =& $content; + break; + case 'caption': + // there can only be one caption! + if ($caption !== false) break; + $caption = $node; + $ws_accum =& $after_caption_ws; + break; + case 'thead': + $tbody_mode = true; + // XXX This breaks rendering properties with + // Firefox, which never floats a to + // the top. Ever. (Our scheme will float the + // first to the top.) So maybe + // s that are not first should be + // turned into ? Very tricky, indeed. + if ($thead === false) { + $thead = $node; + $ws_accum =& $after_thead_ws; + } else { + // Oops, there's a second one! What + // should we do? Current behavior is to + // transmutate the first and last entries into + // tbody tags, and then put into content. + // Maybe a better idea is to *attach + // it* to the existing thead or tfoot? + // We don't do this, because Firefox + // doesn't float an extra tfoot to the + // bottom like it does for the first one. + $node->name = 'tbody'; + $content[] = $node; + $ws_accum =& $content; + } + break; + case 'tfoot': + // see above for some aveats + $tbody_mode = true; + if ($tfoot === false) { + $tfoot = $node; + $ws_accum =& $after_tfoot_ws; + } else { + $node->name = 'tbody'; + $content[] = $node; + $ws_accum =& $content; + } + break; + case 'colgroup': + case 'col': + $cols[] = $node; + $ws_accum =& $cols; + break; + case '#PCDATA': + // How is whitespace handled? We treat is as sticky to + // the *end* of the previous element. So all of the + // nonsense we have worked on is to keep things + // together. + if (!empty($node->is_whitespace)) { + $ws_accum[] = $node; + } + break; + } + } + + if (empty($content) && $thead === false && $tfoot === false) { + return false; + } + + $ret = $initial_ws; + if ($caption !== false) { + $ret[] = $caption; + $ret = array_merge($ret, $after_caption_ws); + } + if ($cols !== false) { + $ret = array_merge($ret, $cols); + } + if ($thead !== false) { + $ret[] = $thead; + $ret = array_merge($ret, $after_thead_ws); + } + if ($tfoot !== false) { + $ret[] = $tfoot; + $ret = array_merge($ret, $after_tfoot_ws); + } + + if ($tbody_mode) { + // we have to shuffle tr into tbody + $current_tr_tbody = null; + + foreach($content as $node) { + if (!isset($node->name)) { + continue; + } + switch ($node->name) { + case 'tbody': + $current_tr_tbody = null; + $ret[] = $node; + break; + case 'tr': + if ($current_tr_tbody === null) { + $current_tr_tbody = new HTMLPurifier_Node_Element('tbody'); + $ret[] = $current_tr_tbody; + } + $current_tr_tbody->children[] = $node; + break; + case '#PCDATA': + //assert($node->is_whitespace); + if ($current_tr_tbody === null) { + $ret[] = $node; + } else { + $current_tr_tbody->children[] = $node; + } + break; + } + } + } else { + $ret = array_merge($ret, $content); + } + + return $ret; + + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Config.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Config.php new file mode 100644 index 0000000..256408e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Config.php @@ -0,0 +1,924 @@ +defaultPlist; + $this->plist = new HTMLPurifier_PropertyList($parent); + $this->def = $definition; // keep a copy around for checking + $this->parser = new HTMLPurifier_VarParser_Flexible(); + } + + /** + * Convenience constructor that creates a config object based on a mixed var + * @param mixed $config Variable that defines the state of the config + * object. Can be: a HTMLPurifier_Config() object, + * an array of directives based on loadArray(), + * or a string filename of an ini file. + * @param HTMLPurifier_ConfigSchema $schema Schema object + * @return HTMLPurifier_Config Configured object + */ + public static function create($config, $schema = null) + { + if ($config instanceof HTMLPurifier_Config) { + // pass-through + return $config; + } + if (!$schema) { + $ret = HTMLPurifier_Config::createDefault(); + } else { + $ret = new HTMLPurifier_Config($schema); + } + if (is_string($config)) { + $ret->loadIni($config); + } elseif (is_array($config)) $ret->loadArray($config); + return $ret; + } + + /** + * Creates a new config object that inherits from a previous one. + * @param HTMLPurifier_Config $config Configuration object to inherit from. + * @return HTMLPurifier_Config object with $config as its parent. + */ + public static function inherit(HTMLPurifier_Config $config) + { + return new HTMLPurifier_Config($config->def, $config->plist); + } + + /** + * Convenience constructor that creates a default configuration object. + * @return HTMLPurifier_Config default object. + */ + public static function createDefault() + { + $definition = HTMLPurifier_ConfigSchema::instance(); + $config = new HTMLPurifier_Config($definition); + return $config; + } + + /** + * Retrieves a value from the configuration. + * + * @param string $key String key + * @param mixed $a + * + * @return mixed + */ + public function get($key, $a = null) + { + if ($a !== null) { + $this->triggerError( + "Using deprecated API: use \$config->get('$key.$a') instead", + E_USER_WARNING + ); + $key = "$key.$a"; + } + if (!$this->finalized) { + $this->autoFinalize(); + } + if (!isset($this->def->info[$key])) { + // can't add % due to SimpleTest bug + $this->triggerError( + 'Cannot retrieve value of undefined directive ' . htmlspecialchars($key), + E_USER_WARNING + ); + return; + } + if (isset($this->def->info[$key]->isAlias)) { + $d = $this->def->info[$key]; + $this->triggerError( + 'Cannot get value from aliased directive, use real name ' . $d->key, + E_USER_ERROR + ); + return; + } + if ($this->lock) { + list($ns) = explode('.', $key); + if ($ns !== $this->lock) { + $this->triggerError( + 'Cannot get value of namespace ' . $ns . ' when lock for ' . + $this->lock . + ' is active, this probably indicates a Definition setup method ' . + 'is accessing directives that are not within its namespace', + E_USER_ERROR + ); + return; + } + } + return $this->plist->get($key); + } + + /** + * Retrieves an array of directives to values from a given namespace + * + * @param string $namespace String namespace + * + * @return array + */ + public function getBatch($namespace) + { + if (!$this->finalized) { + $this->autoFinalize(); + } + $full = $this->getAll(); + if (!isset($full[$namespace])) { + $this->triggerError( + 'Cannot retrieve undefined namespace ' . + htmlspecialchars($namespace), + E_USER_WARNING + ); + return; + } + return $full[$namespace]; + } + + /** + * Returns a SHA-1 signature of a segment of the configuration object + * that uniquely identifies that particular configuration + * + * @param string $namespace Namespace to get serial for + * + * @return string + * @note Revision is handled specially and is removed from the batch + * before processing! + */ + public function getBatchSerial($namespace) + { + if (empty($this->serials[$namespace])) { + $batch = $this->getBatch($namespace); + unset($batch['DefinitionRev']); + $this->serials[$namespace] = sha1(serialize($batch)); + } + return $this->serials[$namespace]; + } + + /** + * Returns a SHA-1 signature for the entire configuration object + * that uniquely identifies that particular configuration + * + * @return string + */ + public function getSerial() + { + if (empty($this->serial)) { + $this->serial = sha1(serialize($this->getAll())); + } + return $this->serial; + } + + /** + * Retrieves all directives, organized by namespace + * + * @warning This is a pretty inefficient function, avoid if you can + */ + public function getAll() + { + if (!$this->finalized) { + $this->autoFinalize(); + } + $ret = array(); + foreach ($this->plist->squash() as $name => $value) { + list($ns, $key) = explode('.', $name, 2); + $ret[$ns][$key] = $value; + } + return $ret; + } + + /** + * Sets a value to configuration. + * + * @param string $key key + * @param mixed $value value + * @param mixed $a + */ + public function set($key, $value, $a = null) + { + if (strpos($key, '.') === false) { + $namespace = $key; + $directive = $value; + $value = $a; + $key = "$key.$directive"; + $this->triggerError("Using deprecated API: use \$config->set('$key', ...) instead", E_USER_NOTICE); + } else { + list($namespace) = explode('.', $key); + } + if ($this->isFinalized('Cannot set directive after finalization')) { + return; + } + if (!isset($this->def->info[$key])) { + $this->triggerError( + 'Cannot set undefined directive ' . htmlspecialchars($key) . ' to value', + E_USER_WARNING + ); + return; + } + $def = $this->def->info[$key]; + + if (isset($def->isAlias)) { + if ($this->aliasMode) { + $this->triggerError( + 'Double-aliases not allowed, please fix '. + 'ConfigSchema bug with' . $key, + E_USER_ERROR + ); + return; + } + $this->aliasMode = true; + $this->set($def->key, $value); + $this->aliasMode = false; + $this->triggerError("$key is an alias, preferred directive name is {$def->key}", E_USER_NOTICE); + return; + } + + // Raw type might be negative when using the fully optimized form + // of stdClass, which indicates allow_null == true + $rtype = is_int($def) ? $def : $def->type; + if ($rtype < 0) { + $type = -$rtype; + $allow_null = true; + } else { + $type = $rtype; + $allow_null = isset($def->allow_null); + } + + try { + $value = $this->parser->parse($value, $type, $allow_null); + } catch (HTMLPurifier_VarParserException $e) { + $this->triggerError( + 'Value for ' . $key . ' is of invalid type, should be ' . + HTMLPurifier_VarParser::getTypeName($type), + E_USER_WARNING + ); + return; + } + if (is_string($value) && is_object($def)) { + // resolve value alias if defined + if (isset($def->aliases[$value])) { + $value = $def->aliases[$value]; + } + // check to see if the value is allowed + if (isset($def->allowed) && !isset($def->allowed[$value])) { + $this->triggerError( + 'Value not supported, valid values are: ' . + $this->_listify($def->allowed), + E_USER_WARNING + ); + return; + } + } + $this->plist->set($key, $value); + + // reset definitions if the directives they depend on changed + // this is a very costly process, so it's discouraged + // with finalization + if ($namespace == 'HTML' || $namespace == 'CSS' || $namespace == 'URI') { + $this->definitions[$namespace] = null; + } + + $this->serials[$namespace] = false; + } + + /** + * Convenience function for error reporting + * + * @param array $lookup + * + * @return string + */ + private function _listify($lookup) + { + $list = array(); + foreach ($lookup as $name => $b) { + $list[] = $name; + } + return implode(', ', $list); + } + + /** + * Retrieves object reference to the HTML definition. + * + * @param bool $raw Return a copy that has not been setup yet. Must be + * called before it's been setup, otherwise won't work. + * @param bool $optimized If true, this method may return null, to + * indicate that a cached version of the modified + * definition object is available and no further edits + * are necessary. Consider using + * maybeGetRawHTMLDefinition, which is more explicitly + * named, instead. + * + * @return HTMLPurifier_HTMLDefinition|null + */ + public function getHTMLDefinition($raw = false, $optimized = false) + { + return $this->getDefinition('HTML', $raw, $optimized); + } + + /** + * Retrieves object reference to the CSS definition + * + * @param bool $raw Return a copy that has not been setup yet. Must be + * called before it's been setup, otherwise won't work. + * @param bool $optimized If true, this method may return null, to + * indicate that a cached version of the modified + * definition object is available and no further edits + * are necessary. Consider using + * maybeGetRawCSSDefinition, which is more explicitly + * named, instead. + * + * @return HTMLPurifier_CSSDefinition|null + */ + public function getCSSDefinition($raw = false, $optimized = false) + { + return $this->getDefinition('CSS', $raw, $optimized); + } + + /** + * Retrieves object reference to the URI definition + * + * @param bool $raw Return a copy that has not been setup yet. Must be + * called before it's been setup, otherwise won't work. + * @param bool $optimized If true, this method may return null, to + * indicate that a cached version of the modified + * definition object is available and no further edits + * are necessary. Consider using + * maybeGetRawURIDefinition, which is more explicitly + * named, instead. + * + * @return HTMLPurifier_URIDefinition|null + */ + public function getURIDefinition($raw = false, $optimized = false) + { + return $this->getDefinition('URI', $raw, $optimized); + } + + /** + * Retrieves a definition + * + * @param string $type Type of definition: HTML, CSS, etc + * @param bool $raw Whether or not definition should be returned raw + * @param bool $optimized Only has an effect when $raw is true. Whether + * or not to return null if the result is already present in + * the cache. This is off by default for backwards + * compatibility reasons, but you need to do things this + * way in order to ensure that caching is done properly. + * Check out enduser-customize.html for more details. + * We probably won't ever change this default, as much as the + * maybe semantics is the "right thing to do." + * + * @throws HTMLPurifier_Exception + * @return HTMLPurifier_Definition|null + */ + public function getDefinition($type, $raw = false, $optimized = false) + { + if ($optimized && !$raw) { + throw new HTMLPurifier_Exception("Cannot set optimized = true when raw = false"); + } + if (!$this->finalized) { + $this->autoFinalize(); + } + // temporarily suspend locks, so we can handle recursive definition calls + $lock = $this->lock; + $this->lock = null; + $factory = HTMLPurifier_DefinitionCacheFactory::instance(); + $cache = $factory->create($type, $this); + $this->lock = $lock; + if (!$raw) { + // full definition + // --------------- + // check if definition is in memory + if (!empty($this->definitions[$type])) { + $def = $this->definitions[$type]; + // check if the definition is setup + if ($def->setup) { + return $def; + } else { + $def->setup($this); + if ($def->optimized) { + $cache->add($def, $this); + } + return $def; + } + } + // check if definition is in cache + $def = $cache->get($this); + if ($def) { + // definition in cache, save to memory and return it + $this->definitions[$type] = $def; + return $def; + } + // initialize it + $def = $this->initDefinition($type); + // set it up + $this->lock = $type; + $def->setup($this); + $this->lock = null; + // save in cache + $cache->add($def, $this); + // return it + return $def; + } else { + // raw definition + // -------------- + // check preconditions + $def = null; + if ($optimized) { + if (is_null($this->get($type . '.DefinitionID'))) { + // fatally error out if definition ID not set + throw new HTMLPurifier_Exception( + "Cannot retrieve raw version without specifying %$type.DefinitionID" + ); + } + } + if (!empty($this->definitions[$type])) { + $def = $this->definitions[$type]; + if ($def->setup && !$optimized) { + $extra = $this->chatty ? + " (try moving this code block earlier in your initialization)" : + ""; + throw new HTMLPurifier_Exception( + "Cannot retrieve raw definition after it has already been setup" . + $extra + ); + } + if ($def->optimized === null) { + $extra = $this->chatty ? " (try flushing your cache)" : ""; + throw new HTMLPurifier_Exception( + "Optimization status of definition is unknown" . $extra + ); + } + if ($def->optimized !== $optimized) { + $msg = $optimized ? "optimized" : "unoptimized"; + $extra = $this->chatty ? + " (this backtrace is for the first inconsistent call, which was for a $msg raw definition)" + : ""; + throw new HTMLPurifier_Exception( + "Inconsistent use of optimized and unoptimized raw definition retrievals" . $extra + ); + } + } + // check if definition was in memory + if ($def) { + if ($def->setup) { + // invariant: $optimized === true (checked above) + return null; + } else { + return $def; + } + } + // if optimized, check if definition was in cache + // (because we do the memory check first, this formulation + // is prone to cache slamming, but I think + // guaranteeing that either /all/ of the raw + // setup code or /none/ of it is run is more important.) + if ($optimized) { + // This code path only gets run once; once we put + // something in $definitions (which is guaranteed by the + // trailing code), we always short-circuit above. + $def = $cache->get($this); + if ($def) { + // save the full definition for later, but don't + // return it yet + $this->definitions[$type] = $def; + return null; + } + } + // check invariants for creation + if (!$optimized) { + if (!is_null($this->get($type . '.DefinitionID'))) { + if ($this->chatty) { + $this->triggerError( + 'Due to a documentation error in previous version of HTML Purifier, your ' . + 'definitions are not being cached. If this is OK, you can remove the ' . + '%$type.DefinitionRev and %$type.DefinitionID declaration. Otherwise, ' . + 'modify your code to use maybeGetRawDefinition, and test if the returned ' . + 'value is null before making any edits (if it is null, that means that a ' . + 'cached version is available, and no raw operations are necessary). See ' . + '' . + 'Customize for more details', + E_USER_WARNING + ); + } else { + $this->triggerError( + "Useless DefinitionID declaration", + E_USER_WARNING + ); + } + } + } + // initialize it + $def = $this->initDefinition($type); + $def->optimized = $optimized; + return $def; + } + throw new HTMLPurifier_Exception("The impossible happened!"); + } + + /** + * Initialise definition + * + * @param string $type What type of definition to create + * + * @return HTMLPurifier_CSSDefinition|HTMLPurifier_HTMLDefinition|HTMLPurifier_URIDefinition + * @throws HTMLPurifier_Exception + */ + private function initDefinition($type) + { + // quick checks failed, let's create the object + if ($type == 'HTML') { + $def = new HTMLPurifier_HTMLDefinition(); + } elseif ($type == 'CSS') { + $def = new HTMLPurifier_CSSDefinition(); + } elseif ($type == 'URI') { + $def = new HTMLPurifier_URIDefinition(); + } else { + throw new HTMLPurifier_Exception( + "Definition of $type type not supported" + ); + } + $this->definitions[$type] = $def; + return $def; + } + + public function maybeGetRawDefinition($name) + { + return $this->getDefinition($name, true, true); + } + + /** + * @return HTMLPurifier_HTMLDefinition|null + */ + public function maybeGetRawHTMLDefinition() + { + return $this->getDefinition('HTML', true, true); + } + + /** + * @return HTMLPurifier_CSSDefinition|null + */ + public function maybeGetRawCSSDefinition() + { + return $this->getDefinition('CSS', true, true); + } + + /** + * @return HTMLPurifier_URIDefinition|null + */ + public function maybeGetRawURIDefinition() + { + return $this->getDefinition('URI', true, true); + } + + /** + * Loads configuration values from an array with the following structure: + * Namespace.Directive => Value + * + * @param array $config_array Configuration associative array + */ + public function loadArray($config_array) + { + if ($this->isFinalized('Cannot load directives after finalization')) { + return; + } + foreach ($config_array as $key => $value) { + $key = str_replace('_', '.', $key); + if (strpos($key, '.') !== false) { + $this->set($key, $value); + } else { + $namespace = $key; + $namespace_values = $value; + foreach ($namespace_values as $directive => $value2) { + $this->set($namespace .'.'. $directive, $value2); + } + } + } + } + + /** + * Returns a list of array(namespace, directive) for all directives + * that are allowed in a web-form context as per an allowed + * namespaces/directives list. + * + * @param array $allowed List of allowed namespaces/directives + * @param HTMLPurifier_ConfigSchema $schema Schema to use, if not global copy + * + * @return array + */ + public static function getAllowedDirectivesForForm($allowed, $schema = null) + { + if (!$schema) { + $schema = HTMLPurifier_ConfigSchema::instance(); + } + if ($allowed !== true) { + if (is_string($allowed)) { + $allowed = array($allowed); + } + $allowed_ns = array(); + $allowed_directives = array(); + $blacklisted_directives = array(); + foreach ($allowed as $ns_or_directive) { + if (strpos($ns_or_directive, '.') !== false) { + // directive + if ($ns_or_directive[0] == '-') { + $blacklisted_directives[substr($ns_or_directive, 1)] = true; + } else { + $allowed_directives[$ns_or_directive] = true; + } + } else { + // namespace + $allowed_ns[$ns_or_directive] = true; + } + } + } + $ret = array(); + foreach ($schema->info as $key => $def) { + list($ns, $directive) = explode('.', $key, 2); + if ($allowed !== true) { + if (isset($blacklisted_directives["$ns.$directive"])) { + continue; + } + if (!isset($allowed_directives["$ns.$directive"]) && !isset($allowed_ns[$ns])) { + continue; + } + } + if (isset($def->isAlias)) { + continue; + } + if ($directive == 'DefinitionID' || $directive == 'DefinitionRev') { + continue; + } + $ret[] = array($ns, $directive); + } + return $ret; + } + + /** + * Loads configuration values from $_GET/$_POST that were posted + * via ConfigForm + * + * @param array $array $_GET or $_POST array to import + * @param string|bool $index Index/name that the config variables are in + * @param array|bool $allowed List of allowed namespaces/directives + * @param bool $mq_fix Boolean whether or not to enable magic quotes fix + * @param HTMLPurifier_ConfigSchema $schema Schema to use, if not global copy + * + * @return mixed + */ + public static function loadArrayFromForm($array, $index = false, $allowed = true, $mq_fix = true, $schema = null) + { + $ret = HTMLPurifier_Config::prepareArrayFromForm($array, $index, $allowed, $mq_fix, $schema); + $config = HTMLPurifier_Config::create($ret, $schema); + return $config; + } + + /** + * Merges in configuration values from $_GET/$_POST to object. NOT STATIC. + * + * @param array $array $_GET or $_POST array to import + * @param string|bool $index Index/name that the config variables are in + * @param array|bool $allowed List of allowed namespaces/directives + * @param bool $mq_fix Boolean whether or not to enable magic quotes fix + */ + public function mergeArrayFromForm($array, $index = false, $allowed = true, $mq_fix = true) + { + $ret = HTMLPurifier_Config::prepareArrayFromForm($array, $index, $allowed, $mq_fix, $this->def); + $this->loadArray($ret); + } + + /** + * Prepares an array from a form into something usable for the more + * strict parts of HTMLPurifier_Config + * + * @param array $array $_GET or $_POST array to import + * @param string|bool $index Index/name that the config variables are in + * @param array|bool $allowed List of allowed namespaces/directives + * @param bool $mq_fix Boolean whether or not to enable magic quotes fix + * @param HTMLPurifier_ConfigSchema $schema Schema to use, if not global copy + * + * @return array + */ + public static function prepareArrayFromForm($array, $index = false, $allowed = true, $mq_fix = true, $schema = null) + { + if ($index !== false) { + $array = (isset($array[$index]) && is_array($array[$index])) ? $array[$index] : array(); + } + $mq = $mq_fix && version_compare(PHP_VERSION, '7.4.0', '<') && function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc(); + + $allowed = HTMLPurifier_Config::getAllowedDirectivesForForm($allowed, $schema); + $ret = array(); + foreach ($allowed as $key) { + list($ns, $directive) = $key; + $skey = "$ns.$directive"; + if (!empty($array["Null_$skey"])) { + $ret[$ns][$directive] = null; + continue; + } + if (!isset($array[$skey])) { + continue; + } + $value = $mq ? stripslashes($array[$skey]) : $array[$skey]; + $ret[$ns][$directive] = $value; + } + return $ret; + } + + /** + * Loads configuration values from an ini file + * + * @param string $filename Name of ini file + */ + public function loadIni($filename) + { + if ($this->isFinalized('Cannot load directives after finalization')) { + return; + } + $array = parse_ini_file($filename, true); + $this->loadArray($array); + } + + /** + * Checks whether or not the configuration object is finalized. + * + * @param string|bool $error String error message, or false for no error + * + * @return bool + */ + public function isFinalized($error = false) + { + if ($this->finalized && $error) { + $this->triggerError($error, E_USER_ERROR); + } + return $this->finalized; + } + + /** + * Finalizes configuration only if auto finalize is on and not + * already finalized + */ + public function autoFinalize() + { + if ($this->autoFinalize) { + $this->finalize(); + } else { + $this->plist->squash(true); + } + } + + /** + * Finalizes a configuration object, prohibiting further change + */ + public function finalize() + { + $this->finalized = true; + $this->parser = null; + } + + /** + * Produces a nicely formatted error message by supplying the + * stack frame information OUTSIDE of HTMLPurifier_Config. + * + * @param string $msg An error message + * @param int $no An error number + */ + protected function triggerError($msg, $no) + { + // determine previous stack frame + $extra = ''; + if ($this->chatty) { + $trace = debug_backtrace(); + // zip(tail(trace), trace) -- but PHP is not Haskell har har + for ($i = 0, $c = count($trace); $i < $c - 1; $i++) { + // XXX this is not correct on some versions of HTML Purifier + if (isset($trace[$i + 1]['class']) && $trace[$i + 1]['class'] === 'HTMLPurifier_Config') { + continue; + } + $frame = $trace[$i]; + $extra = " invoked on line {$frame['line']} in file {$frame['file']}"; + break; + } + } + if ($no == E_USER_ERROR) { + throw new Exception($msg . $extra); + } else { + trigger_error($msg . $extra, $no); + } + } + + /** + * Returns a serialized form of the configuration object that can + * be reconstituted. + * + * @return string + */ + public function serialize() + { + $this->getDefinition('HTML'); + $this->getDefinition('CSS'); + $this->getDefinition('URI'); + return serialize($this); + } + +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema.php new file mode 100644 index 0000000..42f6604 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema.php @@ -0,0 +1,176 @@ + array( + * 'Directive' => new stdClass(), + * ) + * ) + * + * The stdClass may have the following properties: + * + * - If isAlias isn't set: + * - type: Integer type of directive, see HTMLPurifier_VarParser for definitions + * - allow_null: If set, this directive allows null values + * - aliases: If set, an associative array of value aliases to real values + * - allowed: If set, a lookup array of allowed (string) values + * - If isAlias is set: + * - namespace: Namespace this directive aliases to + * - name: Directive name this directive aliases to + * + * In certain degenerate cases, stdClass will actually be an integer. In + * that case, the value is equivalent to an stdClass with the type + * property set to the integer. If the integer is negative, type is + * equal to the absolute value of integer, and allow_null is true. + * + * This class is friendly with HTMLPurifier_Config. If you need introspection + * about the schema, you're better of using the ConfigSchema_Interchange, + * which uses more memory but has much richer information. + * @type array + */ + public $info = array(); + + /** + * Application-wide singleton + * @type HTMLPurifier_ConfigSchema + */ + protected static $singleton; + + public function __construct() + { + $this->defaultPlist = new HTMLPurifier_PropertyList(); + } + + /** + * Unserializes the default ConfigSchema. + * @return HTMLPurifier_ConfigSchema + */ + public static function makeFromSerial() + { + $contents = file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/ConfigSchema/schema.ser'); + $r = unserialize($contents); + if (!$r) { + $hash = sha1($contents); + throw new Exception("Unserialization of configuration schema failed, sha1 of file was $hash"); + } + return $r; + } + + /** + * Retrieves an instance of the application-wide configuration definition. + * @param HTMLPurifier_ConfigSchema $prototype + * @return HTMLPurifier_ConfigSchema + */ + public static function instance($prototype = null) + { + if ($prototype !== null) { + HTMLPurifier_ConfigSchema::$singleton = $prototype; + } elseif (HTMLPurifier_ConfigSchema::$singleton === null || $prototype === true) { + HTMLPurifier_ConfigSchema::$singleton = HTMLPurifier_ConfigSchema::makeFromSerial(); + } + return HTMLPurifier_ConfigSchema::$singleton; + } + + /** + * Defines a directive for configuration + * @warning Will fail of directive's namespace is defined. + * @warning This method's signature is slightly different from the legacy + * define() static method! Beware! + * @param string $key Name of directive + * @param mixed $default Default value of directive + * @param string $type Allowed type of the directive. See + * HTMLPurifier_VarParser::$types for allowed values + * @param bool $allow_null Whether or not to allow null values + */ + public function add($key, $default, $type, $allow_null) + { + $obj = new stdClass(); + $obj->type = is_int($type) ? $type : HTMLPurifier_VarParser::$types[$type]; + if ($allow_null) { + $obj->allow_null = true; + } + $this->info[$key] = $obj; + $this->defaults[$key] = $default; + $this->defaultPlist->set($key, $default); + } + + /** + * Defines a directive value alias. + * + * Directive value aliases are convenient for developers because it lets + * them set a directive to several values and get the same result. + * @param string $key Name of Directive + * @param array $aliases Hash of aliased values to the real alias + */ + public function addValueAliases($key, $aliases) + { + if (!isset($this->info[$key]->aliases)) { + $this->info[$key]->aliases = array(); + } + foreach ($aliases as $alias => $real) { + $this->info[$key]->aliases[$alias] = $real; + } + } + + /** + * Defines a set of allowed values for a directive. + * @warning This is slightly different from the corresponding static + * method definition. + * @param string $key Name of directive + * @param array $allowed Lookup array of allowed values + */ + public function addAllowedValues($key, $allowed) + { + $this->info[$key]->allowed = $allowed; + } + + /** + * Defines a directive alias for backwards compatibility + * @param string $key Directive that will be aliased + * @param string $new_key Directive that the alias will be to + */ + public function addAlias($key, $new_key) + { + $obj = new stdClass; + $obj->key = $new_key; + $obj->isAlias = true; + $this->info[$key] = $obj; + } + + /** + * Replaces any stdClass that only has the type property with type integer. + */ + public function postProcess() + { + foreach ($this->info as $key => $v) { + if (count((array) $v) == 1) { + $this->info[$key] = $v->type; + } elseif (count((array) $v) == 2 && isset($v->allow_null)) { + $this->info[$key] = -$v->type; + } + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php new file mode 100644 index 0000000..d5906cd --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php @@ -0,0 +1,48 @@ +directives as $d) { + $schema->add( + $d->id->key, + $d->default, + $d->type, + $d->typeAllowsNull + ); + if ($d->allowed !== null) { + $schema->addAllowedValues( + $d->id->key, + $d->allowed + ); + } + foreach ($d->aliases as $alias) { + $schema->addAlias( + $alias->key, + $d->id->key + ); + } + if ($d->valueAliases !== null) { + $schema->addValueAliases( + $d->id->key, + $d->valueAliases + ); + } + } + $schema->postProcess(); + return $schema; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/Xml.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/Xml.php new file mode 100644 index 0000000..5fa56f7 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/Xml.php @@ -0,0 +1,144 @@ +startElement('div'); + + $purifier = HTMLPurifier::getInstance(); + $html = $purifier->purify($html); + $this->writeAttribute('xmlns', 'http://www.w3.org/1999/xhtml'); + $this->writeRaw($html); + + $this->endElement(); // div + } + + /** + * @param mixed $var + * @return string + */ + protected function export($var) + { + if ($var === array()) { + return 'array()'; + } + return var_export($var, true); + } + + /** + * @param HTMLPurifier_ConfigSchema_Interchange $interchange + */ + public function build($interchange) + { + // global access, only use as last resort + $this->interchange = $interchange; + + $this->setIndent(true); + $this->startDocument('1.0', 'UTF-8'); + $this->startElement('configdoc'); + $this->writeElement('title', $interchange->name); + + foreach ($interchange->directives as $directive) { + $this->buildDirective($directive); + } + + if ($this->namespace) { + $this->endElement(); + } // namespace + + $this->endElement(); // configdoc + $this->flush(); + } + + /** + * @param HTMLPurifier_ConfigSchema_Interchange_Directive $directive + */ + public function buildDirective($directive) + { + // Kludge, although I suppose having a notion of a "root namespace" + // certainly makes things look nicer when documentation is built. + // Depends on things being sorted. + if (!$this->namespace || $this->namespace !== $directive->id->getRootNamespace()) { + if ($this->namespace) { + $this->endElement(); + } // namespace + $this->namespace = $directive->id->getRootNamespace(); + $this->startElement('namespace'); + $this->writeAttribute('id', $this->namespace); + $this->writeElement('name', $this->namespace); + } + + $this->startElement('directive'); + $this->writeAttribute('id', $directive->id->toString()); + + $this->writeElement('name', $directive->id->getDirective()); + + $this->startElement('aliases'); + foreach ($directive->aliases as $alias) { + $this->writeElement('alias', $alias->toString()); + } + $this->endElement(); // aliases + + $this->startElement('constraints'); + if ($directive->version) { + $this->writeElement('version', $directive->version); + } + $this->startElement('type'); + if ($directive->typeAllowsNull) { + $this->writeAttribute('allow-null', 'yes'); + } + $this->text($directive->type); + $this->endElement(); // type + if ($directive->allowed) { + $this->startElement('allowed'); + foreach ($directive->allowed as $value => $x) { + $this->writeElement('value', $value); + } + $this->endElement(); // allowed + } + $this->writeElement('default', $this->export($directive->default)); + $this->writeAttribute('xml:space', 'preserve'); + if ($directive->external) { + $this->startElement('external'); + foreach ($directive->external as $project) { + $this->writeElement('project', $project); + } + $this->endElement(); + } + $this->endElement(); // constraints + + if ($directive->deprecatedVersion) { + $this->startElement('deprecated'); + $this->writeElement('version', $directive->deprecatedVersion); + $this->writeElement('use', $directive->deprecatedUse->toString()); + $this->endElement(); // deprecated + } + + $this->startElement('description'); + $this->writeHTMLDiv($directive->description); + $this->endElement(); // description + + $this->endElement(); // directive + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php new file mode 100644 index 0000000..2671516 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php @@ -0,0 +1,11 @@ + array(directive info) + * @type HTMLPurifier_ConfigSchema_Interchange_Directive[] + */ + public $directives = array(); + + /** + * Adds a directive array to $directives + * @param HTMLPurifier_ConfigSchema_Interchange_Directive $directive + * @throws HTMLPurifier_ConfigSchema_Exception + */ + public function addDirective($directive) + { + if (isset($this->directives[$i = $directive->id->toString()])) { + throw new HTMLPurifier_ConfigSchema_Exception("Cannot redefine directive '$i'"); + } + $this->directives[$i] = $directive; + } + + /** + * Convenience function to perform standard validation. Throws exception + * on failed validation. + */ + public function validate() + { + $validator = new HTMLPurifier_ConfigSchema_Validator(); + return $validator->validate($this); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Directive.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Directive.php new file mode 100644 index 0000000..4902a56 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Directive.php @@ -0,0 +1,89 @@ + true). + * Null if all values are allowed. + * @type array + */ + public $allowed; + + /** + * List of aliases for the directive. + * e.g. array(new HTMLPurifier_ConfigSchema_Interchange_Id('Ns', 'Dir'))). + * @type HTMLPurifier_ConfigSchema_Interchange_Id[] + */ + public $aliases = array(); + + /** + * Hash of value aliases, e.g. array('alt' => 'real'). Null if value + * aliasing is disabled (necessary for non-scalar types). + * @type array + */ + public $valueAliases; + + /** + * Version of HTML Purifier the directive was introduced, e.g. '1.3.1'. + * Null if the directive has always existed. + * @type string + */ + public $version; + + /** + * ID of directive that supersedes this old directive. + * Null if not deprecated. + * @type HTMLPurifier_ConfigSchema_Interchange_Id + */ + public $deprecatedUse; + + /** + * Version of HTML Purifier this directive was deprecated. Null if not + * deprecated. + * @type string + */ + public $deprecatedVersion; + + /** + * List of external projects this directive depends on, e.g. array('CSSTidy'). + * @type array + */ + public $external = array(); +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Id.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Id.php new file mode 100644 index 0000000..126f09d --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Id.php @@ -0,0 +1,58 @@ +key = $key; + } + + /** + * @return string + * @warning This is NOT magic, to ensure that people don't abuse SPL and + * cause problems for PHP 5.0 support. + */ + public function toString() + { + return $this->key; + } + + /** + * @return string + */ + public function getRootNamespace() + { + return substr($this->key, 0, strpos($this->key, ".")); + } + + /** + * @return string + */ + public function getDirective() + { + return substr($this->key, strpos($this->key, ".") + 1); + } + + /** + * @param string $id + * @return HTMLPurifier_ConfigSchema_Interchange_Id + */ + public static function make($id) + { + return new HTMLPurifier_ConfigSchema_Interchange_Id($id); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/InterchangeBuilder.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/InterchangeBuilder.php new file mode 100644 index 0000000..655e6dd --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/InterchangeBuilder.php @@ -0,0 +1,226 @@ +varParser = $varParser ? $varParser : new HTMLPurifier_VarParser_Native(); + } + + /** + * @param string $dir + * @return HTMLPurifier_ConfigSchema_Interchange + */ + public static function buildFromDirectory($dir = null) + { + $builder = new HTMLPurifier_ConfigSchema_InterchangeBuilder(); + $interchange = new HTMLPurifier_ConfigSchema_Interchange(); + return $builder->buildDir($interchange, $dir); + } + + /** + * @param HTMLPurifier_ConfigSchema_Interchange $interchange + * @param string $dir + * @return HTMLPurifier_ConfigSchema_Interchange + */ + public function buildDir($interchange, $dir = null) + { + if (!$dir) { + $dir = HTMLPURIFIER_PREFIX . '/HTMLPurifier/ConfigSchema/schema'; + } + if (file_exists($dir . '/info.ini')) { + $info = parse_ini_file($dir . '/info.ini'); + $interchange->name = $info['name']; + } + + $files = array(); + $dh = opendir($dir); + while (false !== ($file = readdir($dh))) { + if (!$file || $file[0] == '.' || strrchr($file, '.') !== '.txt') { + continue; + } + $files[] = $file; + } + closedir($dh); + + sort($files); + foreach ($files as $file) { + $this->buildFile($interchange, $dir . '/' . $file); + } + return $interchange; + } + + /** + * @param HTMLPurifier_ConfigSchema_Interchange $interchange + * @param string $file + */ + public function buildFile($interchange, $file) + { + $parser = new HTMLPurifier_StringHashParser(); + $this->build( + $interchange, + new HTMLPurifier_StringHash($parser->parseFile($file)) + ); + } + + /** + * Builds an interchange object based on a hash. + * @param HTMLPurifier_ConfigSchema_Interchange $interchange HTMLPurifier_ConfigSchema_Interchange object to build + * @param HTMLPurifier_StringHash $hash source data + * @throws HTMLPurifier_ConfigSchema_Exception + */ + public function build($interchange, $hash) + { + if (!$hash instanceof HTMLPurifier_StringHash) { + $hash = new HTMLPurifier_StringHash($hash); + } + if (!isset($hash['ID'])) { + throw new HTMLPurifier_ConfigSchema_Exception('Hash does not have any ID'); + } + if (strpos($hash['ID'], '.') === false) { + if (count($hash) == 2 && isset($hash['DESCRIPTION'])) { + $hash->offsetGet('DESCRIPTION'); // prevent complaining + } else { + throw new HTMLPurifier_ConfigSchema_Exception('All directives must have a namespace'); + } + } else { + $this->buildDirective($interchange, $hash); + } + $this->_findUnused($hash); + } + + /** + * @param HTMLPurifier_ConfigSchema_Interchange $interchange + * @param HTMLPurifier_StringHash $hash + * @throws HTMLPurifier_ConfigSchema_Exception + */ + public function buildDirective($interchange, $hash) + { + $directive = new HTMLPurifier_ConfigSchema_Interchange_Directive(); + + // These are required elements: + $directive->id = $this->id($hash->offsetGet('ID')); + $id = $directive->id->toString(); // convenience + + if (isset($hash['TYPE'])) { + $type = explode('/', $hash->offsetGet('TYPE')); + if (isset($type[1])) { + $directive->typeAllowsNull = true; + } + $directive->type = $type[0]; + } else { + throw new HTMLPurifier_ConfigSchema_Exception("TYPE in directive hash '$id' not defined"); + } + + if (isset($hash['DEFAULT'])) { + try { + $directive->default = $this->varParser->parse( + $hash->offsetGet('DEFAULT'), + $directive->type, + $directive->typeAllowsNull + ); + } catch (HTMLPurifier_VarParserException $e) { + throw new HTMLPurifier_ConfigSchema_Exception($e->getMessage() . " in DEFAULT in directive hash '$id'"); + } + } + + if (isset($hash['DESCRIPTION'])) { + $directive->description = $hash->offsetGet('DESCRIPTION'); + } + + if (isset($hash['ALLOWED'])) { + $directive->allowed = $this->lookup($this->evalArray($hash->offsetGet('ALLOWED'))); + } + + if (isset($hash['VALUE-ALIASES'])) { + $directive->valueAliases = $this->evalArray($hash->offsetGet('VALUE-ALIASES')); + } + + if (isset($hash['ALIASES'])) { + $raw_aliases = trim($hash->offsetGet('ALIASES')); + $aliases = preg_split('/\s*,\s*/', $raw_aliases); + foreach ($aliases as $alias) { + $directive->aliases[] = $this->id($alias); + } + } + + if (isset($hash['VERSION'])) { + $directive->version = $hash->offsetGet('VERSION'); + } + + if (isset($hash['DEPRECATED-USE'])) { + $directive->deprecatedUse = $this->id($hash->offsetGet('DEPRECATED-USE')); + } + + if (isset($hash['DEPRECATED-VERSION'])) { + $directive->deprecatedVersion = $hash->offsetGet('DEPRECATED-VERSION'); + } + + if (isset($hash['EXTERNAL'])) { + $directive->external = preg_split('/\s*,\s*/', trim($hash->offsetGet('EXTERNAL'))); + } + + $interchange->addDirective($directive); + } + + /** + * Evaluates an array PHP code string without array() wrapper + * @param string $contents + */ + protected function evalArray($contents) + { + return eval('return array(' . $contents . ');'); + } + + /** + * Converts an array list into a lookup array. + * @param array $array + * @return array + */ + protected function lookup($array) + { + $ret = array(); + foreach ($array as $val) { + $ret[$val] = true; + } + return $ret; + } + + /** + * Convenience function that creates an HTMLPurifier_ConfigSchema_Interchange_Id + * object based on a string Id. + * @param string $id + * @return HTMLPurifier_ConfigSchema_Interchange_Id + */ + protected function id($id) + { + return HTMLPurifier_ConfigSchema_Interchange_Id::make($id); + } + + /** + * Triggers errors for any unused keys passed in the hash; such keys + * may indicate typos, missing values, etc. + * @param HTMLPurifier_StringHash $hash Hash to check. + */ + protected function _findUnused($hash) + { + $accessed = $hash->getAccessed(); + foreach ($hash as $k => $v) { + if (!isset($accessed[$k])) { + trigger_error("String hash key '$k' not used by builder", E_USER_NOTICE); + } + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Validator.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Validator.php new file mode 100644 index 0000000..fb31277 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Validator.php @@ -0,0 +1,248 @@ +parser = new HTMLPurifier_VarParser(); + } + + /** + * Validates a fully-formed interchange object. + * @param HTMLPurifier_ConfigSchema_Interchange $interchange + * @return bool + */ + public function validate($interchange) + { + $this->interchange = $interchange; + $this->aliases = array(); + // PHP is a bit lax with integer <=> string conversions in + // arrays, so we don't use the identical !== comparison + foreach ($interchange->directives as $i => $directive) { + $id = $directive->id->toString(); + if ($i != $id) { + $this->error(false, "Integrity violation: key '$i' does not match internal id '$id'"); + } + $this->validateDirective($directive); + } + return true; + } + + /** + * Validates a HTMLPurifier_ConfigSchema_Interchange_Id object. + * @param HTMLPurifier_ConfigSchema_Interchange_Id $id + */ + public function validateId($id) + { + $id_string = $id->toString(); + $this->context[] = "id '$id_string'"; + if (!$id instanceof HTMLPurifier_ConfigSchema_Interchange_Id) { + // handled by InterchangeBuilder + $this->error(false, 'is not an instance of HTMLPurifier_ConfigSchema_Interchange_Id'); + } + // keys are now unconstrained (we might want to narrow down to A-Za-z0-9.) + // we probably should check that it has at least one namespace + $this->with($id, 'key') + ->assertNotEmpty() + ->assertIsString(); // implicit assertIsString handled by InterchangeBuilder + array_pop($this->context); + } + + /** + * Validates a HTMLPurifier_ConfigSchema_Interchange_Directive object. + * @param HTMLPurifier_ConfigSchema_Interchange_Directive $d + */ + public function validateDirective($d) + { + $id = $d->id->toString(); + $this->context[] = "directive '$id'"; + $this->validateId($d->id); + + $this->with($d, 'description') + ->assertNotEmpty(); + + // BEGIN - handled by InterchangeBuilder + $this->with($d, 'type') + ->assertNotEmpty(); + $this->with($d, 'typeAllowsNull') + ->assertIsBool(); + try { + // This also tests validity of $d->type + $this->parser->parse($d->default, $d->type, $d->typeAllowsNull); + } catch (HTMLPurifier_VarParserException $e) { + $this->error('default', 'had error: ' . $e->getMessage()); + } + // END - handled by InterchangeBuilder + + if (!is_null($d->allowed) || !empty($d->valueAliases)) { + // allowed and valueAliases require that we be dealing with + // strings, so check for that early. + $d_int = HTMLPurifier_VarParser::$types[$d->type]; + if (!isset(HTMLPurifier_VarParser::$stringTypes[$d_int])) { + $this->error('type', 'must be a string type when used with allowed or value aliases'); + } + } + + $this->validateDirectiveAllowed($d); + $this->validateDirectiveValueAliases($d); + $this->validateDirectiveAliases($d); + + array_pop($this->context); + } + + /** + * Extra validation if $allowed member variable of + * HTMLPurifier_ConfigSchema_Interchange_Directive is defined. + * @param HTMLPurifier_ConfigSchema_Interchange_Directive $d + */ + public function validateDirectiveAllowed($d) + { + if (is_null($d->allowed)) { + return; + } + $this->with($d, 'allowed') + ->assertNotEmpty() + ->assertIsLookup(); // handled by InterchangeBuilder + if (is_string($d->default) && !isset($d->allowed[$d->default])) { + $this->error('default', 'must be an allowed value'); + } + $this->context[] = 'allowed'; + foreach ($d->allowed as $val => $x) { + if (!is_string($val)) { + $this->error("value $val", 'must be a string'); + } + } + array_pop($this->context); + } + + /** + * Extra validation if $valueAliases member variable of + * HTMLPurifier_ConfigSchema_Interchange_Directive is defined. + * @param HTMLPurifier_ConfigSchema_Interchange_Directive $d + */ + public function validateDirectiveValueAliases($d) + { + if (is_null($d->valueAliases)) { + return; + } + $this->with($d, 'valueAliases') + ->assertIsArray(); // handled by InterchangeBuilder + $this->context[] = 'valueAliases'; + foreach ($d->valueAliases as $alias => $real) { + if (!is_string($alias)) { + $this->error("alias $alias", 'must be a string'); + } + if (!is_string($real)) { + $this->error("alias target $real from alias '$alias'", 'must be a string'); + } + if ($alias === $real) { + $this->error("alias '$alias'", "must not be an alias to itself"); + } + } + if (!is_null($d->allowed)) { + foreach ($d->valueAliases as $alias => $real) { + if (isset($d->allowed[$alias])) { + $this->error("alias '$alias'", 'must not be an allowed value'); + } elseif (!isset($d->allowed[$real])) { + $this->error("alias '$alias'", 'must be an alias to an allowed value'); + } + } + } + array_pop($this->context); + } + + /** + * Extra validation if $aliases member variable of + * HTMLPurifier_ConfigSchema_Interchange_Directive is defined. + * @param HTMLPurifier_ConfigSchema_Interchange_Directive $d + */ + public function validateDirectiveAliases($d) + { + $this->with($d, 'aliases') + ->assertIsArray(); // handled by InterchangeBuilder + $this->context[] = 'aliases'; + foreach ($d->aliases as $alias) { + $this->validateId($alias); + $s = $alias->toString(); + if (isset($this->interchange->directives[$s])) { + $this->error("alias '$s'", 'collides with another directive'); + } + if (isset($this->aliases[$s])) { + $other_directive = $this->aliases[$s]; + $this->error("alias '$s'", "collides with alias for directive '$other_directive'"); + } + $this->aliases[$s] = $d->id->toString(); + } + array_pop($this->context); + } + + // protected helper functions + + /** + * Convenience function for generating HTMLPurifier_ConfigSchema_ValidatorAtom + * for validating simple member variables of objects. + * @param $obj + * @param $member + * @return HTMLPurifier_ConfigSchema_ValidatorAtom + */ + protected function with($obj, $member) + { + return new HTMLPurifier_ConfigSchema_ValidatorAtom($this->getFormattedContext(), $obj, $member); + } + + /** + * Emits an error, providing helpful context. + * @throws HTMLPurifier_ConfigSchema_Exception + */ + protected function error($target, $msg) + { + if ($target !== false) { + $prefix = ucfirst($target) . ' in ' . $this->getFormattedContext(); + } else { + $prefix = ucfirst($this->getFormattedContext()); + } + throw new HTMLPurifier_ConfigSchema_Exception(trim($prefix . ' ' . $msg)); + } + + /** + * Returns a formatted context string. + * @return string + */ + protected function getFormattedContext() + { + return implode(' in ', array_reverse($this->context)); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/ValidatorAtom.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/ValidatorAtom.php new file mode 100644 index 0000000..c9aa364 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/ValidatorAtom.php @@ -0,0 +1,130 @@ +context = $context; + $this->obj = $obj; + $this->member = $member; + $this->contents =& $obj->$member; + } + + /** + * @return HTMLPurifier_ConfigSchema_ValidatorAtom + */ + public function assertIsString() + { + if (!is_string($this->contents)) { + $this->error('must be a string'); + } + return $this; + } + + /** + * @return HTMLPurifier_ConfigSchema_ValidatorAtom + */ + public function assertIsBool() + { + if (!is_bool($this->contents)) { + $this->error('must be a boolean'); + } + return $this; + } + + /** + * @return HTMLPurifier_ConfigSchema_ValidatorAtom + */ + public function assertIsArray() + { + if (!is_array($this->contents)) { + $this->error('must be an array'); + } + return $this; + } + + /** + * @return HTMLPurifier_ConfigSchema_ValidatorAtom + */ + public function assertNotNull() + { + if ($this->contents === null) { + $this->error('must not be null'); + } + return $this; + } + + /** + * @return HTMLPurifier_ConfigSchema_ValidatorAtom + */ + public function assertAlnum() + { + $this->assertIsString(); + if (!ctype_alnum($this->contents)) { + $this->error('must be alphanumeric'); + } + return $this; + } + + /** + * @return HTMLPurifier_ConfigSchema_ValidatorAtom + */ + public function assertNotEmpty() + { + if (empty($this->contents)) { + $this->error('must not be empty'); + } + return $this; + } + + /** + * @return HTMLPurifier_ConfigSchema_ValidatorAtom + */ + public function assertIsLookup() + { + $this->assertIsArray(); + foreach ($this->contents as $v) { + if ($v !== true) { + $this->error('must be a lookup array'); + } + } + return $this; + } + + /** + * @param string $msg + * @throws HTMLPurifier_ConfigSchema_Exception + */ + protected function error($msg) + { + throw new HTMLPurifier_ConfigSchema_Exception(ucfirst($this->member) . ' in ' . $this->context . ' ' . $msg); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema.ser b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema.ser new file mode 100644 index 0000000..34ea683 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema.ser @@ -0,0 +1 @@ +O:25:"HTMLPurifier_ConfigSchema":3:{s:8:"defaults";a:130:{s:19:"Attr.AllowedClasses";N;s:24:"Attr.AllowedFrameTargets";a:0:{}s:15:"Attr.AllowedRel";a:0:{}s:15:"Attr.AllowedRev";a:0:{}s:18:"Attr.ClassUseCDATA";N;s:20:"Attr.DefaultImageAlt";N;s:24:"Attr.DefaultInvalidImage";s:0:"";s:27:"Attr.DefaultInvalidImageAlt";s:13:"Invalid image";s:19:"Attr.DefaultTextDir";s:3:"ltr";s:13:"Attr.EnableID";b:0;s:21:"Attr.ForbiddenClasses";a:0:{}s:13:"Attr.ID.HTML5";N;s:16:"Attr.IDBlacklist";a:0:{}s:22:"Attr.IDBlacklistRegexp";N;s:13:"Attr.IDPrefix";s:0:"";s:18:"Attr.IDPrefixLocal";s:0:"";s:24:"AutoFormat.AutoParagraph";b:0;s:17:"AutoFormat.Custom";a:0:{}s:25:"AutoFormat.DisplayLinkURI";b:0;s:18:"AutoFormat.Linkify";b:0;s:33:"AutoFormat.PurifierLinkify.DocURL";s:3:"#%s";s:26:"AutoFormat.PurifierLinkify";b:0;s:32:"AutoFormat.RemoveEmpty.Predicate";a:4:{s:8:"colgroup";a:0:{}s:2:"th";a:0:{}s:2:"td";a:0:{}s:6:"iframe";a:1:{i:0;s:3:"src";}}s:44:"AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions";a:2:{s:2:"td";b:1;s:2:"th";b:1;}s:33:"AutoFormat.RemoveEmpty.RemoveNbsp";b:0;s:22:"AutoFormat.RemoveEmpty";b:0;s:39:"AutoFormat.RemoveSpansWithoutAttributes";b:0;s:19:"CSS.AllowDuplicates";b:0;s:18:"CSS.AllowImportant";b:0;s:15:"CSS.AllowTricky";b:0;s:16:"CSS.AllowedFonts";N;s:21:"CSS.AllowedProperties";N;s:17:"CSS.DefinitionRev";i:1;s:23:"CSS.ForbiddenProperties";a:0:{}s:16:"CSS.MaxImgLength";N;s:15:"CSS.Proprietary";b:0;s:11:"CSS.Trusted";b:0;s:20:"Cache.DefinitionImpl";s:10:"Serializer";s:20:"Cache.SerializerPath";N;s:27:"Cache.SerializerPermissions";i:493;s:22:"Core.AggressivelyFixLt";b:1;s:29:"Core.AggressivelyRemoveScript";b:1;s:28:"Core.AllowHostnameUnderscore";b:0;s:23:"Core.AllowParseManyTags";b:0;s:18:"Core.CollectErrors";b:0;s:18:"Core.ColorKeywords";a:148:{s:9:"aliceblue";s:7:"#F0F8FF";s:12:"antiquewhite";s:7:"#FAEBD7";s:4:"aqua";s:7:"#00FFFF";s:10:"aquamarine";s:7:"#7FFFD4";s:5:"azure";s:7:"#F0FFFF";s:5:"beige";s:7:"#F5F5DC";s:6:"bisque";s:7:"#FFE4C4";s:5:"black";s:7:"#000000";s:14:"blanchedalmond";s:7:"#FFEBCD";s:4:"blue";s:7:"#0000FF";s:10:"blueviolet";s:7:"#8A2BE2";s:5:"brown";s:7:"#A52A2A";s:9:"burlywood";s:7:"#DEB887";s:9:"cadetblue";s:7:"#5F9EA0";s:10:"chartreuse";s:7:"#7FFF00";s:9:"chocolate";s:7:"#D2691E";s:5:"coral";s:7:"#FF7F50";s:14:"cornflowerblue";s:7:"#6495ED";s:8:"cornsilk";s:7:"#FFF8DC";s:7:"crimson";s:7:"#DC143C";s:4:"cyan";s:7:"#00FFFF";s:8:"darkblue";s:7:"#00008B";s:8:"darkcyan";s:7:"#008B8B";s:13:"darkgoldenrod";s:7:"#B8860B";s:8:"darkgray";s:7:"#A9A9A9";s:8:"darkgrey";s:7:"#A9A9A9";s:9:"darkgreen";s:7:"#006400";s:9:"darkkhaki";s:7:"#BDB76B";s:11:"darkmagenta";s:7:"#8B008B";s:14:"darkolivegreen";s:7:"#556B2F";s:10:"darkorange";s:7:"#FF8C00";s:10:"darkorchid";s:7:"#9932CC";s:7:"darkred";s:7:"#8B0000";s:10:"darksalmon";s:7:"#E9967A";s:12:"darkseagreen";s:7:"#8FBC8F";s:13:"darkslateblue";s:7:"#483D8B";s:13:"darkslategray";s:7:"#2F4F4F";s:13:"darkslategrey";s:7:"#2F4F4F";s:13:"darkturquoise";s:7:"#00CED1";s:10:"darkviolet";s:7:"#9400D3";s:8:"deeppink";s:7:"#FF1493";s:11:"deepskyblue";s:7:"#00BFFF";s:7:"dimgray";s:7:"#696969";s:7:"dimgrey";s:7:"#696969";s:10:"dodgerblue";s:7:"#1E90FF";s:9:"firebrick";s:7:"#B22222";s:11:"floralwhite";s:7:"#FFFAF0";s:11:"forestgreen";s:7:"#228B22";s:7:"fuchsia";s:7:"#FF00FF";s:9:"gainsboro";s:7:"#DCDCDC";s:10:"ghostwhite";s:7:"#F8F8FF";s:4:"gold";s:7:"#FFD700";s:9:"goldenrod";s:7:"#DAA520";s:4:"gray";s:7:"#808080";s:4:"grey";s:7:"#808080";s:5:"green";s:7:"#008000";s:11:"greenyellow";s:7:"#ADFF2F";s:8:"honeydew";s:7:"#F0FFF0";s:7:"hotpink";s:7:"#FF69B4";s:9:"indianred";s:7:"#CD5C5C";s:6:"indigo";s:7:"#4B0082";s:5:"ivory";s:7:"#FFFFF0";s:5:"khaki";s:7:"#F0E68C";s:8:"lavender";s:7:"#E6E6FA";s:13:"lavenderblush";s:7:"#FFF0F5";s:9:"lawngreen";s:7:"#7CFC00";s:12:"lemonchiffon";s:7:"#FFFACD";s:9:"lightblue";s:7:"#ADD8E6";s:10:"lightcoral";s:7:"#F08080";s:9:"lightcyan";s:7:"#E0FFFF";s:20:"lightgoldenrodyellow";s:7:"#FAFAD2";s:9:"lightgray";s:7:"#D3D3D3";s:9:"lightgrey";s:7:"#D3D3D3";s:10:"lightgreen";s:7:"#90EE90";s:9:"lightpink";s:7:"#FFB6C1";s:11:"lightsalmon";s:7:"#FFA07A";s:13:"lightseagreen";s:7:"#20B2AA";s:12:"lightskyblue";s:7:"#87CEFA";s:14:"lightslategray";s:7:"#778899";s:14:"lightslategrey";s:7:"#778899";s:14:"lightsteelblue";s:7:"#B0C4DE";s:11:"lightyellow";s:7:"#FFFFE0";s:4:"lime";s:7:"#00FF00";s:9:"limegreen";s:7:"#32CD32";s:5:"linen";s:7:"#FAF0E6";s:7:"magenta";s:7:"#FF00FF";s:6:"maroon";s:7:"#800000";s:16:"mediumaquamarine";s:7:"#66CDAA";s:10:"mediumblue";s:7:"#0000CD";s:12:"mediumorchid";s:7:"#BA55D3";s:12:"mediumpurple";s:7:"#9370DB";s:14:"mediumseagreen";s:7:"#3CB371";s:15:"mediumslateblue";s:7:"#7B68EE";s:17:"mediumspringgreen";s:7:"#00FA9A";s:15:"mediumturquoise";s:7:"#48D1CC";s:15:"mediumvioletred";s:7:"#C71585";s:12:"midnightblue";s:7:"#191970";s:9:"mintcream";s:7:"#F5FFFA";s:9:"mistyrose";s:7:"#FFE4E1";s:8:"moccasin";s:7:"#FFE4B5";s:11:"navajowhite";s:7:"#FFDEAD";s:4:"navy";s:7:"#000080";s:7:"oldlace";s:7:"#FDF5E6";s:5:"olive";s:7:"#808000";s:9:"olivedrab";s:7:"#6B8E23";s:6:"orange";s:7:"#FFA500";s:9:"orangered";s:7:"#FF4500";s:6:"orchid";s:7:"#DA70D6";s:13:"palegoldenrod";s:7:"#EEE8AA";s:9:"palegreen";s:7:"#98FB98";s:13:"paleturquoise";s:7:"#AFEEEE";s:13:"palevioletred";s:7:"#DB7093";s:10:"papayawhip";s:7:"#FFEFD5";s:9:"peachpuff";s:7:"#FFDAB9";s:4:"peru";s:7:"#CD853F";s:4:"pink";s:7:"#FFC0CB";s:4:"plum";s:7:"#DDA0DD";s:10:"powderblue";s:7:"#B0E0E6";s:6:"purple";s:7:"#800080";s:13:"rebeccapurple";s:7:"#663399";s:3:"red";s:7:"#FF0000";s:9:"rosybrown";s:7:"#BC8F8F";s:9:"royalblue";s:7:"#4169E1";s:11:"saddlebrown";s:7:"#8B4513";s:6:"salmon";s:7:"#FA8072";s:10:"sandybrown";s:7:"#F4A460";s:8:"seagreen";s:7:"#2E8B57";s:8:"seashell";s:7:"#FFF5EE";s:6:"sienna";s:7:"#A0522D";s:6:"silver";s:7:"#C0C0C0";s:7:"skyblue";s:7:"#87CEEB";s:9:"slateblue";s:7:"#6A5ACD";s:9:"slategray";s:7:"#708090";s:9:"slategrey";s:7:"#708090";s:4:"snow";s:7:"#FFFAFA";s:11:"springgreen";s:7:"#00FF7F";s:9:"steelblue";s:7:"#4682B4";s:3:"tan";s:7:"#D2B48C";s:4:"teal";s:7:"#008080";s:7:"thistle";s:7:"#D8BFD8";s:6:"tomato";s:7:"#FF6347";s:9:"turquoise";s:7:"#40E0D0";s:6:"violet";s:7:"#EE82EE";s:5:"wheat";s:7:"#F5DEB3";s:5:"white";s:7:"#FFFFFF";s:10:"whitesmoke";s:7:"#F5F5F5";s:6:"yellow";s:7:"#FFFF00";s:11:"yellowgreen";s:7:"#9ACD32";}s:30:"Core.ConvertDocumentToFragment";b:1;s:36:"Core.DirectLexLineNumberSyncInterval";i:0;s:20:"Core.DisableExcludes";b:0;s:15:"Core.EnableIDNA";b:0;s:13:"Core.Encoding";s:5:"utf-8";s:26:"Core.EscapeInvalidChildren";b:0;s:22:"Core.EscapeInvalidTags";b:0;s:29:"Core.EscapeNonASCIICharacters";b:0;s:19:"Core.HiddenElements";a:2:{s:6:"script";b:1;s:5:"style";b:1;}s:13:"Core.Language";s:2:"en";s:24:"Core.LegacyEntityDecoder";b:0;s:14:"Core.LexerImpl";N;s:24:"Core.MaintainLineNumbers";N;s:22:"Core.NormalizeNewlines";b:1;s:17:"Core.RemoveBlanks";b:0;s:21:"Core.RemoveInvalidImg";b:1;s:33:"Core.RemoveProcessingInstructions";b:0;s:25:"Core.RemoveScriptContents";N;s:13:"Filter.Custom";a:0:{}s:34:"Filter.ExtractStyleBlocks.Escaping";b:1;s:31:"Filter.ExtractStyleBlocks.Scope";N;s:34:"Filter.ExtractStyleBlocks.TidyImpl";N;s:25:"Filter.ExtractStyleBlocks";b:0;s:14:"Filter.YouTube";b:0;s:12:"HTML.Allowed";N;s:22:"HTML.AllowedAttributes";N;s:20:"HTML.AllowedComments";a:0:{}s:26:"HTML.AllowedCommentsRegexp";N;s:20:"HTML.AllowedElements";N;s:19:"HTML.AllowedModules";N;s:23:"HTML.Attr.Name.UseCDATA";b:0;s:17:"HTML.BlockWrapper";s:1:"p";s:16:"HTML.CoreModules";a:7:{s:9:"Structure";b:1;s:4:"Text";b:1;s:9:"Hypertext";b:1;s:4:"List";b:1;s:22:"NonXMLCommonAttributes";b:1;s:19:"XMLCommonAttributes";b:1;s:16:"CommonAttributes";b:1;}s:18:"HTML.CustomDoctype";N;s:17:"HTML.DefinitionID";N;s:18:"HTML.DefinitionRev";i:1;s:12:"HTML.Doctype";N;s:25:"HTML.FlashAllowFullScreen";b:0;s:24:"HTML.ForbiddenAttributes";a:0:{}s:22:"HTML.ForbiddenElements";a:0:{}s:10:"HTML.Forms";b:0;s:17:"HTML.MaxImgLength";N;s:13:"HTML.Nofollow";b:0;s:11:"HTML.Parent";s:3:"div";s:16:"HTML.Proprietary";b:0;s:14:"HTML.SafeEmbed";b:0;s:15:"HTML.SafeIframe";b:0;s:15:"HTML.SafeObject";b:0;s:18:"HTML.SafeScripting";a:0:{}s:11:"HTML.Strict";b:0;s:16:"HTML.TargetBlank";b:0;s:19:"HTML.TargetNoopener";b:1;s:21:"HTML.TargetNoreferrer";b:1;s:12:"HTML.TidyAdd";a:0:{}s:14:"HTML.TidyLevel";s:6:"medium";s:15:"HTML.TidyRemove";a:0:{}s:12:"HTML.Trusted";b:0;s:10:"HTML.XHTML";b:1;s:28:"Output.CommentScriptContents";b:1;s:19:"Output.FixInnerHTML";b:1;s:18:"Output.FlashCompat";b:0;s:14:"Output.Newline";N;s:15:"Output.SortAttr";b:0;s:17:"Output.TidyFormat";b:0;s:17:"Test.ForceNoIconv";b:0;s:18:"URI.AllowedSchemes";a:7:{s:4:"http";b:1;s:5:"https";b:1;s:6:"mailto";b:1;s:3:"ftp";b:1;s:4:"nntp";b:1;s:4:"news";b:1;s:3:"tel";b:1;}s:18:"URI.AllowedSymbols";s:11:"!$&'()*+,;=";s:8:"URI.Base";N;s:17:"URI.DefaultScheme";s:4:"http";s:16:"URI.DefinitionID";N;s:17:"URI.DefinitionRev";i:1;s:11:"URI.Disable";b:0;s:19:"URI.DisableExternal";b:0;s:28:"URI.DisableExternalResources";b:0;s:20:"URI.DisableResources";b:0;s:8:"URI.Host";N;s:17:"URI.HostBlacklist";a:0:{}s:16:"URI.MakeAbsolute";b:0;s:9:"URI.Munge";N;s:18:"URI.MungeResources";b:0;s:18:"URI.MungeSecretKey";N;s:26:"URI.OverrideAllowedSchemes";b:1;s:19:"URI.SafeIframeHosts";N;s:20:"URI.SafeIframeRegexp";N;}s:12:"defaultPlist";O:25:"HTMLPurifier_PropertyList":3:{s:7:"*data";a:130:{s:19:"Attr.AllowedClasses";N;s:24:"Attr.AllowedFrameTargets";a:0:{}s:15:"Attr.AllowedRel";a:0:{}s:15:"Attr.AllowedRev";a:0:{}s:18:"Attr.ClassUseCDATA";N;s:20:"Attr.DefaultImageAlt";N;s:24:"Attr.DefaultInvalidImage";s:0:"";s:27:"Attr.DefaultInvalidImageAlt";s:13:"Invalid image";s:19:"Attr.DefaultTextDir";s:3:"ltr";s:13:"Attr.EnableID";b:0;s:21:"Attr.ForbiddenClasses";a:0:{}s:13:"Attr.ID.HTML5";N;s:16:"Attr.IDBlacklist";a:0:{}s:22:"Attr.IDBlacklistRegexp";N;s:13:"Attr.IDPrefix";s:0:"";s:18:"Attr.IDPrefixLocal";s:0:"";s:24:"AutoFormat.AutoParagraph";b:0;s:17:"AutoFormat.Custom";a:0:{}s:25:"AutoFormat.DisplayLinkURI";b:0;s:18:"AutoFormat.Linkify";b:0;s:33:"AutoFormat.PurifierLinkify.DocURL";s:3:"#%s";s:26:"AutoFormat.PurifierLinkify";b:0;s:32:"AutoFormat.RemoveEmpty.Predicate";a:4:{s:8:"colgroup";a:0:{}s:2:"th";a:0:{}s:2:"td";a:0:{}s:6:"iframe";a:1:{i:0;s:3:"src";}}s:44:"AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions";a:2:{s:2:"td";b:1;s:2:"th";b:1;}s:33:"AutoFormat.RemoveEmpty.RemoveNbsp";b:0;s:22:"AutoFormat.RemoveEmpty";b:0;s:39:"AutoFormat.RemoveSpansWithoutAttributes";b:0;s:19:"CSS.AllowDuplicates";b:0;s:18:"CSS.AllowImportant";b:0;s:15:"CSS.AllowTricky";b:0;s:16:"CSS.AllowedFonts";N;s:21:"CSS.AllowedProperties";N;s:17:"CSS.DefinitionRev";i:1;s:23:"CSS.ForbiddenProperties";a:0:{}s:16:"CSS.MaxImgLength";N;s:15:"CSS.Proprietary";b:0;s:11:"CSS.Trusted";b:0;s:20:"Cache.DefinitionImpl";s:10:"Serializer";s:20:"Cache.SerializerPath";N;s:27:"Cache.SerializerPermissions";i:493;s:22:"Core.AggressivelyFixLt";b:1;s:29:"Core.AggressivelyRemoveScript";b:1;s:28:"Core.AllowHostnameUnderscore";b:0;s:23:"Core.AllowParseManyTags";b:0;s:18:"Core.CollectErrors";b:0;s:18:"Core.ColorKeywords";a:148:{s:9:"aliceblue";s:7:"#F0F8FF";s:12:"antiquewhite";s:7:"#FAEBD7";s:4:"aqua";s:7:"#00FFFF";s:10:"aquamarine";s:7:"#7FFFD4";s:5:"azure";s:7:"#F0FFFF";s:5:"beige";s:7:"#F5F5DC";s:6:"bisque";s:7:"#FFE4C4";s:5:"black";s:7:"#000000";s:14:"blanchedalmond";s:7:"#FFEBCD";s:4:"blue";s:7:"#0000FF";s:10:"blueviolet";s:7:"#8A2BE2";s:5:"brown";s:7:"#A52A2A";s:9:"burlywood";s:7:"#DEB887";s:9:"cadetblue";s:7:"#5F9EA0";s:10:"chartreuse";s:7:"#7FFF00";s:9:"chocolate";s:7:"#D2691E";s:5:"coral";s:7:"#FF7F50";s:14:"cornflowerblue";s:7:"#6495ED";s:8:"cornsilk";s:7:"#FFF8DC";s:7:"crimson";s:7:"#DC143C";s:4:"cyan";s:7:"#00FFFF";s:8:"darkblue";s:7:"#00008B";s:8:"darkcyan";s:7:"#008B8B";s:13:"darkgoldenrod";s:7:"#B8860B";s:8:"darkgray";s:7:"#A9A9A9";s:8:"darkgrey";s:7:"#A9A9A9";s:9:"darkgreen";s:7:"#006400";s:9:"darkkhaki";s:7:"#BDB76B";s:11:"darkmagenta";s:7:"#8B008B";s:14:"darkolivegreen";s:7:"#556B2F";s:10:"darkorange";s:7:"#FF8C00";s:10:"darkorchid";s:7:"#9932CC";s:7:"darkred";s:7:"#8B0000";s:10:"darksalmon";s:7:"#E9967A";s:12:"darkseagreen";s:7:"#8FBC8F";s:13:"darkslateblue";s:7:"#483D8B";s:13:"darkslategray";s:7:"#2F4F4F";s:13:"darkslategrey";s:7:"#2F4F4F";s:13:"darkturquoise";s:7:"#00CED1";s:10:"darkviolet";s:7:"#9400D3";s:8:"deeppink";s:7:"#FF1493";s:11:"deepskyblue";s:7:"#00BFFF";s:7:"dimgray";s:7:"#696969";s:7:"dimgrey";s:7:"#696969";s:10:"dodgerblue";s:7:"#1E90FF";s:9:"firebrick";s:7:"#B22222";s:11:"floralwhite";s:7:"#FFFAF0";s:11:"forestgreen";s:7:"#228B22";s:7:"fuchsia";s:7:"#FF00FF";s:9:"gainsboro";s:7:"#DCDCDC";s:10:"ghostwhite";s:7:"#F8F8FF";s:4:"gold";s:7:"#FFD700";s:9:"goldenrod";s:7:"#DAA520";s:4:"gray";s:7:"#808080";s:4:"grey";s:7:"#808080";s:5:"green";s:7:"#008000";s:11:"greenyellow";s:7:"#ADFF2F";s:8:"honeydew";s:7:"#F0FFF0";s:7:"hotpink";s:7:"#FF69B4";s:9:"indianred";s:7:"#CD5C5C";s:6:"indigo";s:7:"#4B0082";s:5:"ivory";s:7:"#FFFFF0";s:5:"khaki";s:7:"#F0E68C";s:8:"lavender";s:7:"#E6E6FA";s:13:"lavenderblush";s:7:"#FFF0F5";s:9:"lawngreen";s:7:"#7CFC00";s:12:"lemonchiffon";s:7:"#FFFACD";s:9:"lightblue";s:7:"#ADD8E6";s:10:"lightcoral";s:7:"#F08080";s:9:"lightcyan";s:7:"#E0FFFF";s:20:"lightgoldenrodyellow";s:7:"#FAFAD2";s:9:"lightgray";s:7:"#D3D3D3";s:9:"lightgrey";s:7:"#D3D3D3";s:10:"lightgreen";s:7:"#90EE90";s:9:"lightpink";s:7:"#FFB6C1";s:11:"lightsalmon";s:7:"#FFA07A";s:13:"lightseagreen";s:7:"#20B2AA";s:12:"lightskyblue";s:7:"#87CEFA";s:14:"lightslategray";s:7:"#778899";s:14:"lightslategrey";s:7:"#778899";s:14:"lightsteelblue";s:7:"#B0C4DE";s:11:"lightyellow";s:7:"#FFFFE0";s:4:"lime";s:7:"#00FF00";s:9:"limegreen";s:7:"#32CD32";s:5:"linen";s:7:"#FAF0E6";s:7:"magenta";s:7:"#FF00FF";s:6:"maroon";s:7:"#800000";s:16:"mediumaquamarine";s:7:"#66CDAA";s:10:"mediumblue";s:7:"#0000CD";s:12:"mediumorchid";s:7:"#BA55D3";s:12:"mediumpurple";s:7:"#9370DB";s:14:"mediumseagreen";s:7:"#3CB371";s:15:"mediumslateblue";s:7:"#7B68EE";s:17:"mediumspringgreen";s:7:"#00FA9A";s:15:"mediumturquoise";s:7:"#48D1CC";s:15:"mediumvioletred";s:7:"#C71585";s:12:"midnightblue";s:7:"#191970";s:9:"mintcream";s:7:"#F5FFFA";s:9:"mistyrose";s:7:"#FFE4E1";s:8:"moccasin";s:7:"#FFE4B5";s:11:"navajowhite";s:7:"#FFDEAD";s:4:"navy";s:7:"#000080";s:7:"oldlace";s:7:"#FDF5E6";s:5:"olive";s:7:"#808000";s:9:"olivedrab";s:7:"#6B8E23";s:6:"orange";s:7:"#FFA500";s:9:"orangered";s:7:"#FF4500";s:6:"orchid";s:7:"#DA70D6";s:13:"palegoldenrod";s:7:"#EEE8AA";s:9:"palegreen";s:7:"#98FB98";s:13:"paleturquoise";s:7:"#AFEEEE";s:13:"palevioletred";s:7:"#DB7093";s:10:"papayawhip";s:7:"#FFEFD5";s:9:"peachpuff";s:7:"#FFDAB9";s:4:"peru";s:7:"#CD853F";s:4:"pink";s:7:"#FFC0CB";s:4:"plum";s:7:"#DDA0DD";s:10:"powderblue";s:7:"#B0E0E6";s:6:"purple";s:7:"#800080";s:13:"rebeccapurple";s:7:"#663399";s:3:"red";s:7:"#FF0000";s:9:"rosybrown";s:7:"#BC8F8F";s:9:"royalblue";s:7:"#4169E1";s:11:"saddlebrown";s:7:"#8B4513";s:6:"salmon";s:7:"#FA8072";s:10:"sandybrown";s:7:"#F4A460";s:8:"seagreen";s:7:"#2E8B57";s:8:"seashell";s:7:"#FFF5EE";s:6:"sienna";s:7:"#A0522D";s:6:"silver";s:7:"#C0C0C0";s:7:"skyblue";s:7:"#87CEEB";s:9:"slateblue";s:7:"#6A5ACD";s:9:"slategray";s:7:"#708090";s:9:"slategrey";s:7:"#708090";s:4:"snow";s:7:"#FFFAFA";s:11:"springgreen";s:7:"#00FF7F";s:9:"steelblue";s:7:"#4682B4";s:3:"tan";s:7:"#D2B48C";s:4:"teal";s:7:"#008080";s:7:"thistle";s:7:"#D8BFD8";s:6:"tomato";s:7:"#FF6347";s:9:"turquoise";s:7:"#40E0D0";s:6:"violet";s:7:"#EE82EE";s:5:"wheat";s:7:"#F5DEB3";s:5:"white";s:7:"#FFFFFF";s:10:"whitesmoke";s:7:"#F5F5F5";s:6:"yellow";s:7:"#FFFF00";s:11:"yellowgreen";s:7:"#9ACD32";}s:30:"Core.ConvertDocumentToFragment";b:1;s:36:"Core.DirectLexLineNumberSyncInterval";i:0;s:20:"Core.DisableExcludes";b:0;s:15:"Core.EnableIDNA";b:0;s:13:"Core.Encoding";s:5:"utf-8";s:26:"Core.EscapeInvalidChildren";b:0;s:22:"Core.EscapeInvalidTags";b:0;s:29:"Core.EscapeNonASCIICharacters";b:0;s:19:"Core.HiddenElements";a:2:{s:6:"script";b:1;s:5:"style";b:1;}s:13:"Core.Language";s:2:"en";s:24:"Core.LegacyEntityDecoder";b:0;s:14:"Core.LexerImpl";N;s:24:"Core.MaintainLineNumbers";N;s:22:"Core.NormalizeNewlines";b:1;s:17:"Core.RemoveBlanks";b:0;s:21:"Core.RemoveInvalidImg";b:1;s:33:"Core.RemoveProcessingInstructions";b:0;s:25:"Core.RemoveScriptContents";N;s:13:"Filter.Custom";a:0:{}s:34:"Filter.ExtractStyleBlocks.Escaping";b:1;s:31:"Filter.ExtractStyleBlocks.Scope";N;s:34:"Filter.ExtractStyleBlocks.TidyImpl";N;s:25:"Filter.ExtractStyleBlocks";b:0;s:14:"Filter.YouTube";b:0;s:12:"HTML.Allowed";N;s:22:"HTML.AllowedAttributes";N;s:20:"HTML.AllowedComments";a:0:{}s:26:"HTML.AllowedCommentsRegexp";N;s:20:"HTML.AllowedElements";N;s:19:"HTML.AllowedModules";N;s:23:"HTML.Attr.Name.UseCDATA";b:0;s:17:"HTML.BlockWrapper";s:1:"p";s:16:"HTML.CoreModules";a:7:{s:9:"Structure";b:1;s:4:"Text";b:1;s:9:"Hypertext";b:1;s:4:"List";b:1;s:22:"NonXMLCommonAttributes";b:1;s:19:"XMLCommonAttributes";b:1;s:16:"CommonAttributes";b:1;}s:18:"HTML.CustomDoctype";N;s:17:"HTML.DefinitionID";N;s:18:"HTML.DefinitionRev";i:1;s:12:"HTML.Doctype";N;s:25:"HTML.FlashAllowFullScreen";b:0;s:24:"HTML.ForbiddenAttributes";a:0:{}s:22:"HTML.ForbiddenElements";a:0:{}s:10:"HTML.Forms";b:0;s:17:"HTML.MaxImgLength";N;s:13:"HTML.Nofollow";b:0;s:11:"HTML.Parent";s:3:"div";s:16:"HTML.Proprietary";b:0;s:14:"HTML.SafeEmbed";b:0;s:15:"HTML.SafeIframe";b:0;s:15:"HTML.SafeObject";b:0;s:18:"HTML.SafeScripting";a:0:{}s:11:"HTML.Strict";b:0;s:16:"HTML.TargetBlank";b:0;s:19:"HTML.TargetNoopener";b:1;s:21:"HTML.TargetNoreferrer";b:1;s:12:"HTML.TidyAdd";a:0:{}s:14:"HTML.TidyLevel";s:6:"medium";s:15:"HTML.TidyRemove";a:0:{}s:12:"HTML.Trusted";b:0;s:10:"HTML.XHTML";b:1;s:28:"Output.CommentScriptContents";b:1;s:19:"Output.FixInnerHTML";b:1;s:18:"Output.FlashCompat";b:0;s:14:"Output.Newline";N;s:15:"Output.SortAttr";b:0;s:17:"Output.TidyFormat";b:0;s:17:"Test.ForceNoIconv";b:0;s:18:"URI.AllowedSchemes";a:7:{s:4:"http";b:1;s:5:"https";b:1;s:6:"mailto";b:1;s:3:"ftp";b:1;s:4:"nntp";b:1;s:4:"news";b:1;s:3:"tel";b:1;}s:18:"URI.AllowedSymbols";s:11:"!$&'()*+,;=";s:8:"URI.Base";N;s:17:"URI.DefaultScheme";s:4:"http";s:16:"URI.DefinitionID";N;s:17:"URI.DefinitionRev";i:1;s:11:"URI.Disable";b:0;s:19:"URI.DisableExternal";b:0;s:28:"URI.DisableExternalResources";b:0;s:20:"URI.DisableResources";b:0;s:8:"URI.Host";N;s:17:"URI.HostBlacklist";a:0:{}s:16:"URI.MakeAbsolute";b:0;s:9:"URI.Munge";N;s:18:"URI.MungeResources";b:0;s:18:"URI.MungeSecretKey";N;s:26:"URI.OverrideAllowedSchemes";b:1;s:19:"URI.SafeIframeHosts";N;s:20:"URI.SafeIframeRegexp";N;}s:9:"*parent";N;s:8:"*cache";N;}s:4:"info";a:143:{s:19:"Attr.AllowedClasses";i:-8;s:24:"Attr.AllowedFrameTargets";i:8;s:15:"Attr.AllowedRel";i:8;s:15:"Attr.AllowedRev";i:8;s:18:"Attr.ClassUseCDATA";i:-7;s:20:"Attr.DefaultImageAlt";i:-1;s:24:"Attr.DefaultInvalidImage";i:1;s:27:"Attr.DefaultInvalidImageAlt";i:1;s:19:"Attr.DefaultTextDir";O:8:"stdClass":2:{s:4:"type";i:1;s:7:"allowed";a:2:{s:3:"ltr";b:1;s:3:"rtl";b:1;}}s:13:"Attr.EnableID";i:7;s:17:"HTML.EnableAttrID";O:8:"stdClass":2:{s:3:"key";s:13:"Attr.EnableID";s:7:"isAlias";b:1;}s:21:"Attr.ForbiddenClasses";i:8;s:13:"Attr.ID.HTML5";i:-7;s:16:"Attr.IDBlacklist";i:9;s:22:"Attr.IDBlacklistRegexp";i:-1;s:13:"Attr.IDPrefix";i:1;s:18:"Attr.IDPrefixLocal";i:1;s:24:"AutoFormat.AutoParagraph";i:7;s:17:"AutoFormat.Custom";i:9;s:25:"AutoFormat.DisplayLinkURI";i:7;s:18:"AutoFormat.Linkify";i:7;s:33:"AutoFormat.PurifierLinkify.DocURL";i:1;s:37:"AutoFormatParam.PurifierLinkifyDocURL";O:8:"stdClass":2:{s:3:"key";s:33:"AutoFormat.PurifierLinkify.DocURL";s:7:"isAlias";b:1;}s:26:"AutoFormat.PurifierLinkify";i:7;s:32:"AutoFormat.RemoveEmpty.Predicate";i:10;s:44:"AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions";i:8;s:33:"AutoFormat.RemoveEmpty.RemoveNbsp";i:7;s:22:"AutoFormat.RemoveEmpty";i:7;s:39:"AutoFormat.RemoveSpansWithoutAttributes";i:7;s:19:"CSS.AllowDuplicates";i:7;s:18:"CSS.AllowImportant";i:7;s:15:"CSS.AllowTricky";i:7;s:16:"CSS.AllowedFonts";i:-8;s:21:"CSS.AllowedProperties";i:-8;s:17:"CSS.DefinitionRev";i:5;s:23:"CSS.ForbiddenProperties";i:8;s:16:"CSS.MaxImgLength";i:-1;s:15:"CSS.Proprietary";i:7;s:11:"CSS.Trusted";i:7;s:20:"Cache.DefinitionImpl";i:-1;s:20:"Core.DefinitionCache";O:8:"stdClass":2:{s:3:"key";s:20:"Cache.DefinitionImpl";s:7:"isAlias";b:1;}s:20:"Cache.SerializerPath";i:-1;s:27:"Cache.SerializerPermissions";i:-5;s:22:"Core.AggressivelyFixLt";i:7;s:29:"Core.AggressivelyRemoveScript";i:7;s:28:"Core.AllowHostnameUnderscore";i:7;s:23:"Core.AllowParseManyTags";i:7;s:18:"Core.CollectErrors";i:7;s:18:"Core.ColorKeywords";i:10;s:30:"Core.ConvertDocumentToFragment";i:7;s:24:"Core.AcceptFullDocuments";O:8:"stdClass":2:{s:3:"key";s:30:"Core.ConvertDocumentToFragment";s:7:"isAlias";b:1;}s:36:"Core.DirectLexLineNumberSyncInterval";i:5;s:20:"Core.DisableExcludes";i:7;s:15:"Core.EnableIDNA";i:7;s:13:"Core.Encoding";i:2;s:26:"Core.EscapeInvalidChildren";i:7;s:22:"Core.EscapeInvalidTags";i:7;s:29:"Core.EscapeNonASCIICharacters";i:7;s:19:"Core.HiddenElements";i:8;s:13:"Core.Language";i:1;s:24:"Core.LegacyEntityDecoder";i:7;s:14:"Core.LexerImpl";i:-11;s:24:"Core.MaintainLineNumbers";i:-7;s:22:"Core.NormalizeNewlines";i:7;s:17:"Core.RemoveBlanks";i:7;s:21:"Core.RemoveInvalidImg";i:7;s:33:"Core.RemoveProcessingInstructions";i:7;s:25:"Core.RemoveScriptContents";i:-7;s:13:"Filter.Custom";i:9;s:34:"Filter.ExtractStyleBlocks.Escaping";i:7;s:33:"Filter.ExtractStyleBlocksEscaping";O:8:"stdClass":2:{s:3:"key";s:34:"Filter.ExtractStyleBlocks.Escaping";s:7:"isAlias";b:1;}s:38:"FilterParam.ExtractStyleBlocksEscaping";O:8:"stdClass":2:{s:3:"key";s:34:"Filter.ExtractStyleBlocks.Escaping";s:7:"isAlias";b:1;}s:31:"Filter.ExtractStyleBlocks.Scope";i:-1;s:30:"Filter.ExtractStyleBlocksScope";O:8:"stdClass":2:{s:3:"key";s:31:"Filter.ExtractStyleBlocks.Scope";s:7:"isAlias";b:1;}s:35:"FilterParam.ExtractStyleBlocksScope";O:8:"stdClass":2:{s:3:"key";s:31:"Filter.ExtractStyleBlocks.Scope";s:7:"isAlias";b:1;}s:34:"Filter.ExtractStyleBlocks.TidyImpl";i:-11;s:38:"FilterParam.ExtractStyleBlocksTidyImpl";O:8:"stdClass":2:{s:3:"key";s:34:"Filter.ExtractStyleBlocks.TidyImpl";s:7:"isAlias";b:1;}s:25:"Filter.ExtractStyleBlocks";i:7;s:14:"Filter.YouTube";i:7;s:12:"HTML.Allowed";i:-4;s:22:"HTML.AllowedAttributes";i:-8;s:20:"HTML.AllowedComments";i:8;s:26:"HTML.AllowedCommentsRegexp";i:-1;s:20:"HTML.AllowedElements";i:-8;s:19:"HTML.AllowedModules";i:-8;s:23:"HTML.Attr.Name.UseCDATA";i:7;s:17:"HTML.BlockWrapper";i:1;s:16:"HTML.CoreModules";i:8;s:18:"HTML.CustomDoctype";i:-1;s:17:"HTML.DefinitionID";i:-1;s:18:"HTML.DefinitionRev";i:5;s:12:"HTML.Doctype";O:8:"stdClass":3:{s:4:"type";i:1;s:10:"allow_null";b:1;s:7:"allowed";a:5:{s:22:"HTML 4.01 Transitional";b:1;s:16:"HTML 4.01 Strict";b:1;s:22:"XHTML 1.0 Transitional";b:1;s:16:"XHTML 1.0 Strict";b:1;s:9:"XHTML 1.1";b:1;}}s:25:"HTML.FlashAllowFullScreen";i:7;s:24:"HTML.ForbiddenAttributes";i:8;s:22:"HTML.ForbiddenElements";i:8;s:10:"HTML.Forms";i:7;s:17:"HTML.MaxImgLength";i:-5;s:13:"HTML.Nofollow";i:7;s:11:"HTML.Parent";i:1;s:16:"HTML.Proprietary";i:7;s:14:"HTML.SafeEmbed";i:7;s:15:"HTML.SafeIframe";i:7;s:15:"HTML.SafeObject";i:7;s:18:"HTML.SafeScripting";i:8;s:11:"HTML.Strict";i:7;s:16:"HTML.TargetBlank";i:7;s:19:"HTML.TargetNoopener";i:7;s:21:"HTML.TargetNoreferrer";i:7;s:12:"HTML.TidyAdd";i:8;s:14:"HTML.TidyLevel";O:8:"stdClass":2:{s:4:"type";i:1;s:7:"allowed";a:4:{s:4:"none";b:1;s:5:"light";b:1;s:6:"medium";b:1;s:5:"heavy";b:1;}}s:15:"HTML.TidyRemove";i:8;s:12:"HTML.Trusted";i:7;s:10:"HTML.XHTML";i:7;s:10:"Core.XHTML";O:8:"stdClass":2:{s:3:"key";s:10:"HTML.XHTML";s:7:"isAlias";b:1;}s:28:"Output.CommentScriptContents";i:7;s:26:"Core.CommentScriptContents";O:8:"stdClass":2:{s:3:"key";s:28:"Output.CommentScriptContents";s:7:"isAlias";b:1;}s:19:"Output.FixInnerHTML";i:7;s:18:"Output.FlashCompat";i:7;s:14:"Output.Newline";i:-1;s:15:"Output.SortAttr";i:7;s:17:"Output.TidyFormat";i:7;s:15:"Core.TidyFormat";O:8:"stdClass":2:{s:3:"key";s:17:"Output.TidyFormat";s:7:"isAlias";b:1;}s:17:"Test.ForceNoIconv";i:7;s:18:"URI.AllowedSchemes";i:8;s:18:"URI.AllowedSymbols";i:-1;s:8:"URI.Base";i:-1;s:17:"URI.DefaultScheme";i:-1;s:16:"URI.DefinitionID";i:-1;s:17:"URI.DefinitionRev";i:5;s:11:"URI.Disable";i:7;s:15:"Attr.DisableURI";O:8:"stdClass":2:{s:3:"key";s:11:"URI.Disable";s:7:"isAlias";b:1;}s:19:"URI.DisableExternal";i:7;s:28:"URI.DisableExternalResources";i:7;s:20:"URI.DisableResources";i:7;s:8:"URI.Host";i:-1;s:17:"URI.HostBlacklist";i:9;s:16:"URI.MakeAbsolute";i:7;s:9:"URI.Munge";i:-1;s:18:"URI.MungeResources";i:7;s:18:"URI.MungeSecretKey";i:-1;s:26:"URI.OverrideAllowedSchemes";i:7;s:19:"URI.SafeIframeHosts";i:-8;s:20:"URI.SafeIframeRegexp";i:-1;}} \ No newline at end of file diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt new file mode 100644 index 0000000..0517fed --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt @@ -0,0 +1,8 @@ +Attr.AllowedClasses +TYPE: lookup/null +VERSION: 4.0.0 +DEFAULT: null +--DESCRIPTION-- +List of allowed class values in the class attribute. By default, this is null, +which means all classes are allowed. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt new file mode 100644 index 0000000..249edd6 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt @@ -0,0 +1,12 @@ +Attr.AllowedFrameTargets +TYPE: lookup +DEFAULT: array() +--DESCRIPTION-- +Lookup table of all allowed link frame targets. Some commonly used link +targets include _blank, _self, _parent and _top. Values should be +lowercase, as validation will be done in a case-sensitive manner despite +W3C's recommendation. XHTML 1.0 Strict does not permit the target attribute +so this directive will have no effect in that doctype. XHTML 1.1 does not +enable the Target module by default, you will have to manually enable it +(see the module documentation for more details.) +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt new file mode 100644 index 0000000..9a8fa6a --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt @@ -0,0 +1,9 @@ +Attr.AllowedRel +TYPE: lookup +VERSION: 1.6.0 +DEFAULT: array() +--DESCRIPTION-- +List of allowed forward document relationships in the rel attribute. Common +values may be nofollow or print. By default, this is empty, meaning that no +document relationships are allowed. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt new file mode 100644 index 0000000..b017883 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt @@ -0,0 +1,9 @@ +Attr.AllowedRev +TYPE: lookup +VERSION: 1.6.0 +DEFAULT: array() +--DESCRIPTION-- +List of allowed reverse document relationships in the rev attribute. This +attribute is a bit of an edge-case; if you don't know what it is for, stay +away. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ClassUseCDATA.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ClassUseCDATA.txt new file mode 100644 index 0000000..e774b82 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ClassUseCDATA.txt @@ -0,0 +1,19 @@ +Attr.ClassUseCDATA +TYPE: bool/null +DEFAULT: null +VERSION: 4.0.0 +--DESCRIPTION-- +If null, class will auto-detect the doctype and, if matching XHTML 1.1 or +XHTML 2.0, will use the restrictive NMTOKENS specification of class. Otherwise, +it will use a relaxed CDATA definition. If true, the relaxed CDATA definition +is forced; if false, the NMTOKENS definition is forced. To get behavior +of HTML Purifier prior to 4.0.0, set this directive to false. + +Some rational behind the auto-detection: +in previous versions of HTML Purifier, it was assumed that the form of +class was NMTOKENS, as specified by the XHTML Modularization (representing +XHTML 1.1 and XHTML 2.0). The DTDs for HTML 4.01 and XHTML 1.0, however +specify class as CDATA. HTML 5 effectively defines it as CDATA, but +with the additional constraint that each name should be unique (this is not +explicitly outlined in previous specifications). +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt new file mode 100644 index 0000000..533165e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt @@ -0,0 +1,11 @@ +Attr.DefaultImageAlt +TYPE: string/null +DEFAULT: null +VERSION: 3.2.0 +--DESCRIPTION-- +This is the content of the alt tag of an image if the user had not +previously specified an alt attribute. This applies to all images without +a valid alt attribute, as opposed to %Attr.DefaultInvalidImageAlt, which +only applies to invalid images, and overrides in the case of an invalid image. +Default behavior with null is to use the basename of the src tag for the alt. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt new file mode 100644 index 0000000..9eb7e38 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt @@ -0,0 +1,9 @@ +Attr.DefaultInvalidImage +TYPE: string +DEFAULT: '' +--DESCRIPTION-- +This is the default image an img tag will be pointed to if it does not have +a valid src attribute. In future versions, we may allow the image tag to +be removed completely, but due to design issues, this is not possible right +now. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt new file mode 100644 index 0000000..2f17bf4 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt @@ -0,0 +1,8 @@ +Attr.DefaultInvalidImageAlt +TYPE: string +DEFAULT: 'Invalid image' +--DESCRIPTION-- +This is the content of the alt tag of an invalid image if the user had not +previously specified an alt attribute. It has no effect when the image is +valid but there was no alt attribute present. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt new file mode 100644 index 0000000..52654b5 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt @@ -0,0 +1,10 @@ +Attr.DefaultTextDir +TYPE: string +DEFAULT: 'ltr' +--DESCRIPTION-- +Defines the default text direction (ltr or rtl) of the document being +parsed. This generally is the same as the value of the dir attribute in +HTML, or ltr if that is not specified. +--ALLOWED-- +'ltr', 'rtl' +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.EnableID.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.EnableID.txt new file mode 100644 index 0000000..6440d21 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.EnableID.txt @@ -0,0 +1,16 @@ +Attr.EnableID +TYPE: bool +DEFAULT: false +VERSION: 1.2.0 +--DESCRIPTION-- +Allows the ID attribute in HTML. This is disabled by default due to the +fact that without proper configuration user input can easily break the +validation of a webpage by specifying an ID that is already on the +surrounding HTML. If you don't mind throwing caution to the wind, enable +this directive, but I strongly recommend you also consider blacklisting IDs +you use (%Attr.IDBlacklist) or prefixing all user supplied IDs +(%Attr.IDPrefix). When set to true HTML Purifier reverts to the behavior of +pre-1.2.0 versions. +--ALIASES-- +HTML.EnableAttrID +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt new file mode 100644 index 0000000..f31d226 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt @@ -0,0 +1,8 @@ +Attr.ForbiddenClasses +TYPE: lookup +VERSION: 4.0.0 +DEFAULT: array() +--DESCRIPTION-- +List of forbidden class values in the class attribute. By default, this is +empty, which means that no classes are forbidden. See also %Attr.AllowedClasses. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ID.HTML5.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ID.HTML5.txt new file mode 100644 index 0000000..735d4b7 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ID.HTML5.txt @@ -0,0 +1,10 @@ +Attr.ID.HTML5 +TYPE: bool/null +DEFAULT: null +VERSION: 4.8.0 +--DESCRIPTION-- +In HTML5, restrictions on the format of the id attribute have been significantly +relaxed, such that any string is valid so long as it contains no spaces and +is at least one character. In lieu of a general HTML5 compatibility flag, +set this configuration directive to true to use the relaxed rules. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt new file mode 100644 index 0000000..5f2b5e3 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt @@ -0,0 +1,5 @@ +Attr.IDBlacklist +TYPE: list +DEFAULT: array() +DESCRIPTION: Array of IDs not allowed in the document. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt new file mode 100644 index 0000000..6f58245 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt @@ -0,0 +1,9 @@ +Attr.IDBlacklistRegexp +TYPE: string/null +VERSION: 1.6.0 +DEFAULT: NULL +--DESCRIPTION-- +PCRE regular expression to be matched against all IDs. If the expression is +matches, the ID is rejected. Use this with care: may cause significant +degradation. ID matching is done after all other validation. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt new file mode 100644 index 0000000..cc49d43 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt @@ -0,0 +1,12 @@ +Attr.IDPrefix +TYPE: string +VERSION: 1.2.0 +DEFAULT: '' +--DESCRIPTION-- +String to prefix to IDs. If you have no idea what IDs your pages may use, +you may opt to simply add a prefix to all user-submitted ID attributes so +that they are still usable, but will not conflict with core page IDs. +Example: setting the directive to 'user_' will result in a user submitted +'foo' to become 'user_foo' Be sure to set %HTML.EnableAttrID to true +before using this. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt new file mode 100644 index 0000000..dc6e30f --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt @@ -0,0 +1,14 @@ +Attr.IDPrefixLocal +TYPE: string +VERSION: 1.2.0 +DEFAULT: '' +--DESCRIPTION-- +Temporary prefix for IDs used in conjunction with %Attr.IDPrefix. If you +need to allow multiple sets of user content on web page, you may need to +have a separate prefix that changes with each iteration. This way, +separately submitted user content displayed on the same page doesn't +clobber each other. Ideal values are unique identifiers for the content it +represents (i.e. the id of the row in the database). Be sure to add a +separator (like an underscore) at the end. Warning: this directive will +not work unless %Attr.IDPrefix is set to a non-empty value! +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.AutoParagraph.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.AutoParagraph.txt new file mode 100644 index 0000000..d5caa1b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.AutoParagraph.txt @@ -0,0 +1,31 @@ +AutoFormat.AutoParagraph +TYPE: bool +VERSION: 2.0.1 +DEFAULT: false +--DESCRIPTION-- + +

+ This directive turns on auto-paragraphing, where double newlines are + converted in to paragraphs whenever possible. Auto-paragraphing: +

+
    +
  • Always applies to inline elements or text in the root node,
  • +
  • Applies to inline elements or text with double newlines in nodes + that allow paragraph tags,
  • +
  • Applies to double newlines in paragraph tags
  • +
+

+ p tags must be allowed for this directive to take effect. + We do not use br tags for paragraphing, as that is + semantically incorrect. +

+

+ To prevent auto-paragraphing as a content-producer, refrain from using + double-newlines except to specify a new paragraph or in contexts where + it has special meaning (whitespace usually has no meaning except in + tags like pre, so this should not be difficult.) To prevent + the paragraphing of inline text adjacent to block elements, wrap them + in div tags (the behavior is slightly different outside of + the root node.) +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt new file mode 100644 index 0000000..2a47648 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt @@ -0,0 +1,12 @@ +AutoFormat.Custom +TYPE: list +VERSION: 2.0.1 +DEFAULT: array() +--DESCRIPTION-- + +

+ This directive can be used to add custom auto-format injectors. + Specify an array of injector names (class name minus the prefix) + or concrete implementations. Injector class must exist. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt new file mode 100644 index 0000000..663064a --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt @@ -0,0 +1,11 @@ +AutoFormat.DisplayLinkURI +TYPE: bool +VERSION: 3.2.0 +DEFAULT: false +--DESCRIPTION-- +

+ This directive turns on the in-text display of URIs in <a> tags, and disables + those links. For example, example becomes + example (http://example.com). +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt new file mode 100644 index 0000000..3a48ba9 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt @@ -0,0 +1,12 @@ +AutoFormat.Linkify +TYPE: bool +VERSION: 2.0.1 +DEFAULT: false +--DESCRIPTION-- + +

+ This directive turns on linkification, auto-linking http, ftp and + https URLs. a tags with the href attribute + must be allowed. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt new file mode 100644 index 0000000..db58b13 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt @@ -0,0 +1,12 @@ +AutoFormat.PurifierLinkify.DocURL +TYPE: string +VERSION: 2.0.1 +DEFAULT: '#%s' +ALIASES: AutoFormatParam.PurifierLinkifyDocURL +--DESCRIPTION-- +

+ Location of configuration documentation to link to, let %s substitute + into the configuration's namespace and directive names sans the percent + sign. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt new file mode 100644 index 0000000..7996488 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt @@ -0,0 +1,12 @@ +AutoFormat.PurifierLinkify +TYPE: bool +VERSION: 2.0.1 +DEFAULT: false +--DESCRIPTION-- + +

+ Internal auto-formatter that converts configuration directives in + syntax %Namespace.Directive to links. a tags + with the href attribute must be allowed. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.Predicate.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.Predicate.txt new file mode 100644 index 0000000..6367fe2 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.Predicate.txt @@ -0,0 +1,14 @@ +AutoFormat.RemoveEmpty.Predicate +TYPE: hash +VERSION: 4.7.0 +DEFAULT: array('colgroup' => array(), 'th' => array(), 'td' => array(), 'iframe' => array('src')) +--DESCRIPTION-- +

+ Given that an element has no contents, it will be removed by default, unless + this predicate dictates otherwise. The predicate can either be an associative + map from tag name to list of attributes that must be present for the element + to be considered preserved: thus, the default always preserves colgroup, + th and td, and also iframe if it + has a src. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt new file mode 100644 index 0000000..35c393b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt @@ -0,0 +1,11 @@ +AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions +TYPE: lookup +VERSION: 4.0.0 +DEFAULT: array('td' => true, 'th' => true) +--DESCRIPTION-- +

+ When %AutoFormat.RemoveEmpty and %AutoFormat.RemoveEmpty.RemoveNbsp + are enabled, this directive defines what HTML elements should not be + removede if they have only a non-breaking space in them. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt new file mode 100644 index 0000000..9228dee --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt @@ -0,0 +1,15 @@ +AutoFormat.RemoveEmpty.RemoveNbsp +TYPE: bool +VERSION: 4.0.0 +DEFAULT: false +--DESCRIPTION-- +

+ When enabled, HTML Purifier will treat any elements that contain only + non-breaking spaces as well as regular whitespace as empty, and remove + them when %AutoFormat.RemoveEmpty is enabled. +

+

+ See %AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions for a list of elements + that don't have this behavior applied to them. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.txt new file mode 100644 index 0000000..34657ba --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.txt @@ -0,0 +1,46 @@ +AutoFormat.RemoveEmpty +TYPE: bool +VERSION: 3.2.0 +DEFAULT: false +--DESCRIPTION-- +

+ When enabled, HTML Purifier will attempt to remove empty elements that + contribute no semantic information to the document. The following types + of nodes will be removed: +

+
  • + Tags with no attributes and no content, and that are not empty + elements (remove <a></a> but not + <br />), and +
  • +
  • + Tags with no content, except for:
      +
    • The colgroup element, or
    • +
    • + Elements with the id or name attribute, + when those attributes are permitted on those elements. +
    • +
  • +
+

+ Please be very careful when using this functionality; while it may not + seem that empty elements contain useful information, they can alter the + layout of a document given appropriate styling. This directive is most + useful when you are processing machine-generated HTML, please avoid using + it on regular user HTML. +

+

+ Elements that contain only whitespace will be treated as empty. Non-breaking + spaces, however, do not count as whitespace. See + %AutoFormat.RemoveEmpty.RemoveNbsp for alternate behavior. +

+

+ This algorithm is not perfect; you may still notice some empty tags, + particularly if a node had elements, but those elements were later removed + because they were not permitted in that context, or tags that, after + being auto-closed by another tag, where empty. This is for safety reasons + to prevent clever code from breaking validation. The general rule of thumb: + if a tag looked empty on the way in, it will get removed; if HTML Purifier + made it empty, it will stay. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt new file mode 100644 index 0000000..dde990a --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt @@ -0,0 +1,11 @@ +AutoFormat.RemoveSpansWithoutAttributes +TYPE: bool +VERSION: 4.0.1 +DEFAULT: false +--DESCRIPTION-- +

+ This directive causes span tags without any attributes + to be removed. It will also remove spans that had all attributes + removed during processing. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowDuplicates.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowDuplicates.txt new file mode 100644 index 0000000..4d054b1 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowDuplicates.txt @@ -0,0 +1,11 @@ +CSS.AllowDuplicates +TYPE: bool +DEFAULT: false +VERSION: 4.8.0 +--DESCRIPTION-- +

+ By default, HTML Purifier removes duplicate CSS properties, + like color:red; color:blue. If this is set to + true, duplicate properties are allowed. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt new file mode 100644 index 0000000..b324608 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt @@ -0,0 +1,8 @@ +CSS.AllowImportant +TYPE: bool +DEFAULT: false +VERSION: 3.1.0 +--DESCRIPTION-- +This parameter determines whether or not !important cascade modifiers should +be allowed in user CSS. If false, !important will stripped. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt new file mode 100644 index 0000000..748be0e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt @@ -0,0 +1,11 @@ +CSS.AllowTricky +TYPE: bool +DEFAULT: false +VERSION: 3.1.0 +--DESCRIPTION-- +This parameter determines whether or not to allow "tricky" CSS properties and +values. Tricky CSS properties/values can drastically modify page layout or +be used for deceptive practices but do not directly constitute a security risk. +For example, display:none; is considered a tricky property that +will only be allowed if this directive is set to true. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt new file mode 100644 index 0000000..3fd4654 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt @@ -0,0 +1,12 @@ +CSS.AllowedFonts +TYPE: lookup/null +VERSION: 4.3.0 +DEFAULT: NULL +--DESCRIPTION-- +

+ Allows you to manually specify a set of allowed fonts. If + NULL, all fonts are allowed. This directive + affects generic names (serif, sans-serif, monospace, cursive, + fantasy) as well as specific font families. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt new file mode 100644 index 0000000..460112e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt @@ -0,0 +1,18 @@ +CSS.AllowedProperties +TYPE: lookup/null +VERSION: 3.1.0 +DEFAULT: NULL +--DESCRIPTION-- + +

+ If HTML Purifier's style attributes set is unsatisfactory for your needs, + you can overload it with your own list of tags to allow. Note that this + method is subtractive: it does its job by taking away from HTML Purifier + usual feature set, so you cannot add an attribute that HTML Purifier never + supported in the first place. +

+

+ Warning: If another directive conflicts with the + elements here, that directive will win and override. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt new file mode 100644 index 0000000..5cb7dda --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt @@ -0,0 +1,11 @@ +CSS.DefinitionRev +TYPE: int +VERSION: 2.0.0 +DEFAULT: 1 +--DESCRIPTION-- + +

+ Revision identifier for your custom definition. See + %HTML.DefinitionRev for details. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt new file mode 100644 index 0000000..f1f5c5f --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt @@ -0,0 +1,13 @@ +CSS.ForbiddenProperties +TYPE: lookup +VERSION: 4.2.0 +DEFAULT: array() +--DESCRIPTION-- +

+ This is the logical inverse of %CSS.AllowedProperties, and it will + override that directive or any other directive. If possible, + %CSS.AllowedProperties is recommended over this directive, + because it can sometimes be difficult to tell whether or not you've + forbidden all of the CSS properties you truly would like to disallow. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt new file mode 100644 index 0000000..63c2730 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt @@ -0,0 +1,16 @@ +CSS.MaxImgLength +TYPE: string/null +DEFAULT: null +VERSION: 3.1.1 +--DESCRIPTION-- +

+ This parameter sets the maximum allowed length on img tags, + effectively the width and height properties. + Only absolute units of measurement (in, pt, pc, mm, cm) and pixels (px) are allowed. This is + in place to prevent imagecrash attacks, disable with null at your own risk. + This directive is similar to %HTML.MaxImgLength, and both should be + concurrently edited, although there are + subtle differences in the input format (the CSS max is a number with + a unit). +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt new file mode 100644 index 0000000..148eedb --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt @@ -0,0 +1,10 @@ +CSS.Proprietary +TYPE: bool +VERSION: 3.0.0 +DEFAULT: false +--DESCRIPTION-- + +

+ Whether or not to allow safe, proprietary CSS values. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt new file mode 100644 index 0000000..e733a61 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt @@ -0,0 +1,9 @@ +CSS.Trusted +TYPE: bool +VERSION: 4.2.1 +DEFAULT: false +--DESCRIPTION-- +Indicates whether or not the user's CSS input is trusted or not. If the +input is trusted, a more expansive set of allowed properties. See +also %HTML.Trusted. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt new file mode 100644 index 0000000..c486724 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt @@ -0,0 +1,14 @@ +Cache.DefinitionImpl +TYPE: string/null +VERSION: 2.0.0 +DEFAULT: 'Serializer' +--DESCRIPTION-- + +This directive defines which method to use when caching definitions, +the complex data-type that makes HTML Purifier tick. Set to null +to disable caching (not recommended, as you will see a definite +performance degradation). + +--ALIASES-- +Core.DefinitionCache +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt new file mode 100644 index 0000000..5403650 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt @@ -0,0 +1,13 @@ +Cache.SerializerPath +TYPE: string/null +VERSION: 2.0.0 +DEFAULT: NULL +--DESCRIPTION-- + +

+ Absolute path with no trailing slash to store serialized definitions in. + Default is within the + HTML Purifier library inside DefinitionCache/Serializer. This + path must be writable by the webserver. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt new file mode 100644 index 0000000..2e0cc81 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt @@ -0,0 +1,16 @@ +Cache.SerializerPermissions +TYPE: int/null +VERSION: 4.3.0 +DEFAULT: 0755 +--DESCRIPTION-- + +

+ Directory permissions of the files and directories created inside + the DefinitionCache/Serializer or other custom serializer path. +

+

+ In HTML Purifier 4.8.0, this also supports NULL, + which means that no chmod'ing or directory creation shall + occur. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt new file mode 100644 index 0000000..568cbf3 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt @@ -0,0 +1,18 @@ +Core.AggressivelyFixLt +TYPE: bool +VERSION: 2.1.0 +DEFAULT: true +--DESCRIPTION-- +

+ This directive enables aggressive pre-filter fixes HTML Purifier can + perform in order to ensure that open angled-brackets do not get killed + during parsing stage. Enabling this will result in two preg_replace_callback + calls and at least two preg_replace calls for every HTML document parsed; + if your users make very well-formed HTML, you can set this directive false. + This has no effect when DirectLex is used. +

+

+ Notice: This directive's default turned from false to true + in HTML Purifier 3.2.0. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyRemoveScript.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyRemoveScript.txt new file mode 100644 index 0000000..b2b6ab1 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyRemoveScript.txt @@ -0,0 +1,16 @@ +Core.AggressivelyRemoveScript +TYPE: bool +VERSION: 4.9.0 +DEFAULT: true +--DESCRIPTION-- +

+ This directive enables aggressive pre-filter removal of + script tags. This is not necessary for security, + but it can help work around a bug in libxml where embedded + HTML elements inside script sections cause the parser to + choke. To revert to pre-4.9.0 behavior, set this to false. + This directive has no effect if %Core.Trusted is true, + %Core.RemoveScriptContents is false, or %Core.HiddenElements + does not contain script. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AllowHostnameUnderscore.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AllowHostnameUnderscore.txt new file mode 100644 index 0000000..2c910cc --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AllowHostnameUnderscore.txt @@ -0,0 +1,16 @@ +Core.AllowHostnameUnderscore +TYPE: bool +VERSION: 4.6.0 +DEFAULT: false +--DESCRIPTION-- +

+ By RFC 1123, underscores are not permitted in host names. + (This is in contrast to the specification for DNS, RFC + 2181, which allows underscores.) + However, most browsers do the right thing when faced with + an underscore in the host name, and so some poorly written + websites are written with the expectation this should work. + Setting this parameter to true relaxes our allowed character + check so that underscores are permitted. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AllowParseManyTags.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AllowParseManyTags.txt new file mode 100644 index 0000000..06278f8 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AllowParseManyTags.txt @@ -0,0 +1,12 @@ +Core.AllowParseManyTags +TYPE: bool +DEFAULT: false +VERSION: 4.10.1 +--DESCRIPTION-- +

+ This directive allows parsing of many nested tags. + If you set true, relaxes any hardcoded limit from the parser. + However, in that case it may cause a Dos attack. + Be careful when enabling it. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt new file mode 100644 index 0000000..d731791 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt @@ -0,0 +1,12 @@ +Core.CollectErrors +TYPE: bool +VERSION: 2.0.0 +DEFAULT: false +--DESCRIPTION-- + +Whether or not to collect errors found while filtering the document. This +is a useful way to give feedback to your users. Warning: +Currently this feature is very patchy and experimental, with lots of +possible error messages not yet implemented. It will not cause any +problems, but it may not help your users either. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ColorKeywords.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ColorKeywords.txt new file mode 100644 index 0000000..a75844c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ColorKeywords.txt @@ -0,0 +1,160 @@ +Core.ColorKeywords +TYPE: hash +VERSION: 2.0.0 +--DEFAULT-- +array ( + 'aliceblue' => '#F0F8FF', + 'antiquewhite' => '#FAEBD7', + 'aqua' => '#00FFFF', + 'aquamarine' => '#7FFFD4', + 'azure' => '#F0FFFF', + 'beige' => '#F5F5DC', + 'bisque' => '#FFE4C4', + 'black' => '#000000', + 'blanchedalmond' => '#FFEBCD', + 'blue' => '#0000FF', + 'blueviolet' => '#8A2BE2', + 'brown' => '#A52A2A', + 'burlywood' => '#DEB887', + 'cadetblue' => '#5F9EA0', + 'chartreuse' => '#7FFF00', + 'chocolate' => '#D2691E', + 'coral' => '#FF7F50', + 'cornflowerblue' => '#6495ED', + 'cornsilk' => '#FFF8DC', + 'crimson' => '#DC143C', + 'cyan' => '#00FFFF', + 'darkblue' => '#00008B', + 'darkcyan' => '#008B8B', + 'darkgoldenrod' => '#B8860B', + 'darkgray' => '#A9A9A9', + 'darkgrey' => '#A9A9A9', + 'darkgreen' => '#006400', + 'darkkhaki' => '#BDB76B', + 'darkmagenta' => '#8B008B', + 'darkolivegreen' => '#556B2F', + 'darkorange' => '#FF8C00', + 'darkorchid' => '#9932CC', + 'darkred' => '#8B0000', + 'darksalmon' => '#E9967A', + 'darkseagreen' => '#8FBC8F', + 'darkslateblue' => '#483D8B', + 'darkslategray' => '#2F4F4F', + 'darkslategrey' => '#2F4F4F', + 'darkturquoise' => '#00CED1', + 'darkviolet' => '#9400D3', + 'deeppink' => '#FF1493', + 'deepskyblue' => '#00BFFF', + 'dimgray' => '#696969', + 'dimgrey' => '#696969', + 'dodgerblue' => '#1E90FF', + 'firebrick' => '#B22222', + 'floralwhite' => '#FFFAF0', + 'forestgreen' => '#228B22', + 'fuchsia' => '#FF00FF', + 'gainsboro' => '#DCDCDC', + 'ghostwhite' => '#F8F8FF', + 'gold' => '#FFD700', + 'goldenrod' => '#DAA520', + 'gray' => '#808080', + 'grey' => '#808080', + 'green' => '#008000', + 'greenyellow' => '#ADFF2F', + 'honeydew' => '#F0FFF0', + 'hotpink' => '#FF69B4', + 'indianred' => '#CD5C5C', + 'indigo' => '#4B0082', + 'ivory' => '#FFFFF0', + 'khaki' => '#F0E68C', + 'lavender' => '#E6E6FA', + 'lavenderblush' => '#FFF0F5', + 'lawngreen' => '#7CFC00', + 'lemonchiffon' => '#FFFACD', + 'lightblue' => '#ADD8E6', + 'lightcoral' => '#F08080', + 'lightcyan' => '#E0FFFF', + 'lightgoldenrodyellow' => '#FAFAD2', + 'lightgray' => '#D3D3D3', + 'lightgrey' => '#D3D3D3', + 'lightgreen' => '#90EE90', + 'lightpink' => '#FFB6C1', + 'lightsalmon' => '#FFA07A', + 'lightseagreen' => '#20B2AA', + 'lightskyblue' => '#87CEFA', + 'lightslategray' => '#778899', + 'lightslategrey' => '#778899', + 'lightsteelblue' => '#B0C4DE', + 'lightyellow' => '#FFFFE0', + 'lime' => '#00FF00', + 'limegreen' => '#32CD32', + 'linen' => '#FAF0E6', + 'magenta' => '#FF00FF', + 'maroon' => '#800000', + 'mediumaquamarine' => '#66CDAA', + 'mediumblue' => '#0000CD', + 'mediumorchid' => '#BA55D3', + 'mediumpurple' => '#9370DB', + 'mediumseagreen' => '#3CB371', + 'mediumslateblue' => '#7B68EE', + 'mediumspringgreen' => '#00FA9A', + 'mediumturquoise' => '#48D1CC', + 'mediumvioletred' => '#C71585', + 'midnightblue' => '#191970', + 'mintcream' => '#F5FFFA', + 'mistyrose' => '#FFE4E1', + 'moccasin' => '#FFE4B5', + 'navajowhite' => '#FFDEAD', + 'navy' => '#000080', + 'oldlace' => '#FDF5E6', + 'olive' => '#808000', + 'olivedrab' => '#6B8E23', + 'orange' => '#FFA500', + 'orangered' => '#FF4500', + 'orchid' => '#DA70D6', + 'palegoldenrod' => '#EEE8AA', + 'palegreen' => '#98FB98', + 'paleturquoise' => '#AFEEEE', + 'palevioletred' => '#DB7093', + 'papayawhip' => '#FFEFD5', + 'peachpuff' => '#FFDAB9', + 'peru' => '#CD853F', + 'pink' => '#FFC0CB', + 'plum' => '#DDA0DD', + 'powderblue' => '#B0E0E6', + 'purple' => '#800080', + 'rebeccapurple' => '#663399', + 'red' => '#FF0000', + 'rosybrown' => '#BC8F8F', + 'royalblue' => '#4169E1', + 'saddlebrown' => '#8B4513', + 'salmon' => '#FA8072', + 'sandybrown' => '#F4A460', + 'seagreen' => '#2E8B57', + 'seashell' => '#FFF5EE', + 'sienna' => '#A0522D', + 'silver' => '#C0C0C0', + 'skyblue' => '#87CEEB', + 'slateblue' => '#6A5ACD', + 'slategray' => '#708090', + 'slategrey' => '#708090', + 'snow' => '#FFFAFA', + 'springgreen' => '#00FF7F', + 'steelblue' => '#4682B4', + 'tan' => '#D2B48C', + 'teal' => '#008080', + 'thistle' => '#D8BFD8', + 'tomato' => '#FF6347', + 'turquoise' => '#40E0D0', + 'violet' => '#EE82EE', + 'wheat' => '#F5DEB3', + 'white' => '#FFFFFF', + 'whitesmoke' => '#F5F5F5', + 'yellow' => '#FFFF00', + 'yellowgreen' => '#9ACD32' +) +--DESCRIPTION-- + +Lookup array of color names to six digit hexadecimal number corresponding +to color, with preceding hash mark. Used when parsing colors. The lookup +is done in a case-insensitive manner. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt new file mode 100644 index 0000000..60cb409 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt @@ -0,0 +1,15 @@ +Core.ConvertDocumentToFragment +TYPE: bool +DEFAULT: true +--DESCRIPTION-- + +This parameter determines whether or not the filter should convert +input that is a full document with html and body tags to a fragment +of just the contents of a body tag. This parameter is simply something +HTML Purifier can do during an edge-case: for most inputs, this +processing is not necessary. Warning: Full HTML purification has not +been implemented. See GitHub issue #7. + +--ALIASES-- +Core.AcceptFullDocuments +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DirectLexLineNumberSyncInterval.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DirectLexLineNumberSyncInterval.txt new file mode 100644 index 0000000..36f16e0 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DirectLexLineNumberSyncInterval.txt @@ -0,0 +1,17 @@ +Core.DirectLexLineNumberSyncInterval +TYPE: int +VERSION: 2.0.0 +DEFAULT: 0 +--DESCRIPTION-- + +

+ Specifies the number of tokens the DirectLex line number tracking + implementations should process before attempting to resyncronize the + current line count by manually counting all previous new-lines. When + at 0, this functionality is disabled. Lower values will decrease + performance, and this is only strictly necessary if the counting + algorithm is buggy (in which case you should report it as a bug). + This has no effect when %Core.MaintainLineNumbers is disabled or DirectLex is + not being used. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt new file mode 100644 index 0000000..1cd4c2c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt @@ -0,0 +1,14 @@ +Core.DisableExcludes +TYPE: bool +DEFAULT: false +VERSION: 4.5.0 +--DESCRIPTION-- +

+ This directive disables SGML-style exclusions, e.g. the exclusion of + <object> in any descendant of a + <pre> tag. Disabling excludes will allow some + invalid documents to pass through HTML Purifier, but HTML Purifier + will also be less likely to accidentally remove large documents during + processing. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt new file mode 100644 index 0000000..ce243c3 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt @@ -0,0 +1,9 @@ +Core.EnableIDNA +TYPE: bool +DEFAULT: false +VERSION: 4.4.0 +--DESCRIPTION-- +Allows international domain names in URLs. This configuration option +requires the PEAR Net_IDNA2 module to be installed. It operates by +punycoding any internationalized host names for maximum portability. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Encoding.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Encoding.txt new file mode 100644 index 0000000..8bfb47c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Encoding.txt @@ -0,0 +1,15 @@ +Core.Encoding +TYPE: istring +DEFAULT: 'utf-8' +--DESCRIPTION-- +If for some reason you are unable to convert all webpages to UTF-8, you can +use this directive as a stop-gap compatibility change to let HTML Purifier +deal with non UTF-8 input. This technique has notable deficiencies: +absolutely no characters outside of the selected character encoding will be +preserved, not even the ones that have been ampersand escaped (this is due +to a UTF-8 specific feature that automatically resolves all +entities), making it pretty useless for anything except the most I18N-blind +applications, although %Core.EscapeNonASCIICharacters offers fixes this +trouble with another tradeoff. This directive only accepts ISO-8859-1 if +iconv is not enabled. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt new file mode 100644 index 0000000..a3881be --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt @@ -0,0 +1,12 @@ +Core.EscapeInvalidChildren +TYPE: bool +DEFAULT: false +--DESCRIPTION-- +

Warning: this configuration option is no longer does anything as of 4.6.0.

+ +

When true, a child is found that is not allowed in the context of the +parent element will be transformed into text as if it were ASCII. When +false, that element and all internal tags will be dropped, though text will +be preserved. There is no option for dropping the element but preserving +child nodes.

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt new file mode 100644 index 0000000..a7a5b24 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt @@ -0,0 +1,7 @@ +Core.EscapeInvalidTags +TYPE: bool +DEFAULT: false +--DESCRIPTION-- +When true, invalid tags will be written back to the document as plain text. +Otherwise, they are silently dropped. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt new file mode 100644 index 0000000..4eedb34 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt @@ -0,0 +1,13 @@ +Core.EscapeNonASCIICharacters +TYPE: bool +VERSION: 1.4.0 +DEFAULT: false +--DESCRIPTION-- +This directive overcomes a deficiency in %Core.Encoding by blindly +converting all non-ASCII characters into decimal numeric entities before +converting it to its native encoding. This means that even characters that +can be expressed in the non-UTF-8 encoding will be entity-ized, which can +be a real downer for encodings like Big5. It also assumes that the ASCII +repertoire is available, although this is the case for almost all encodings. +Anyway, use UTF-8! +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt new file mode 100644 index 0000000..915391e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt @@ -0,0 +1,19 @@ +Core.HiddenElements +TYPE: lookup +--DEFAULT-- +array ( + 'script' => true, + 'style' => true, +) +--DESCRIPTION-- + +

+ This directive is a lookup array of elements which should have their + contents removed when they are not allowed by the HTML definition. + For example, the contents of a script tag are not + normally shown in a document, so if script tags are to be removed, + their contents should be removed to. This is opposed to a b + tag, which defines some presentational changes but does not hide its + contents. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Language.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Language.txt new file mode 100644 index 0000000..233fca1 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Language.txt @@ -0,0 +1,10 @@ +Core.Language +TYPE: string +VERSION: 2.0.0 +DEFAULT: 'en' +--DESCRIPTION-- + +ISO 639 language code for localizable things in HTML Purifier to use, +which is mainly error reporting. There is currently only an English (en) +translation, so this directive is currently useless. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LegacyEntityDecoder.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LegacyEntityDecoder.txt new file mode 100644 index 0000000..392b436 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LegacyEntityDecoder.txt @@ -0,0 +1,36 @@ +Core.LegacyEntityDecoder +TYPE: bool +VERSION: 4.9.0 +DEFAULT: false +--DESCRIPTION-- +

+ Prior to HTML Purifier 4.9.0, entities were decoded by performing + a global search replace for all entities whose decoded versions + did not have special meanings under HTML, and replaced them with + their decoded versions. We would match all entities, even if they did + not have a trailing semicolon, but only if there weren't any trailing + alphanumeric characters. +

+ + + + + + +
OriginalTextAttribute
&yen;¥¥
&yen¥¥
&yena&yena&yena
&yen=¥=¥=
+

+ In HTML Purifier 4.9.0, we changed the behavior of entity parsing + to match entities that had missing trailing semicolons in less + cases, to more closely match HTML5 parsing behavior: +

+ + + + + + +
OriginalTextAttribute
&yen;¥¥
&yen¥¥
&yena¥a&yena
&yen=¥=&yen=
+

+ This flag reverts back to pre-HTML Purifier 4.9.0 behavior. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt new file mode 100644 index 0000000..e469b88 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt @@ -0,0 +1,34 @@ +Core.LexerImpl +TYPE: mixed/null +VERSION: 2.0.0 +DEFAULT: NULL +--DESCRIPTION-- + +

+ This parameter determines what lexer implementation can be used. The + valid values are: +

+
+
null
+
+ Recommended, the lexer implementation will be auto-detected based on + your PHP-version and configuration. +
+
string lexer identifier
+
+ This is a slim way of manually overriding the implementation. + Currently recognized values are: DOMLex (the default PHP5 +implementation) + and DirectLex (the default PHP4 implementation). Only use this if + you know what you are doing: usually, the auto-detection will + manage things for cases you aren't even aware of. +
+
object lexer instance
+
+ Super-advanced: you can specify your own, custom, implementation that + implements the interface defined by HTMLPurifier_Lexer. + I may remove this option simply because I don't expect anyone + to use it. +
+
+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt new file mode 100644 index 0000000..eb841a7 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt @@ -0,0 +1,16 @@ +Core.MaintainLineNumbers +TYPE: bool/null +VERSION: 2.0.0 +DEFAULT: NULL +--DESCRIPTION-- + +

+ If true, HTML Purifier will add line number information to all tokens. + This is useful when error reporting is turned on, but can result in + significant performance degradation and should not be used when + unnecessary. This directive must be used with the DirectLex lexer, + as the DOMLex lexer does not (yet) support this functionality. + If the value is null, an appropriate value will be selected based + on other configuration. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt new file mode 100644 index 0000000..d77f536 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt @@ -0,0 +1,11 @@ +Core.NormalizeNewlines +TYPE: bool +VERSION: 4.2.0 +DEFAULT: true +--DESCRIPTION-- +

+ Whether or not to normalize newlines to the operating + system default. When false, HTML Purifier + will attempt to preserve mixed newline files. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveBlanks.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveBlanks.txt new file mode 100644 index 0000000..95e5285 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveBlanks.txt @@ -0,0 +1,10 @@ +Core.RemoveBlanks +TYPE: bool +DEFAULT: false +VERSION: 4.18 +--DESCRIPTION-- +

+ If set to true, blank nodes will be removed. This can be useful for maintaining + backwards compatibility when upgrading from previous versions of PHP. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt new file mode 100644 index 0000000..4070c2a --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt @@ -0,0 +1,12 @@ +Core.RemoveInvalidImg +TYPE: bool +DEFAULT: true +VERSION: 1.3.0 +--DESCRIPTION-- + +

+ This directive enables pre-emptive URI checking in img + tags, as the attribute validation strategy is not authorized to + remove elements from the document. Revert to pre-1.3.0 behavior by setting to false. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt new file mode 100644 index 0000000..3397d9f --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt @@ -0,0 +1,11 @@ +Core.RemoveProcessingInstructions +TYPE: bool +VERSION: 4.2.0 +DEFAULT: false +--DESCRIPTION-- +Instead of escaping processing instructions in the form <? ... +?>, remove it out-right. This may be useful if the HTML +you are validating contains XML processing instruction gunk, however, +it can also be user-unfriendly for people attempting to post PHP +snippets. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt new file mode 100644 index 0000000..a4cd966 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt @@ -0,0 +1,12 @@ +Core.RemoveScriptContents +TYPE: bool/null +DEFAULT: NULL +VERSION: 2.0.0 +DEPRECATED-VERSION: 2.1.0 +DEPRECATED-USE: Core.HiddenElements +--DESCRIPTION-- +

+ This directive enables HTML Purifier to remove not only script tags + but all of their contents. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt new file mode 100644 index 0000000..3db50ef --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt @@ -0,0 +1,11 @@ +Filter.Custom +TYPE: list +VERSION: 3.1.0 +DEFAULT: array() +--DESCRIPTION-- +

+ This directive can be used to add custom filters; it is nearly the + equivalent of the now deprecated HTMLPurifier->addFilter() + method. Specify an array of concrete implementations. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Escaping.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Escaping.txt new file mode 100644 index 0000000..16829bc --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Escaping.txt @@ -0,0 +1,14 @@ +Filter.ExtractStyleBlocks.Escaping +TYPE: bool +VERSION: 3.0.0 +DEFAULT: true +ALIASES: Filter.ExtractStyleBlocksEscaping, FilterParam.ExtractStyleBlocksEscaping +--DESCRIPTION-- + +

+ Whether or not to escape the dangerous characters <, > and & + as \3C, \3E and \26, respectively. This is can be safely set to false + if the contents of StyleBlocks will be placed in an external stylesheet, + where there is no risk of it being interpreted as HTML. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Scope.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Scope.txt new file mode 100644 index 0000000..7f95f54 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Scope.txt @@ -0,0 +1,29 @@ +Filter.ExtractStyleBlocks.Scope +TYPE: string/null +VERSION: 3.0.0 +DEFAULT: NULL +ALIASES: Filter.ExtractStyleBlocksScope, FilterParam.ExtractStyleBlocksScope +--DESCRIPTION-- + +

+ If you would like users to be able to define external stylesheets, but + only allow them to specify CSS declarations for a specific node and + prevent them from fiddling with other elements, use this directive. + It accepts any valid CSS selector, and will prepend this to any + CSS declaration extracted from the document. For example, if this + directive is set to #user-content and a user uses the + selector a:hover, the final selector will be + #user-content a:hover. +

+

+ The comma shorthand may be used; consider the above example, with + #user-content, #user-content2, the final selector will + be #user-content a:hover, #user-content2 a:hover. +

+

+ Warning: It is possible for users to bypass this measure + using a naughty + selector. This is a bug in CSS Tidy 1.3, not HTML + Purifier, and I am working to get it fixed. Until then, HTML Purifier + performs a basic check to prevent this. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.TidyImpl.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.TidyImpl.txt new file mode 100644 index 0000000..6c231b2 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.TidyImpl.txt @@ -0,0 +1,16 @@ +Filter.ExtractStyleBlocks.TidyImpl +TYPE: mixed/null +VERSION: 3.1.0 +DEFAULT: NULL +ALIASES: FilterParam.ExtractStyleBlocksTidyImpl +--DESCRIPTION-- +

+ If left NULL, HTML Purifier will attempt to instantiate a csstidy + class to use for internal cleaning. This will usually be good enough. +

+

+ However, for trusted user input, you can set this to false to + disable cleaning. In addition, you can supply your own concrete implementation + of Tidy's interface to use, although I don't know why you'd want to do that. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.txt new file mode 100644 index 0000000..078d087 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.txt @@ -0,0 +1,74 @@ +Filter.ExtractStyleBlocks +TYPE: bool +VERSION: 3.1.0 +DEFAULT: false +EXTERNAL: CSSTidy +--DESCRIPTION-- +

+ This directive turns on the style block extraction filter, which removes + style blocks from input HTML, cleans them up with CSSTidy, + and places them in the StyleBlocks context variable, for further + use by you, usually to be placed in an external stylesheet, or a + style block in the head of your document. +

+

+ Sample usage: +

+
';
+?>
+
+
+
+  Filter.ExtractStyleBlocks
+body {color:#F00;} Some text';
+
+    $config = HTMLPurifier_Config::createDefault();
+    $config->set('Filter', 'ExtractStyleBlocks', true);
+    $purifier = new HTMLPurifier($config);
+
+    $html = $purifier->purify($dirty);
+
+    // This implementation writes the stylesheets to the styles/ directory.
+    // You can also echo the styles inside the document, but it's a bit
+    // more difficult to make sure they get interpreted properly by
+    // browsers; try the usual CSS armoring techniques.
+    $styles = $purifier->context->get('StyleBlocks');
+    $dir = 'styles/';
+    if (!is_dir($dir)) mkdir($dir);
+    $hash = sha1($_GET['html']);
+    foreach ($styles as $i => $style) {
+        file_put_contents($name = $dir . $hash . "_$i");
+        echo '';
+    }
+?>
+
+
+  
+ +
+ + +]]>
+

+ Warning: It is possible for a user to mount an + imagecrash attack using this CSS. Counter-measures are difficult; + it is not simply enough to limit the range of CSS lengths (using + relative lengths with many nesting levels allows for large values + to be attained without actually specifying them in the stylesheet), + and the flexible nature of selectors makes it difficult to selectively + disable lengths on image tags (HTML Purifier, however, does disable + CSS width and height in inline styling). There are probably two effective + counter measures: an explicit width and height set to auto in all + images in your document (unlikely) or the disabling of width and + height (somewhat reasonable). Whether or not these measures should be + used is left to the reader. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt new file mode 100644 index 0000000..321eaa2 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt @@ -0,0 +1,16 @@ +Filter.YouTube +TYPE: bool +VERSION: 3.1.0 +DEFAULT: false +--DESCRIPTION-- +

+ Warning: Deprecated in favor of %HTML.SafeObject and + %Output.FlashCompat (turn both on to allow YouTube videos and other + Flash content). +

+

+ This directive enables YouTube video embedding in HTML Purifier. Check + this document + on embedding videos for more information on what this filter does. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Allowed.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Allowed.txt new file mode 100644 index 0000000..0b2c106 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Allowed.txt @@ -0,0 +1,25 @@ +HTML.Allowed +TYPE: itext/null +VERSION: 2.0.0 +DEFAULT: NULL +--DESCRIPTION-- + +

+ This is a preferred convenience directive that combines + %HTML.AllowedElements and %HTML.AllowedAttributes. + Specify elements and attributes that are allowed using: + element1[attr1|attr2],element2.... For example, + if you would like to only allow paragraphs and links, specify + a[href],p. You can specify attributes that apply + to all elements using an asterisk, e.g. *[lang]. + You can also use newlines instead of commas to separate elements. +

+

+ Warning: + All of the constraints on the component directives are still enforced. + The syntax is a subset of TinyMCE's valid_elements + whitelist: directly copy-pasting it here will probably result in + broken whitelists. If %HTML.AllowedElements or %HTML.AllowedAttributes + are set, this directive has no effect. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt new file mode 100644 index 0000000..fcf093f --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt @@ -0,0 +1,19 @@ +HTML.AllowedAttributes +TYPE: lookup/null +VERSION: 1.3.0 +DEFAULT: NULL +--DESCRIPTION-- + +

+ If HTML Purifier's attribute set is unsatisfactory, overload it! + The syntax is "tag.attr" or "*.attr" for the global attributes + (style, id, class, dir, lang, xml:lang). +

+

+ Warning: If another directive conflicts with the + elements here, that directive will win and override. For + example, %HTML.EnableAttrID will take precedence over *.id in this + directive. You must set that directive to true before you can use + IDs at all. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt new file mode 100644 index 0000000..140e214 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt @@ -0,0 +1,10 @@ +HTML.AllowedComments +TYPE: lookup +VERSION: 4.4.0 +DEFAULT: array() +--DESCRIPTION-- +A whitelist which indicates what explicit comment bodies should be +allowed, modulo leading and trailing whitespace. See also %HTML.AllowedCommentsRegexp +(these directives are union'ed together, so a comment is considered +valid if any directive deems it valid.) +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedCommentsRegexp.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedCommentsRegexp.txt new file mode 100644 index 0000000..f22e977 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedCommentsRegexp.txt @@ -0,0 +1,15 @@ +HTML.AllowedCommentsRegexp +TYPE: string/null +VERSION: 4.4.0 +DEFAULT: NULL +--DESCRIPTION-- +A regexp, which if it matches the body of a comment, indicates that +it should be allowed. Trailing and leading spaces are removed prior +to running this regular expression. +Warning: Make sure you specify +correct anchor metacharacters ^regex$, otherwise you may accept +comments that you did not mean to! In particular, the regex /foo|bar/ +is probably not sufficiently strict, since it also allows foobar. +See also %HTML.AllowedComments (these directives are union'ed together, +so a comment is considered valid if any directive deems it valid.) +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedElements.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedElements.txt new file mode 100644 index 0000000..1d3fa79 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedElements.txt @@ -0,0 +1,23 @@ +HTML.AllowedElements +TYPE: lookup/null +VERSION: 1.3.0 +DEFAULT: NULL +--DESCRIPTION-- +

+ If HTML Purifier's tag set is unsatisfactory for your needs, you can + overload it with your own list of tags to allow. If you change + this, you probably also want to change %HTML.AllowedAttributes; see + also %HTML.Allowed which lets you set allowed elements and + attributes at the same time. +

+

+ If you attempt to allow an element that HTML Purifier does not know + about, HTML Purifier will raise an error. You will need to manually + tell HTML Purifier about this element by using the + advanced customization features. +

+

+ Warning: If another directive conflicts with the + elements here, that directive will win and override. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedModules.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedModules.txt new file mode 100644 index 0000000..5a59a55 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedModules.txt @@ -0,0 +1,20 @@ +HTML.AllowedModules +TYPE: lookup/null +VERSION: 2.0.0 +DEFAULT: NULL +--DESCRIPTION-- + +

+ A doctype comes with a set of usual modules to use. Without having + to mucking about with the doctypes, you can quickly activate or + disable these modules by specifying which modules you wish to allow + with this directive. This is most useful for unit testing specific + modules, although end users may find it useful for their own ends. +

+

+ If you specify a module that does not exist, the manager will silently + fail to use it, so be careful! User-defined modules are not affected + by this directive. Modules defined in %HTML.CoreModules are not + affected by this directive. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt new file mode 100644 index 0000000..151fb7b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt @@ -0,0 +1,11 @@ +HTML.Attr.Name.UseCDATA +TYPE: bool +DEFAULT: false +VERSION: 4.0.0 +--DESCRIPTION-- +The W3C specification DTD defines the name attribute to be CDATA, not ID, due +to limitations of DTD. In certain documents, this relaxed behavior is desired, +whether it is to specify duplicate names, or to specify names that would be +illegal IDs (for example, names that begin with a digit.) Set this configuration +directive to true to use the relaxed parsing rules. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt new file mode 100644 index 0000000..45ae469 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt @@ -0,0 +1,18 @@ +HTML.BlockWrapper +TYPE: string +VERSION: 1.3.0 +DEFAULT: 'p' +--DESCRIPTION-- + +

+ String name of element to wrap inline elements that are inside a block + context. This only occurs in the children of blockquote in strict mode. +

+

+ Example: by default value, + <blockquote>Foo</blockquote> would become + <blockquote><p>Foo</p></blockquote>. + The <p> tags can be replaced with whatever you desire, + as long as it is a block level element. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CoreModules.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CoreModules.txt new file mode 100644 index 0000000..5246188 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CoreModules.txt @@ -0,0 +1,23 @@ +HTML.CoreModules +TYPE: lookup +VERSION: 2.0.0 +--DEFAULT-- +array ( + 'Structure' => true, + 'Text' => true, + 'Hypertext' => true, + 'List' => true, + 'NonXMLCommonAttributes' => true, + 'XMLCommonAttributes' => true, + 'CommonAttributes' => true, +) +--DESCRIPTION-- + +

+ Certain modularized doctypes (XHTML, namely), have certain modules + that must be included for the doctype to be an conforming document + type: put those modules here. By default, XHTML's core modules + are used. You can set this to a blank array to disable core module + protection, but this is not recommended. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt new file mode 100644 index 0000000..6ed70b5 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt @@ -0,0 +1,9 @@ +HTML.CustomDoctype +TYPE: string/null +VERSION: 2.0.1 +DEFAULT: NULL +--DESCRIPTION-- + +A custom doctype for power-users who defined their own document +type. This directive only applies when %HTML.Doctype is blank. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionID.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionID.txt new file mode 100644 index 0000000..103db75 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionID.txt @@ -0,0 +1,33 @@ +HTML.DefinitionID +TYPE: string/null +DEFAULT: NULL +VERSION: 2.0.0 +--DESCRIPTION-- + +

+ Unique identifier for a custom-built HTML definition. If you edit + the raw version of the HTMLDefinition, introducing changes that the + configuration object does not reflect, you must specify this variable. + If you change your custom edits, you should change this directive, or + clear your cache. Example: +

+
+$config = HTMLPurifier_Config::createDefault();
+$config->set('HTML', 'DefinitionID', '1');
+$def = $config->getHTMLDefinition();
+$def->addAttribute('a', 'tabindex', 'Number');
+
+

+ In the above example, the configuration is still at the defaults, but + using the advanced API, an extra attribute has been added. The + configuration object normally has no way of knowing that this change + has taken place, so it needs an extra directive: %HTML.DefinitionID. + If someone else attempts to use the default configuration, these two + pieces of code will not clobber each other in the cache, since one has + an extra directive attached to it. +

+

+ You must specify a value to this directive to use the + advanced API features. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt new file mode 100644 index 0000000..229ae02 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt @@ -0,0 +1,16 @@ +HTML.DefinitionRev +TYPE: int +VERSION: 2.0.0 +DEFAULT: 1 +--DESCRIPTION-- + +

+ Revision identifier for your custom definition specified in + %HTML.DefinitionID. This serves the same purpose: uniquely identifying + your custom definition, but this one does so in a chronological + context: revision 3 is more up-to-date then revision 2. Thus, when + this gets incremented, the cache handling is smart enough to clean + up any older revisions of your definition as well as flush the + cache. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt new file mode 100644 index 0000000..9dab497 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt @@ -0,0 +1,11 @@ +HTML.Doctype +TYPE: string/null +DEFAULT: NULL +--DESCRIPTION-- +Doctype to use during filtering. Technically speaking this is not actually +a doctype (as it does not identify a corresponding DTD), but we are using +this name for sake of simplicity. When non-blank, this will override any +older directives like %HTML.XHTML or %HTML.Strict. +--ALLOWED-- +'HTML 4.01 Transitional', 'HTML 4.01 Strict', 'XHTML 1.0 Transitional', 'XHTML 1.0 Strict', 'XHTML 1.1' +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt new file mode 100644 index 0000000..7878dc0 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt @@ -0,0 +1,11 @@ +HTML.FlashAllowFullScreen +TYPE: bool +VERSION: 4.2.0 +DEFAULT: false +--DESCRIPTION-- +

+ Whether or not to permit embedded Flash content from + %HTML.SafeObject to expand to the full screen. Corresponds to + the allowFullScreen parameter. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenAttributes.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenAttributes.txt new file mode 100644 index 0000000..57358f9 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenAttributes.txt @@ -0,0 +1,21 @@ +HTML.ForbiddenAttributes +TYPE: lookup +VERSION: 3.1.0 +DEFAULT: array() +--DESCRIPTION-- +

+ While this directive is similar to %HTML.AllowedAttributes, for + forwards-compatibility with XML, this attribute has a different syntax. Instead of + tag.attr, use tag@attr. To disallow href + attributes in a tags, set this directive to + a@href. You can also disallow an attribute globally with + attr or *@attr (either syntax is fine; the latter + is provided for consistency with %HTML.AllowedAttributes). +

+

+ Warning: This directive complements %HTML.ForbiddenElements, + accordingly, check + out that directive for a discussion of why you + should think twice before using this directive. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenElements.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenElements.txt new file mode 100644 index 0000000..93a53e1 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenElements.txt @@ -0,0 +1,20 @@ +HTML.ForbiddenElements +TYPE: lookup +VERSION: 3.1.0 +DEFAULT: array() +--DESCRIPTION-- +

+ This was, perhaps, the most requested feature ever in HTML + Purifier. Please don't abuse it! This is the logical inverse of + %HTML.AllowedElements, and it will override that directive, or any + other directive. +

+

+ If possible, %HTML.Allowed is recommended over this directive, because it + can sometimes be difficult to tell whether or not you've forbidden all of + the behavior you would like to disallow. If you forbid img + with the expectation of preventing images on your site, you'll be in for + a nasty surprise when people start using the background-image + CSS property. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Forms.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Forms.txt new file mode 100644 index 0000000..4a432d8 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Forms.txt @@ -0,0 +1,11 @@ +HTML.Forms +TYPE: bool +VERSION: 4.13.0 +DEFAULT: false +--DESCRIPTION-- +

+ Whether or not to permit form elements in the user input, regardless of + %HTML.Trusted value. Please be very careful when using this functionality, as + enabling forms in untrusted documents may allow for phishing attacks. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt new file mode 100644 index 0000000..b2591e4 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt @@ -0,0 +1,14 @@ +HTML.MaxImgLength +TYPE: int/null +DEFAULT: null +VERSION: 3.1.1 +--DESCRIPTION-- +

+ This directive controls the maximum number of pixels in the width and + height attributes in img tags. This is + in place to prevent imagecrash attacks, disable with null at your own risk. + This directive is similar to %CSS.MaxImgLength, and both should be + concurrently edited, although there are + subtle differences in the input format (the HTML max is an integer). +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt new file mode 100644 index 0000000..700b309 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt @@ -0,0 +1,7 @@ +HTML.Nofollow +TYPE: bool +VERSION: 4.3.0 +DEFAULT: FALSE +--DESCRIPTION-- +If enabled, nofollow rel attributes are added to all outgoing links. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt new file mode 100644 index 0000000..62e8e16 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt @@ -0,0 +1,12 @@ +HTML.Parent +TYPE: string +VERSION: 1.3.0 +DEFAULT: 'div' +--DESCRIPTION-- + +

+ String name of element that HTML fragment passed to library will be + inserted in. An interesting variation would be using span as the + parent element, meaning that only inline tags would be allowed. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt new file mode 100644 index 0000000..dfb7204 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt @@ -0,0 +1,12 @@ +HTML.Proprietary +TYPE: bool +VERSION: 3.1.0 +DEFAULT: false +--DESCRIPTION-- +

+ Whether or not to allow proprietary elements and attributes in your + documents, as per HTMLPurifier_HTMLModule_Proprietary. + Warning: This can cause your documents to stop + validating! +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt new file mode 100644 index 0000000..cdda09a --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt @@ -0,0 +1,13 @@ +HTML.SafeEmbed +TYPE: bool +VERSION: 3.1.1 +DEFAULT: false +--DESCRIPTION-- +

+ Whether or not to permit embed tags in documents, with a number of extra + security features added to prevent script execution. This is similar to + what websites like MySpace do to embed tags. Embed is a proprietary + element and will cause your website to stop validating; you should + see if you can use %Output.FlashCompat with %HTML.SafeObject instead + first.

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt new file mode 100644 index 0000000..5a5c103 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt @@ -0,0 +1,13 @@ +HTML.SafeIframe +TYPE: bool +VERSION: 4.4.0 +DEFAULT: false +--DESCRIPTION-- +

+ Whether or not to permit iframe tags in untrusted documents. This + directive must be accompanied by a whitelist of permitted iframes, + such as %URI.SafeIframeRegexp or %URI.SafeIframeHosts, otherwise it will fatally error. + This directive has no effect on strict doctypes, as iframes are not + valid. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt new file mode 100644 index 0000000..ceb342e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt @@ -0,0 +1,13 @@ +HTML.SafeObject +TYPE: bool +VERSION: 3.1.1 +DEFAULT: false +--DESCRIPTION-- +

+ Whether or not to permit object tags in documents, with a number of extra + security features added to prevent script execution. This is similar to + what websites like MySpace do to object tags. You should also enable + %Output.FlashCompat in order to generate Internet Explorer + compatibility code for your object tags. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt new file mode 100644 index 0000000..5ebc7a1 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt @@ -0,0 +1,10 @@ +HTML.SafeScripting +TYPE: lookup +VERSION: 4.5.0 +DEFAULT: array() +--DESCRIPTION-- +

+ Whether or not to permit script tags to external scripts in documents. + Inline scripting is not allowed, and the script must match an explicit whitelist. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt new file mode 100644 index 0000000..a8b1de5 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt @@ -0,0 +1,9 @@ +HTML.Strict +TYPE: bool +VERSION: 1.3.0 +DEFAULT: false +DEPRECATED-VERSION: 1.7.0 +DEPRECATED-USE: HTML.Doctype +--DESCRIPTION-- +Determines whether or not to use Transitional (loose) or Strict rulesets. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt new file mode 100644 index 0000000..587a167 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt @@ -0,0 +1,8 @@ +HTML.TargetBlank +TYPE: bool +VERSION: 4.4.0 +DEFAULT: FALSE +--DESCRIPTION-- +If enabled, target=blank attributes are added to all outgoing links. +(This includes links from an HTTPS version of a page to an HTTP version.) +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt new file mode 100644 index 0000000..dd514c0 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt @@ -0,0 +1,10 @@ +--# vim: et sw=4 sts=4 +HTML.TargetNoopener +TYPE: bool +VERSION: 4.8.0 +DEFAULT: TRUE +--DESCRIPTION-- +If enabled, noopener rel attributes are added to links which have +a target attribute associated with them. This prevents malicious +destinations from overwriting the original window. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoreferrer.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoreferrer.txt new file mode 100644 index 0000000..cb5a0b0 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoreferrer.txt @@ -0,0 +1,9 @@ +HTML.TargetNoreferrer +TYPE: bool +VERSION: 4.8.0 +DEFAULT: TRUE +--DESCRIPTION-- +If enabled, noreferrer rel attributes are added to links which have +a target attribute associated with them. This prevents malicious +destinations from overwriting the original window. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt new file mode 100644 index 0000000..b4c271b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt @@ -0,0 +1,8 @@ +HTML.TidyAdd +TYPE: lookup +VERSION: 2.0.0 +DEFAULT: array() +--DESCRIPTION-- + +Fixes to add to the default set of Tidy fixes as per your level. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyLevel.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyLevel.txt new file mode 100644 index 0000000..4186ccd --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyLevel.txt @@ -0,0 +1,24 @@ +HTML.TidyLevel +TYPE: string +VERSION: 2.0.0 +DEFAULT: 'medium' +--DESCRIPTION-- + +

General level of cleanliness the Tidy module should enforce. +There are four allowed values:

+
+
none
+
No extra tidying should be done
+
light
+
Only fix elements that would be discarded otherwise due to + lack of support in doctype
+
medium
+
Enforce best practices
+
heavy
+
Transform all deprecated elements and attributes to standards + compliant equivalents
+
+ +--ALLOWED-- +'none', 'light', 'medium', 'heavy' +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt new file mode 100644 index 0000000..996762b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt @@ -0,0 +1,8 @@ +HTML.TidyRemove +TYPE: lookup +VERSION: 2.0.0 +DEFAULT: array() +--DESCRIPTION-- + +Fixes to remove from the default set of Tidy fixes as per your level. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt new file mode 100644 index 0000000..1db9237 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt @@ -0,0 +1,9 @@ +HTML.Trusted +TYPE: bool +VERSION: 2.0.0 +DEFAULT: false +--DESCRIPTION-- +Indicates whether or not the user input is trusted or not. If the input is +trusted, a more expansive set of allowed tags and attributes will be used. +See also %CSS.Trusted. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt new file mode 100644 index 0000000..2a47e38 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt @@ -0,0 +1,11 @@ +HTML.XHTML +TYPE: bool +DEFAULT: true +VERSION: 1.1.0 +DEPRECATED-VERSION: 1.7.0 +DEPRECATED-USE: HTML.Doctype +--DESCRIPTION-- +Determines whether or not output is XHTML 1.0 or HTML 4.01 flavor. +--ALIASES-- +Core.XHTML +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt new file mode 100644 index 0000000..08921fd --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt @@ -0,0 +1,10 @@ +Output.CommentScriptContents +TYPE: bool +VERSION: 2.0.0 +DEFAULT: true +--DESCRIPTION-- +Determines whether or not HTML Purifier should attempt to fix up the +contents of script tags for legacy browsers with comments. +--ALIASES-- +Core.CommentScriptContents +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FixInnerHTML.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FixInnerHTML.txt new file mode 100644 index 0000000..d6f0d9f --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FixInnerHTML.txt @@ -0,0 +1,15 @@ +Output.FixInnerHTML +TYPE: bool +VERSION: 4.3.0 +DEFAULT: true +--DESCRIPTION-- +

+ If true, HTML Purifier will protect against Internet Explorer's + mishandling of the innerHTML attribute by appending + a space to any attribute that does not contain angled brackets, spaces + or quotes, but contains a backtick. This slightly changes the + semantics of any given attribute, so if this is unacceptable and + you do not use innerHTML on any of your pages, you can + turn this directive off. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt new file mode 100644 index 0000000..93398e8 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt @@ -0,0 +1,11 @@ +Output.FlashCompat +TYPE: bool +VERSION: 4.1.0 +DEFAULT: false +--DESCRIPTION-- +

+ If true, HTML Purifier will generate Internet Explorer compatibility + code for all object code. This is highly recommended if you enable + %HTML.SafeObject. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt new file mode 100644 index 0000000..79f8ad8 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt @@ -0,0 +1,13 @@ +Output.Newline +TYPE: string/null +VERSION: 2.0.1 +DEFAULT: NULL +--DESCRIPTION-- + +

+ Newline string to format final output with. If left null, HTML Purifier + will auto-detect the default newline type of the system and use that; + you can manually override it here. Remember, \r\n is Windows, \r + is Mac, and \n is Unix. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt new file mode 100644 index 0000000..232b023 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt @@ -0,0 +1,14 @@ +Output.SortAttr +TYPE: bool +VERSION: 3.2.0 +DEFAULT: false +--DESCRIPTION-- +

+ If true, HTML Purifier will sort attributes by name before writing them back + to the document, converting a tag like: <el b="" a="" c="" /> + to <el a="" b="" c="" />. This is a workaround for + a bug in FCKeditor which causes it to swap attributes order, adding noise + to text diffs. If you're not seeing this bug, chances are, you don't need + this directive. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.TidyFormat.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.TidyFormat.txt new file mode 100644 index 0000000..06bab00 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.TidyFormat.txt @@ -0,0 +1,25 @@ +Output.TidyFormat +TYPE: bool +VERSION: 1.1.1 +DEFAULT: false +--DESCRIPTION-- +

+ Determines whether or not to run Tidy on the final output for pretty + formatting reasons, such as indentation and wrap. +

+

+ This can greatly improve readability for editors who are hand-editing + the HTML, but is by no means necessary as HTML Purifier has already + fixed all major errors the HTML may have had. Tidy is a non-default + extension, and this directive will silently fail if Tidy is not + available. +

+

+ If you are looking to make the overall look of your page's source + better, I recommend running Tidy on the entire page rather than just + user-content (after all, the indentation relative to the containing + blocks will be incorrect). +

+--ALIASES-- +Core.TidyFormat +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt new file mode 100644 index 0000000..071bc02 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt @@ -0,0 +1,7 @@ +Test.ForceNoIconv +TYPE: bool +DEFAULT: false +--DESCRIPTION-- +When set to true, HTMLPurifier_Encoder will act as if iconv does not exist +and use only pure PHP implementations. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt new file mode 100644 index 0000000..eb97307 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt @@ -0,0 +1,18 @@ +URI.AllowedSchemes +TYPE: lookup +--DEFAULT-- +array ( + 'http' => true, + 'https' => true, + 'mailto' => true, + 'ftp' => true, + 'nntp' => true, + 'news' => true, + 'tel' => true, +) +--DESCRIPTION-- +Whitelist that defines the schemes that a URI is allowed to have. This +prevents XSS attacks from using pseudo-schemes like javascript or mocha. +There is also support for the data and file +URI schemes, but they are not enabled by default. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.AllowedSymbols.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.AllowedSymbols.txt new file mode 100644 index 0000000..d89a5f6 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.AllowedSymbols.txt @@ -0,0 +1,7 @@ +URI.AllowedSymbols +TYPE: string/null +DEFAULT: '!$&\'()*+,;=' +--DESCRIPTION-- +If a system permits templated URLs, then the URI encoder may need extra +hints about which symbols to preserve. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Base.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Base.txt new file mode 100644 index 0000000..876f068 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Base.txt @@ -0,0 +1,17 @@ +URI.Base +TYPE: string/null +VERSION: 2.1.0 +DEFAULT: NULL +--DESCRIPTION-- + +

+ The base URI is the URI of the document this purified HTML will be + inserted into. This information is important if HTML Purifier needs + to calculate absolute URIs from relative URIs, such as when %URI.MakeAbsolute + is on. You may use a non-absolute URI for this value, but behavior + may vary (%URI.MakeAbsolute deals nicely with both absolute and + relative paths, but forwards-compatibility is not guaranteed). + Warning: If set, the scheme on this URI + overrides the one specified by %URI.DefaultScheme. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt new file mode 100644 index 0000000..834bc08 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt @@ -0,0 +1,15 @@ +URI.DefaultScheme +TYPE: string/null +DEFAULT: 'http' +--DESCRIPTION-- + +

+ Defines through what scheme the output will be served, in order to + select the proper object validator when no scheme information is present. +

+ +

+ Starting with HTML Purifier 4.9.0, the default scheme can be null, in + which case we reject all URIs which do not have explicit schemes. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt new file mode 100644 index 0000000..f05312b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt @@ -0,0 +1,11 @@ +URI.DefinitionID +TYPE: string/null +VERSION: 2.1.0 +DEFAULT: NULL +--DESCRIPTION-- + +

+ Unique identifier for a custom-built URI definition. If you want + to add custom URIFilters, you must specify this value. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt new file mode 100644 index 0000000..80cfea9 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt @@ -0,0 +1,11 @@ +URI.DefinitionRev +TYPE: int +VERSION: 2.1.0 +DEFAULT: 1 +--DESCRIPTION-- + +

+ Revision identifier for your custom definition. See + %HTML.DefinitionRev for details. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt new file mode 100644 index 0000000..71ce025 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt @@ -0,0 +1,14 @@ +URI.Disable +TYPE: bool +VERSION: 1.3.0 +DEFAULT: false +--DESCRIPTION-- + +

+ Disables all URIs in all forms. Not sure why you'd want to do that + (after all, the Internet's founded on the notion of a hyperlink). +

+ +--ALIASES-- +Attr.DisableURI +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt new file mode 100644 index 0000000..13c122c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt @@ -0,0 +1,11 @@ +URI.DisableExternal +TYPE: bool +VERSION: 1.2.0 +DEFAULT: false +--DESCRIPTION-- +Disables links to external websites. This is a highly effective anti-spam +and anti-pagerank-leech measure, but comes at a hefty price: nolinks or +images outside of your domain will be allowed. Non-linkified URIs will +still be preserved. If you want to be able to link to subdomains or use +absolute URIs, specify %URI.Host for your website. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt new file mode 100644 index 0000000..abcc1ef --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt @@ -0,0 +1,13 @@ +URI.DisableExternalResources +TYPE: bool +VERSION: 1.3.0 +DEFAULT: false +--DESCRIPTION-- +Disables the embedding of external resources, preventing users from +embedding things like images from other hosts. This prevents access +tracking (good for email viewers), bandwidth leeching, cross-site request +forging, goatse.cx posting, and other nasties, but also results in a loss +of end-user functionality (they can't directly post a pic they posted from +Flickr anymore). Use it if you don't have a robust user-content moderation +team. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt new file mode 100644 index 0000000..f891de4 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt @@ -0,0 +1,15 @@ +URI.DisableResources +TYPE: bool +VERSION: 4.2.0 +DEFAULT: false +--DESCRIPTION-- +

+ Disables embedding resources, essentially meaning no pictures. You can + still link to them though. See %URI.DisableExternalResources for why + this might be a good idea. +

+

+ Note: While this directive has been available since 1.3.0, + it didn't actually start doing anything until 4.2.0. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Host.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Host.txt new file mode 100644 index 0000000..ee83b12 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Host.txt @@ -0,0 +1,19 @@ +URI.Host +TYPE: string/null +VERSION: 1.2.0 +DEFAULT: NULL +--DESCRIPTION-- + +

+ Defines the domain name of the server, so we can determine whether or + an absolute URI is from your website or not. Not strictly necessary, + as users should be using relative URIs to reference resources on your + website. It will, however, let you use absolute URIs to link to + subdomains of the domain you post here: i.e. example.com will allow + sub.example.com. However, higher up domains will still be excluded: + if you set %URI.Host to sub.example.com, example.com will be blocked. + Note: This directive overrides %URI.Base because + a given page may be on a sub-domain, but you wish HTML Purifier to be + more relaxed and allow some of the parent domains too. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt new file mode 100644 index 0000000..0b6df76 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt @@ -0,0 +1,9 @@ +URI.HostBlacklist +TYPE: list +VERSION: 1.3.0 +DEFAULT: array() +--DESCRIPTION-- +List of strings that are forbidden in the host of any URI. Use it to kill +domain names of spam, etc. Note that it will catch anything in the domain, +so moo.com will catch moo.com.example.com. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt new file mode 100644 index 0000000..4214900 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt @@ -0,0 +1,13 @@ +URI.MakeAbsolute +TYPE: bool +VERSION: 2.1.0 +DEFAULT: false +--DESCRIPTION-- + +

+ Converts all URIs into absolute forms. This is useful when the HTML + being filtered assumes a specific base path, but will actually be + viewed in a different context (and setting an alternate base URI is + not possible). %URI.Base must be set for this directive to work. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Munge.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Munge.txt new file mode 100644 index 0000000..58c81dc --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Munge.txt @@ -0,0 +1,83 @@ +URI.Munge +TYPE: string/null +VERSION: 1.3.0 +DEFAULT: NULL +--DESCRIPTION-- + +

+ Munges all browsable (usually http, https and ftp) + absolute URIs into another URI, usually a URI redirection service. + This directive accepts a URI, formatted with a %s where + the url-encoded original URI should be inserted (sample: + http://www.google.com/url?q=%s). +

+

+ Uses for this directive: +

+
    +
  • + Prevent PageRank leaks, while being fairly transparent + to users (you may also want to add some client side JavaScript to + override the text in the statusbar). Notice: + Many security experts believe that this form of protection does not deter spam-bots. +
  • +
  • + Redirect users to a splash page telling them they are leaving your + website. While this is poor usability practice, it is often mandated + in corporate environments. +
  • +
+

+ Prior to HTML Purifier 3.1.1, this directive also enabled the munging + of browsable external resources, which could break things if your redirection + script was a splash page or used meta tags. To revert to + previous behavior, please use %URI.MungeResources. +

+

+ You may want to also use %URI.MungeSecretKey along with this directive + in order to enforce what URIs your redirector script allows. Open + redirector scripts can be a security risk and negatively affect the + reputation of your domain name. +

+

+ Starting with HTML Purifier 3.1.1, there is also these substitutions: +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
KeyDescriptionExample <a href="">
%r1 - The URI embeds a resource
(blank) - The URI is merely a link
%nThe name of the tag this URI came froma
%mThe name of the attribute this URI came fromhref
%pThe name of the CSS property this URI came from, or blank if irrelevant
+

+ Admittedly, these letters are somewhat arbitrary; the only stipulation + was that they couldn't be a through f. r is for resource (I would have preferred + e, but you take what you can get), n is for name, m + was picked because it came after n (and I couldn't use a), p is for + property. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt new file mode 100644 index 0000000..6fce0fd --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt @@ -0,0 +1,17 @@ +URI.MungeResources +TYPE: bool +VERSION: 3.1.1 +DEFAULT: false +--DESCRIPTION-- +

+ If true, any URI munging directives like %URI.Munge + will also apply to embedded resources, such as <img src="">. + Be careful enabling this directive if you have a redirector script + that does not use the Location HTTP header; all of your images + and other embedded resources will break. +

+

+ Warning: It is strongly advised you use this in conjunction + %URI.MungeSecretKey to mitigate the security risk of an open redirector. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MungeSecretKey.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MungeSecretKey.txt new file mode 100644 index 0000000..1e17c1d --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MungeSecretKey.txt @@ -0,0 +1,30 @@ +URI.MungeSecretKey +TYPE: string/null +VERSION: 3.1.1 +DEFAULT: NULL +--DESCRIPTION-- +

+ This directive enables secure checksum generation along with %URI.Munge. + It should be set to a secure key that is not shared with anyone else. + The checksum can be placed in the URI using %t. Use of this checksum + affords an additional level of protection by allowing a redirector + to check if a URI has passed through HTML Purifier with this line: +

+ +
$checksum === hash_hmac("sha256", $url, $secret_key)
+ +

+ If the output is TRUE, the redirector script should accept the URI. +

+ +

+ Please note that it would still be possible for an attacker to procure + secure hashes en-mass by abusing your website's Preview feature or the + like, but this service affords an additional level of protection + that should be combined with website blacklisting. +

+ +

+ Remember this has no effect if %URI.Munge is not on. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt new file mode 100644 index 0000000..23331a4 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt @@ -0,0 +1,9 @@ +URI.OverrideAllowedSchemes +TYPE: bool +DEFAULT: true +--DESCRIPTION-- +If this is set to true (which it is by default), you can override +%URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the +registry. If false, you will also have to update that directive in order +to add more schemes. +--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeHosts.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeHosts.txt new file mode 100644 index 0000000..c32b52c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeHosts.txt @@ -0,0 +1,14 @@ +URI.SafeIframeHosts +TYPE: lookup/null +DEFAULT: null +--DESCRIPTION-- +

+ A whitelist which indicates what explicit hosts should be + allowed to embed iframe. See also %HTML.SafeIframeRegexp, + it has precedence over this config. Here are some example values: +

+
    +
  • www.youtube.com - Allow YouTube videos
  • +
  • maps.google.com - Allow Embedding a Google map
  • +
+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeRegexp.txt b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeRegexp.txt new file mode 100644 index 0000000..7908483 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeRegexp.txt @@ -0,0 +1,22 @@ +URI.SafeIframeRegexp +TYPE: string/null +VERSION: 4.4.0 +DEFAULT: NULL +--DESCRIPTION-- +

+ A PCRE regular expression that will be matched against an iframe URI. This is + a relatively inflexible scheme, but works well enough for the most common + use-case of iframes: embedded video. This directive only has an effect if + %HTML.SafeIframe is enabled. Here are some example values: +

+
    +
  • %^http://www.youtube.com/embed/% - Allow YouTube videos
  • +
  • %^http://player.vimeo.com/video/% - Allow Vimeo videos
  • +
  • %^http://(www.youtube.com/embed/|player.vimeo.com/video/)% - Allow both
  • +
+

+ Note that this directive does not give you enough granularity to, say, disable + all autoplay videos. Pipe up on the HTML Purifier forums if this + is a capability you want. +

+--# vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ContentSets.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ContentSets.php new file mode 100644 index 0000000..d342995 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ContentSets.php @@ -0,0 +1,169 @@ + true) indexed by name. + * @type array + * @note This is in HTMLPurifier_HTMLDefinition->info_content_sets + */ + public $lookup = array(); + + /** + * Synchronized list of defined content sets (keys of info). + * @type array + */ + protected $keys = array(); + /** + * Synchronized list of defined content values (values of info). + * @type array + */ + protected $values = array(); + + /** + * Merges in module's content sets, expands identifiers in the content + * sets and populates the keys, values and lookup member variables. + * @param HTMLPurifier_HTMLModule[] $modules List of HTMLPurifier_HTMLModule + */ + public function __construct($modules) + { + if (!is_array($modules)) { + $modules = array($modules); + } + // populate content_sets based on module hints + // sorry, no way of overloading + foreach ($modules as $module) { + foreach ($module->content_sets as $key => $value) { + $temp = $this->convertToLookup($value); + if (isset($this->lookup[$key])) { + // add it into the existing content set + $this->lookup[$key] = array_merge($this->lookup[$key], $temp); + } else { + $this->lookup[$key] = $temp; + } + } + } + $old_lookup = false; + while ($old_lookup !== $this->lookup) { + $old_lookup = $this->lookup; + foreach ($this->lookup as $i => $set) { + $add = array(); + foreach ($set as $element => $x) { + if (isset($this->lookup[$element])) { + $add += $this->lookup[$element]; + unset($this->lookup[$i][$element]); + } + } + $this->lookup[$i] += $add; + } + } + + foreach ($this->lookup as $key => $lookup) { + $this->info[$key] = implode(' | ', array_keys($lookup)); + } + $this->keys = array_keys($this->info); + $this->values = array_values($this->info); + } + + /** + * Accepts a definition; generates and assigns a ChildDef for it + * @param HTMLPurifier_ElementDef $def HTMLPurifier_ElementDef reference + * @param HTMLPurifier_HTMLModule $module Module that defined the ElementDef + */ + public function generateChildDef(&$def, $module) + { + if (!empty($def->child)) { // already done! + return; + } + $content_model = $def->content_model; + if (is_string($content_model)) { + // Assume that $this->keys is alphanumeric + $def->content_model = preg_replace_callback( + '/\b(' . implode('|', $this->keys) . ')\b/', + array($this, 'generateChildDefCallback'), + $content_model + ); + //$def->content_model = str_replace( + // $this->keys, $this->values, $content_model); + } + $def->child = $this->getChildDef($def, $module); + } + + public function generateChildDefCallback($matches) + { + return $this->info[$matches[0]]; + } + + /** + * Instantiates a ChildDef based on content_model and content_model_type + * member variables in HTMLPurifier_ElementDef + * @note This will also defer to modules for custom HTMLPurifier_ChildDef + * subclasses that need content set expansion + * @param HTMLPurifier_ElementDef $def HTMLPurifier_ElementDef to have ChildDef extracted + * @param HTMLPurifier_HTMLModule $module Module that defined the ElementDef + * @return HTMLPurifier_ChildDef corresponding to ElementDef + */ + public function getChildDef($def, $module) + { + $value = $def->content_model; + if (is_object($value)) { + trigger_error( + 'Literal object child definitions should be stored in '. + 'ElementDef->child not ElementDef->content_model', + E_USER_NOTICE + ); + return $value; + } + switch ($def->content_model_type) { + case 'required': + return new HTMLPurifier_ChildDef_Required($value); + case 'optional': + return new HTMLPurifier_ChildDef_Optional($value); + case 'empty': + return new HTMLPurifier_ChildDef_Empty(); + case 'custom': + return new HTMLPurifier_ChildDef_Custom($value); + } + // defer to its module + $return = false; + if ($module->defines_child_def) { // save a func call + $return = $module->getChildDef($def); + } + if ($return !== false) { + return $return; + } + + throw new Exception( + 'Could not determine which ChildDef class to instantiate', + E_USER_ERROR + ); + } + + /** + * Converts a string list of elements separated by pipes into + * a lookup array. + * @param string $string List of elements + * @return array Lookup array of elements + */ + protected function convertToLookup($string) + { + $array = explode('|', str_replace(' ', '', $string)); + $ret = array(); + foreach ($array as $k) { + $ret[$k] = true; + } + return $ret; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Context.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Context.php new file mode 100644 index 0000000..5a0e7b9 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Context.php @@ -0,0 +1,84 @@ +_storage)) { + throw new Exception("Name $name produces collision, cannot re-register"); + } + $this->_storage[$name] =& $ref; + } + + /** + * Retrieves a variable reference from the context. + * @param string $name String name + * @param bool $ignore_error Boolean whether or not to ignore error + * @return mixed + */ + public function &get($name, $ignore_error = false) + { + if (!array_key_exists($name, $this->_storage)) { + if (!$ignore_error) { + throw new Exception("Attempted to retrieve non-existent variable $name"); + } + $var = null; // so we can return by reference + return $var; + } + return $this->_storage[$name]; + } + + /** + * Destroys a variable in the context. + * @param string $name String name + */ + public function destroy($name) + { + if (!array_key_exists($name, $this->_storage)) { + throw new Exception("Attempted to destroy non-existent variable $name"); + } + unset($this->_storage[$name]); + } + + /** + * Checks whether or not the variable exists. + * @param string $name String name + * @return bool + */ + public function exists($name) + { + return array_key_exists($name, $this->_storage); + } + + /** + * Loads a series of variables from an associative array + * @param array $context_array Assoc array of variables to load + */ + public function loadArray($context_array) + { + foreach ($context_array as $key => $discard) { + $this->register($key, $context_array[$key]); + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Definition.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Definition.php new file mode 100644 index 0000000..bc6d433 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Definition.php @@ -0,0 +1,55 @@ +setup) { + return; + } + $this->setup = true; + $this->doSetup($config); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache.php new file mode 100644 index 0000000..9aa8ff3 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache.php @@ -0,0 +1,129 @@ +type = $type; + } + + /** + * Generates a unique identifier for a particular configuration + * @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config + * @return string + */ + public function generateKey($config) + { + return $config->version . ',' . // possibly replace with function calls + $config->getBatchSerial($this->type) . ',' . + $config->get($this->type . '.DefinitionRev'); + } + + /** + * Tests whether or not a key is old with respect to the configuration's + * version and revision number. + * @param string $key Key to test + * @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config to test against + * @return bool + */ + public function isOld($key, $config) + { + if (substr_count($key, ',') < 2) { + return true; + } + list($version, $hash, $revision) = explode(',', $key, 3); + $compare = version_compare($version, $config->version); + // version mismatch, is always old + if ($compare != 0) { + return true; + } + // versions match, ids match, check revision number + if ($hash == $config->getBatchSerial($this->type) && + $revision < $config->get($this->type . '.DefinitionRev')) { + return true; + } + return false; + } + + /** + * Checks if a definition's type jives with the cache's type + * @note Throws an error on failure + * @param HTMLPurifier_Definition $def Definition object to check + * @return bool true if good, false if not + */ + public function checkDefType($def) + { + if ($def->type !== $this->type) { + trigger_error("Cannot use definition of type {$def->type} in cache for {$this->type}"); + return false; + } + return true; + } + + /** + * Adds a definition object to the cache + * @param HTMLPurifier_Definition $def + * @param HTMLPurifier_Config $config + */ + abstract public function add($def, $config); + + /** + * Unconditionally saves a definition object to the cache + * @param HTMLPurifier_Definition $def + * @param HTMLPurifier_Config $config + */ + abstract public function set($def, $config); + + /** + * Replace an object in the cache + * @param HTMLPurifier_Definition $def + * @param HTMLPurifier_Config $config + */ + abstract public function replace($def, $config); + + /** + * Retrieves a definition object from the cache + * @param HTMLPurifier_Config $config + */ + abstract public function get($config); + + /** + * Removes a definition object to the cache + * @param HTMLPurifier_Config $config + */ + abstract public function remove($config); + + /** + * Clears all objects from cache + * @param HTMLPurifier_Config $config + */ + abstract public function flush($config); + + /** + * Clears all expired (older version or revision) objects from cache + * @note Be careful implementing this method as flush. Flush must + * not interfere with other Definition types, and cleanup() + * should not be repeatedly called by userland code. + * @param HTMLPurifier_Config $config + */ + abstract public function cleanup($config); +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator.php new file mode 100644 index 0000000..b57a51b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator.php @@ -0,0 +1,112 @@ +copy(); + // reference is necessary for mocks in PHP 4 + $decorator->cache =& $cache; + $decorator->type = $cache->type; + return $decorator; + } + + /** + * Cross-compatible clone substitute + * @return HTMLPurifier_DefinitionCache_Decorator + */ + public function copy() + { + return new HTMLPurifier_DefinitionCache_Decorator(); + } + + /** + * @param HTMLPurifier_Definition $def + * @param HTMLPurifier_Config $config + * @return mixed + */ + public function add($def, $config) + { + return $this->cache->add($def, $config); + } + + /** + * @param HTMLPurifier_Definition $def + * @param HTMLPurifier_Config $config + * @return mixed + */ + public function set($def, $config) + { + return $this->cache->set($def, $config); + } + + /** + * @param HTMLPurifier_Definition $def + * @param HTMLPurifier_Config $config + * @return mixed + */ + public function replace($def, $config) + { + return $this->cache->replace($def, $config); + } + + /** + * @param HTMLPurifier_Config $config + * @return mixed + */ + public function get($config) + { + return $this->cache->get($config); + } + + /** + * @param HTMLPurifier_Config $config + * @return mixed + */ + public function remove($config) + { + return $this->cache->remove($config); + } + + /** + * @param HTMLPurifier_Config $config + * @return mixed + */ + public function flush($config) + { + return $this->cache->flush($config); + } + + /** + * @param HTMLPurifier_Config $config + * @return mixed + */ + public function cleanup($config) + { + return $this->cache->cleanup($config); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php new file mode 100644 index 0000000..4991777 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php @@ -0,0 +1,78 @@ +definitions[$this->generateKey($config)] = $def; + } + return $status; + } + + /** + * @param HTMLPurifier_Definition $def + * @param HTMLPurifier_Config $config + * @return mixed + */ + public function set($def, $config) + { + $status = parent::set($def, $config); + if ($status) { + $this->definitions[$this->generateKey($config)] = $def; + } + return $status; + } + + /** + * @param HTMLPurifier_Definition $def + * @param HTMLPurifier_Config $config + * @return mixed + */ + public function replace($def, $config) + { + $status = parent::replace($def, $config); + if ($status) { + $this->definitions[$this->generateKey($config)] = $def; + } + return $status; + } + + /** + * @param HTMLPurifier_Config $config + * @return mixed + */ + public function get($config) + { + $key = $this->generateKey($config); + if (isset($this->definitions[$key])) { + return $this->definitions[$key]; + } + $this->definitions[$key] = parent::get($config); + return $this->definitions[$key]; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Template.php.in b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Template.php.in new file mode 100644 index 0000000..b1fec8d --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Template.php.in @@ -0,0 +1,82 @@ +checkDefType($def)) { + return; + } + $file = $this->generateFilePath($config); + if (file_exists($file)) { + return false; + } + if (!$this->_prepareDir($config)) { + return false; + } + return $this->_write($file, serialize($def), $config); + } + + /** + * @param HTMLPurifier_Definition $def + * @param HTMLPurifier_Config $config + * @return int|bool + */ + public function set($def, $config) + { + if (!$this->checkDefType($def)) { + return; + } + $file = $this->generateFilePath($config); + if (!$this->_prepareDir($config)) { + return false; + } + return $this->_write($file, serialize($def), $config); + } + + /** + * @param HTMLPurifier_Definition $def + * @param HTMLPurifier_Config $config + * @return int|bool + */ + public function replace($def, $config) + { + if (!$this->checkDefType($def)) { + return; + } + $file = $this->generateFilePath($config); + if (!file_exists($file)) { + return false; + } + if (!$this->_prepareDir($config)) { + return false; + } + return $this->_write($file, serialize($def), $config); + } + + /** + * @param HTMLPurifier_Config $config + * @return bool|HTMLPurifier_Config + */ + public function get($config) + { + $file = $this->generateFilePath($config); + if (!file_exists($file)) { + return false; + } + return unserialize(file_get_contents($file)); + } + + /** + * @param HTMLPurifier_Config $config + * @return bool + */ + public function remove($config) + { + $file = $this->generateFilePath($config); + if (!file_exists($file)) { + return false; + } + return unlink($file); + } + + /** + * @param HTMLPurifier_Config $config + * @return bool + */ + public function flush($config) + { + if (!$this->_prepareDir($config)) { + return false; + } + $dir = $this->generateDirectoryPath($config); + $dh = opendir($dir); + // Apparently, on some versions of PHP, readdir will return + // an empty string if you pass an invalid argument to readdir. + // So you need this test. See #49. + if (false === $dh) { + return false; + } + while (false !== ($filename = readdir($dh))) { + if (empty($filename)) { + continue; + } + if ($filename[0] === '.') { + continue; + } + unlink($dir . '/' . $filename); + } + closedir($dh); + return true; + } + + /** + * @param HTMLPurifier_Config $config + * @return bool + */ + public function cleanup($config) + { + if (!$this->_prepareDir($config)) { + return false; + } + $dir = $this->generateDirectoryPath($config); + $dh = opendir($dir); + // See #49 (and above). + if (false === $dh) { + return false; + } + while (false !== ($filename = readdir($dh))) { + if (empty($filename)) { + continue; + } + if ($filename[0] === '.') { + continue; + } + $key = substr($filename, 0, strlen($filename) - 4); + $file = $dir . '/' . $filename; + if ($this->isOld($key, $config) && file_exists($file)) { + unlink($file); + } + } + closedir($dh); + return true; + } + + /** + * Generates the file path to the serial file corresponding to + * the configuration and definition name + * @param HTMLPurifier_Config $config + * @return string + * @todo Make protected + */ + public function generateFilePath($config) + { + $key = $this->generateKey($config); + return $this->generateDirectoryPath($config) . '/' . $key . '.ser'; + } + + /** + * Generates the path to the directory contain this cache's serial files + * @param HTMLPurifier_Config $config + * @return string + * @note No trailing slash + * @todo Make protected + */ + public function generateDirectoryPath($config) + { + $base = $this->generateBaseDirectoryPath($config); + return $base . '/' . $this->type; + } + + /** + * Generates path to base directory that contains all definition type + * serials + * @param HTMLPurifier_Config $config + * @return mixed|string + * @todo Make protected + */ + public function generateBaseDirectoryPath($config) + { + $base = $config->get('Cache.SerializerPath'); + $base = is_null($base) ? HTMLPURIFIER_PREFIX . '/HTMLPurifier/DefinitionCache/Serializer' : $base; + return $base; + } + + /** + * Convenience wrapper function for file_put_contents + * @param string $file File name to write to + * @param string $data Data to write into file + * @param HTMLPurifier_Config $config + * @return int|bool Number of bytes written if success, or false if failure. + */ + private function _write($file, $data, $config) + { + $result = file_put_contents($file, $data); + if ($result !== false) { + // set permissions of the new file (no execute) + $chmod = $config->get('Cache.SerializerPermissions'); + if ($chmod !== null) { + chmod($file, $chmod & 0666); + } + } + return $result; + } + + /** + * Prepares the directory that this type stores the serials in + * @param HTMLPurifier_Config $config + * @return bool True if successful + */ + private function _prepareDir($config) + { + $directory = $this->generateDirectoryPath($config); + $chmod = $config->get('Cache.SerializerPermissions'); + if ($chmod === null) { + if (!@mkdir($directory) && !is_dir($directory)) { + trigger_error( + 'Could not create directory ' . $directory . '', + E_USER_WARNING + ); + return false; + } + return true; + } + if (!is_dir($directory)) { + $base = $this->generateBaseDirectoryPath($config); + if (!is_dir($base)) { + trigger_error( + 'Base directory ' . $base . ' does not exist, + please create or change using %Cache.SerializerPath', + E_USER_WARNING + ); + return false; + } elseif (!$this->_testPermissions($base, $chmod)) { + return false; + } + if (!@mkdir($directory, $chmod) && !is_dir($directory)) { + trigger_error( + 'Could not create directory ' . $directory . '', + E_USER_WARNING + ); + return false; + } + if (!$this->_testPermissions($directory, $chmod)) { + return false; + } + } elseif (!$this->_testPermissions($directory, $chmod)) { + return false; + } + return true; + } + + /** + * Tests permissions on a directory and throws out friendly + * error messages and attempts to chmod it itself if possible + * @param string $dir Directory path + * @param int $chmod Permissions + * @return bool True if directory is writable + */ + private function _testPermissions($dir, $chmod) + { + // early abort, if it is writable, everything is hunky-dory + if (is_writable($dir)) { + return true; + } + if (!is_dir($dir)) { + // generally, you'll want to handle this beforehand + // so a more specific error message can be given + trigger_error( + 'Directory ' . $dir . ' does not exist', + E_USER_WARNING + ); + return false; + } + if (function_exists('posix_getuid') && $chmod !== null) { + // POSIX system, we can give more specific advice + if (fileowner($dir) === posix_getuid()) { + // we can chmod it ourselves + $chmod = $chmod | 0700; + if (chmod($dir, $chmod)) { + return true; + } + } elseif (filegroup($dir) === posix_getgid()) { + $chmod = $chmod | 0070; + } else { + // PHP's probably running as nobody, it is + // not obvious how to fix this (777 is probably + // bad if you are multi-user), let the user figure it out + $chmod = null; + } + trigger_error( + 'Directory ' . $dir . ' not writable. ' . + ($chmod === null ? '' : 'Please chmod to ' . decoct($chmod)), + E_USER_WARNING + ); + } else { + // generic error message + trigger_error( + 'Directory ' . $dir . ' not writable, ' . + 'please alter file permissions', + E_USER_WARNING + ); + } + return false; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer/README b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer/README new file mode 100644 index 0000000..2e35c1c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer/README @@ -0,0 +1,3 @@ +This is a dummy file to prevent Git from ignoring this empty directory. + + vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCacheFactory.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCacheFactory.php new file mode 100644 index 0000000..3a0f461 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCacheFactory.php @@ -0,0 +1,106 @@ + array()); + + /** + * @type array + */ + protected $implementations = array(); + + /** + * @type HTMLPurifier_DefinitionCache_Decorator[] + */ + protected $decorators = array(); + + /** + * Initialize default decorators + */ + public function setup() + { + $this->addDecorator('Cleanup'); + } + + /** + * Retrieves an instance of global definition cache factory. + * @param HTMLPurifier_DefinitionCacheFactory $prototype + * @return HTMLPurifier_DefinitionCacheFactory + */ + public static function instance($prototype = null) + { + static $instance; + if ($prototype !== null) { + $instance = $prototype; + } elseif ($instance === null || $prototype === true) { + $instance = new HTMLPurifier_DefinitionCacheFactory(); + $instance->setup(); + } + return $instance; + } + + /** + * Registers a new definition cache object + * @param string $short Short name of cache object, for reference + * @param string $long Full class name of cache object, for construction + */ + public function register($short, $long) + { + $this->implementations[$short] = $long; + } + + /** + * Factory method that creates a cache object based on configuration + * @param string $type Name of definitions handled by cache + * @param HTMLPurifier_Config $config Config instance + * @return mixed + */ + public function create($type, $config) + { + $method = $config->get('Cache.DefinitionImpl'); + if ($method === null) { + return new HTMLPurifier_DefinitionCache_Null($type); + } + if (!empty($this->caches[$method][$type])) { + return $this->caches[$method][$type]; + } + if (isset($this->implementations[$method]) && + class_exists($class = $this->implementations[$method])) { + $cache = new $class($type); + } else { + if ($method != 'Serializer') { + trigger_error("Unrecognized DefinitionCache $method, using Serializer instead", E_USER_WARNING); + } + $cache = new HTMLPurifier_DefinitionCache_Serializer($type); + } + foreach ($this->decorators as $decorator) { + $new_cache = $decorator->decorate($cache); + // prevent infinite recursion in PHP 4 + unset($cache); + $cache = $new_cache; + } + $this->caches[$method][$type] = $cache; + return $this->caches[$method][$type]; + } + + /** + * Registers a decorator to add to all new cache objects + * @param HTMLPurifier_DefinitionCache_Decorator|string $decorator An instance or the name of a decorator + */ + public function addDecorator($decorator) + { + if (is_string($decorator)) { + $class = "HTMLPurifier_DefinitionCache_Decorator_$decorator"; + $decorator = new $class; + } + $this->decorators[$decorator->name] = $decorator; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Doctype.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Doctype.php new file mode 100644 index 0000000..4acd06e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Doctype.php @@ -0,0 +1,73 @@ +renderDoctype. + * If structure changes, please update that function. + */ +class HTMLPurifier_Doctype +{ + /** + * Full name of doctype + * @type string + */ + public $name; + + /** + * List of standard modules (string identifiers or literal objects) + * that this doctype uses + * @type array + */ + public $modules = array(); + + /** + * List of modules to use for tidying up code + * @type array + */ + public $tidyModules = array(); + + /** + * Is the language derived from XML (i.e. XHTML)? + * @type bool + */ + public $xml = true; + + /** + * List of aliases for this doctype + * @type array + */ + public $aliases = array(); + + /** + * Public DTD identifier + * @type string + */ + public $dtdPublic; + + /** + * System DTD identifier + * @type string + */ + public $dtdSystem; + + public function __construct( + $name = null, + $xml = true, + $modules = array(), + $tidyModules = array(), + $aliases = array(), + $dtd_public = null, + $dtd_system = null + ) { + $this->name = $name; + $this->xml = $xml; + $this->modules = $modules; + $this->tidyModules = $tidyModules; + $this->aliases = $aliases; + $this->dtdPublic = $dtd_public; + $this->dtdSystem = $dtd_system; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DoctypeRegistry.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DoctypeRegistry.php new file mode 100644 index 0000000..9ad7b4b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DoctypeRegistry.php @@ -0,0 +1,142 @@ +doctypes[$doctype->name] = $doctype; + $name = $doctype->name; + // hookup aliases + foreach ($doctype->aliases as $alias) { + if (isset($this->doctypes[$alias])) { + continue; + } + $this->aliases[$alias] = $name; + } + // remove old aliases + if (isset($this->aliases[$name])) { + unset($this->aliases[$name]); + } + return $doctype; + } + + /** + * Retrieves reference to a doctype of a certain name + * @note This function resolves aliases + * @note When possible, use the more fully-featured make() + * @param string $doctype Name of doctype + * @return HTMLPurifier_Doctype Editable doctype object + */ + public function get($doctype) + { + if (isset($this->aliases[$doctype])) { + $doctype = $this->aliases[$doctype]; + } + if (!isset($this->doctypes[$doctype])) { + throw new Exception('Doctype ' . htmlspecialchars($doctype) . ' does not exist'); + $anon = new HTMLPurifier_Doctype($doctype); + return $anon; + } + return $this->doctypes[$doctype]; + } + + /** + * Creates a doctype based on a configuration object, + * will perform initialization on the doctype + * @note Use this function to get a copy of doctype that config + * can hold on to (this is necessary in order to tell + * Generator whether or not the current document is XML + * based or not). + * @param HTMLPurifier_Config $config + * @return HTMLPurifier_Doctype + */ + public function make($config) + { + return clone $this->get($this->getDoctypeFromConfig($config)); + } + + /** + * Retrieves the doctype from the configuration object + * @param HTMLPurifier_Config $config + * @return string + */ + public function getDoctypeFromConfig($config) + { + // recommended test + $doctype = $config->get('HTML.Doctype'); + if (!empty($doctype)) { + return $doctype; + } + $doctype = $config->get('HTML.CustomDoctype'); + if (!empty($doctype)) { + return $doctype; + } + // backwards-compatibility + if ($config->get('HTML.XHTML')) { + $doctype = 'XHTML 1.0'; + } else { + $doctype = 'HTML 4.01'; + } + if ($config->get('HTML.Strict')) { + $doctype .= ' Strict'; + } else { + $doctype .= ' Transitional'; + } + return $doctype; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ElementDef.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ElementDef.php new file mode 100644 index 0000000..57cfd2b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ElementDef.php @@ -0,0 +1,216 @@ +setup(), this array may also + * contain an array at index 0 that indicates which attribute + * collections to load into the full array. It may also + * contain string indentifiers in lieu of HTMLPurifier_AttrDef, + * see HTMLPurifier_AttrTypes on how they are expanded during + * HTMLPurifier_HTMLDefinition->setup() processing. + */ + public $attr = array(); + + // XXX: Design note: currently, it's not possible to override + // previously defined AttrTransforms without messing around with + // the final generated config. This is by design; a previous version + // used an associated list of attr_transform, but it was extremely + // easy to accidentally override other attribute transforms by + // forgetting to specify an index (and just using 0.) While we + // could check this by checking the index number and complaining, + // there is a second problem which is that it is not at all easy to + // tell when something is getting overridden. Combine this with a + // codebase where this isn't really being used, and it's perfect for + // nuking. + + /** + * List of tags HTMLPurifier_AttrTransform to be done before validation. + * @type array + */ + public $attr_transform_pre = array(); + + /** + * List of tags HTMLPurifier_AttrTransform to be done after validation. + * @type array + */ + public $attr_transform_post = array(); + + /** + * HTMLPurifier_ChildDef of this tag. + * @type HTMLPurifier_ChildDef + */ + public $child; + + /** + * Abstract string representation of internal ChildDef rules. + * @see HTMLPurifier_ContentSets for how this is parsed and then transformed + * into an HTMLPurifier_ChildDef. + * @warning This is a temporary variable that is not available after + * being processed by HTMLDefinition + * @type string + */ + public $content_model; + + /** + * Value of $child->type, used to determine which ChildDef to use, + * used in combination with $content_model. + * @warning This must be lowercase + * @warning This is a temporary variable that is not available after + * being processed by HTMLDefinition + * @type string + */ + public $content_model_type; + + /** + * Does the element have a content model (#PCDATA | Inline)*? This + * is important for chameleon ins and del processing in + * HTMLPurifier_ChildDef_Chameleon. Dynamically set: modules don't + * have to worry about this one. + * @type bool + */ + public $descendants_are_inline = false; + + /** + * List of the names of required attributes this element has. + * Dynamically populated by HTMLPurifier_HTMLDefinition::getElement() + * @type array + */ + public $required_attr = array(); + + /** + * Lookup table of tags excluded from all descendants of this tag. + * @type array + * @note SGML permits exclusions for all descendants, but this is + * not possible with DTDs or XML Schemas. W3C has elected to + * use complicated compositions of content_models to simulate + * exclusion for children, but we go the simpler, SGML-style + * route of flat-out exclusions, which correctly apply to + * all descendants and not just children. Note that the XHTML + * Modularization Abstract Modules are blithely unaware of such + * distinctions. + */ + public $excludes = array(); + + /** + * This tag is explicitly auto-closed by the following tags. + * @type array + */ + public $autoclose = array(); + + /** + * If a foreign element is found in this element, test if it is + * allowed by this sub-element; if it is, instead of closing the + * current element, place it inside this element. + * @type string + */ + public $wrap; + + /** + * Whether or not this is a formatting element affected by the + * "Active Formatting Elements" algorithm. + * @type bool + */ + public $formatting; + + /** + * Low-level factory constructor for creating new standalone element defs + */ + public static function create($content_model, $content_model_type, $attr) + { + $def = new HTMLPurifier_ElementDef(); + $def->content_model = $content_model; + $def->content_model_type = $content_model_type; + $def->attr = $attr; + return $def; + } + + /** + * Merges the values of another element definition into this one. + * Values from the new element def take precedence if a value is + * not mergeable. + * @param HTMLPurifier_ElementDef $def + */ + public function mergeIn($def) + { + // later keys takes precedence + foreach ($def->attr as $k => $v) { + if ($k === 0) { + // merge in the includes + // sorry, no way to override an include + foreach ($v as $v2) { + $this->attr[0][] = $v2; + } + continue; + } + if ($v === false) { + if (isset($this->attr[$k])) { + unset($this->attr[$k]); + } + continue; + } + $this->attr[$k] = $v; + } + $this->_mergeAssocArray($this->excludes, $def->excludes); + $this->attr_transform_pre = array_merge($this->attr_transform_pre, $def->attr_transform_pre); + $this->attr_transform_post = array_merge($this->attr_transform_post, $def->attr_transform_post); + + if (!empty($def->content_model)) { + $this->content_model = + str_replace("#SUPER", (string)$this->content_model, $def->content_model); + $this->child = false; + } + if (!empty($def->content_model_type)) { + $this->content_model_type = $def->content_model_type; + $this->child = false; + } + if (!is_null($def->child)) { + $this->child = $def->child; + } + if (!is_null($def->formatting)) { + $this->formatting = $def->formatting; + } + if ($def->descendants_are_inline) { + $this->descendants_are_inline = $def->descendants_are_inline; + } + } + + /** + * Merges one array into another, removes values which equal false + * @param $a1 Array by reference that is merged into + * @param $a2 Array that merges into $a1 + */ + private function _mergeAssocArray(&$a1, $a2) + { + foreach ($a2 as $k => $v) { + if ($v === false) { + if (isset($a1[$k])) { + unset($a1[$k]); + } + continue; + } + $a1[$k] = $v; + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Encoder.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Encoder.php new file mode 100644 index 0000000..910181b --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Encoder.php @@ -0,0 +1,615 @@ += $c) { + $r .= self::unsafeIconv($in, $out, substr($text, $i)); + break; + } + // wibble the boundary + if (0x80 != (0xC0 & ord($text[$i + $max_chunk_size]))) { + $chunk_size = $max_chunk_size; + } elseif (0x80 != (0xC0 & ord($text[$i + $max_chunk_size - 1]))) { + $chunk_size = $max_chunk_size - 1; + } elseif (0x80 != (0xC0 & ord($text[$i + $max_chunk_size - 2]))) { + $chunk_size = $max_chunk_size - 2; + } elseif (0x80 != (0xC0 & ord($text[$i + $max_chunk_size - 3]))) { + $chunk_size = $max_chunk_size - 3; + } else { + return false; // rather confusing UTF-8... + } + $chunk = substr($text, $i, $chunk_size); // substr doesn't mind overlong lengths + $r .= self::unsafeIconv($in, $out, $chunk); + $i += $chunk_size; + } + return $r; + } else { + return false; + } + } else { + return false; + } + } + + /** + * Cleans a UTF-8 string for well-formedness and SGML validity + * + * It will parse according to UTF-8 and return a valid UTF8 string, with + * non-SGML codepoints excluded. + * + * Specifically, it will permit: + * \x{9}\x{A}\x{D}\x{20}-\x{7E}\x{A0}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF} + * Source: https://www.w3.org/TR/REC-xml/#NT-Char + * Arguably this function should be modernized to the HTML5 set + * of allowed characters: + * https://www.w3.org/TR/html5/syntax.html#preprocessing-the-input-stream + * which simultaneously expand and restrict the set of allowed characters. + * + * @param string $str The string to clean + * @param bool $force_php + * @return string + * + * @note Just for reference, the non-SGML code points are 0 to 31 and + * 127 to 159, inclusive. However, we allow code points 9, 10 + * and 13, which are the tab, line feed and carriage return + * respectively. 128 and above the code points map to multibyte + * UTF-8 representations. + * + * @note Fallback code adapted from utf8ToUnicode by Henri Sivonen and + * hsivonen@iki.fi at under the + * LGPL license. Notes on what changed are inside, but in general, + * the original code transformed UTF-8 text into an array of integer + * Unicode codepoints. Understandably, transforming that back to + * a string would be somewhat expensive, so the function was modded to + * directly operate on the string. However, this discourages code + * reuse, and the logic enumerated here would be useful for any + * function that needs to be able to understand UTF-8 characters. + * As of right now, only smart lossless character encoding converters + * would need that, and I'm probably not going to implement them. + */ + public static function cleanUTF8($str, $force_php = false) + { + // UTF-8 validity is checked since PHP 4.3.5 + // This is an optimization: if the string is already valid UTF-8, no + // need to do PHP stuff. 99% of the time, this will be the case. + if (preg_match( + '/^[\x{9}\x{A}\x{D}\x{20}-\x{7E}\x{A0}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]*$/Du', + $str + )) { + return $str; + } + + $mState = 0; // cached expected number of octets after the current octet + // until the beginning of the next UTF8 character sequence + $mUcs4 = 0; // cached Unicode character + $mBytes = 1; // cached expected number of octets in the current sequence + + // original code involved an $out that was an array of Unicode + // codepoints. Instead of having to convert back into UTF-8, we've + // decided to directly append valid UTF-8 characters onto a string + // $out once they're done. $char accumulates raw bytes, while $mUcs4 + // turns into the Unicode code point, so there's some redundancy. + + $out = ''; + $char = ''; + + $len = strlen($str); + for ($i = 0; $i < $len; $i++) { + $in = ord($str[$i]); + $char .= $str[$i]; // append byte to char + if (0 == $mState) { + // When mState is zero we expect either a US-ASCII character + // or a multi-octet sequence. + if (0 == (0x80 & ($in))) { + // US-ASCII, pass straight through. + if (($in <= 31 || $in == 127) && + !($in == 9 || $in == 13 || $in == 10) // save \r\t\n + ) { + // control characters, remove + } else { + $out .= $char; + } + // reset + $char = ''; + $mBytes = 1; + } elseif (0xC0 == (0xE0 & ($in))) { + // First octet of 2 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x1F) << 6; + $mState = 1; + $mBytes = 2; + } elseif (0xE0 == (0xF0 & ($in))) { + // First octet of 3 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x0F) << 12; + $mState = 2; + $mBytes = 3; + } elseif (0xF0 == (0xF8 & ($in))) { + // First octet of 4 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x07) << 18; + $mState = 3; + $mBytes = 4; + } elseif (0xF8 == (0xFC & ($in))) { + // First octet of 5 octet sequence. + // + // This is illegal because the encoded codepoint must be + // either: + // (a) not the shortest form or + // (b) outside the Unicode range of 0-0x10FFFF. + // Rather than trying to resynchronize, we will carry on + // until the end of the sequence and let the later error + // handling code catch it. + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x03) << 24; + $mState = 4; + $mBytes = 5; + } elseif (0xFC == (0xFE & ($in))) { + // First octet of 6 octet sequence, see comments for 5 + // octet sequence. + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 1) << 30; + $mState = 5; + $mBytes = 6; + } else { + // Current octet is neither in the US-ASCII range nor a + // legal first octet of a multi-octet sequence. + $mState = 0; + $mUcs4 = 0; + $mBytes = 1; + $char = ''; + } + } else { + // When mState is non-zero, we expect a continuation of the + // multi-octet sequence + if (0x80 == (0xC0 & ($in))) { + // Legal continuation. + $shift = ($mState - 1) * 6; + $tmp = $in; + $tmp = ($tmp & 0x0000003F) << $shift; + $mUcs4 |= $tmp; + + if (0 == --$mState) { + // End of the multi-octet sequence. mUcs4 now contains + // the final Unicode codepoint to be output + + // Check for illegal sequences and codepoints. + + // From Unicode 3.1, non-shortest form is illegal + if (((2 == $mBytes) && ($mUcs4 < 0x0080)) || + ((3 == $mBytes) && ($mUcs4 < 0x0800)) || + ((4 == $mBytes) && ($mUcs4 < 0x10000)) || + (4 < $mBytes) || + // From Unicode 3.2, surrogate characters = illegal + (($mUcs4 & 0xFFFFF800) == 0xD800) || + // Codepoints outside the Unicode range are illegal + ($mUcs4 > 0x10FFFF) + ) { + + } elseif (0xFEFF != $mUcs4 && // omit BOM + // check for valid Char unicode codepoints + ( + 0x9 == $mUcs4 || + 0xA == $mUcs4 || + 0xD == $mUcs4 || + (0x20 <= $mUcs4 && 0x7E >= $mUcs4) || + // 7F-9F is not strictly prohibited by XML, + // but it is non-SGML, and thus we don't allow it + (0xA0 <= $mUcs4 && 0xD7FF >= $mUcs4) || + (0xE000 <= $mUcs4 && 0xFFFD >= $mUcs4) || + (0x10000 <= $mUcs4 && 0x10FFFF >= $mUcs4) + ) + ) { + $out .= $char; + } + // initialize UTF8 cache (reset) + $mState = 0; + $mUcs4 = 0; + $mBytes = 1; + $char = ''; + } + } else { + // ((0xC0 & (*in) != 0x80) && (mState != 0)) + // Incomplete multi-octet sequence. + // used to result in complete fail, but we'll reset + $mState = 0; + $mUcs4 = 0; + $mBytes = 1; + $char =''; + } + } + } + return $out; + } + + /** + * Translates a Unicode codepoint into its corresponding UTF-8 character. + * @note Based on Feyd's function at + * , + * which is in public domain. + * @note While we're going to do code point parsing anyway, a good + * optimization would be to refuse to translate code points that + * are non-SGML characters. However, this could lead to duplication. + * @note This is very similar to the unichr function in + * maintenance/generate-entity-file.php (although this is superior, + * due to its sanity checks). + */ + + // +----------+----------+----------+----------+ + // | 33222222 | 22221111 | 111111 | | + // | 10987654 | 32109876 | 54321098 | 76543210 | bit + // +----------+----------+----------+----------+ + // | | | | 0xxxxxxx | 1 byte 0x00000000..0x0000007F + // | | | 110yyyyy | 10xxxxxx | 2 byte 0x00000080..0x000007FF + // | | 1110zzzz | 10yyyyyy | 10xxxxxx | 3 byte 0x00000800..0x0000FFFF + // | 11110www | 10wwzzzz | 10yyyyyy | 10xxxxxx | 4 byte 0x00010000..0x0010FFFF + // +----------+----------+----------+----------+ + // | 00000000 | 00011111 | 11111111 | 11111111 | Theoretical upper limit of legal scalars: 2097151 (0x001FFFFF) + // | 00000000 | 00010000 | 11111111 | 11111111 | Defined upper limit of legal scalar codes + // +----------+----------+----------+----------+ + + public static function unichr($code) + { + if ($code > 1114111 or $code < 0 or + ($code >= 55296 and $code <= 57343) ) { + // bits are set outside the "valid" range as defined + // by UNICODE 4.1.0 + return ''; + } + + $x = $y = $z = $w = 0; + if ($code < 128) { + // regular ASCII character + $x = $code; + } else { + // set up bits for UTF-8 + $x = ($code & 63) | 128; + if ($code < 2048) { + $y = (($code & 2047) >> 6) | 192; + } else { + $y = (($code & 4032) >> 6) | 128; + if ($code < 65536) { + $z = (($code >> 12) & 15) | 224; + } else { + $z = (($code >> 12) & 63) | 128; + $w = (($code >> 18) & 7) | 240; + } + } + } + // set up the actual character + $ret = ''; + if ($w) { + $ret .= chr($w); + } + if ($z) { + $ret .= chr($z); + } + if ($y) { + $ret .= chr($y); + } + $ret .= chr($x); + + return $ret; + } + + /** + * @return bool + */ + public static function iconvAvailable() + { + static $iconv = null; + if ($iconv === null) { + $iconv = function_exists('iconv') && self::testIconvTruncateBug() != self::ICONV_UNUSABLE; + } + return $iconv; + } + + /** + * Convert a string to UTF-8 based on configuration. + * @param string $str The string to convert + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return string + */ + public static function convertToUTF8($str, $config, $context) + { + $encoding = $config->get('Core.Encoding'); + if ($encoding === 'utf-8') { + return $str; + } + static $iconv = null; + if ($iconv === null) { + $iconv = self::iconvAvailable(); + } + if ($iconv && !$config->get('Test.ForceNoIconv')) { + // unaffected by bugs, since UTF-8 support all characters + $str = self::unsafeIconv($encoding, 'utf-8//IGNORE', $str); + if ($str === false) { + // $encoding is not a valid encoding + throw new Exception('Invalid encoding ' . $encoding); + return ''; + } + // If the string is bjorked by Shift_JIS or a similar encoding + // that doesn't support all of ASCII, convert the naughty + // characters to their true byte-wise ASCII/UTF-8 equivalents. + $str = strtr($str, self::testEncodingSupportsASCII($encoding)); + return $str; + } elseif ($encoding === 'iso-8859-1' && function_exists('mb_convert_encoding')) { + $str = mb_convert_encoding($str, 'UTF-8', 'ISO-8859-1'); + return $str; + } + $bug = HTMLPurifier_Encoder::testIconvTruncateBug(); + if ($bug == self::ICONV_OK) { + throw new Exception('Encoding not supported, please install iconv'); + } else { + throw new Exception( + 'You have a buggy version of iconv, see https://bugs.php.net/bug.php?id=48147 ' . + 'and http://sourceware.org/bugzilla/show_bug.cgi?id=13541' + ); + } + } + + /** + * Converts a string from UTF-8 based on configuration. + * @param string $str The string to convert + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return string + * @note Currently, this is a lossy conversion, with unexpressable + * characters being omitted. + */ + public static function convertFromUTF8($str, $config, $context) + { + $encoding = $config->get('Core.Encoding'); + if ($escape = $config->get('Core.EscapeNonASCIICharacters')) { + $str = self::convertToASCIIDumbLossless($str); + } + if ($encoding === 'utf-8') { + return $str; + } + static $iconv = null; + if ($iconv === null) { + $iconv = self::iconvAvailable(); + } + if ($iconv && !$config->get('Test.ForceNoIconv')) { + // Undo our previous fix in convertToUTF8, otherwise iconv will barf + $ascii_fix = self::testEncodingSupportsASCII($encoding); + if (!$escape && !empty($ascii_fix)) { + $clear_fix = array(); + foreach ($ascii_fix as $utf8 => $native) { + $clear_fix[$utf8] = ''; + } + $str = strtr($str, $clear_fix); + } + $str = strtr($str, array_flip($ascii_fix)); + // Normal stuff + $str = self::iconv('utf-8', $encoding . '//IGNORE', $str); + return $str; + } elseif ($encoding === 'iso-8859-1' && function_exists('mb_convert_encoding')) { + $str = mb_convert_encoding($str, 'ISO-8859-1', 'UTF-8'); + return $str; + } + throw new Exception('Encoding not supported'); + // You might be tempted to assume that the ASCII representation + // might be OK, however, this is *not* universally true over all + // encodings. So we take the conservative route here, rather + // than forcibly turn on %Core.EscapeNonASCIICharacters + } + + /** + * Lossless (character-wise) conversion of HTML to ASCII + * @param string $str UTF-8 string to be converted to ASCII + * @return string ASCII encoded string with non-ASCII character entity-ized + * @warning Adapted from MediaWiki, claiming fair use: this is a common + * algorithm. If you disagree with this license fudgery, + * implement it yourself. + * @note Uses decimal numeric entities since they are best supported. + * @note This is a DUMB function: it has no concept of keeping + * character entities that the projected character encoding + * can allow. We could possibly implement a smart version + * but that would require it to also know which Unicode + * codepoints the charset supported (not an easy task). + * @note Sort of with cleanUTF8() but it assumes that $str is + * well-formed UTF-8 + */ + public static function convertToASCIIDumbLossless($str) + { + $bytesleft = 0; + $result = ''; + $working = 0; + $len = strlen($str); + for ($i = 0; $i < $len; $i++) { + $bytevalue = ord($str[$i]); + if ($bytevalue <= 0x7F) { //0xxx xxxx + $result .= chr($bytevalue); + $bytesleft = 0; + } elseif ($bytevalue <= 0xBF) { //10xx xxxx + $working = $working << 6; + $working += ($bytevalue & 0x3F); + $bytesleft--; + if ($bytesleft <= 0) { + $result .= "&#" . $working . ";"; + } + } elseif ($bytevalue <= 0xDF) { //110x xxxx + $working = $bytevalue & 0x1F; + $bytesleft = 1; + } elseif ($bytevalue <= 0xEF) { //1110 xxxx + $working = $bytevalue & 0x0F; + $bytesleft = 2; + } else { //1111 0xxx + $working = $bytevalue & 0x07; + $bytesleft = 3; + } + } + return $result; + } + + /** No bugs detected in iconv. */ + const ICONV_OK = 0; + + /** Iconv truncates output if converting from UTF-8 to another + * character set with //IGNORE, and a non-encodable character is found */ + const ICONV_TRUNCATES = 1; + + /** Iconv does not support //IGNORE, making it unusable for + * transcoding purposes */ + const ICONV_UNUSABLE = 2; + + /** + * glibc iconv has a known bug where it doesn't handle the magic + * //IGNORE stanza correctly. In particular, rather than ignore + * characters, it will return an EILSEQ after consuming some number + * of characters, and expect you to restart iconv as if it were + * an E2BIG. Old versions of PHP did not respect the errno, and + * returned the fragment, so as a result you would see iconv + * mysteriously truncating output. We can work around this by + * manually chopping our input into segments of about 8000 + * characters, as long as PHP ignores the error code. If PHP starts + * paying attention to the error code, iconv becomes unusable. + * + * @return int Error code indicating severity of bug. + */ + public static function testIconvTruncateBug() + { + static $code = null; + if ($code === null) { + // better not use iconv, otherwise infinite loop! + $r = self::unsafeIconv('utf-8', 'ascii//IGNORE', "\xCE\xB1" . str_repeat('a', 9000)); + if ($r === false) { + $code = self::ICONV_UNUSABLE; + } elseif (($c = strlen($r)) < 9000) { + $code = self::ICONV_TRUNCATES; + } elseif ($c > 9000) { + throw new Exception( + 'Your copy of iconv is extremely buggy. Please notify HTML Purifier maintainers: ' . + 'include your iconv version as per phpversion()' + ); + } else { + $code = self::ICONV_OK; + } + } + return $code; + } + + /** + * This expensive function tests whether or not a given character + * encoding supports ASCII. 7/8-bit encodings like Shift_JIS will + * fail this test, and require special processing. Variable width + * encodings shouldn't ever fail. + * + * @param string $encoding Encoding name to test, as per iconv format + * @param bool $bypass Whether or not to bypass the precompiled arrays. + * @return Array of UTF-8 characters to their corresponding ASCII, + * which can be used to "undo" any overzealous iconv action. + */ + public static function testEncodingSupportsASCII($encoding, $bypass = false) + { + // All calls to iconv here are unsafe, proof by case analysis: + // If ICONV_OK, no difference. + // If ICONV_TRUNCATE, all calls involve one character inputs, + // so bug is not triggered. + // If ICONV_UNUSABLE, this call is irrelevant + static $encodings = array(); + if (!$bypass) { + if (isset($encodings[$encoding])) { + return $encodings[$encoding]; + } + $lenc = strtolower($encoding); + switch ($lenc) { + case 'shift_jis': + return array("\xC2\xA5" => '\\', "\xE2\x80\xBE" => '~'); + case 'johab': + return array("\xE2\x82\xA9" => '\\'); + } + if (strpos($lenc, 'iso-8859-') === 0) { + return array(); + } + } + $ret = array(); + if (self::unsafeIconv('UTF-8', $encoding, 'a') === false) { + return false; + } + for ($i = 0x20; $i <= 0x7E; $i++) { // all printable ASCII chars + $c = chr($i); // UTF-8 char + $r = self::unsafeIconv('UTF-8', "$encoding//IGNORE", $c); // initial conversion + if ($r === '' || + // This line is needed for iconv implementations that do not + // omit characters that do not exist in the target character set + ($r === $c && self::unsafeIconv($encoding, 'UTF-8//IGNORE', $r) !== $c) + ) { + // Reverse engineer: what's the UTF-8 equiv of this byte + // sequence? This assumes that there's no variable width + // encoding that doesn't support ASCII. + $ret[self::unsafeIconv($encoding, 'UTF-8//IGNORE', $c)] = $c; + } + } + $encodings[$encoding] = $ret; + return $ret; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/EntityLookup.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/EntityLookup.php new file mode 100644 index 0000000..f12ff13 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/EntityLookup.php @@ -0,0 +1,48 @@ +table = unserialize(file_get_contents($file)); + } + + /** + * Retrieves sole instance of the object. + * @param bool|HTMLPurifier_EntityLookup $prototype Optional prototype of custom lookup table to overload with. + * @return HTMLPurifier_EntityLookup + */ + public static function instance($prototype = false) + { + // no references, since PHP doesn't copy unless modified + static $instance = null; + if ($prototype) { + $instance = $prototype; + } elseif (!$instance) { + $instance = new HTMLPurifier_EntityLookup(); + $instance->setup(); + } + return $instance; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/EntityLookup/entities.ser b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/EntityLookup/entities.ser new file mode 100644 index 0000000..e8b0812 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/EntityLookup/entities.ser @@ -0,0 +1 @@ +a:253:{s:4:"fnof";s:2:"ƒ";s:5:"Alpha";s:2:"Α";s:4:"Beta";s:2:"Β";s:5:"Gamma";s:2:"Γ";s:5:"Delta";s:2:"Δ";s:7:"Epsilon";s:2:"Ε";s:4:"Zeta";s:2:"Ζ";s:3:"Eta";s:2:"Η";s:5:"Theta";s:2:"Θ";s:4:"Iota";s:2:"Ι";s:5:"Kappa";s:2:"Κ";s:6:"Lambda";s:2:"Λ";s:2:"Mu";s:2:"Μ";s:2:"Nu";s:2:"Ν";s:2:"Xi";s:2:"Ξ";s:7:"Omicron";s:2:"Ο";s:2:"Pi";s:2:"Π";s:3:"Rho";s:2:"Ρ";s:5:"Sigma";s:2:"Σ";s:3:"Tau";s:2:"Τ";s:7:"Upsilon";s:2:"Υ";s:3:"Phi";s:2:"Φ";s:3:"Chi";s:2:"Χ";s:3:"Psi";s:2:"Ψ";s:5:"Omega";s:2:"Ω";s:5:"alpha";s:2:"α";s:4:"beta";s:2:"β";s:5:"gamma";s:2:"γ";s:5:"delta";s:2:"δ";s:7:"epsilon";s:2:"ε";s:4:"zeta";s:2:"ζ";s:3:"eta";s:2:"η";s:5:"theta";s:2:"θ";s:4:"iota";s:2:"ι";s:5:"kappa";s:2:"κ";s:6:"lambda";s:2:"λ";s:2:"mu";s:2:"μ";s:2:"nu";s:2:"ν";s:2:"xi";s:2:"ξ";s:7:"omicron";s:2:"ο";s:2:"pi";s:2:"π";s:3:"rho";s:2:"ρ";s:6:"sigmaf";s:2:"ς";s:5:"sigma";s:2:"σ";s:3:"tau";s:2:"τ";s:7:"upsilon";s:2:"υ";s:3:"phi";s:2:"φ";s:3:"chi";s:2:"χ";s:3:"psi";s:2:"ψ";s:5:"omega";s:2:"ω";s:8:"thetasym";s:2:"ϑ";s:5:"upsih";s:2:"ϒ";s:3:"piv";s:2:"ϖ";s:4:"bull";s:3:"•";s:6:"hellip";s:3:"…";s:5:"prime";s:3:"′";s:5:"Prime";s:3:"″";s:5:"oline";s:3:"‾";s:5:"frasl";s:3:"⁄";s:6:"weierp";s:3:"℘";s:5:"image";s:3:"ℑ";s:4:"real";s:3:"ℜ";s:5:"trade";s:3:"™";s:7:"alefsym";s:3:"ℵ";s:4:"larr";s:3:"←";s:4:"uarr";s:3:"↑";s:4:"rarr";s:3:"→";s:4:"darr";s:3:"↓";s:4:"harr";s:3:"↔";s:5:"crarr";s:3:"↵";s:4:"lArr";s:3:"⇐";s:4:"uArr";s:3:"⇑";s:4:"rArr";s:3:"⇒";s:4:"dArr";s:3:"⇓";s:4:"hArr";s:3:"⇔";s:6:"forall";s:3:"∀";s:4:"part";s:3:"∂";s:5:"exist";s:3:"∃";s:5:"empty";s:3:"∅";s:5:"nabla";s:3:"∇";s:4:"isin";s:3:"∈";s:5:"notin";s:3:"∉";s:2:"ni";s:3:"∋";s:4:"prod";s:3:"∏";s:3:"sum";s:3:"∑";s:5:"minus";s:3:"−";s:6:"lowast";s:3:"∗";s:5:"radic";s:3:"√";s:4:"prop";s:3:"∝";s:5:"infin";s:3:"∞";s:3:"ang";s:3:"∠";s:3:"and";s:3:"∧";s:2:"or";s:3:"∨";s:3:"cap";s:3:"∩";s:3:"cup";s:3:"∪";s:3:"int";s:3:"∫";s:6:"there4";s:3:"∴";s:3:"sim";s:3:"∼";s:4:"cong";s:3:"≅";s:5:"asymp";s:3:"≈";s:2:"ne";s:3:"≠";s:5:"equiv";s:3:"≡";s:2:"le";s:3:"≤";s:2:"ge";s:3:"≥";s:3:"sub";s:3:"⊂";s:3:"sup";s:3:"⊃";s:4:"nsub";s:3:"⊄";s:4:"sube";s:3:"⊆";s:4:"supe";s:3:"⊇";s:5:"oplus";s:3:"⊕";s:6:"otimes";s:3:"⊗";s:4:"perp";s:3:"⊥";s:4:"sdot";s:3:"⋅";s:5:"lceil";s:3:"⌈";s:5:"rceil";s:3:"⌉";s:6:"lfloor";s:3:"⌊";s:6:"rfloor";s:3:"⌋";s:4:"lang";s:3:"〈";s:4:"rang";s:3:"〉";s:3:"loz";s:3:"◊";s:6:"spades";s:3:"♠";s:5:"clubs";s:3:"♣";s:6:"hearts";s:3:"♥";s:5:"diams";s:3:"♦";s:4:"quot";s:1:""";s:3:"amp";s:1:"&";s:2:"lt";s:1:"<";s:2:"gt";s:1:">";s:4:"apos";s:1:"'";s:5:"OElig";s:2:"Œ";s:5:"oelig";s:2:"œ";s:6:"Scaron";s:2:"Š";s:6:"scaron";s:2:"š";s:4:"Yuml";s:2:"Ÿ";s:4:"circ";s:2:"ˆ";s:5:"tilde";s:2:"˜";s:4:"ensp";s:3:" ";s:4:"emsp";s:3:" ";s:6:"thinsp";s:3:" ";s:4:"zwnj";s:3:"‌";s:3:"zwj";s:3:"‍";s:3:"lrm";s:3:"‎";s:3:"rlm";s:3:"‏";s:5:"ndash";s:3:"–";s:5:"mdash";s:3:"—";s:5:"lsquo";s:3:"‘";s:5:"rsquo";s:3:"’";s:5:"sbquo";s:3:"‚";s:5:"ldquo";s:3:"“";s:5:"rdquo";s:3:"”";s:5:"bdquo";s:3:"„";s:6:"dagger";s:3:"†";s:6:"Dagger";s:3:"‡";s:6:"permil";s:3:"‰";s:6:"lsaquo";s:3:"‹";s:6:"rsaquo";s:3:"›";s:4:"euro";s:3:"€";s:4:"nbsp";s:2:" ";s:5:"iexcl";s:2:"¡";s:4:"cent";s:2:"¢";s:5:"pound";s:2:"£";s:6:"curren";s:2:"¤";s:3:"yen";s:2:"¥";s:6:"brvbar";s:2:"¦";s:4:"sect";s:2:"§";s:3:"uml";s:2:"¨";s:4:"copy";s:2:"©";s:4:"ordf";s:2:"ª";s:5:"laquo";s:2:"«";s:3:"not";s:2:"¬";s:3:"shy";s:2:"­";s:3:"reg";s:2:"®";s:4:"macr";s:2:"¯";s:3:"deg";s:2:"°";s:6:"plusmn";s:2:"±";s:4:"sup2";s:2:"²";s:4:"sup3";s:2:"³";s:5:"acute";s:2:"´";s:5:"micro";s:2:"µ";s:4:"para";s:2:"¶";s:6:"middot";s:2:"·";s:5:"cedil";s:2:"¸";s:4:"sup1";s:2:"¹";s:4:"ordm";s:2:"º";s:5:"raquo";s:2:"»";s:6:"frac14";s:2:"¼";s:6:"frac12";s:2:"½";s:6:"frac34";s:2:"¾";s:6:"iquest";s:2:"¿";s:6:"Agrave";s:2:"À";s:6:"Aacute";s:2:"Á";s:5:"Acirc";s:2:"Â";s:6:"Atilde";s:2:"Ã";s:4:"Auml";s:2:"Ä";s:5:"Aring";s:2:"Å";s:5:"AElig";s:2:"Æ";s:6:"Ccedil";s:2:"Ç";s:6:"Egrave";s:2:"È";s:6:"Eacute";s:2:"É";s:5:"Ecirc";s:2:"Ê";s:4:"Euml";s:2:"Ë";s:6:"Igrave";s:2:"Ì";s:6:"Iacute";s:2:"Í";s:5:"Icirc";s:2:"Î";s:4:"Iuml";s:2:"Ï";s:3:"ETH";s:2:"Ð";s:6:"Ntilde";s:2:"Ñ";s:6:"Ograve";s:2:"Ò";s:6:"Oacute";s:2:"Ó";s:5:"Ocirc";s:2:"Ô";s:6:"Otilde";s:2:"Õ";s:4:"Ouml";s:2:"Ö";s:5:"times";s:2:"×";s:6:"Oslash";s:2:"Ø";s:6:"Ugrave";s:2:"Ù";s:6:"Uacute";s:2:"Ú";s:5:"Ucirc";s:2:"Û";s:4:"Uuml";s:2:"Ü";s:6:"Yacute";s:2:"Ý";s:5:"THORN";s:2:"Þ";s:5:"szlig";s:2:"ß";s:6:"agrave";s:2:"à";s:6:"aacute";s:2:"á";s:5:"acirc";s:2:"â";s:6:"atilde";s:2:"ã";s:4:"auml";s:2:"ä";s:5:"aring";s:2:"å";s:5:"aelig";s:2:"æ";s:6:"ccedil";s:2:"ç";s:6:"egrave";s:2:"è";s:6:"eacute";s:2:"é";s:5:"ecirc";s:2:"ê";s:4:"euml";s:2:"ë";s:6:"igrave";s:2:"ì";s:6:"iacute";s:2:"í";s:5:"icirc";s:2:"î";s:4:"iuml";s:2:"ï";s:3:"eth";s:2:"ð";s:6:"ntilde";s:2:"ñ";s:6:"ograve";s:2:"ò";s:6:"oacute";s:2:"ó";s:5:"ocirc";s:2:"ô";s:6:"otilde";s:2:"õ";s:4:"ouml";s:2:"ö";s:6:"divide";s:2:"÷";s:6:"oslash";s:2:"ø";s:6:"ugrave";s:2:"ù";s:6:"uacute";s:2:"ú";s:5:"ucirc";s:2:"û";s:4:"uuml";s:2:"ü";s:6:"yacute";s:2:"ý";s:5:"thorn";s:2:"þ";s:4:"yuml";s:2:"ÿ";} \ No newline at end of file diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/EntityParser.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/EntityParser.php new file mode 100644 index 0000000..1dcd10c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/EntityParser.php @@ -0,0 +1,285 @@ +_semiOptionalPrefixRegex = "/&()()()($semi_optional)/"; + + $this->_textEntitiesRegex = + '/&(?:'. + // hex + '[#]x([a-fA-F0-9]+);?|'. + // dec + '[#]0*(\d+);?|'. + // string (mandatory semicolon) + // NB: order matters: match semicolon preferentially + '([A-Za-z_:][A-Za-z0-9.\-_:]*);|'. + // string (optional semicolon) + "($semi_optional)". + ')/'; + + $this->_attrEntitiesRegex = + '/&(?:'. + // hex + '[#]x([a-fA-F0-9]+);?|'. + // dec + '[#]0*(\d+);?|'. + // string (mandatory semicolon) + // NB: order matters: match semicolon preferentially + '([A-Za-z_:][A-Za-z0-9.\-_:]*);|'. + // string (optional semicolon) + // don't match if trailing is equals or alphanumeric (URL + // like) + "($semi_optional)(?![=;A-Za-z0-9])". + ')/'; + + } + + /** + * Substitute entities with the parsed equivalents. Use this on + * textual data in an HTML document (as opposed to attributes.) + * + * @param string $string String to have entities parsed. + * @return string Parsed string. + */ + public function substituteTextEntities($string) + { + return preg_replace_callback( + $this->_textEntitiesRegex, + array($this, 'entityCallback'), + $string + ); + } + + /** + * Substitute entities with the parsed equivalents. Use this on + * attribute contents in documents. + * + * @param string $string String to have entities parsed. + * @return string Parsed string. + */ + public function substituteAttrEntities($string) + { + return preg_replace_callback( + $this->_attrEntitiesRegex, + array($this, 'entityCallback'), + $string + ); + } + + /** + * Callback function for substituteNonSpecialEntities() that does the work. + * + * @param array $matches PCRE matches array, with 0 the entire match, and + * either index 1, 2 or 3 set with a hex value, dec value, + * or string (respectively). + * @return string Replacement string. + */ + + protected function entityCallback($matches) + { + $entity = $matches[0]; + $hex_part = isset($matches[1]) ? $matches[1] : null; + $dec_part = isset($matches[2]) ? $matches[2] : null; + $named_part = empty($matches[3]) ? (empty($matches[4]) ? "" : $matches[4]) : $matches[3]; + if ($hex_part !== NULL && $hex_part !== "") { + return HTMLPurifier_Encoder::unichr(hexdec($hex_part)); + } elseif ($dec_part !== NULL && $dec_part !== "") { + return HTMLPurifier_Encoder::unichr((int) $dec_part); + } else { + if (!$this->_entity_lookup) { + $this->_entity_lookup = HTMLPurifier_EntityLookup::instance(); + } + if (isset($this->_entity_lookup->table[$named_part])) { + return $this->_entity_lookup->table[$named_part]; + } else { + // exact match didn't match anything, so test if + // any of the semicolon optional match the prefix. + // Test that this is an EXACT match is important to + // prevent infinite loop + if (!empty($matches[3])) { + return preg_replace_callback( + $this->_semiOptionalPrefixRegex, + array($this, 'entityCallback'), + $entity + ); + } + return $entity; + } + } + } + + // LEGACY CODE BELOW + + /** + * Callback regex string for parsing entities. + * @type string + */ + protected $_substituteEntitiesRegex = + '/&(?:[#]x([a-fA-F0-9]+)|[#]0*(\d+)|([A-Za-z_:][A-Za-z0-9.\-_:]*));?/'; + // 1. hex 2. dec 3. string (XML style) + + /** + * Decimal to parsed string conversion table for special entities. + * @type array + */ + protected $_special_dec2str = + array( + 34 => '"', + 38 => '&', + 39 => "'", + 60 => '<', + 62 => '>' + ); + + /** + * Stripped entity names to decimal conversion table for special entities. + * @type array + */ + protected $_special_ent2dec = + array( + 'quot' => 34, + 'amp' => 38, + 'lt' => 60, + 'gt' => 62 + ); + + /** + * Substitutes non-special entities with their parsed equivalents. Since + * running this whenever you have parsed character is t3h 5uck, we run + * it before everything else. + * + * @param string $string String to have non-special entities parsed. + * @return string Parsed string. + */ + public function substituteNonSpecialEntities($string) + { + // it will try to detect missing semicolons, but don't rely on it + return preg_replace_callback( + $this->_substituteEntitiesRegex, + array($this, 'nonSpecialEntityCallback'), + $string + ); + } + + /** + * Callback function for substituteNonSpecialEntities() that does the work. + * + * @param array $matches PCRE matches array, with 0 the entire match, and + * either index 1, 2 or 3 set with a hex value, dec value, + * or string (respectively). + * @return string Replacement string. + */ + + protected function nonSpecialEntityCallback($matches) + { + // replaces all but big five + $entity = $matches[0]; + $is_num = (@$matches[0][1] === '#'); + if ($is_num) { + $is_hex = (@$entity[2] === 'x'); + $code = $is_hex ? hexdec($matches[1]) : (int) $matches[2]; + // abort for special characters + if (isset($this->_special_dec2str[$code])) { + return $entity; + } + return HTMLPurifier_Encoder::unichr($code); + } else { + if (isset($this->_special_ent2dec[$matches[3]])) { + return $entity; + } + if (!$this->_entity_lookup) { + $this->_entity_lookup = HTMLPurifier_EntityLookup::instance(); + } + if (isset($this->_entity_lookup->table[$matches[3]])) { + return $this->_entity_lookup->table[$matches[3]]; + } else { + return $entity; + } + } + } + + /** + * Substitutes only special entities with their parsed equivalents. + * + * @notice We try to avoid calling this function because otherwise, it + * would have to be called a lot (for every parsed section). + * + * @param string $string String to have non-special entities parsed. + * @return string Parsed string. + */ + public function substituteSpecialEntities($string) + { + return preg_replace_callback( + $this->_substituteEntitiesRegex, + array($this, 'specialEntityCallback'), + $string + ); + } + + /** + * Callback function for substituteSpecialEntities() that does the work. + * + * This callback has same syntax as nonSpecialEntityCallback(). + * + * @param array $matches PCRE-style matches array, with 0 the entire match, and + * either index 1, 2 or 3 set with a hex value, dec value, + * or string (respectively). + * @return string Replacement string. + */ + protected function specialEntityCallback($matches) + { + $entity = $matches[0]; + $is_num = (@$matches[0][1] === '#'); + if ($is_num) { + $is_hex = (@$entity[2] === 'x'); + $int = $is_hex ? hexdec($matches[1]) : (int) $matches[2]; + return isset($this->_special_dec2str[$int]) ? + $this->_special_dec2str[$int] : + $entity; + } else { + return isset($this->_special_ent2dec[$matches[3]]) ? + $this->_special_dec2str[$this->_special_ent2dec[$matches[3]]] : + $entity; + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ErrorCollector.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ErrorCollector.php new file mode 100644 index 0000000..d47e3f2 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ErrorCollector.php @@ -0,0 +1,244 @@ +locale =& $context->get('Locale'); + $this->context = $context; + $this->_current =& $this->_stacks[0]; + $this->errors =& $this->_stacks[0]; + } + + /** + * Sends an error message to the collector for later use + * @param int $severity Error severity, PHP error style (don't use E_USER_) + * @param string $msg Error message text + */ + public function send($severity, $msg) + { + $args = array(); + if (func_num_args() > 2) { + $args = func_get_args(); + array_shift($args); + unset($args[0]); + } + + $token = $this->context->get('CurrentToken', true); + $line = $token ? $token->line : $this->context->get('CurrentLine', true); + $col = $token ? $token->col : $this->context->get('CurrentCol', true); + $attr = $this->context->get('CurrentAttr', true); + + // perform special substitutions, also add custom parameters + $subst = array(); + if (!is_null($token)) { + $args['CurrentToken'] = $token; + } + if (!is_null($attr)) { + $subst['$CurrentAttr.Name'] = $attr; + if (isset($token->attr[$attr])) { + $subst['$CurrentAttr.Value'] = $token->attr[$attr]; + } + } + + if (empty($args)) { + $msg = $this->locale->getMessage($msg); + } else { + $msg = $this->locale->formatMessage($msg, $args); + } + + if (!empty($subst)) { + $msg = strtr($msg, $subst); + } + + // (numerically indexed) + $error = array( + self::LINENO => $line, + self::SEVERITY => $severity, + self::MESSAGE => $msg, + self::CHILDREN => array() + ); + $this->_current[] = $error; + + // NEW CODE BELOW ... + // Top-level errors are either: + // TOKEN type, if $value is set appropriately, or + // "syntax" type, if $value is null + $new_struct = new HTMLPurifier_ErrorStruct(); + $new_struct->type = HTMLPurifier_ErrorStruct::TOKEN; + if ($token) { + $new_struct->value = clone $token; + } + if (is_int($line) && is_int($col)) { + if (isset($this->lines[$line][$col])) { + $struct = $this->lines[$line][$col]; + } else { + $struct = $this->lines[$line][$col] = $new_struct; + } + // These ksorts may present a performance problem + ksort($this->lines[$line], SORT_NUMERIC); + } else { + if (isset($this->lines[-1])) { + $struct = $this->lines[-1]; + } else { + $struct = $this->lines[-1] = $new_struct; + } + } + ksort($this->lines, SORT_NUMERIC); + + // Now, check if we need to operate on a lower structure + if (!empty($attr)) { + $struct = $struct->getChild(HTMLPurifier_ErrorStruct::ATTR, $attr); + if (!$struct->value) { + $struct->value = array($attr, 'PUT VALUE HERE'); + } + } + if (!empty($cssprop)) { + $struct = $struct->getChild(HTMLPurifier_ErrorStruct::CSSPROP, $cssprop); + if (!$struct->value) { + // if we tokenize CSS this might be a little more difficult to do + $struct->value = array($cssprop, 'PUT VALUE HERE'); + } + } + + // Ok, structs are all setup, now time to register the error + $struct->addError($severity, $msg); + } + + /** + * Retrieves raw error data for custom formatter to use + */ + public function getRaw() + { + return $this->errors; + } + + /** + * Default HTML formatting implementation for error messages + * @param HTMLPurifier_Config $config Configuration, vital for HTML output nature + * @param array $errors Errors array to display; used for recursion. + * @return string + */ + public function getHTMLFormatted($config, $errors = null) + { + $ret = array(); + + $this->generator = new HTMLPurifier_Generator($config, $this->context); + if ($errors === null) { + $errors = $this->errors; + } + + // 'At line' message needs to be removed + + // generation code for new structure goes here. It needs to be recursive. + foreach ($this->lines as $line => $col_array) { + if ($line == -1) { + continue; + } + foreach ($col_array as $col => $struct) { + $this->_renderStruct($ret, $struct, $line, $col); + } + } + if (isset($this->lines[-1])) { + $this->_renderStruct($ret, $this->lines[-1]); + } + + if (empty($errors)) { + return '

' . $this->locale->getMessage('ErrorCollector: No errors') . '

'; + } else { + return '
  • ' . implode('
  • ', $ret) . '
'; + } + + } + + private function _renderStruct(&$ret, $struct, $line = null, $col = null) + { + $stack = array($struct); + $context_stack = array(array()); + while ($current = array_pop($stack)) { + $context = array_pop($context_stack); + foreach ($current->errors as $error) { + list($severity, $msg) = $error; + $string = ''; + $string .= '
'; + // W3C uses an icon to indicate the severity of the error. + $error = $this->locale->getErrorName($severity); + $string .= "$error "; + if (!is_null($line) && !is_null($col)) { + $string .= "Line $line, Column $col: "; + } else { + $string .= 'End of Document: '; + } + $string .= '' . $this->generator->escape($msg) . ' '; + $string .= '
'; + // Here, have a marker for the character on the column appropriate. + // Be sure to clip extremely long lines. + //$string .= '
';
+                //$string .= '';
+                //$string .= '
'; + $ret[] = $string; + } + foreach ($current->children as $array) { + $context[] = $current; + $stack = array_merge($stack, array_reverse($array, true)); + for ($i = count($array); $i > 0; $i--) { + $context_stack[] = $context; + } + } + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ErrorStruct.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ErrorStruct.php new file mode 100644 index 0000000..cf869d3 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ErrorStruct.php @@ -0,0 +1,74 @@ +children[$type][$id])) { + $this->children[$type][$id] = new HTMLPurifier_ErrorStruct(); + $this->children[$type][$id]->type = $type; + } + return $this->children[$type][$id]; + } + + /** + * @param int $severity + * @param string $message + */ + public function addError($severity, $message) + { + $this->errors[] = array($severity, $message); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Exception.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Exception.php new file mode 100644 index 0000000..be85b4c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Exception.php @@ -0,0 +1,12 @@ +preFilter, + * 2->preFilter, 3->preFilter, purify, 3->postFilter, 2->postFilter, + * 1->postFilter. + * + * @note Methods are not declared abstract as it is perfectly legitimate + * for an implementation not to want anything to happen on a step + */ + +class HTMLPurifier_Filter +{ + + /** + * Name of the filter for identification purposes. + * @type string + */ + public $name; + + /** + * Pre-processor function, handles HTML before HTML Purifier + * @param string $html + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return string + */ + public function preFilter($html, $config, $context) + { + return $html; + } + + /** + * Post-processor function, handles HTML after HTML Purifier + * @param string $html + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return string + */ + public function postFilter($html, $config, $context) + { + return $html; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php new file mode 100644 index 0000000..e7e3cac --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php @@ -0,0 +1,362 @@ + blocks from input HTML, cleans them up + * using CSSTidy, and then places them in $purifier->context->get('StyleBlocks') + * so they can be used elsewhere in the document. + * + * @note + * See tests/HTMLPurifier/Filter/ExtractStyleBlocksTest.php for + * sample usage. + * + * @note + * This filter can also be used on stylesheets not included in the + * document--something purists would probably prefer. Just directly + * call HTMLPurifier_Filter_ExtractStyleBlocks->cleanCSS() + */ +class HTMLPurifier_Filter_ExtractStyleBlocks extends HTMLPurifier_Filter +{ + /** + * @type string + */ + public $name = 'ExtractStyleBlocks'; + + /** + * @type array + */ + private $_styleMatches = array(); + + /** + * @type csstidy + */ + private $_tidy; + + /** + * @type HTMLPurifier_AttrDef_HTML_ID + */ + private $_id_attrdef; + + /** + * @type HTMLPurifier_AttrDef_CSS_Ident + */ + private $_class_attrdef; + + /** + * @type HTMLPurifier_AttrDef_Enum + */ + private $_enum_attrdef; + + /** + * @type HTMLPurifier_AttrDef_Enum + */ + private $_universal_attrdef; + + public function __construct() + { + $this->_tidy = new csstidy(); + $this->_tidy->set_cfg('lowercase_s', false); + $this->_id_attrdef = new HTMLPurifier_AttrDef_HTML_ID(true); + $this->_class_attrdef = new HTMLPurifier_AttrDef_CSS_Ident(); + $this->_enum_attrdef = new HTMLPurifier_AttrDef_Enum( + array( + 'first-child', + 'link', + 'visited', + 'active', + 'hover', + 'focus' + ) + ); + $this->_universal_attrdef = new HTMLPurifier_AttrDef_Enum( + array( + 'initial', + 'inherit', + 'unset', + ) + ); + } + + /** + * Save the contents of CSS blocks to style matches + * @param array $matches preg_replace style $matches array + */ + protected function styleCallback($matches) + { + $this->_styleMatches[] = $matches[1]; + } + + /** + * Removes inline + // we must not grab foo in a font-family prop). + if ($config->get('Filter.ExtractStyleBlocks.Escaping')) { + $css = str_replace( + array('<', '>', '&'), + array('\3C ', '\3E ', '\26 '), + $css + ); + } + return $css; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php new file mode 100644 index 0000000..d86509c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php @@ -0,0 +1,65 @@ +]+>.+?' . + '(?:http:)?//www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?#s'; + $pre_replace = '\1'; + return preg_replace($pre_regex, $pre_replace, (string)$html); + } + + /** + * @param string $html + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return string + */ + public function postFilter($html, $config, $context) + { + $post_regex = '#((?:v|cp)/[A-Za-z0-9\-_=]+)#'; + return preg_replace_callback($post_regex, array($this, 'postFilterCallback'), (string)$html); + } + + /** + * @param $url + * @return string + */ + protected function armorUrl($url) + { + return str_replace('--', '--', $url); + } + + /** + * @param array $matches + * @return string + */ + protected function postFilterCallback($matches) + { + $url = $this->armorUrl($matches[1]); + return '' . + '' . + '' . + ''; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php new file mode 100644 index 0000000..457fa90 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php @@ -0,0 +1,286 @@ + tags. + * @type bool + */ + private $_scriptFix = false; + + /** + * Cache of HTMLDefinition during HTML output to determine whether or + * not attributes should be minimized. + * @type HTMLPurifier_HTMLDefinition + */ + private $_def; + + /** + * Cache of %Output.SortAttr. + * @type bool + */ + private $_sortAttr; + + /** + * Cache of %Output.FlashCompat. + * @type bool + */ + private $_flashCompat; + + /** + * Cache of %Output.FixInnerHTML. + * @type bool + */ + private $_innerHTMLFix; + + /** + * Stack for keeping track of object information when outputting IE + * compatibility code. + * @type array + */ + private $_flashStack = array(); + + /** + * Configuration for the generator + * @type HTMLPurifier_Config + */ + protected $config; + + /** + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + */ + public function __construct($config, $context) + { + $this->config = $config; + $this->_scriptFix = $config->get('Output.CommentScriptContents'); + $this->_innerHTMLFix = $config->get('Output.FixInnerHTML'); + $this->_sortAttr = $config->get('Output.SortAttr'); + $this->_flashCompat = $config->get('Output.FlashCompat'); + $this->_def = $config->getHTMLDefinition(); + $this->_xhtml = $this->_def->doctype->xml; + } + + /** + * Generates HTML from an array of tokens. + * @param HTMLPurifier_Token[] $tokens Array of HTMLPurifier_Token + * @return string Generated HTML + */ + public function generateFromTokens($tokens) + { + if (!$tokens) { + return ''; + } + + // Basic algorithm + $html = ''; + for ($i = 0, $size = count($tokens); $i < $size; $i++) { + if ($this->_scriptFix && $tokens[$i]->name === 'script' + && $i + 2 < $size && $tokens[$i+2] instanceof HTMLPurifier_Token_End) { + // script special case + // the contents of the script block must be ONE token + // for this to work. + $html .= $this->generateFromToken($tokens[$i++]); + $html .= $this->generateScriptFromToken($tokens[$i++]); + } + $html .= $this->generateFromToken($tokens[$i]); + } + + // Tidy cleanup + if (extension_loaded('tidy') && $this->config->get('Output.TidyFormat')) { + $tidy = new Tidy; + $tidy->parseString( + $html, + array( + 'indent'=> true, + 'output-xhtml' => $this->_xhtml, + 'show-body-only' => true, + 'indent-spaces' => 2, + 'wrap' => 68, + ), + 'utf8' + ); + $tidy->cleanRepair(); + $html = (string) $tidy; // explicit cast necessary + } + + // Normalize newlines to system defined value + if ($this->config->get('Core.NormalizeNewlines')) { + $nl = $this->config->get('Output.Newline'); + if ($nl === null) { + $nl = PHP_EOL; + } + if ($nl !== "\n") { + $html = str_replace("\n", $nl, $html); + } + } + return $html; + } + + /** + * Generates HTML from a single token. + * @param HTMLPurifier_Token $token HTMLPurifier_Token object. + * @return string Generated HTML + */ + public function generateFromToken($token) + { + if (!$token instanceof HTMLPurifier_Token) { + trigger_error('Cannot generate HTML from non-HTMLPurifier_Token object', E_USER_WARNING); + return ''; + + } elseif ($token instanceof HTMLPurifier_Token_Start) { + $attr = $this->generateAttributes($token->attr, $token->name); + if ($this->_flashCompat) { + if ($token->name == "object") { + $flash = new stdClass(); + $flash->attr = $token->attr; + $flash->param = array(); + $this->_flashStack[] = $flash; + } + } + return '<' . $token->name . ($attr ? ' ' : '') . $attr . '>'; + + } elseif ($token instanceof HTMLPurifier_Token_End) { + $_extra = ''; + if ($this->_flashCompat) { + if ($token->name == "object" && !empty($this->_flashStack)) { + // doesn't do anything for now + } + } + return $_extra . 'name . '>'; + + } elseif ($token instanceof HTMLPurifier_Token_Empty) { + if ($this->_flashCompat && $token->name == "param" && !empty($this->_flashStack)) { + $this->_flashStack[count($this->_flashStack)-1]->param[$token->attr['name']] = $token->attr['value']; + } + $attr = $this->generateAttributes($token->attr, $token->name); + return '<' . $token->name . ($attr ? ' ' : '') . $attr . + ( $this->_xhtml ? ' /': '' ) //
v.
+ . '>'; + + } elseif ($token instanceof HTMLPurifier_Token_Text) { + return $this->escape($token->data, ENT_NOQUOTES); + + } elseif ($token instanceof HTMLPurifier_Token_Comment) { + return ''; + } else { + return ''; + + } + } + + /** + * Special case processor for the contents of script tags + * @param HTMLPurifier_Token $token HTMLPurifier_Token object. + * @return string + * @warning This runs into problems if there's already a literal + * --> somewhere inside the script contents. + */ + public function generateScriptFromToken($token) + { + if (!$token instanceof HTMLPurifier_Token_Text) { + return $this->generateFromToken($token); + } + // Thanks + $data = preg_replace('#//\s*$#', '', $token->data); + return ''; + } + + /** + * Generates attribute declarations from attribute array. + * @note This does not include the leading or trailing space. + * @param array $assoc_array_of_attributes Attribute array + * @param string $element Name of element attributes are for, used to check + * attribute minimization. + * @return string Generated HTML fragment for insertion. + */ + public function generateAttributes($assoc_array_of_attributes, $element = '') + { + $html = ''; + if ($this->_sortAttr) { + ksort($assoc_array_of_attributes); + } + foreach ($assoc_array_of_attributes as $key => $value) { + if (!$this->_xhtml) { + // Remove namespaced attributes + if (strpos($key, ':') !== false) { + continue; + } + // Check if we should minimize the attribute: val="val" -> val + if ($element && !empty($this->_def->info[$element]->attr[$key]->minimized)) { + $html .= $key . ' '; + continue; + } + } + // Workaround for Internet Explorer innerHTML bug. + // Essentially, Internet Explorer, when calculating + // innerHTML, omits quotes if there are no instances of + // angled brackets, quotes or spaces. However, when parsing + // HTML (for example, when you assign to innerHTML), it + // treats backticks as quotes. Thus, + // `` + // becomes + // `` + // becomes + // + // Fortunately, all we need to do is trigger an appropriate + // quoting style, which we do by adding an extra space. + // This also is consistent with the W3C spec, which states + // that user agents may ignore leading or trailing + // whitespace (in fact, most don't, at least for attributes + // like alt, but an extra space at the end is barely + // noticeable). Still, we have a configuration knob for + // this, since this transformation is not necessary if you + // don't process user input with innerHTML or you don't plan + // on supporting Internet Explorer. + if ($this->_innerHTMLFix) { + if (strpos($value, '`') !== false) { + // check if correct quoting style would not already be + // triggered + if (strcspn($value, '"\' <>') === strlen($value)) { + // protect! + $value .= ' '; + } + } + } + $html .= $key.'="'.$this->escape($value).'" '; + } + return rtrim($html); + } + + /** + * Escapes raw text data. + * @todo This really ought to be protected, but until we have a facility + * for properly generating HTML here w/o using tokens, it stays + * public. + * @param string $string String data to escape for HTML. + * @param int $quote Quoting style, like htmlspecialchars. ENT_NOQUOTES is + * permissible for non-attribute output. + * @return string escaped data. + */ + public function escape($string, $quote = null) + { + // Workaround for APC bug on Mac Leopard reported by sidepodcast + // http://htmlpurifier.org/phorum/read.php?3,4823,4846 + if ($quote === null) { + $quote = ENT_COMPAT; + } + return htmlspecialchars($string, $quote, 'UTF-8'); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php new file mode 100644 index 0000000..dc2c33c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php @@ -0,0 +1,488 @@ +getAnonymousModule(); + if (!isset($module->info[$element_name])) { + $element = $module->addBlankElement($element_name); + } else { + $element = $module->info[$element_name]; + } + $element->attr[$attr_name] = $def; + } + + /** + * Adds a custom element to your HTML definition + * @see HTMLPurifier_HTMLModule::addElement() for detailed + * parameter and return value descriptions. + */ + public function addElement($element_name, $type, $contents, $attr_collections, $attributes = array()) + { + $module = $this->getAnonymousModule(); + // assume that if the user is calling this, the element + // is safe. This may not be a good idea + $element = $module->addElement($element_name, $type, $contents, $attr_collections, $attributes); + return $element; + } + + /** + * Adds a blank element to your HTML definition, for overriding + * existing behavior + * @param string $element_name + * @return HTMLPurifier_ElementDef + * @see HTMLPurifier_HTMLModule::addBlankElement() for detailed + * parameter and return value descriptions. + */ + public function addBlankElement($element_name) + { + $module = $this->getAnonymousModule(); + $element = $module->addBlankElement($element_name); + return $element; + } + + /** + * Retrieves a reference to the anonymous module, so you can + * bust out advanced features without having to make your own + * module. + * @return HTMLPurifier_HTMLModule + */ + public function getAnonymousModule() + { + if (!$this->_anonModule) { + $this->_anonModule = new HTMLPurifier_HTMLModule(); + $this->_anonModule->name = 'Anonymous'; + } + return $this->_anonModule; + } + + private $_anonModule = null; + + // PUBLIC BUT INTERNAL VARIABLES -------------------------------------- + + /** + * @type string + */ + public $type = 'HTML'; + + /** + * @type HTMLPurifier_HTMLModuleManager + */ + public $manager; + + /** + * Performs low-cost, preliminary initialization. + */ + public function __construct() + { + $this->manager = new HTMLPurifier_HTMLModuleManager(); + } + + /** + * @param HTMLPurifier_Config $config + */ + protected function doSetup($config) + { + $this->processModules($config); + $this->setupConfigStuff($config); + unset($this->manager); + + // cleanup some of the element definitions + foreach ($this->info as $k => $v) { + unset($this->info[$k]->content_model); + unset($this->info[$k]->content_model_type); + } + } + + /** + * Extract out the information from the manager + * @param HTMLPurifier_Config $config + */ + protected function processModules($config) + { + if ($this->_anonModule) { + // for user specific changes + // this is late-loaded so we don't have to deal with PHP4 + // reference wonky-ness + $this->manager->addModule($this->_anonModule); + unset($this->_anonModule); + } + + $this->manager->setup($config); + $this->doctype = $this->manager->doctype; + + foreach ($this->manager->modules as $module) { + foreach ($module->info_tag_transform as $k => $v) { + if ($v === false) { + unset($this->info_tag_transform[$k]); + } else { + $this->info_tag_transform[$k] = $v; + } + } + foreach ($module->info_attr_transform_pre as $k => $v) { + if ($v === false) { + unset($this->info_attr_transform_pre[$k]); + } else { + $this->info_attr_transform_pre[$k] = $v; + } + } + foreach ($module->info_attr_transform_post as $k => $v) { + if ($v === false) { + unset($this->info_attr_transform_post[$k]); + } else { + $this->info_attr_transform_post[$k] = $v; + } + } + foreach ($module->info_injector as $k => $v) { + if ($v === false) { + unset($this->info_injector[$k]); + } else { + $this->info_injector[$k] = $v; + } + } + } + $this->info = $this->manager->getElements(); + $this->info_content_sets = $this->manager->contentSets->lookup; + } + + /** + * Sets up stuff based on config. We need a better way of doing this. + * @param HTMLPurifier_Config $config + */ + protected function setupConfigStuff($config) + { + $block_wrapper = $config->get('HTML.BlockWrapper'); + if (isset($this->info_content_sets['Block'][$block_wrapper])) { + $this->info_block_wrapper = $block_wrapper; + } else { + throw new Exception( + 'Cannot use non-block element as block wrapper' + ); + } + + $parent = $config->get('HTML.Parent'); + $def = $this->manager->getElement($parent, true); + if ($def) { + $this->info_parent = $parent; + $this->info_parent_def = $def; + } else { + throw new Exception('Cannot use unrecognized element as parent'); + } + + // support template text + $support = "(for information on implementing this, see the support forums) "; + + // setup allowed elements ----------------------------------------- + + $allowed_elements = $config->get('HTML.AllowedElements'); + $allowed_attributes = $config->get('HTML.AllowedAttributes'); // retrieve early + + if (!is_array($allowed_elements) && !is_array($allowed_attributes)) { + $allowed = $config->get('HTML.Allowed'); + if (is_string($allowed)) { + list($allowed_elements, $allowed_attributes) = $this->parseTinyMCEAllowedList($allowed); + } + } + + if (is_array($allowed_elements)) { + foreach ($this->info as $name => $d) { + if (!isset($allowed_elements[$name])) { + unset($this->info[$name]); + } + unset($allowed_elements[$name]); + } + // emit errors + foreach ($allowed_elements as $element => $d) { + $element = htmlspecialchars($element); // PHP doesn't escape errors, be careful! + trigger_error("Element '$element' is not supported $support", E_USER_WARNING); + } + } + + // setup allowed attributes --------------------------------------- + + $allowed_attributes_mutable = $allowed_attributes; // by copy! + if (is_array($allowed_attributes)) { + // This actually doesn't do anything, since we went away from + // global attributes. It's possible that userland code uses + // it, but HTMLModuleManager doesn't! + foreach ($this->info_global_attr as $attr => $x) { + $keys = array($attr, "*@$attr", "*.$attr"); + $delete = true; + foreach ($keys as $key) { + if ($delete && isset($allowed_attributes[$key])) { + $delete = false; + } + if (isset($allowed_attributes_mutable[$key])) { + unset($allowed_attributes_mutable[$key]); + } + } + if ($delete) { + unset($this->info_global_attr[$attr]); + } + } + + foreach ($this->info as $tag => $info) { + foreach ($info->attr as $attr => $x) { + $keys = array("$tag@$attr", $attr, "*@$attr", "$tag.$attr", "*.$attr"); + $delete = true; + foreach ($keys as $key) { + if ($delete && isset($allowed_attributes[$key])) { + $delete = false; + } + if (isset($allowed_attributes_mutable[$key])) { + unset($allowed_attributes_mutable[$key]); + } + } + if ($delete) { + if ($this->info[$tag]->attr[$attr]->required) { + trigger_error( + "Required attribute '$attr' in element '$tag' " . + "was not allowed, which means '$tag' will not be allowed either", + E_USER_WARNING + ); + } + unset($this->info[$tag]->attr[$attr]); + } + } + } + // emit errors + foreach ($allowed_attributes_mutable as $elattr => $d) { + $bits = preg_split('/[.@]/', $elattr, 2); + $c = count($bits); + switch ($c) { + case 2: + if ($bits[0] !== '*') { + $element = htmlspecialchars($bits[0]); + $attribute = htmlspecialchars($bits[1]); + if (!isset($this->info[$element])) { + trigger_error( + "Cannot allow attribute '$attribute' if element " . + "'$element' is not allowed/supported $support" + ); + } else { + trigger_error( + "Attribute '$attribute' in element '$element' not supported $support", + E_USER_WARNING + ); + } + break; + } + // otherwise fall through + case 1: + $attribute = htmlspecialchars($bits[0]); + trigger_error( + "Global attribute '$attribute' is not ". + "supported in any elements $support", + E_USER_WARNING + ); + break; + } + } + } + + // setup forbidden elements --------------------------------------- + + $forbidden_elements = $config->get('HTML.ForbiddenElements'); + $forbidden_attributes = $config->get('HTML.ForbiddenAttributes'); + + foreach ($this->info as $tag => $info) { + if (isset($forbidden_elements[$tag])) { + unset($this->info[$tag]); + continue; + } + foreach ($info->attr as $attr => $x) { + if (isset($forbidden_attributes["$tag@$attr"]) || + isset($forbidden_attributes["*@$attr"]) || + isset($forbidden_attributes[$attr]) + ) { + unset($this->info[$tag]->attr[$attr]); + continue; + } elseif (isset($forbidden_attributes["$tag.$attr"])) { // this segment might get removed eventually + // $tag.$attr are not user supplied, so no worries! + trigger_error( + "Error with $tag.$attr: tag.attr syntax not supported for " . + "HTML.ForbiddenAttributes; use tag@attr instead", + E_USER_WARNING + ); + } + } + } + foreach ($forbidden_attributes as $key => $v) { + if (strlen($key) < 2) { + continue; + } + if ($key[0] != '*') { + continue; + } + if ($key[1] == '.') { + trigger_error( + "Error with $key: *.attr syntax not supported for HTML.ForbiddenAttributes; use attr instead", + E_USER_WARNING + ); + } + } + + // setup injectors ----------------------------------------------------- + foreach ($this->info_injector as $i => $injector) { + if ($injector->checkNeeded($config) !== false) { + // remove injector that does not have it's required + // elements/attributes present, and is thus not needed. + unset($this->info_injector[$i]); + } + } + } + + /** + * Parses a TinyMCE-flavored Allowed Elements and Attributes list into + * separate lists for processing. Format is element[attr1|attr2],element2... + * @warning Although it's largely drawn from TinyMCE's implementation, + * it is different, and you'll probably have to modify your lists + * @param array $list String list to parse + * @return array + * @todo Give this its own class, probably static interface + */ + public function parseTinyMCEAllowedList($list) + { + $list = str_replace(array(' ', "\t"), '', $list); + + $elements = array(); + $attributes = array(); + + $chunks = preg_split('/(,|[\n\r]+)/', $list); + foreach ($chunks as $chunk) { + if (empty($chunk)) { + continue; + } + // remove TinyMCE element control characters + if (!strpos($chunk, '[')) { + $element = $chunk; + $attr = false; + } else { + list($element, $attr) = explode('[', $chunk); + } + if ($element !== '*') { + $elements[$element] = true; + } + if (!$attr) { + continue; + } + $attr = substr($attr, 0, strlen($attr) - 1); // remove trailing ] + $attr = explode('|', $attr); + foreach ($attr as $key) { + $attributes["$element.$key"] = true; + } + } + return array($elements, $attributes); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule.php new file mode 100644 index 0000000..9dbb987 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule.php @@ -0,0 +1,285 @@ +info, since the object's data is only info, + * with extra behavior associated with it. + * @type array + */ + public $attr_collections = array(); + + /** + * Associative array of deprecated tag name to HTMLPurifier_TagTransform. + * @type array + */ + public $info_tag_transform = array(); + + /** + * List of HTMLPurifier_AttrTransform to be performed before validation. + * @type array + */ + public $info_attr_transform_pre = array(); + + /** + * List of HTMLPurifier_AttrTransform to be performed after validation. + * @type array + */ + public $info_attr_transform_post = array(); + + /** + * List of HTMLPurifier_Injector to be performed during well-formedness fixing. + * An injector will only be invoked if all of it's pre-requisites are met; + * if an injector fails setup, there will be no error; it will simply be + * silently disabled. + * @type array + */ + public $info_injector = array(); + + /** + * Boolean flag that indicates whether or not getChildDef is implemented. + * For optimization reasons: may save a call to a function. Be sure + * to set it if you do implement getChildDef(), otherwise it will have + * no effect! + * @type bool + */ + public $defines_child_def = false; + + /** + * Boolean flag whether or not this module is safe. If it is not safe, all + * of its members are unsafe. Modules are safe by default (this might be + * slightly dangerous, but it doesn't make much sense to force HTML Purifier, + * which is based off of safe HTML, to explicitly say, "This is safe," even + * though there are modules which are "unsafe") + * + * @type bool + * @note Previously, safety could be applied at an element level granularity. + * We've removed this ability, so in order to add "unsafe" elements + * or attributes, a dedicated module with this property set to false + * must be used. + */ + public $safe = true; + + /** + * Retrieves a proper HTMLPurifier_ChildDef subclass based on + * content_model and content_model_type member variables of + * the HTMLPurifier_ElementDef class. There is a similar function + * in HTMLPurifier_HTMLDefinition. + * @param HTMLPurifier_ElementDef $def + * @return HTMLPurifier_ChildDef subclass + */ + public function getChildDef($def) + { + return false; + } + + // -- Convenience ----------------------------------------------------- + + /** + * Convenience function that sets up a new element + * @param string $element Name of element to add + * @param string|bool $type What content set should element be registered to? + * Set as false to skip this step. + * @param string|HTMLPurifier_ChildDef $contents Allowed children in form of: + * "$content_model_type: $content_model" + * @param array|string $attr_includes What attribute collections to register to + * element? + * @param array $attr What unique attributes does the element define? + * @see HTMLPurifier_ElementDef:: for in-depth descriptions of these parameters. + * @return HTMLPurifier_ElementDef Created element definition object, so you + * can set advanced parameters + */ + public function addElement($element, $type, $contents, $attr_includes = array(), $attr = array()) + { + $this->elements[] = $element; + // parse content_model + list($content_model_type, $content_model) = $this->parseContents($contents); + // merge in attribute inclusions + $this->mergeInAttrIncludes($attr, $attr_includes); + // add element to content sets + if ($type) { + $this->addElementToContentSet($element, $type); + } + // create element + $this->info[$element] = HTMLPurifier_ElementDef::create( + $content_model, + $content_model_type, + $attr + ); + // literal object $contents means direct child manipulation + if (!is_string($contents)) { + $this->info[$element]->child = $contents; + } + return $this->info[$element]; + } + + /** + * Convenience function that creates a totally blank, non-standalone + * element. + * @param string $element Name of element to create + * @return HTMLPurifier_ElementDef Created element + */ + public function addBlankElement($element) + { + if (!isset($this->info[$element])) { + $this->elements[] = $element; + $this->info[$element] = new HTMLPurifier_ElementDef(); + $this->info[$element]->standalone = false; + } else { + trigger_error("Definition for $element already exists in module, cannot redefine"); + } + return $this->info[$element]; + } + + /** + * Convenience function that registers an element to a content set + * @param string $element Element to register + * @param string $type Name content set (warning: case sensitive, usually upper-case + * first letter) + */ + public function addElementToContentSet($element, $type) + { + if (!isset($this->content_sets[$type])) { + $this->content_sets[$type] = ''; + } else { + $this->content_sets[$type] .= ' | '; + } + $this->content_sets[$type] .= $element; + } + + /** + * Convenience function that transforms single-string contents + * into separate content model and content model type + * @param string $contents Allowed children in form of: + * "$content_model_type: $content_model" + * @return array + * @note If contents is an object, an array of two nulls will be + * returned, and the callee needs to take the original $contents + * and use it directly. + */ + public function parseContents($contents) + { + if (!is_string($contents)) { + return array(null, null); + } // defer + switch ($contents) { + // check for shorthand content model forms + case 'Empty': + return array('empty', ''); + case 'Inline': + return array('optional', 'Inline | #PCDATA'); + case 'Flow': + return array('optional', 'Flow | #PCDATA'); + } + list($content_model_type, $content_model) = explode(':', $contents); + $content_model_type = strtolower(trim($content_model_type)); + $content_model = trim($content_model); + return array($content_model_type, $content_model); + } + + /** + * Convenience function that merges a list of attribute includes into + * an attribute array. + * @param array $attr Reference to attr array to modify + * @param array $attr_includes Array of includes / string include to merge in + */ + public function mergeInAttrIncludes(&$attr, $attr_includes) + { + if (!is_array($attr_includes)) { + if (empty($attr_includes)) { + $attr_includes = array(); + } else { + $attr_includes = array($attr_includes); + } + } + $attr[0] = $attr_includes; + } + + /** + * Convenience function that generates a lookup table with boolean + * true as value. + * @param string $list List of values to turn into a lookup + * @note You can also pass an arbitrary number of arguments in + * place of the regular argument + * @return array array equivalent of list + */ + public function makeLookup($list) + { + $args = func_get_args(); + if (is_string($list)) { + $list = $args; + } + $ret = array(); + foreach ($list as $value) { + if (is_null($value)) { + continue; + } + $ret[$value] = true; + } + return $ret; + } + + /** + * Lazy load construction of the module after determining whether + * or not it's needed, and also when a finalized configuration object + * is available. + * @param HTMLPurifier_Config $config + */ + public function setup($config) + { + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php new file mode 100644 index 0000000..1e67c79 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php @@ -0,0 +1,44 @@ + array('dir' => false) + ); + + /** + * @param HTMLPurifier_Config $config + */ + public function setup($config) + { + $bdo = $this->addElement( + 'bdo', + 'Inline', + 'Inline', + array('Core', 'Lang'), + array( + 'dir' => 'Enum#ltr,rtl', // required + // The Abstract Module specification has the attribute + // inclusions wrong for bdo: bdo allows Lang + ) + ); + $bdo->attr_transform_post[] = new HTMLPurifier_AttrTransform_BdoDir(); + + $this->attr_collections['I18N']['dir'] = 'Enum#ltr,rtl'; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php new file mode 100644 index 0000000..7220c14 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php @@ -0,0 +1,32 @@ + array( + 0 => array('Style'), + // 'xml:space' => false, + 'class' => 'Class', + 'id' => 'ID', + 'title' => 'CDATA', + 'contenteditable' => 'ContentEditable', + ), + 'Lang' => array(), + 'I18N' => array( + 0 => array('Lang'), // proprietary, for xml:lang/lang + ), + 'Common' => array( + 0 => array('Core', 'I18N') + ) + ); +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php new file mode 100644 index 0000000..f02a563 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php @@ -0,0 +1,55 @@ + 'URI', + // 'datetime' => 'Datetime', // not implemented + ); + $this->addElement('del', 'Inline', $contents, 'Common', $attr); + $this->addElement('ins', 'Inline', $contents, 'Common', $attr); + } + + // HTML 4.01 specifies that ins/del must not contain block + // elements when used in an inline context, chameleon is + // a complicated workaround to achieve this effect + + // Inline context ! Block context (exclamation mark is + // separator, see getChildDef for parsing) + + /** + * @type bool + */ + public $defines_child_def = true; + + /** + * @param HTMLPurifier_ElementDef $def + * @return HTMLPurifier_ChildDef_Chameleon + */ + public function getChildDef($def) + { + if ($def->content_model_type != 'chameleon') { + return false; + } + $value = explode('!', $def->content_model); + return new HTMLPurifier_ChildDef_Chameleon($value[0], $value[1]); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php new file mode 100644 index 0000000..eb0edcf --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php @@ -0,0 +1,194 @@ + 'Form', + 'Inline' => 'Formctrl', + ); + + /** + * @param HTMLPurifier_Config $config + */ + public function setup($config) + { + if ($config->get('HTML.Forms')) { + $this->safe = true; + } + + $form = $this->addElement( + 'form', + 'Form', + 'Required: Heading | List | Block | fieldset', + 'Common', + array( + 'accept' => 'ContentTypes', + 'accept-charset' => 'Charsets', + 'action*' => 'URI', + 'method' => 'Enum#get,post', + // really ContentType, but these two are the only ones used today + 'enctype' => 'Enum#application/x-www-form-urlencoded,multipart/form-data', + ) + ); + $form->excludes = array('form' => true); + + $input = $this->addElement( + 'input', + 'Formctrl', + 'Empty', + 'Common', + array( + 'accept' => 'ContentTypes', + 'accesskey' => 'Character', + 'alt' => 'Text', + 'checked' => 'Bool#checked', + 'disabled' => 'Bool#disabled', + 'maxlength' => 'Number', + 'name' => 'CDATA', + 'readonly' => 'Bool#readonly', + 'size' => 'Number', + 'src' => 'URI#embedded', + 'tabindex' => 'Number', + 'type' => 'Enum#text,password,checkbox,button,radio,submit,reset,file,hidden,image', + 'value' => 'CDATA', + ) + ); + $input->attr_transform_post[] = new HTMLPurifier_AttrTransform_Input(); + + $this->addElement( + 'select', + 'Formctrl', + 'Required: optgroup | option', + 'Common', + array( + 'disabled' => 'Bool#disabled', + 'multiple' => 'Bool#multiple', + 'name' => 'CDATA', + 'size' => 'Number', + 'tabindex' => 'Number', + ) + ); + + $this->addElement( + 'option', + false, + 'Optional: #PCDATA', + 'Common', + array( + 'disabled' => 'Bool#disabled', + 'label' => 'Text', + 'selected' => 'Bool#selected', + 'value' => 'CDATA', + ) + ); + // It's illegal for there to be more than one selected, but not + // be multiple. Also, no selected means undefined behavior. This might + // be difficult to implement; perhaps an injector, or a context variable. + + $textarea = $this->addElement( + 'textarea', + 'Formctrl', + 'Optional: #PCDATA', + 'Common', + array( + 'accesskey' => 'Character', + 'cols*' => 'Number', + 'disabled' => 'Bool#disabled', + 'name' => 'CDATA', + 'readonly' => 'Bool#readonly', + 'rows*' => 'Number', + 'tabindex' => 'Number', + ) + ); + $textarea->attr_transform_pre[] = new HTMLPurifier_AttrTransform_Textarea(); + + $button = $this->addElement( + 'button', + 'Formctrl', + 'Optional: #PCDATA | Heading | List | Block | Inline', + 'Common', + array( + 'accesskey' => 'Character', + 'disabled' => 'Bool#disabled', + 'name' => 'CDATA', + 'tabindex' => 'Number', + 'type' => 'Enum#button,submit,reset', + 'value' => 'CDATA', + ) + ); + + // For exclusions, ideally we'd specify content sets, not literal elements + $button->excludes = $this->makeLookup( + 'form', + 'fieldset', // Form + 'input', + 'select', + 'textarea', + 'label', + 'button', // Formctrl + 'a', // as per HTML 4.01 spec, this is omitted by modularization + 'isindex', + 'iframe' // legacy items + ); + + // Extra exclusion: img usemap="" is not permitted within this element. + // We'll omit this for now, since we don't have any good way of + // indicating it yet. + + // This is HIGHLY user-unfriendly; we need a custom child-def for this + $this->addElement('fieldset', 'Form', 'Custom: (#WS?,legend,(Flow|#PCDATA)*)', 'Common'); + + $label = $this->addElement( + 'label', + 'Formctrl', + 'Optional: #PCDATA | Inline', + 'Common', + array( + 'accesskey' => 'Character', + // 'for' => 'IDREF', // IDREF not implemented, cannot allow + ) + ); + $label->excludes = array('label' => true); + + $this->addElement( + 'legend', + false, + 'Optional: #PCDATA | Inline', + 'Common', + array( + 'accesskey' => 'Character', + ) + ); + + $this->addElement( + 'optgroup', + false, + 'Required: option', + 'Common', + array( + 'disabled' => 'Bool#disabled', + 'label*' => 'Text', + ) + ); + // Don't forget an injector for . This one's a little complex + // because it maps to multiple elements. + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php new file mode 100644 index 0000000..72d7a31 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php @@ -0,0 +1,40 @@ +addElement( + 'a', + 'Inline', + 'Inline', + 'Common', + array( + // 'accesskey' => 'Character', + // 'charset' => 'Charset', + 'href' => 'URI', + // 'hreflang' => 'LanguageCode', + 'rel' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rel'), + 'rev' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rev'), + // 'tabindex' => 'Number', + // 'type' => 'ContentType', + ) + ); + $a->formatting = true; + $a->excludes = array('a' => true); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php new file mode 100644 index 0000000..71dfc77 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php @@ -0,0 +1,57 @@ +get('HTML.SafeIframe')) { + $this->safe = true; + } + $attrs = array( + 'src' => 'URI#embedded', + 'width' => 'Length', + 'height' => 'Length', + 'name' => 'ID', + 'scrolling' => 'Enum#yes,no,auto', + 'frameborder' => 'Enum#0,1', + 'longdesc' => 'URI', + 'marginheight' => 'Pixels', + 'marginwidth' => 'Pixels', + ); + + if ($config->get('HTML.Trusted')) { + $attrs['allowfullscreen'] = 'Bool#allowfullscreen'; + } + + $this->addElement( + 'iframe', + 'Inline', + 'Flow', + 'Common', + $attrs + ); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php new file mode 100644 index 0000000..0f5fdb3 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php @@ -0,0 +1,49 @@ +get('HTML.MaxImgLength'); + $img = $this->addElement( + 'img', + 'Inline', + 'Empty', + 'Common', + array( + 'alt*' => 'Text', + // According to the spec, it's Length, but percents can + // be abused, so we allow only Pixels. + 'height' => 'Pixels#' . $max, + 'width' => 'Pixels#' . $max, + 'longdesc' => 'URI', + 'src*' => new HTMLPurifier_AttrDef_URI(true), // embedded + ) + ); + if ($max === null || $config->get('HTML.Trusted')) { + $img->attr['height'] = + $img->attr['width'] = 'Length'; + } + + // kind of strange, but splitting things up would be inefficient + $img->attr_transform_pre[] = + $img->attr_transform_post[] = + new HTMLPurifier_AttrTransform_ImgRequired(); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php new file mode 100644 index 0000000..86b5299 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php @@ -0,0 +1,186 @@ +addElement( + 'basefont', + 'Inline', + 'Empty', + null, + array( + 'color' => 'Color', + 'face' => 'Text', // extremely broad, we should + 'size' => 'Text', // tighten it + 'id' => 'ID' + ) + ); + $this->addElement('center', 'Block', 'Flow', 'Common'); + $this->addElement( + 'dir', + 'Block', + 'Required: li', + 'Common', + array( + 'compact' => 'Bool#compact' + ) + ); + $this->addElement( + 'font', + 'Inline', + 'Inline', + array('Core', 'I18N'), + array( + 'color' => 'Color', + 'face' => 'Text', // extremely broad, we should + 'size' => 'Text', // tighten it + ) + ); + $this->addElement( + 'menu', + 'Block', + 'Required: li', + 'Common', + array( + 'compact' => 'Bool#compact' + ) + ); + + $s = $this->addElement('s', 'Inline', 'Inline', 'Common'); + $s->formatting = true; + + $strike = $this->addElement('strike', 'Inline', 'Inline', 'Common'); + $strike->formatting = true; + + $u = $this->addElement('u', 'Inline', 'Inline', 'Common'); + $u->formatting = true; + + // setup modifications to old elements + + $align = 'Enum#left,right,center,justify'; + + $address = $this->addBlankElement('address'); + $address->content_model = 'Inline | #PCDATA | p'; + $address->content_model_type = 'optional'; + $address->child = false; + + $blockquote = $this->addBlankElement('blockquote'); + $blockquote->content_model = 'Flow | #PCDATA'; + $blockquote->content_model_type = 'optional'; + $blockquote->child = false; + + $br = $this->addBlankElement('br'); + $br->attr['clear'] = 'Enum#left,all,right,none'; + + $caption = $this->addBlankElement('caption'); + $caption->attr['align'] = 'Enum#top,bottom,left,right'; + + $div = $this->addBlankElement('div'); + $div->attr['align'] = $align; + + $dl = $this->addBlankElement('dl'); + $dl->attr['compact'] = 'Bool#compact'; + + for ($i = 1; $i <= 6; $i++) { + $h = $this->addBlankElement("h$i"); + $h->attr['align'] = $align; + } + + $hr = $this->addBlankElement('hr'); + $hr->attr['align'] = $align; + $hr->attr['noshade'] = 'Bool#noshade'; + $hr->attr['size'] = 'Pixels'; + $hr->attr['width'] = 'Length'; + + $img = $this->addBlankElement('img'); + $img->attr['align'] = 'IAlign'; + $img->attr['border'] = 'Pixels'; + $img->attr['hspace'] = 'Pixels'; + $img->attr['vspace'] = 'Pixels'; + + // figure out this integer business + + $li = $this->addBlankElement('li'); + $li->attr['value'] = new HTMLPurifier_AttrDef_Integer(); + $li->attr['type'] = 'Enum#s:1,i,I,a,A,disc,square,circle'; + + $ol = $this->addBlankElement('ol'); + $ol->attr['compact'] = 'Bool#compact'; + $ol->attr['start'] = new HTMLPurifier_AttrDef_Integer(); + $ol->attr['type'] = 'Enum#s:1,i,I,a,A'; + + $p = $this->addBlankElement('p'); + $p->attr['align'] = $align; + + $pre = $this->addBlankElement('pre'); + $pre->attr['width'] = 'Number'; + + // script omitted + + $table = $this->addBlankElement('table'); + $table->attr['align'] = 'Enum#left,center,right'; + $table->attr['bgcolor'] = 'Color'; + + $tr = $this->addBlankElement('tr'); + $tr->attr['bgcolor'] = 'Color'; + + $th = $this->addBlankElement('th'); + $th->attr['bgcolor'] = 'Color'; + $th->attr['height'] = 'Length'; + $th->attr['nowrap'] = 'Bool#nowrap'; + $th->attr['width'] = 'Length'; + + $td = $this->addBlankElement('td'); + $td->attr['bgcolor'] = 'Color'; + $td->attr['height'] = 'Length'; + $td->attr['nowrap'] = 'Bool#nowrap'; + $td->attr['width'] = 'Length'; + + $ul = $this->addBlankElement('ul'); + $ul->attr['compact'] = 'Bool#compact'; + $ul->attr['type'] = 'Enum#square,disc,circle'; + + // "safe" modifications to "unsafe" elements + // WARNING: If you want to add support for an unsafe, legacy + // attribute, make a new TrustedLegacy module with the trusted + // bit set appropriately + + $form = $this->addBlankElement('form'); + $form->content_model = 'Flow | #PCDATA'; + $form->content_model_type = 'optional'; + $form->attr['target'] = 'FrameTarget'; + + $input = $this->addBlankElement('input'); + $input->attr['align'] = 'IAlign'; + + $legend = $this->addBlankElement('legend'); + $legend->attr['align'] = 'LAlign'; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php new file mode 100644 index 0000000..7a20ff7 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php @@ -0,0 +1,51 @@ + 'List'); + + /** + * @param HTMLPurifier_Config $config + */ + public function setup($config) + { + $ol = $this->addElement('ol', 'List', new HTMLPurifier_ChildDef_List(), 'Common'); + $ul = $this->addElement('ul', 'List', new HTMLPurifier_ChildDef_List(), 'Common'); + // XXX The wrap attribute is handled by MakeWellFormed. This is all + // quite unsatisfactory, because we generated this + // *specifically* for lists, and now a big chunk of the handling + // is done properly by the List ChildDef. So actually, we just + // want enough information to make autoclosing work properly, + // and then hand off the tricky stuff to the ChildDef. + $ol->wrap = 'li'; + $ul->wrap = 'li'; + $this->addElement('dl', 'List', 'Required: dt | dd', 'Common'); + + $this->addElement('li', false, 'Flow', 'Common'); + + $this->addElement('dd', false, 'Flow', 'Common'); + $this->addElement('dt', false, 'Inline', 'Common'); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php new file mode 100644 index 0000000..60c0545 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php @@ -0,0 +1,26 @@ +addBlankElement($name); + $element->attr['name'] = 'CDATA'; + if (!$config->get('HTML.Attr.Name.UseCDATA')) { + $element->attr_transform_post[] = new HTMLPurifier_AttrTransform_NameSync(); + } + } + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php new file mode 100644 index 0000000..dc9410a --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php @@ -0,0 +1,25 @@ +addBlankElement('a'); + $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_Nofollow(); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php new file mode 100644 index 0000000..da72225 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php @@ -0,0 +1,20 @@ + array( + 'lang' => 'LanguageCode', + ) + ); +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php new file mode 100644 index 0000000..2f9efc5 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php @@ -0,0 +1,62 @@ + to cater to legacy browsers: this + * module does not allow this sort of behavior + */ +class HTMLPurifier_HTMLModule_Object extends HTMLPurifier_HTMLModule +{ + /** + * @type string + */ + public $name = 'Object'; + + /** + * @type bool + */ + public $safe = false; + + /** + * @param HTMLPurifier_Config $config + */ + public function setup($config) + { + $this->addElement( + 'object', + 'Inline', + 'Optional: #PCDATA | Flow | param', + 'Common', + array( + 'archive' => 'URI', + 'classid' => 'URI', + 'codebase' => 'URI', + 'codetype' => 'Text', + 'data' => 'URI', + 'declare' => 'Bool#declare', + 'height' => 'Length', + 'name' => 'CDATA', + 'standby' => 'Text', + 'tabindex' => 'Number', + 'type' => 'ContentType', + 'width' => 'Length' + ) + ); + + $this->addElement( + 'param', + false, + 'Empty', + null, + array( + 'id' => 'ID', + 'name*' => 'Text', + 'type' => 'Text', + 'value' => 'Text', + 'valuetype' => 'Enum#data,ref,object' + ) + ); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php new file mode 100644 index 0000000..6458ce9 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php @@ -0,0 +1,42 @@ +addElement('hr', 'Block', 'Empty', 'Common'); + $this->addElement('sub', 'Inline', 'Inline', 'Common'); + $this->addElement('sup', 'Inline', 'Inline', 'Common'); + $b = $this->addElement('b', 'Inline', 'Inline', 'Common'); + $b->formatting = true; + $big = $this->addElement('big', 'Inline', 'Inline', 'Common'); + $big->formatting = true; + $i = $this->addElement('i', 'Inline', 'Inline', 'Common'); + $i->formatting = true; + $small = $this->addElement('small', 'Inline', 'Inline', 'Common'); + $small->formatting = true; + $tt = $this->addElement('tt', 'Inline', 'Inline', 'Common'); + $tt->formatting = true; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php new file mode 100644 index 0000000..5ee3c8e --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php @@ -0,0 +1,40 @@ +addElement( + 'marquee', + 'Inline', + 'Flow', + 'Common', + array( + 'direction' => 'Enum#left,right,up,down', + 'behavior' => 'Enum#alternate', + 'width' => 'Length', + 'height' => 'Length', + 'scrolldelay' => 'Number', + 'scrollamount' => 'Number', + 'loop' => 'Number', + 'bgcolor' => 'Color', + 'hspace' => 'Pixels', + 'vspace' => 'Pixels', + ) + ); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php new file mode 100644 index 0000000..d1afde0 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php @@ -0,0 +1,36 @@ +addElement( + 'ruby', + 'Inline', + 'Custom: ((rb, (rt | (rp, rt, rp))) | (rbc, rtc, rtc?))', + 'Common' + ); + $this->addElement('rbc', false, 'Required: rb', 'Common'); + $this->addElement('rtc', false, 'Required: rt', 'Common'); + $rb = $this->addElement('rb', false, 'Inline', 'Common'); + $rb->excludes = array('ruby' => true); + $rt = $this->addElement('rt', false, 'Inline', 'Common', array('rbspan' => 'Number')); + $rt->excludes = array('ruby' => true); + $this->addElement('rp', false, 'Optional: #PCDATA', 'Common'); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php new file mode 100644 index 0000000..04e6689 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php @@ -0,0 +1,40 @@ +get('HTML.MaxImgLength'); + $embed = $this->addElement( + 'embed', + 'Inline', + 'Empty', + 'Common', + array( + 'src*' => 'URI#embedded', + 'type' => 'Enum#application/x-shockwave-flash', + 'width' => 'Pixels#' . $max, + 'height' => 'Pixels#' . $max, + 'allowscriptaccess' => 'Enum#never', + 'allownetworking' => 'Enum#internal', + 'flashvars' => 'Text', + 'wmode' => 'Enum#window,transparent,opaque', + 'name' => 'ID', + ) + ); + $embed->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeEmbed(); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php new file mode 100644 index 0000000..1297f80 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php @@ -0,0 +1,62 @@ +get('HTML.MaxImgLength'); + $object = $this->addElement( + 'object', + 'Inline', + 'Optional: param | Flow | #PCDATA', + 'Common', + array( + // While technically not required by the spec, we're forcing + // it to this value. + 'type' => 'Enum#application/x-shockwave-flash', + 'width' => 'Pixels#' . $max, + 'height' => 'Pixels#' . $max, + 'data' => 'URI#embedded', + 'codebase' => new HTMLPurifier_AttrDef_Enum( + array( + 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0' + ) + ), + ) + ); + $object->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeObject(); + + $param = $this->addElement( + 'param', + false, + 'Empty', + false, + array( + 'id' => 'ID', + 'name*' => 'Text', + 'value' => 'Text' + ) + ); + $param->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeParam(); + $this->info_injector[] = 'SafeObject'; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php new file mode 100644 index 0000000..aea7584 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php @@ -0,0 +1,40 @@ +get('HTML.SafeScripting'); + $script = $this->addElement( + 'script', + 'Inline', + 'Optional:', // Not `Empty` to not allow to autoclose the #i', '', $html); + } + + return $html; + } + + /** + * Takes a string of HTML (fragment or document) and returns the content + * @todo Consider making protected + */ + public function extractBody($html) + { + $matches = array(); + $result = preg_match('|(.*?)]*>(.*)|is', $html, $matches); + if ($result) { + // Make sure it's not in a comment + $comment_start = strrpos($matches[1], ''); + if ($comment_start === false || + ($comment_end !== false && $comment_end > $comment_start)) { + return $matches[2]; + } + } + return $html; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php new file mode 100644 index 0000000..de79aaa --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php @@ -0,0 +1,411 @@ +factory = new HTMLPurifier_TokenFactory(); + } + + /** + * @param string $html + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return HTMLPurifier_Token[] + */ + public function tokenizeHTML($html, $config, $context) + { + $html = $this->normalize($html, $config, $context); + + // attempt to armor stray angled brackets that cannot possibly + // form tags and thus are probably being used as emoticons + if ($config->get('Core.AggressivelyFixLt')) { + $html = $this->aggressivelyFixLt($html); + } + + // preprocess html, essential for UTF-8 + $html = $this->wrapHTML($html, $config, $context); + + $doc = new DOMDocument(); + $doc->encoding = 'UTF-8'; // theoretically, the above has this covered + + $options = 0; + if ($config->get('Core.AllowParseManyTags') && defined('LIBXML_PARSEHUGE')) { + $options |= LIBXML_PARSEHUGE; + } + if ($config->get('Core.RemoveBlanks') && defined('LIBXML_NOBLANKS')) { + $options |= LIBXML_NOBLANKS; + } + + set_error_handler(array($this, 'muteErrorHandler')); + // loadHTML() fails on PHP 5.3 when second parameter is given + if ($options) { + $doc->loadHTML($html, $options); + } else { + $doc->loadHTML($html); + } + restore_error_handler(); + + $body = $doc->getElementsByTagName('html')->item(0)-> // + getElementsByTagName('body')->item(0); // + + $div = $body->getElementsByTagName('div')->item(0); //
+ $tokens = array(); + $this->tokenizeDOM($div, $tokens, $config); + // If the div has a sibling, that means we tripped across + // a premature
tag. So remove the div we parsed, + // and then tokenize the rest of body. We can't tokenize + // the sibling directly as we'll lose the tags in that case. + if ($div->nextSibling) { + $body->removeChild($div); + $this->tokenizeDOM($body, $tokens, $config); + } + return $tokens; + } + + /** + * Iterative function that tokenizes a node, putting it into an accumulator. + * To iterate is human, to recurse divine - L. Peter Deutsch + * @param DOMNode $node DOMNode to be tokenized. + * @param HTMLPurifier_Token[] $tokens Array-list of already tokenized tokens. + */ + protected function tokenizeDOM($node, &$tokens, $config) + { + $level = 0; + $nodes = array($level => new HTMLPurifier_Queue(array($node))); + $closingNodes = array(); + do { + while (!$nodes[$level]->isEmpty()) { + $node = $nodes[$level]->shift(); // FIFO + $collect = $level > 0 ? true : false; + $needEndingTag = $this->createStartNode($node, $tokens, $collect, $config); + if ($needEndingTag) { + $closingNodes[$level][] = $node; + } + if ($node->childNodes && $node->childNodes->length) { + $level++; + $nodes[$level] = new HTMLPurifier_Queue(); + foreach ($node->childNodes as $childNode) { + $nodes[$level]->push($childNode); + } + } + } + $level--; + if ($level && isset($closingNodes[$level])) { + while ($node = array_pop($closingNodes[$level])) { + $this->createEndNode($node, $tokens); + } + } + } while ($level > 0); + } + + /** + * Portably retrieve the tag name of a node; deals with older versions + * of libxml like 2.7.6 + * @param DOMNode $node + */ + protected function getTagName($node) + { + if (isset($node->tagName)) { + return $node->tagName; + } else if (isset($node->nodeName)) { + return $node->nodeName; + } else if (isset($node->localName)) { + return $node->localName; + } + return null; + } + + /** + * Portably retrieve the data of a node; deals with older versions + * of libxml like 2.7.6 + * @param DOMNode $node + */ + protected function getData($node) + { + if (isset($node->data)) { + return $node->data; + } else if (isset($node->nodeValue)) { + return $node->nodeValue; + } else if (isset($node->textContent)) { + return $node->textContent; + } + return null; + } + + + /** + * @param DOMNode $node DOMNode to be tokenized. + * @param HTMLPurifier_Token[] $tokens Array-list of already tokenized tokens. + * @param bool $collect Says whether or start and close are collected, set to + * false at first recursion because it's the implicit DIV + * tag you're dealing with. + * @return bool if the token needs an endtoken + * @todo data and tagName properties don't seem to exist in DOMNode? + */ + protected function createStartNode($node, &$tokens, $collect, $config) + { + // intercept non element nodes. WE MUST catch all of them, + // but we're not getting the character reference nodes because + // those should have been preprocessed + if ($node->nodeType === XML_TEXT_NODE) { + $data = $this->getData($node); // Handle variable data property + if ($data !== null) { + $tokens[] = $this->factory->createText($data); + } + return false; + } elseif ($node->nodeType === XML_CDATA_SECTION_NODE) { + // undo libxml's special treatment of )#si', + array($this, 'scriptCallback'), + $html + ); + } + + $html = $this->normalize($html, $config, $context); + + $cursor = 0; // our location in the text + $inside_tag = false; // whether or not we're parsing the inside of a tag + $array = array(); // result array + + // This is also treated to mean maintain *column* numbers too + $maintain_line_numbers = $config->get('Core.MaintainLineNumbers'); + + if ($maintain_line_numbers === null) { + // automatically determine line numbering by checking + // if error collection is on + $maintain_line_numbers = $config->get('Core.CollectErrors'); + } + + if ($maintain_line_numbers) { + $current_line = 1; + $current_col = 0; + $length = strlen($html); + } else { + $current_line = false; + $current_col = false; + $length = false; + } + $context->register('CurrentLine', $current_line); + $context->register('CurrentCol', $current_col); + $nl = "\n"; + // how often to manually recalculate. This will ALWAYS be right, + // but it's pretty wasteful. Set to 0 to turn off + $synchronize_interval = $config->get('Core.DirectLexLineNumberSyncInterval'); + + $e = false; + if ($config->get('Core.CollectErrors')) { + $e =& $context->get('ErrorCollector'); + } + + // for testing synchronization + $loops = 0; + + while (++$loops) { + // $cursor is either at the start of a token, or inside of + // a tag (i.e. there was a < immediately before it), as indicated + // by $inside_tag + + if ($maintain_line_numbers) { + // $rcursor, however, is always at the start of a token. + $rcursor = $cursor - (int)$inside_tag; + + // Column number is cheap, so we calculate it every round. + // We're interested at the *end* of the newline string, so + // we need to add strlen($nl) == 1 to $nl_pos before subtracting it + // from our "rcursor" position. + $nl_pos = strrpos($html, $nl, $rcursor - $length); + $current_col = $rcursor - (is_bool($nl_pos) ? 0 : $nl_pos + 1); + + // recalculate lines + if ($synchronize_interval && // synchronization is on + $cursor > 0 && // cursor is further than zero + $loops % $synchronize_interval === 0) { // time to synchronize! + $current_line = 1 + substr_count($html, $nl, 0, $cursor); + } + } + + $position_next_lt = strpos($html, '<', $cursor); + $position_next_gt = strpos($html, '>', $cursor); + + // triggers on "asdf" but not "asdf " + // special case to set up context + if ($position_next_lt === $cursor) { + $inside_tag = true; + $cursor++; + } + + if (!$inside_tag && $position_next_lt !== false) { + // We are not inside tag and there still is another tag to parse + $token = new + HTMLPurifier_Token_Text( + $this->parseText( + substr( + $html, + $cursor, + $position_next_lt - $cursor + ), $config + ) + ); + if ($maintain_line_numbers) { + $token->rawPosition($current_line, $current_col); + $current_line += substr_count($html, $nl, $cursor, $position_next_lt - $cursor); + } + $array[] = $token; + $cursor = $position_next_lt + 1; + $inside_tag = true; + continue; + } elseif (!$inside_tag) { + // We are not inside tag but there are no more tags + // If we're already at the end, break + if ($cursor === strlen($html)) { + break; + } + // Create Text of rest of string + $token = new + HTMLPurifier_Token_Text( + $this->parseText( + substr( + $html, + $cursor + ), $config + ) + ); + if ($maintain_line_numbers) { + $token->rawPosition($current_line, $current_col); + } + $array[] = $token; + break; + } elseif ($inside_tag && $position_next_gt !== false) { + // We are in tag and it is well formed + // Grab the internals of the tag + $strlen_segment = $position_next_gt - $cursor; + + if ($strlen_segment < 1) { + // there's nothing to process! + $token = new HTMLPurifier_Token_Text('<'); + $cursor++; + continue; + } + + $segment = substr($html, $cursor, $strlen_segment); + + if ($segment === false) { + // somehow, we attempted to access beyond the end of + // the string, defense-in-depth, reported by Nate Abele + break; + } + + // Check if it's a comment + if (substr($segment, 0, 3) === '!--') { + // re-determine segment length, looking for --> + $position_comment_end = strpos($html, '-->', $cursor); + if ($position_comment_end === false) { + // uh oh, we have a comment that extends to + // infinity. Can't be helped: set comment + // end position to end of string + if ($e) { + $e->send(E_WARNING, 'Lexer: Unclosed comment'); + } + $position_comment_end = strlen($html); + $end = true; + } else { + $end = false; + } + $strlen_segment = $position_comment_end - $cursor; + $segment = substr($html, $cursor, $strlen_segment); + $token = new + HTMLPurifier_Token_Comment( + substr( + $segment, + 3, + $strlen_segment - 3 + ) + ); + if ($maintain_line_numbers) { + $token->rawPosition($current_line, $current_col); + $current_line += substr_count($html, $nl, $cursor, $strlen_segment); + } + $array[] = $token; + $cursor = $end ? $position_comment_end : $position_comment_end + 3; + $inside_tag = false; + continue; + } + + // Check if it's an end tag + $is_end_tag = (strpos($segment, '/') === 0); + if ($is_end_tag) { + $type = substr($segment, 1); + $token = new HTMLPurifier_Token_End($type); + if ($maintain_line_numbers) { + $token->rawPosition($current_line, $current_col); + $current_line += substr_count($html, $nl, $cursor, $position_next_gt - $cursor); + } + $array[] = $token; + $inside_tag = false; + $cursor = $position_next_gt + 1; + continue; + } + + // Check leading character is alnum, if not, we may + // have accidently grabbed an emoticon. Translate into + // text and go our merry way + if (!ctype_alpha($segment[0])) { + // XML: $segment[0] !== '_' && $segment[0] !== ':' + if ($e) { + $e->send(E_NOTICE, 'Lexer: Unescaped lt'); + } + $token = new HTMLPurifier_Token_Text('<'); + if ($maintain_line_numbers) { + $token->rawPosition($current_line, $current_col); + $current_line += substr_count($html, $nl, $cursor, $position_next_gt - $cursor); + } + $array[] = $token; + $inside_tag = false; + continue; + } + + // Check if it is explicitly self closing, if so, remove + // trailing slash. Remember, we could have a tag like
, so + // any later token processing scripts must convert improperly + // classified EmptyTags from StartTags. + $is_self_closing = (strrpos($segment, '/') === $strlen_segment - 1); + if ($is_self_closing) { + $strlen_segment--; + $segment = substr($segment, 0, $strlen_segment); + } + + // Check if there are any attributes + $position_first_space = strcspn($segment, $this->_whitespace); + + if ($position_first_space >= $strlen_segment) { + if ($is_self_closing) { + $token = new HTMLPurifier_Token_Empty($segment); + } else { + $token = new HTMLPurifier_Token_Start($segment); + } + if ($maintain_line_numbers) { + $token->rawPosition($current_line, $current_col); + $current_line += substr_count($html, $nl, $cursor, $position_next_gt - $cursor); + } + $array[] = $token; + $inside_tag = false; + $cursor = $position_next_gt + 1; + continue; + } + + // Grab out all the data + $type = substr($segment, 0, $position_first_space); + $attribute_string = + trim( + substr( + $segment, + $position_first_space + ) + ); + if ($attribute_string) { + $attr = $this->parseAttributeString( + $attribute_string, + $config, + $context + ); + } else { + $attr = array(); + } + + if ($is_self_closing) { + $token = new HTMLPurifier_Token_Empty($type, $attr); + } else { + $token = new HTMLPurifier_Token_Start($type, $attr); + } + if ($maintain_line_numbers) { + $token->rawPosition($current_line, $current_col); + $current_line += substr_count($html, $nl, $cursor, $position_next_gt - $cursor); + } + $array[] = $token; + $cursor = $position_next_gt + 1; + $inside_tag = false; + continue; + } else { + // inside tag, but there's no ending > sign + if ($e) { + $e->send(E_WARNING, 'Lexer: Missing gt'); + } + $token = new + HTMLPurifier_Token_Text( + '<' . + $this->parseText( + substr($html, $cursor), $config + ) + ); + if ($maintain_line_numbers) { + $token->rawPosition($current_line, $current_col); + } + // no cursor scroll? Hmm... + $array[] = $token; + break; + } + break; + } + + $context->destroy('CurrentLine'); + $context->destroy('CurrentCol'); + return $array; + } + + /** + * Takes the inside of an HTML tag and makes an assoc array of attributes. + * + * @param string $string Inside of tag excluding name. + * @param HTMLPurifier_Config $config + * @param HTMLPurifier_Context $context + * @return array Assoc array of attributes. + */ + public function parseAttributeString($string, $config, $context) + { + $string = (string)$string; // quick typecast + + if ($string == '') { + return array(); + } // no attributes + + $e = false; + if ($config->get('Core.CollectErrors')) { + $e =& $context->get('ErrorCollector'); + } + + // let's see if we can abort as quickly as possible + // one equal sign, no spaces => one attribute + $num_equal = substr_count($string, '='); + $has_space = strpos($string, ' '); + if ($num_equal === 0 && !$has_space) { + // bool attribute + return array($string => $string); + } elseif ($num_equal === 1 && !$has_space) { + // only one attribute + list($key, $quoted_value) = explode('=', $string); + $quoted_value = trim($quoted_value); + if (!$key) { + if ($e) { + $e->send(E_ERROR, 'Lexer: Missing attribute key'); + } + return array(); + } + if (!$quoted_value) { + return array($key => ''); + } + $first_char = @$quoted_value[0]; + $last_char = @$quoted_value[strlen($quoted_value) - 1]; + + $same_quote = ($first_char == $last_char); + $open_quote = ($first_char == '"' || $first_char == "'"); + + if ($same_quote && $open_quote) { + // well behaved + $value = substr($quoted_value, 1, strlen($quoted_value) - 2); + } else { + // not well behaved + if ($open_quote) { + if ($e) { + $e->send(E_ERROR, 'Lexer: Missing end quote'); + } + $value = substr($quoted_value, 1); + } else { + $value = $quoted_value; + } + } + if ($value === false) { + $value = ''; + } + return array($key => $this->parseAttr($value, $config)); + } + + // setup loop environment + $array = array(); // return assoc array of attributes + $cursor = 0; // current position in string (moves forward) + $size = strlen($string); // size of the string (stays the same) + + // if we have unquoted attributes, the parser expects a terminating + // space, so let's guarantee that there's always a terminating space. + $string .= ' '; + + $old_cursor = -1; + while ($cursor < $size) { + if ($old_cursor >= $cursor) { + throw new Exception("Infinite loop detected"); + } + $old_cursor = $cursor; + + $cursor += ($value = strspn($string, $this->_whitespace, $cursor)); + // grab the key + + $key_begin = $cursor; //we're currently at the start of the key + + // scroll past all characters that are the key (not whitespace or =) + $cursor += strcspn($string, $this->_whitespace . '=', $cursor); + + $key_end = $cursor; // now at the end of the key + + $key = substr($string, $key_begin, $key_end - $key_begin); + + if (!$key) { + if ($e) { + $e->send(E_ERROR, 'Lexer: Missing attribute key'); + } + $cursor += 1 + strcspn($string, $this->_whitespace, $cursor + 1); // prevent infinite loop + continue; // empty key + } + + // scroll past all whitespace + $cursor += strspn($string, $this->_whitespace, $cursor); + + if ($cursor >= $size) { + $array[$key] = $key; + break; + } + + // if the next character is an equal sign, we've got a regular + // pair, otherwise, it's a bool attribute + $first_char = @$string[$cursor]; + + if ($first_char == '=') { + // key="value" + + $cursor++; + $cursor += strspn($string, $this->_whitespace, $cursor); + + if ($cursor === false) { + $array[$key] = ''; + break; + } + + // we might be in front of a quote right now + + $char = @$string[$cursor]; + + if ($char == '"' || $char == "'") { + // it's quoted, end bound is $char + $cursor++; + $value_begin = $cursor; + $cursor = strpos($string, $char, $cursor); + $value_end = $cursor; + } else { + // it's not quoted, end bound is whitespace + $value_begin = $cursor; + $cursor += strcspn($string, $this->_whitespace, $cursor); + $value_end = $cursor; + } + + // we reached a premature end + if ($cursor === false) { + $cursor = $size; + $value_end = $cursor; + } + + $value = substr($string, $value_begin, $value_end - $value_begin); + if ($value === false) { + $value = ''; + } + $array[$key] = $this->parseAttr($value, $config); + $cursor++; + } else { + // boolattr + if ($key !== '') { + $array[$key] = $key; + } else { + // purely theoretical + if ($e) { + $e->send(E_ERROR, 'Lexer: Missing attribute key'); + } + } + } + } + return $array; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/PH5P.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/PH5P.php new file mode 100644 index 0000000..9390279 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/PH5P.php @@ -0,0 +1,4788 @@ +normalize($html, $config, $context); + $new_html = $this->wrapHTML($new_html, $config, $context, false /* no div */); + try { + $parser = new HTML5($new_html); + $doc = $parser->save(); + } catch (DOMException $e) { + // Uh oh, it failed. Punt to DirectLex. + $lexer = new HTMLPurifier_Lexer_DirectLex(); + $context->register('PH5PError', $e); // save the error, so we can detect it + return $lexer->tokenizeHTML($html, $config, $context); // use original HTML + } + $tokens = array(); + $this->tokenizeDOM( + $doc->getElementsByTagName('html')->item(0)-> // + getElementsByTagName('body')->item(0) // + , + $tokens, $config + ); + return $tokens; + } +} + +/* + +Copyright 2007 Jeroen van der Meer + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +*/ + +class HTML5 +{ + private $data; + private $char; + private $EOF; + private $state; + private $tree; + private $token; + private $content_model; + private $escape = false; + private $entities = array( + 'AElig;', + 'AElig', + 'AMP;', + 'AMP', + 'Aacute;', + 'Aacute', + 'Acirc;', + 'Acirc', + 'Agrave;', + 'Agrave', + 'Alpha;', + 'Aring;', + 'Aring', + 'Atilde;', + 'Atilde', + 'Auml;', + 'Auml', + 'Beta;', + 'COPY;', + 'COPY', + 'Ccedil;', + 'Ccedil', + 'Chi;', + 'Dagger;', + 'Delta;', + 'ETH;', + 'ETH', + 'Eacute;', + 'Eacute', + 'Ecirc;', + 'Ecirc', + 'Egrave;', + 'Egrave', + 'Epsilon;', + 'Eta;', + 'Euml;', + 'Euml', + 'GT;', + 'GT', + 'Gamma;', + 'Iacute;', + 'Iacute', + 'Icirc;', + 'Icirc', + 'Igrave;', + 'Igrave', + 'Iota;', + 'Iuml;', + 'Iuml', + 'Kappa;', + 'LT;', + 'LT', + 'Lambda;', + 'Mu;', + 'Ntilde;', + 'Ntilde', + 'Nu;', + 'OElig;', + 'Oacute;', + 'Oacute', + 'Ocirc;', + 'Ocirc', + 'Ograve;', + 'Ograve', + 'Omega;', + 'Omicron;', + 'Oslash;', + 'Oslash', + 'Otilde;', + 'Otilde', + 'Ouml;', + 'Ouml', + 'Phi;', + 'Pi;', + 'Prime;', + 'Psi;', + 'QUOT;', + 'QUOT', + 'REG;', + 'REG', + 'Rho;', + 'Scaron;', + 'Sigma;', + 'THORN;', + 'THORN', + 'TRADE;', + 'Tau;', + 'Theta;', + 'Uacute;', + 'Uacute', + 'Ucirc;', + 'Ucirc', + 'Ugrave;', + 'Ugrave', + 'Upsilon;', + 'Uuml;', + 'Uuml', + 'Xi;', + 'Yacute;', + 'Yacute', + 'Yuml;', + 'Zeta;', + 'aacute;', + 'aacute', + 'acirc;', + 'acirc', + 'acute;', + 'acute', + 'aelig;', + 'aelig', + 'agrave;', + 'agrave', + 'alefsym;', + 'alpha;', + 'amp;', + 'amp', + 'and;', + 'ang;', + 'apos;', + 'aring;', + 'aring', + 'asymp;', + 'atilde;', + 'atilde', + 'auml;', + 'auml', + 'bdquo;', + 'beta;', + 'brvbar;', + 'brvbar', + 'bull;', + 'cap;', + 'ccedil;', + 'ccedil', + 'cedil;', + 'cedil', + 'cent;', + 'cent', + 'chi;', + 'circ;', + 'clubs;', + 'cong;', + 'copy;', + 'copy', + 'crarr;', + 'cup;', + 'curren;', + 'curren', + 'dArr;', + 'dagger;', + 'darr;', + 'deg;', + 'deg', + 'delta;', + 'diams;', + 'divide;', + 'divide', + 'eacute;', + 'eacute', + 'ecirc;', + 'ecirc', + 'egrave;', + 'egrave', + 'empty;', + 'emsp;', + 'ensp;', + 'epsilon;', + 'equiv;', + 'eta;', + 'eth;', + 'eth', + 'euml;', + 'euml', + 'euro;', + 'exist;', + 'fnof;', + 'forall;', + 'frac12;', + 'frac12', + 'frac14;', + 'frac14', + 'frac34;', + 'frac34', + 'frasl;', + 'gamma;', + 'ge;', + 'gt;', + 'gt', + 'hArr;', + 'harr;', + 'hearts;', + 'hellip;', + 'iacute;', + 'iacute', + 'icirc;', + 'icirc', + 'iexcl;', + 'iexcl', + 'igrave;', + 'igrave', + 'image;', + 'infin;', + 'int;', + 'iota;', + 'iquest;', + 'iquest', + 'isin;', + 'iuml;', + 'iuml', + 'kappa;', + 'lArr;', + 'lambda;', + 'lang;', + 'laquo;', + 'laquo', + 'larr;', + 'lceil;', + 'ldquo;', + 'le;', + 'lfloor;', + 'lowast;', + 'loz;', + 'lrm;', + 'lsaquo;', + 'lsquo;', + 'lt;', + 'lt', + 'macr;', + 'macr', + 'mdash;', + 'micro;', + 'micro', + 'middot;', + 'middot', + 'minus;', + 'mu;', + 'nabla;', + 'nbsp;', + 'nbsp', + 'ndash;', + 'ne;', + 'ni;', + 'not;', + 'not', + 'notin;', + 'nsub;', + 'ntilde;', + 'ntilde', + 'nu;', + 'oacute;', + 'oacute', + 'ocirc;', + 'ocirc', + 'oelig;', + 'ograve;', + 'ograve', + 'oline;', + 'omega;', + 'omicron;', + 'oplus;', + 'or;', + 'ordf;', + 'ordf', + 'ordm;', + 'ordm', + 'oslash;', + 'oslash', + 'otilde;', + 'otilde', + 'otimes;', + 'ouml;', + 'ouml', + 'para;', + 'para', + 'part;', + 'permil;', + 'perp;', + 'phi;', + 'pi;', + 'piv;', + 'plusmn;', + 'plusmn', + 'pound;', + 'pound', + 'prime;', + 'prod;', + 'prop;', + 'psi;', + 'quot;', + 'quot', + 'rArr;', + 'radic;', + 'rang;', + 'raquo;', + 'raquo', + 'rarr;', + 'rceil;', + 'rdquo;', + 'real;', + 'reg;', + 'reg', + 'rfloor;', + 'rho;', + 'rlm;', + 'rsaquo;', + 'rsquo;', + 'sbquo;', + 'scaron;', + 'sdot;', + 'sect;', + 'sect', + 'shy;', + 'shy', + 'sigma;', + 'sigmaf;', + 'sim;', + 'spades;', + 'sub;', + 'sube;', + 'sum;', + 'sup1;', + 'sup1', + 'sup2;', + 'sup2', + 'sup3;', + 'sup3', + 'sup;', + 'supe;', + 'szlig;', + 'szlig', + 'tau;', + 'there4;', + 'theta;', + 'thetasym;', + 'thinsp;', + 'thorn;', + 'thorn', + 'tilde;', + 'times;', + 'times', + 'trade;', + 'uArr;', + 'uacute;', + 'uacute', + 'uarr;', + 'ucirc;', + 'ucirc', + 'ugrave;', + 'ugrave', + 'uml;', + 'uml', + 'upsih;', + 'upsilon;', + 'uuml;', + 'uuml', + 'weierp;', + 'xi;', + 'yacute;', + 'yacute', + 'yen;', + 'yen', + 'yuml;', + 'yuml', + 'zeta;', + 'zwj;', + 'zwnj;' + ); + + const PCDATA = 0; + const RCDATA = 1; + const CDATA = 2; + const PLAINTEXT = 3; + + const DOCTYPE = 0; + const STARTTAG = 1; + const ENDTAG = 2; + const COMMENT = 3; + const CHARACTR = 4; + const EOF = 5; + + public function __construct($data) + { + $this->data = $data; + $this->char = -1; + $this->EOF = strlen($data); + $this->tree = new HTML5TreeConstructer; + $this->content_model = self::PCDATA; + + $this->state = 'data'; + + while ($this->state !== null) { + $this->{$this->state . 'State'}(); + } + } + + public function save() + { + return $this->tree->save(); + } + + private function char() + { + return ($this->char < $this->EOF) + ? $this->data[$this->char] + : false; + } + + private function character($s, $l = 0) + { + if ($s + $l < $this->EOF) { + if ($l === 0) { + return $this->data[$s]; + } else { + return substr($this->data, $s, $l); + } + } + } + + private function characters($char_class, $start) + { + return preg_replace('#^([' . $char_class . ']+).*#s', '\\1', substr($this->data, $start)); + } + + private function dataState() + { + // Consume the next input character + $this->char++; + $char = $this->char(); + + if ($char === '&' && ($this->content_model === self::PCDATA || $this->content_model === self::RCDATA)) { + /* U+0026 AMPERSAND (&) + When the content model flag is set to one of the PCDATA or RCDATA + states: switch to the entity data state. Otherwise: treat it as per + the "anything else" entry below. */ + $this->state = 'entityData'; + + } elseif ($char === '-') { + /* If the content model flag is set to either the RCDATA state or + the CDATA state, and the escape flag is false, and there are at + least three characters before this one in the input stream, and the + last four characters in the input stream, including this one, are + U+003C LESS-THAN SIGN, U+0021 EXCLAMATION MARK, U+002D HYPHEN-MINUS, + and U+002D HYPHEN-MINUS (""), + set the escape flag to false. */ + if (($this->content_model === self::RCDATA || + $this->content_model === self::CDATA) && $this->escape === true && + $this->character($this->char, 3) === '-->' + ) { + $this->escape = false; + } + + /* In any case, emit the input character as a character token. + Stay in the data state. */ + $this->emitToken( + array( + 'type' => self::CHARACTR, + 'data' => $char + ) + ); + + } elseif ($this->char === $this->EOF) { + /* EOF + Emit an end-of-file token. */ + $this->EOF(); + + } elseif ($this->content_model === self::PLAINTEXT) { + /* When the content model flag is set to the PLAINTEXT state + THIS DIFFERS GREATLY FROM THE SPEC: Get the remaining characters of + the text and emit it as a character token. */ + $this->emitToken( + array( + 'type' => self::CHARACTR, + 'data' => substr($this->data, $this->char) + ) + ); + + $this->EOF(); + + } else { + /* Anything else + THIS DIFFERS GREATLY FROM THE SPEC: Get as many character that + otherwise would also be treated as a character token and emit it + as a single character token. Stay in the data state. */ + $len = strcspn($this->data, '<&', $this->char); + $char = substr($this->data, $this->char, $len); + $this->char += $len - 1; + + $this->emitToken( + array( + 'type' => self::CHARACTR, + 'data' => $char + ) + ); + + $this->state = 'data'; + } + } + + private function entityDataState() + { + // Attempt to consume an entity. + $entity = $this->entity(); + + // If nothing is returned, emit a U+0026 AMPERSAND character token. + // Otherwise, emit the character token that was returned. + $char = (!$entity) ? '&' : $entity; + $this->emitToken( + array( + 'type' => self::CHARACTR, + 'data' => $char + ) + ); + + // Finally, switch to the data state. + $this->state = 'data'; + } + + private function tagOpenState() + { + switch ($this->content_model) { + case self::RCDATA: + case self::CDATA: + /* If the next input character is a U+002F SOLIDUS (/) character, + consume it and switch to the close tag open state. If the next + input character is not a U+002F SOLIDUS (/) character, emit a + U+003C LESS-THAN SIGN character token and switch to the data + state to process the next input character. */ + if ($this->character($this->char + 1) === '/') { + $this->char++; + $this->state = 'closeTagOpen'; + + } else { + $this->emitToken( + array( + 'type' => self::CHARACTR, + 'data' => '<' + ) + ); + + $this->state = 'data'; + } + break; + + case self::PCDATA: + // If the content model flag is set to the PCDATA state + // Consume the next input character: + $this->char++; + $char = $this->char(); + + if ($char === '!') { + /* U+0021 EXCLAMATION MARK (!) + Switch to the markup declaration open state. */ + $this->state = 'markupDeclarationOpen'; + + } elseif ($char === '/') { + /* U+002F SOLIDUS (/) + Switch to the close tag open state. */ + $this->state = 'closeTagOpen'; + + } elseif (preg_match('/^[A-Za-z]$/', $char)) { + /* U+0041 LATIN LETTER A through to U+005A LATIN LETTER Z + Create a new start tag token, set its tag name to the lowercase + version of the input character (add 0x0020 to the character's code + point), then switch to the tag name state. (Don't emit the token + yet; further details will be filled in before it is emitted.) */ + $this->token = array( + 'name' => strtolower($char), + 'type' => self::STARTTAG, + 'attr' => array() + ); + + $this->state = 'tagName'; + + } elseif ($char === '>') { + /* U+003E GREATER-THAN SIGN (>) + Parse error. Emit a U+003C LESS-THAN SIGN character token and a + U+003E GREATER-THAN SIGN character token. Switch to the data state. */ + $this->emitToken( + array( + 'type' => self::CHARACTR, + 'data' => '<>' + ) + ); + + $this->state = 'data'; + + } elseif ($char === '?') { + /* U+003F QUESTION MARK (?) + Parse error. Switch to the bogus comment state. */ + $this->state = 'bogusComment'; + + } else { + /* Anything else + Parse error. Emit a U+003C LESS-THAN SIGN character token and + reconsume the current input character in the data state. */ + $this->emitToken( + array( + 'type' => self::CHARACTR, + 'data' => '<' + ) + ); + + $this->char--; + $this->state = 'data'; + } + break; + } + } + + private function closeTagOpenState() + { + $next_node = strtolower($this->characters('A-Za-z', $this->char + 1)); + $the_same = count($this->tree->stack) > 0 && $next_node === end($this->tree->stack)->nodeName; + + if (($this->content_model === self::RCDATA || $this->content_model === self::CDATA) && + (!$the_same || ($the_same && (!preg_match( + '/[\t\n\x0b\x0c >\/]/', + $this->character($this->char + 1 + strlen($next_node)) + ) || $this->EOF === $this->char))) + ) { + /* If the content model flag is set to the RCDATA or CDATA states then + examine the next few characters. If they do not match the tag name of + the last start tag token emitted (case insensitively), or if they do but + they are not immediately followed by one of the following characters: + * U+0009 CHARACTER TABULATION + * U+000A LINE FEED (LF) + * U+000B LINE TABULATION + * U+000C FORM FEED (FF) + * U+0020 SPACE + * U+003E GREATER-THAN SIGN (>) + * U+002F SOLIDUS (/) + * EOF + ...then there is a parse error. Emit a U+003C LESS-THAN SIGN character + token, a U+002F SOLIDUS character token, and switch to the data state + to process the next input character. */ + $this->emitToken( + array( + 'type' => self::CHARACTR, + 'data' => 'state = 'data'; + + } else { + /* Otherwise, if the content model flag is set to the PCDATA state, + or if the next few characters do match that tag name, consume the + next input character: */ + $this->char++; + $char = $this->char(); + + if (preg_match('/^[A-Za-z]$/', $char)) { + /* U+0041 LATIN LETTER A through to U+005A LATIN LETTER Z + Create a new end tag token, set its tag name to the lowercase version + of the input character (add 0x0020 to the character's code point), then + switch to the tag name state. (Don't emit the token yet; further details + will be filled in before it is emitted.) */ + $this->token = array( + 'name' => strtolower($char), + 'type' => self::ENDTAG + ); + + $this->state = 'tagName'; + + } elseif ($char === '>') { + /* U+003E GREATER-THAN SIGN (>) + Parse error. Switch to the data state. */ + $this->state = 'data'; + + } elseif ($this->char === $this->EOF) { + /* EOF + Parse error. Emit a U+003C LESS-THAN SIGN character token and a U+002F + SOLIDUS character token. Reconsume the EOF character in the data state. */ + $this->emitToken( + array( + 'type' => self::CHARACTR, + 'data' => 'char--; + $this->state = 'data'; + + } else { + /* Parse error. Switch to the bogus comment state. */ + $this->state = 'bogusComment'; + } + } + } + + private function tagNameState() + { + // Consume the next input character: + $this->char++; + $char = $this->character($this->char); + + if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) { + /* U+0009 CHARACTER TABULATION + U+000A LINE FEED (LF) + U+000B LINE TABULATION + U+000C FORM FEED (FF) + U+0020 SPACE + Switch to the before attribute name state. */ + $this->state = 'beforeAttributeName'; + + } elseif ($char === '>') { + /* U+003E GREATER-THAN SIGN (>) + Emit the current tag token. Switch to the data state. */ + $this->emitToken($this->token); + $this->state = 'data'; + + } elseif ($this->char === $this->EOF) { + /* EOF + Parse error. Emit the current tag token. Reconsume the EOF + character in the data state. */ + $this->emitToken($this->token); + + $this->char--; + $this->state = 'data'; + + } elseif ($char === '/') { + /* U+002F SOLIDUS (/) + Parse error unless this is a permitted slash. Switch to the before + attribute name state. */ + $this->state = 'beforeAttributeName'; + + } else { + /* Anything else + Append the current input character to the current tag token's tag name. + Stay in the tag name state. */ + $this->token['name'] .= strtolower($char); + $this->state = 'tagName'; + } + } + + private function beforeAttributeNameState() + { + // Consume the next input character: + $this->char++; + $char = $this->character($this->char); + + if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) { + /* U+0009 CHARACTER TABULATION + U+000A LINE FEED (LF) + U+000B LINE TABULATION + U+000C FORM FEED (FF) + U+0020 SPACE + Stay in the before attribute name state. */ + $this->state = 'beforeAttributeName'; + + } elseif ($char === '>') { + /* U+003E GREATER-THAN SIGN (>) + Emit the current tag token. Switch to the data state. */ + $this->emitToken($this->token); + $this->state = 'data'; + + } elseif ($char === '/') { + /* U+002F SOLIDUS (/) + Parse error unless this is a permitted slash. Stay in the before + attribute name state. */ + $this->state = 'beforeAttributeName'; + + } elseif ($this->char === $this->EOF) { + /* EOF + Parse error. Emit the current tag token. Reconsume the EOF + character in the data state. */ + $this->emitToken($this->token); + + $this->char--; + $this->state = 'data'; + + } else { + /* Anything else + Start a new attribute in the current tag token. Set that attribute's + name to the current input character, and its value to the empty string. + Switch to the attribute name state. */ + $this->token['attr'][] = array( + 'name' => strtolower($char), + 'value' => null + ); + + $this->state = 'attributeName'; + } + } + + private function attributeNameState() + { + // Consume the next input character: + $this->char++; + $char = $this->character($this->char); + + if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) { + /* U+0009 CHARACTER TABULATION + U+000A LINE FEED (LF) + U+000B LINE TABULATION + U+000C FORM FEED (FF) + U+0020 SPACE + Stay in the before attribute name state. */ + $this->state = 'afterAttributeName'; + + } elseif ($char === '=') { + /* U+003D EQUALS SIGN (=) + Switch to the before attribute value state. */ + $this->state = 'beforeAttributeValue'; + + } elseif ($char === '>') { + /* U+003E GREATER-THAN SIGN (>) + Emit the current tag token. Switch to the data state. */ + $this->emitToken($this->token); + $this->state = 'data'; + + } elseif ($char === '/' && $this->character($this->char + 1) !== '>') { + /* U+002F SOLIDUS (/) + Parse error unless this is a permitted slash. Switch to the before + attribute name state. */ + $this->state = 'beforeAttributeName'; + + } elseif ($this->char === $this->EOF) { + /* EOF + Parse error. Emit the current tag token. Reconsume the EOF + character in the data state. */ + $this->emitToken($this->token); + + $this->char--; + $this->state = 'data'; + + } else { + /* Anything else + Append the current input character to the current attribute's name. + Stay in the attribute name state. */ + $last = count($this->token['attr']) - 1; + $this->token['attr'][$last]['name'] .= strtolower($char); + + $this->state = 'attributeName'; + } + } + + private function afterAttributeNameState() + { + // Consume the next input character: + $this->char++; + $char = $this->character($this->char); + + if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) { + /* U+0009 CHARACTER TABULATION + U+000A LINE FEED (LF) + U+000B LINE TABULATION + U+000C FORM FEED (FF) + U+0020 SPACE + Stay in the after attribute name state. */ + $this->state = 'afterAttributeName'; + + } elseif ($char === '=') { + /* U+003D EQUALS SIGN (=) + Switch to the before attribute value state. */ + $this->state = 'beforeAttributeValue'; + + } elseif ($char === '>') { + /* U+003E GREATER-THAN SIGN (>) + Emit the current tag token. Switch to the data state. */ + $this->emitToken($this->token); + $this->state = 'data'; + + } elseif ($char === '/' && $this->character($this->char + 1) !== '>') { + /* U+002F SOLIDUS (/) + Parse error unless this is a permitted slash. Switch to the + before attribute name state. */ + $this->state = 'beforeAttributeName'; + + } elseif ($this->char === $this->EOF) { + /* EOF + Parse error. Emit the current tag token. Reconsume the EOF + character in the data state. */ + $this->emitToken($this->token); + + $this->char--; + $this->state = 'data'; + + } else { + /* Anything else + Start a new attribute in the current tag token. Set that attribute's + name to the current input character, and its value to the empty string. + Switch to the attribute name state. */ + $this->token['attr'][] = array( + 'name' => strtolower($char), + 'value' => null + ); + + $this->state = 'attributeName'; + } + } + + private function beforeAttributeValueState() + { + // Consume the next input character: + $this->char++; + $char = $this->character($this->char); + + if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) { + /* U+0009 CHARACTER TABULATION + U+000A LINE FEED (LF) + U+000B LINE TABULATION + U+000C FORM FEED (FF) + U+0020 SPACE + Stay in the before attribute value state. */ + $this->state = 'beforeAttributeValue'; + + } elseif ($char === '"') { + /* U+0022 QUOTATION MARK (") + Switch to the attribute value (double-quoted) state. */ + $this->state = 'attributeValueDoubleQuoted'; + + } elseif ($char === '&') { + /* U+0026 AMPERSAND (&) + Switch to the attribute value (unquoted) state and reconsume + this input character. */ + $this->char--; + $this->state = 'attributeValueUnquoted'; + + } elseif ($char === '\'') { + /* U+0027 APOSTROPHE (') + Switch to the attribute value (single-quoted) state. */ + $this->state = 'attributeValueSingleQuoted'; + + } elseif ($char === '>') { + /* U+003E GREATER-THAN SIGN (>) + Emit the current tag token. Switch to the data state. */ + $this->emitToken($this->token); + $this->state = 'data'; + + } else { + /* Anything else + Append the current input character to the current attribute's value. + Switch to the attribute value (unquoted) state. */ + $last = count($this->token['attr']) - 1; + $this->token['attr'][$last]['value'] .= $char; + + $this->state = 'attributeValueUnquoted'; + } + } + + private function attributeValueDoubleQuotedState() + { + // Consume the next input character: + $this->char++; + $char = $this->character($this->char); + + if ($char === '"') { + /* U+0022 QUOTATION MARK (") + Switch to the before attribute name state. */ + $this->state = 'beforeAttributeName'; + + } elseif ($char === '&') { + /* U+0026 AMPERSAND (&) + Switch to the entity in attribute value state. */ + $this->entityInAttributeValueState('double'); + + } elseif ($this->char === $this->EOF) { + /* EOF + Parse error. Emit the current tag token. Reconsume the character + in the data state. */ + $this->emitToken($this->token); + + $this->char--; + $this->state = 'data'; + + } else { + /* Anything else + Append the current input character to the current attribute's value. + Stay in the attribute value (double-quoted) state. */ + $last = count($this->token['attr']) - 1; + $this->token['attr'][$last]['value'] .= $char; + + $this->state = 'attributeValueDoubleQuoted'; + } + } + + private function attributeValueSingleQuotedState() + { + // Consume the next input character: + $this->char++; + $char = $this->character($this->char); + + if ($char === '\'') { + /* U+0022 QUOTATION MARK (') + Switch to the before attribute name state. */ + $this->state = 'beforeAttributeName'; + + } elseif ($char === '&') { + /* U+0026 AMPERSAND (&) + Switch to the entity in attribute value state. */ + $this->entityInAttributeValueState('single'); + + } elseif ($this->char === $this->EOF) { + /* EOF + Parse error. Emit the current tag token. Reconsume the character + in the data state. */ + $this->emitToken($this->token); + + $this->char--; + $this->state = 'data'; + + } else { + /* Anything else + Append the current input character to the current attribute's value. + Stay in the attribute value (single-quoted) state. */ + $last = count($this->token['attr']) - 1; + $this->token['attr'][$last]['value'] .= $char; + + $this->state = 'attributeValueSingleQuoted'; + } + } + + private function attributeValueUnquotedState() + { + // Consume the next input character: + $this->char++; + $char = $this->character($this->char); + + if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) { + /* U+0009 CHARACTER TABULATION + U+000A LINE FEED (LF) + U+000B LINE TABULATION + U+000C FORM FEED (FF) + U+0020 SPACE + Switch to the before attribute name state. */ + $this->state = 'beforeAttributeName'; + + } elseif ($char === '&') { + /* U+0026 AMPERSAND (&) + Switch to the entity in attribute value state. */ + $this->entityInAttributeValueState(); + + } elseif ($char === '>') { + /* U+003E GREATER-THAN SIGN (>) + Emit the current tag token. Switch to the data state. */ + $this->emitToken($this->token); + $this->state = 'data'; + + } else { + /* Anything else + Append the current input character to the current attribute's value. + Stay in the attribute value (unquoted) state. */ + $last = count($this->token['attr']) - 1; + $this->token['attr'][$last]['value'] .= $char; + + $this->state = 'attributeValueUnquoted'; + } + } + + private function entityInAttributeValueState() + { + // Attempt to consume an entity. + $entity = $this->entity(); + + // If nothing is returned, append a U+0026 AMPERSAND character to the + // current attribute's value. Otherwise, emit the character token that + // was returned. + $char = (!$entity) + ? '&' + : $entity; + + $last = count($this->token['attr']) - 1; + $this->token['attr'][$last]['value'] .= $char; + } + + private function bogusCommentState() + { + /* Consume every character up to the first U+003E GREATER-THAN SIGN + character (>) or the end of the file (EOF), whichever comes first. Emit + a comment token whose data is the concatenation of all the characters + starting from and including the character that caused the state machine + to switch into the bogus comment state, up to and including the last + consumed character before the U+003E character, if any, or up to the + end of the file otherwise. (If the comment was started by the end of + the file (EOF), the token is empty.) */ + $data = $this->characters('^>', $this->char); + $this->emitToken( + array( + 'data' => $data, + 'type' => self::COMMENT + ) + ); + + $this->char += strlen($data); + + /* Switch to the data state. */ + $this->state = 'data'; + + /* If the end of the file was reached, reconsume the EOF character. */ + if ($this->char === $this->EOF) { + $this->char = $this->EOF - 1; + } + } + + private function markupDeclarationOpenState() + { + /* If the next two characters are both U+002D HYPHEN-MINUS (-) + characters, consume those two characters, create a comment token whose + data is the empty string, and switch to the comment state. */ + if ($this->character($this->char + 1, 2) === '--') { + $this->char += 2; + $this->state = 'comment'; + $this->token = array( + 'data' => null, + 'type' => self::COMMENT + ); + + /* Otherwise if the next seven characters are a case-insensitive match + for the word "DOCTYPE", then consume those characters and switch to the + DOCTYPE state. */ + } elseif (strtolower($this->character($this->char + 1, 7)) === 'doctype') { + $this->char += 7; + $this->state = 'doctype'; + + /* Otherwise, it is a parse error. Switch to the bogus comment state. + The next character that is consumed, if any, is the first character + that will be in the comment. */ + } else { + $this->char++; + $this->state = 'bogusComment'; + } + } + + private function commentState() + { + /* Consume the next input character: */ + $this->char++; + $char = $this->char(); + + /* U+002D HYPHEN-MINUS (-) */ + if ($char === '-') { + /* Switch to the comment dash state */ + $this->state = 'commentDash'; + + /* EOF */ + } elseif ($this->char === $this->EOF) { + /* Parse error. Emit the comment token. Reconsume the EOF character + in the data state. */ + $this->emitToken($this->token); + $this->char--; + $this->state = 'data'; + + /* Anything else */ + } else { + /* Append the input character to the comment token's data. Stay in + the comment state. */ + $this->token['data'] .= $char; + } + } + + private function commentDashState() + { + /* Consume the next input character: */ + $this->char++; + $char = $this->char(); + + /* U+002D HYPHEN-MINUS (-) */ + if ($char === '-') { + /* Switch to the comment end state */ + $this->state = 'commentEnd'; + + /* EOF */ + } elseif ($this->char === $this->EOF) { + /* Parse error. Emit the comment token. Reconsume the EOF character + in the data state. */ + $this->emitToken($this->token); + $this->char--; + $this->state = 'data'; + + /* Anything else */ + } else { + /* Append a U+002D HYPHEN-MINUS (-) character and the input + character to the comment token's data. Switch to the comment state. */ + $this->token['data'] .= '-' . $char; + $this->state = 'comment'; + } + } + + private function commentEndState() + { + /* Consume the next input character: */ + $this->char++; + $char = $this->char(); + + if ($char === '>') { + $this->emitToken($this->token); + $this->state = 'data'; + + } elseif ($char === '-') { + $this->token['data'] .= '-'; + + } elseif ($this->char === $this->EOF) { + $this->emitToken($this->token); + $this->char--; + $this->state = 'data'; + + } else { + $this->token['data'] .= '--' . $char; + $this->state = 'comment'; + } + } + + private function doctypeState() + { + /* Consume the next input character: */ + $this->char++; + $char = $this->char(); + + if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) { + $this->state = 'beforeDoctypeName'; + + } else { + $this->char--; + $this->state = 'beforeDoctypeName'; + } + } + + private function beforeDoctypeNameState() + { + /* Consume the next input character: */ + $this->char++; + $char = $this->char(); + + if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) { + // Stay in the before DOCTYPE name state. + + } elseif (preg_match('/^[a-z]$/', $char)) { + $this->token = array( + 'name' => strtoupper($char), + 'type' => self::DOCTYPE, + 'error' => true + ); + + $this->state = 'doctypeName'; + + } elseif ($char === '>') { + $this->emitToken( + array( + 'name' => null, + 'type' => self::DOCTYPE, + 'error' => true + ) + ); + + $this->state = 'data'; + + } elseif ($this->char === $this->EOF) { + $this->emitToken( + array( + 'name' => null, + 'type' => self::DOCTYPE, + 'error' => true + ) + ); + + $this->char--; + $this->state = 'data'; + + } else { + $this->token = array( + 'name' => $char, + 'type' => self::DOCTYPE, + 'error' => true + ); + + $this->state = 'doctypeName'; + } + } + + private function doctypeNameState() + { + /* Consume the next input character: */ + $this->char++; + $char = $this->char(); + + if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) { + $this->state = 'AfterDoctypeName'; + + } elseif ($char === '>') { + $this->emitToken($this->token); + $this->state = 'data'; + + } elseif (preg_match('/^[a-z]$/', $char)) { + $this->token['name'] .= strtoupper($char); + + } elseif ($this->char === $this->EOF) { + $this->emitToken($this->token); + $this->char--; + $this->state = 'data'; + + } else { + $this->token['name'] .= $char; + } + + $this->token['error'] = ($this->token['name'] === 'HTML') + ? false + : true; + } + + private function afterDoctypeNameState() + { + /* Consume the next input character: */ + $this->char++; + $char = $this->char(); + + if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) { + // Stay in the DOCTYPE name state. + + } elseif ($char === '>') { + $this->emitToken($this->token); + $this->state = 'data'; + + } elseif ($this->char === $this->EOF) { + $this->emitToken($this->token); + $this->char--; + $this->state = 'data'; + + } else { + $this->token['error'] = true; + $this->state = 'bogusDoctype'; + } + } + + private function bogusDoctypeState() + { + /* Consume the next input character: */ + $this->char++; + $char = $this->char(); + + if ($char === '>') { + $this->emitToken($this->token); + $this->state = 'data'; + + } elseif ($this->char === $this->EOF) { + $this->emitToken($this->token); + $this->char--; + $this->state = 'data'; + + } else { + // Stay in the bogus DOCTYPE state. + } + } + + private function entity() + { + $start = $this->char; + + // This section defines how to consume an entity. This definition is + // used when parsing entities in text and in attributes. + + // The behaviour depends on the identity of the next character (the + // one immediately after the U+0026 AMPERSAND character): + + switch ($this->character($this->char + 1)) { + // U+0023 NUMBER SIGN (#) + case '#': + + // The behaviour further depends on the character after the + // U+0023 NUMBER SIGN: + switch ($this->character($this->char + 1)) { + // U+0078 LATIN SMALL LETTER X + // U+0058 LATIN CAPITAL LETTER X + case 'x': + case 'X': + // Follow the steps below, but using the range of + // characters U+0030 DIGIT ZERO through to U+0039 DIGIT + // NINE, U+0061 LATIN SMALL LETTER A through to U+0066 + // LATIN SMALL LETTER F, and U+0041 LATIN CAPITAL LETTER + // A, through to U+0046 LATIN CAPITAL LETTER F (in other + // words, 0-9, A-F, a-f). + $char = 1; + $char_class = '0-9A-Fa-f'; + break; + + // Anything else + default: + // Follow the steps below, but using the range of + // characters U+0030 DIGIT ZERO through to U+0039 DIGIT + // NINE (i.e. just 0-9). + $char = 0; + $char_class = '0-9'; + break; + } + + // Consume as many characters as match the range of characters + // given above. + $this->char++; + $e_name = $this->characters($char_class, $this->char + $char + 1); + $entity = $this->character($start, $this->char); + $cond = strlen($e_name) > 0; + + // The rest of the parsing happens below. + break; + + // Anything else + default: + // Consume the maximum number of characters possible, with the + // consumed characters case-sensitively matching one of the + // identifiers in the first column of the entities table. + + $e_name = $this->characters('0-9A-Za-z;', $this->char + 1); + $len = strlen($e_name); + + for ($c = 1; $c <= $len; $c++) { + $id = substr($e_name, 0, $c); + $this->char++; + + if (in_array($id, $this->entities)) { + if ($e_name[$c - 1] !== ';') { + if ($c < $len && $e_name[$c] == ';') { + $this->char++; // consume extra semicolon + } + } + $entity = $id; + break; + } + } + + $cond = isset($entity); + // The rest of the parsing happens below. + break; + } + + if (!$cond) { + // If no match can be made, then this is a parse error. No + // characters are consumed, and nothing is returned. + $this->char = $start; + return false; + } + + // Return a character token for the character corresponding to the + // entity name (as given by the second column of the entities table). + return html_entity_decode('&' . rtrim($entity, ';') . ';', ENT_QUOTES, 'UTF-8'); + } + + private function emitToken($token) + { + $emit = $this->tree->emitToken($token); + + if (is_int($emit)) { + $this->content_model = $emit; + + } elseif ($token['type'] === self::ENDTAG) { + $this->content_model = self::PCDATA; + } + } + + private function EOF() + { + $this->state = null; + $this->tree->emitToken( + array( + 'type' => self::EOF + ) + ); + } +} + +class HTML5TreeConstructer +{ + public $stack = array(); + + private $phase; + private $mode; + private $dom; + private $foster_parent = null; + private $a_formatting = array(); + + private $head_pointer = null; + private $form_pointer = null; + + private $scoping = array('button', 'caption', 'html', 'marquee', 'object', 'table', 'td', 'th'); + private $formatting = array( + 'a', + 'b', + 'big', + 'em', + 'font', + 'i', + 'nobr', + 's', + 'small', + 'strike', + 'strong', + 'tt', + 'u' + ); + private $special = array( + 'address', + 'area', + 'base', + 'basefont', + 'bgsound', + 'blockquote', + 'body', + 'br', + 'center', + 'col', + 'colgroup', + 'dd', + 'dir', + 'div', + 'dl', + 'dt', + 'embed', + 'fieldset', + 'form', + 'frame', + 'frameset', + 'h1', + 'h2', + 'h3', + 'h4', + 'h5', + 'h6', + 'head', + 'hr', + 'iframe', + 'image', + 'img', + 'input', + 'isindex', + 'li', + 'link', + 'listing', + 'menu', + 'meta', + 'noembed', + 'noframes', + 'noscript', + 'ol', + 'optgroup', + 'option', + 'p', + 'param', + 'plaintext', + 'pre', + 'script', + 'select', + 'spacer', + 'style', + 'tbody', + 'textarea', + 'tfoot', + 'thead', + 'title', + 'tr', + 'ul', + 'wbr' + ); + + // The different phases. + const INIT_PHASE = 0; + const ROOT_PHASE = 1; + const MAIN_PHASE = 2; + const END_PHASE = 3; + + // The different insertion modes for the main phase. + const BEFOR_HEAD = 0; + const IN_HEAD = 1; + const AFTER_HEAD = 2; + const IN_BODY = 3; + const IN_TABLE = 4; + const IN_CAPTION = 5; + const IN_CGROUP = 6; + const IN_TBODY = 7; + const IN_ROW = 8; + const IN_CELL = 9; + const IN_SELECT = 10; + const AFTER_BODY = 11; + const IN_FRAME = 12; + const AFTR_FRAME = 13; + + // The different types of elements. + const SPECIAL = 0; + const SCOPING = 1; + const FORMATTING = 2; + const PHRASING = 3; + + const MARKER = 0; + + public function __construct() + { + $this->phase = self::INIT_PHASE; + $this->mode = self::BEFOR_HEAD; + $this->dom = new DOMDocument; + + $this->dom->encoding = 'UTF-8'; + $this->dom->preserveWhiteSpace = true; + $this->dom->substituteEntities = true; + $this->dom->strictErrorChecking = false; + } + + // Process tag tokens + public function emitToken($token) + { + switch ($this->phase) { + case self::INIT_PHASE: + return $this->initPhase($token); + break; + case self::ROOT_PHASE: + return $this->rootElementPhase($token); + break; + case self::MAIN_PHASE: + return $this->mainPhase($token); + break; + case self::END_PHASE : + return $this->trailingEndPhase($token); + break; + } + } + + private function initPhase($token) + { + /* Initially, the tree construction stage must handle each token + emitted from the tokenisation stage as follows: */ + + /* A DOCTYPE token that is marked as being in error + A comment token + A start tag token + An end tag token + A character token that is not one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE + An end-of-file token */ + if ((isset($token['error']) && $token['error']) || + $token['type'] === HTML5::COMMENT || + $token['type'] === HTML5::STARTTAG || + $token['type'] === HTML5::ENDTAG || + $token['type'] === HTML5::EOF || + ($token['type'] === HTML5::CHARACTR && isset($token['data']) && + !preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])) + ) { + /* This specification does not define how to handle this case. In + particular, user agents may ignore the entirety of this specification + altogether for such documents, and instead invoke special parse modes + with a greater emphasis on backwards compatibility. */ + + $this->phase = self::ROOT_PHASE; + return $this->rootElementPhase($token); + + /* A DOCTYPE token marked as being correct */ + } elseif (isset($token['error']) && !$token['error']) { + /* Append a DocumentType node to the Document node, with the name + attribute set to the name given in the DOCTYPE token (which will be + "HTML"), and the other attributes specific to DocumentType objects + set to null, empty lists, or the empty string as appropriate. */ + $doctype = new DOMDocumentType(null, null, 'HTML'); + + /* Then, switch to the root element phase of the tree construction + stage. */ + $this->phase = self::ROOT_PHASE; + + /* A character token that is one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE */ + } elseif (isset($token['data']) && preg_match( + '/^[\t\n\x0b\x0c ]+$/', + $token['data'] + ) + ) { + /* Append that character to the Document node. */ + $text = $this->dom->createTextNode($token['data']); + $this->dom->appendChild($text); + } + } + + private function rootElementPhase($token) + { + /* After the initial phase, as each token is emitted from the tokenisation + stage, it must be processed as described in this section. */ + + /* A DOCTYPE token */ + if ($token['type'] === HTML5::DOCTYPE) { + // Parse error. Ignore the token. + + /* A comment token */ + } elseif ($token['type'] === HTML5::COMMENT) { + /* Append a Comment node to the Document object with the data + attribute set to the data given in the comment token. */ + $comment = $this->dom->createComment($token['data']); + $this->dom->appendChild($comment); + + /* A character token that is one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE */ + } elseif ($token['type'] === HTML5::CHARACTR && + preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data']) + ) { + /* Append that character to the Document node. */ + $text = $this->dom->createTextNode($token['data']); + $this->dom->appendChild($text); + + /* A character token that is not one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED + (FF), or U+0020 SPACE + A start tag token + An end tag token + An end-of-file token */ + } elseif (($token['type'] === HTML5::CHARACTR && + !preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])) || + $token['type'] === HTML5::STARTTAG || + $token['type'] === HTML5::ENDTAG || + $token['type'] === HTML5::EOF + ) { + /* Create an HTMLElement node with the tag name html, in the HTML + namespace. Append it to the Document object. Switch to the main + phase and reprocess the current token. */ + $html = $this->dom->createElement('html'); + $this->dom->appendChild($html); + $this->stack[] = $html; + + $this->phase = self::MAIN_PHASE; + return $this->mainPhase($token); + } + } + + private function mainPhase($token) + { + /* Tokens in the main phase must be handled as follows: */ + + /* A DOCTYPE token */ + if ($token['type'] === HTML5::DOCTYPE) { + // Parse error. Ignore the token. + + /* A start tag token with the tag name "html" */ + } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'html') { + /* If this start tag token was not the first start tag token, then + it is a parse error. */ + + /* For each attribute on the token, check to see if the attribute + is already present on the top element of the stack of open elements. + If it is not, add the attribute and its corresponding value to that + element. */ + foreach ($token['attr'] as $attr) { + if (!$this->stack[0]->hasAttribute($attr['name'])) { + $this->stack[0]->setAttribute($attr['name'], $attr['value']); + } + } + + /* An end-of-file token */ + } elseif ($token['type'] === HTML5::EOF) { + /* Generate implied end tags. */ + $this->generateImpliedEndTags(); + + /* Anything else. */ + } else { + /* Depends on the insertion mode: */ + switch ($this->mode) { + case self::BEFOR_HEAD: + return $this->beforeHead($token); + break; + case self::IN_HEAD: + return $this->inHead($token); + break; + case self::AFTER_HEAD: + return $this->afterHead($token); + break; + case self::IN_BODY: + return $this->inBody($token); + break; + case self::IN_TABLE: + return $this->inTable($token); + break; + case self::IN_CAPTION: + return $this->inCaption($token); + break; + case self::IN_CGROUP: + return $this->inColumnGroup($token); + break; + case self::IN_TBODY: + return $this->inTableBody($token); + break; + case self::IN_ROW: + return $this->inRow($token); + break; + case self::IN_CELL: + return $this->inCell($token); + break; + case self::IN_SELECT: + return $this->inSelect($token); + break; + case self::AFTER_BODY: + return $this->afterBody($token); + break; + case self::IN_FRAME: + return $this->inFrameset($token); + break; + case self::AFTR_FRAME: + return $this->afterFrameset($token); + break; + case self::END_PHASE: + return $this->trailingEndPhase($token); + break; + } + } + } + + private function beforeHead($token) + { + /* Handle the token as follows: */ + + /* A character token that is one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE */ + if ($token['type'] === HTML5::CHARACTR && + preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data']) + ) { + /* Append the character to the current node. */ + $this->insertText($token['data']); + + /* A comment token */ + } elseif ($token['type'] === HTML5::COMMENT) { + /* Append a Comment node to the current node with the data attribute + set to the data given in the comment token. */ + $this->insertComment($token['data']); + + /* A start tag token with the tag name "head" */ + } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'head') { + /* Create an element for the token, append the new element to the + current node and push it onto the stack of open elements. */ + $element = $this->insertElement($token); + + /* Set the head element pointer to this new element node. */ + $this->head_pointer = $element; + + /* Change the insertion mode to "in head". */ + $this->mode = self::IN_HEAD; + + /* A start tag token whose tag name is one of: "base", "link", "meta", + "script", "style", "title". Or an end tag with the tag name "html". + Or a character token that is not one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE. Or any other start tag token */ + } elseif ($token['type'] === HTML5::STARTTAG || + ($token['type'] === HTML5::ENDTAG && $token['name'] === 'html') || + ($token['type'] === HTML5::CHARACTR && !preg_match( + '/^[\t\n\x0b\x0c ]$/', + $token['data'] + )) + ) { + /* Act as if a start tag token with the tag name "head" and no + attributes had been seen, then reprocess the current token. */ + $this->beforeHead( + array( + 'name' => 'head', + 'type' => HTML5::STARTTAG, + 'attr' => array() + ) + ); + + return $this->inHead($token); + + /* Any other end tag */ + } elseif ($token['type'] === HTML5::ENDTAG) { + /* Parse error. Ignore the token. */ + } + } + + private function inHead($token) + { + /* Handle the token as follows: */ + + /* A character token that is one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE. + + THIS DIFFERS FROM THE SPEC: If the current node is either a title, style + or script element, append the character to the current node regardless + of its content. */ + if (($token['type'] === HTML5::CHARACTR && + preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])) || ( + $token['type'] === HTML5::CHARACTR && in_array( + end($this->stack)->nodeName, + array('title', 'style', 'script') + )) + ) { + /* Append the character to the current node. */ + $this->insertText($token['data']); + + /* A comment token */ + } elseif ($token['type'] === HTML5::COMMENT) { + /* Append a Comment node to the current node with the data attribute + set to the data given in the comment token. */ + $this->insertComment($token['data']); + + } elseif ($token['type'] === HTML5::ENDTAG && + in_array($token['name'], array('title', 'style', 'script')) + ) { + array_pop($this->stack); + return HTML5::PCDATA; + + /* A start tag with the tag name "title" */ + } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'title') { + /* Create an element for the token and append the new element to the + node pointed to by the head element pointer, or, if that is null + (innerHTML case), to the current node. */ + if ($this->head_pointer !== null) { + $element = $this->insertElement($token, false); + $this->head_pointer->appendChild($element); + + } else { + $element = $this->insertElement($token); + } + + /* Switch the tokeniser's content model flag to the RCDATA state. */ + return HTML5::RCDATA; + + /* A start tag with the tag name "style" */ + } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'style') { + /* Create an element for the token and append the new element to the + node pointed to by the head element pointer, or, if that is null + (innerHTML case), to the current node. */ + if ($this->head_pointer !== null) { + $element = $this->insertElement($token, false); + $this->head_pointer->appendChild($element); + + } else { + $this->insertElement($token); + } + + /* Switch the tokeniser's content model flag to the CDATA state. */ + return HTML5::CDATA; + + /* A start tag with the tag name "script" */ + } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'script') { + /* Create an element for the token. */ + $element = $this->insertElement($token, false); + $this->head_pointer->appendChild($element); + + /* Switch the tokeniser's content model flag to the CDATA state. */ + return HTML5::CDATA; + + /* A start tag with the tag name "base", "link", or "meta" */ + } elseif ($token['type'] === HTML5::STARTTAG && in_array( + $token['name'], + array('base', 'link', 'meta') + ) + ) { + /* Create an element for the token and append the new element to the + node pointed to by the head element pointer, or, if that is null + (innerHTML case), to the current node. */ + if ($this->head_pointer !== null) { + $element = $this->insertElement($token, false); + $this->head_pointer->appendChild($element); + array_pop($this->stack); + + } else { + $this->insertElement($token); + } + + /* An end tag with the tag name "head" */ + } elseif ($token['type'] === HTML5::ENDTAG && $token['name'] === 'head') { + /* If the current node is a head element, pop the current node off + the stack of open elements. */ + if ($this->head_pointer->isSameNode(end($this->stack))) { + array_pop($this->stack); + + /* Otherwise, this is a parse error. */ + } else { + // k + } + + /* Change the insertion mode to "after head". */ + $this->mode = self::AFTER_HEAD; + + /* A start tag with the tag name "head" or an end tag except "html". */ + } elseif (($token['type'] === HTML5::STARTTAG && $token['name'] === 'head') || + ($token['type'] === HTML5::ENDTAG && $token['name'] !== 'html') + ) { + // Parse error. Ignore the token. + + /* Anything else */ + } else { + /* If the current node is a head element, act as if an end tag + token with the tag name "head" had been seen. */ + if ($this->head_pointer->isSameNode(end($this->stack))) { + $this->inHead( + array( + 'name' => 'head', + 'type' => HTML5::ENDTAG + ) + ); + + /* Otherwise, change the insertion mode to "after head". */ + } else { + $this->mode = self::AFTER_HEAD; + } + + /* Then, reprocess the current token. */ + return $this->afterHead($token); + } + } + + private function afterHead($token) + { + /* Handle the token as follows: */ + + /* A character token that is one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE */ + if ($token['type'] === HTML5::CHARACTR && + preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data']) + ) { + /* Append the character to the current node. */ + $this->insertText($token['data']); + + /* A comment token */ + } elseif ($token['type'] === HTML5::COMMENT) { + /* Append a Comment node to the current node with the data attribute + set to the data given in the comment token. */ + $this->insertComment($token['data']); + + /* A start tag token with the tag name "body" */ + } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'body') { + /* Insert a body element for the token. */ + $this->insertElement($token); + + /* Change the insertion mode to "in body". */ + $this->mode = self::IN_BODY; + + /* A start tag token with the tag name "frameset" */ + } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'frameset') { + /* Insert a frameset element for the token. */ + $this->insertElement($token); + + /* Change the insertion mode to "in frameset". */ + $this->mode = self::IN_FRAME; + + /* A start tag token whose tag name is one of: "base", "link", "meta", + "script", "style", "title" */ + } elseif ($token['type'] === HTML5::STARTTAG && in_array( + $token['name'], + array('base', 'link', 'meta', 'script', 'style', 'title') + ) + ) { + /* Parse error. Switch the insertion mode back to "in head" and + reprocess the token. */ + $this->mode = self::IN_HEAD; + return $this->inHead($token); + + /* Anything else */ + } else { + /* Act as if a start tag token with the tag name "body" and no + attributes had been seen, and then reprocess the current token. */ + $this->afterHead( + array( + 'name' => 'body', + 'type' => HTML5::STARTTAG, + 'attr' => array() + ) + ); + + return $this->inBody($token); + } + } + + private function inBody($token) + { + /* Handle the token as follows: */ + + switch ($token['type']) { + /* A character token */ + case HTML5::CHARACTR: + /* Reconstruct the active formatting elements, if any. */ + $this->reconstructActiveFormattingElements(); + + /* Append the token's character to the current node. */ + $this->insertText($token['data']); + break; + + /* A comment token */ + case HTML5::COMMENT: + /* Append a Comment node to the current node with the data + attribute set to the data given in the comment token. */ + $this->insertComment($token['data']); + break; + + case HTML5::STARTTAG: + switch ($token['name']) { + /* A start tag token whose tag name is one of: "script", + "style" */ + case 'script': + case 'style': + /* Process the token as if the insertion mode had been "in + head". */ + return $this->inHead($token); + break; + + /* A start tag token whose tag name is one of: "base", "link", + "meta", "title" */ + case 'base': + case 'link': + case 'meta': + case 'title': + /* Parse error. Process the token as if the insertion mode + had been "in head". */ + return $this->inHead($token); + break; + + /* A start tag token with the tag name "body" */ + case 'body': + /* Parse error. If the second element on the stack of open + elements is not a body element, or, if the stack of open + elements has only one node on it, then ignore the token. + (innerHTML case) */ + if (count($this->stack) === 1 || $this->stack[1]->nodeName !== 'body') { + // Ignore + + /* Otherwise, for each attribute on the token, check to see + if the attribute is already present on the body element (the + second element) on the stack of open elements. If it is not, + add the attribute and its corresponding value to that + element. */ + } else { + foreach ($token['attr'] as $attr) { + if (!$this->stack[1]->hasAttribute($attr['name'])) { + $this->stack[1]->setAttribute($attr['name'], $attr['value']); + } + } + } + break; + + /* A start tag whose tag name is one of: "address", + "blockquote", "center", "dir", "div", "dl", "fieldset", + "listing", "menu", "ol", "p", "ul" */ + case 'address': + case 'blockquote': + case 'center': + case 'dir': + case 'div': + case 'dl': + case 'fieldset': + case 'listing': + case 'menu': + case 'ol': + case 'p': + case 'ul': + /* If the stack of open elements has a p element in scope, + then act as if an end tag with the tag name p had been + seen. */ + if ($this->elementInScope('p')) { + $this->emitToken( + array( + 'name' => 'p', + 'type' => HTML5::ENDTAG + ) + ); + } + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + break; + + /* A start tag whose tag name is "form" */ + case 'form': + /* If the form element pointer is not null, ignore the + token with a parse error. */ + if ($this->form_pointer !== null) { + // Ignore. + + /* Otherwise: */ + } else { + /* If the stack of open elements has a p element in + scope, then act as if an end tag with the tag name p + had been seen. */ + if ($this->elementInScope('p')) { + $this->emitToken( + array( + 'name' => 'p', + 'type' => HTML5::ENDTAG + ) + ); + } + + /* Insert an HTML element for the token, and set the + form element pointer to point to the element created. */ + $element = $this->insertElement($token); + $this->form_pointer = $element; + } + break; + + /* A start tag whose tag name is "li", "dd" or "dt" */ + case 'li': + case 'dd': + case 'dt': + /* If the stack of open elements has a p element in scope, + then act as if an end tag with the tag name p had been + seen. */ + if ($this->elementInScope('p')) { + $this->emitToken( + array( + 'name' => 'p', + 'type' => HTML5::ENDTAG + ) + ); + } + + $stack_length = count($this->stack) - 1; + + for ($n = $stack_length; 0 <= $n; $n--) { + /* 1. Initialise node to be the current node (the + bottommost node of the stack). */ + $stop = false; + $node = $this->stack[$n]; + $cat = $this->getElementCategory($node->tagName); + + /* 2. If node is an li, dd or dt element, then pop all + the nodes from the current node up to node, including + node, then stop this algorithm. */ + if ($token['name'] === $node->tagName || ($token['name'] !== 'li' + && ($node->tagName === 'dd' || $node->tagName === 'dt')) + ) { + for ($x = $stack_length; $x >= $n; $x--) { + array_pop($this->stack); + } + + break; + } + + /* 3. If node is not in the formatting category, and is + not in the phrasing category, and is not an address or + div element, then stop this algorithm. */ + if ($cat !== self::FORMATTING && $cat !== self::PHRASING && + $node->tagName !== 'address' && $node->tagName !== 'div' + ) { + break; + } + } + + /* Finally, insert an HTML element with the same tag + name as the token's. */ + $this->insertElement($token); + break; + + /* A start tag token whose tag name is "plaintext" */ + case 'plaintext': + /* If the stack of open elements has a p element in scope, + then act as if an end tag with the tag name p had been + seen. */ + if ($this->elementInScope('p')) { + $this->emitToken( + array( + 'name' => 'p', + 'type' => HTML5::ENDTAG + ) + ); + } + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + + return HTML5::PLAINTEXT; + break; + + /* A start tag whose tag name is one of: "h1", "h2", "h3", "h4", + "h5", "h6" */ + case 'h1': + case 'h2': + case 'h3': + case 'h4': + case 'h5': + case 'h6': + /* If the stack of open elements has a p element in scope, + then act as if an end tag with the tag name p had been seen. */ + if ($this->elementInScope('p')) { + $this->emitToken( + array( + 'name' => 'p', + 'type' => HTML5::ENDTAG + ) + ); + } + + /* If the stack of open elements has in scope an element whose + tag name is one of "h1", "h2", "h3", "h4", "h5", or "h6", then + this is a parse error; pop elements from the stack until an + element with one of those tag names has been popped from the + stack. */ + while ($this->elementInScope(array('h1', 'h2', 'h3', 'h4', 'h5', 'h6'))) { + array_pop($this->stack); + } + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + break; + + /* A start tag whose tag name is "a" */ + case 'a': + /* If the list of active formatting elements contains + an element whose tag name is "a" between the end of the + list and the last marker on the list (or the start of + the list if there is no marker on the list), then this + is a parse error; act as if an end tag with the tag name + "a" had been seen, then remove that element from the list + of active formatting elements and the stack of open + elements if the end tag didn't already remove it (it + might not have if the element is not in table scope). */ + $leng = count($this->a_formatting); + + for ($n = $leng - 1; $n >= 0; $n--) { + if ($this->a_formatting[$n] === self::MARKER) { + break; + + } elseif ($this->a_formatting[$n]->nodeName === 'a') { + $this->emitToken( + array( + 'name' => 'a', + 'type' => HTML5::ENDTAG + ) + ); + break; + } + } + + /* Reconstruct the active formatting elements, if any. */ + $this->reconstructActiveFormattingElements(); + + /* Insert an HTML element for the token. */ + $el = $this->insertElement($token); + + /* Add that element to the list of active formatting + elements. */ + $this->a_formatting[] = $el; + break; + + /* A start tag whose tag name is one of: "b", "big", "em", "font", + "i", "nobr", "s", "small", "strike", "strong", "tt", "u" */ + case 'b': + case 'big': + case 'em': + case 'font': + case 'i': + case 'nobr': + case 's': + case 'small': + case 'strike': + case 'strong': + case 'tt': + case 'u': + /* Reconstruct the active formatting elements, if any. */ + $this->reconstructActiveFormattingElements(); + + /* Insert an HTML element for the token. */ + $el = $this->insertElement($token); + + /* Add that element to the list of active formatting + elements. */ + $this->a_formatting[] = $el; + break; + + /* A start tag token whose tag name is "button" */ + case 'button': + /* If the stack of open elements has a button element in scope, + then this is a parse error; act as if an end tag with the tag + name "button" had been seen, then reprocess the token. (We don't + do that. Unnecessary.) */ + if ($this->elementInScope('button')) { + $this->inBody( + array( + 'name' => 'button', + 'type' => HTML5::ENDTAG + ) + ); + } + + /* Reconstruct the active formatting elements, if any. */ + $this->reconstructActiveFormattingElements(); + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + + /* Insert a marker at the end of the list of active + formatting elements. */ + $this->a_formatting[] = self::MARKER; + break; + + /* A start tag token whose tag name is one of: "marquee", "object" */ + case 'marquee': + case 'object': + /* Reconstruct the active formatting elements, if any. */ + $this->reconstructActiveFormattingElements(); + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + + /* Insert a marker at the end of the list of active + formatting elements. */ + $this->a_formatting[] = self::MARKER; + break; + + /* A start tag token whose tag name is "xmp" */ + case 'xmp': + /* Reconstruct the active formatting elements, if any. */ + $this->reconstructActiveFormattingElements(); + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + + /* Switch the content model flag to the CDATA state. */ + return HTML5::CDATA; + break; + + /* A start tag whose tag name is "table" */ + case 'table': + /* If the stack of open elements has a p element in scope, + then act as if an end tag with the tag name p had been seen. */ + if ($this->elementInScope('p')) { + $this->emitToken( + array( + 'name' => 'p', + 'type' => HTML5::ENDTAG + ) + ); + } + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + + /* Change the insertion mode to "in table". */ + $this->mode = self::IN_TABLE; + break; + + /* A start tag whose tag name is one of: "area", "basefont", + "bgsound", "br", "embed", "img", "param", "spacer", "wbr" */ + case 'area': + case 'basefont': + case 'bgsound': + case 'br': + case 'embed': + case 'img': + case 'param': + case 'spacer': + case 'wbr': + /* Reconstruct the active formatting elements, if any. */ + $this->reconstructActiveFormattingElements(); + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + + /* Immediately pop the current node off the stack of open elements. */ + array_pop($this->stack); + break; + + /* A start tag whose tag name is "hr" */ + case 'hr': + /* If the stack of open elements has a p element in scope, + then act as if an end tag with the tag name p had been seen. */ + if ($this->elementInScope('p')) { + $this->emitToken( + array( + 'name' => 'p', + 'type' => HTML5::ENDTAG + ) + ); + } + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + + /* Immediately pop the current node off the stack of open elements. */ + array_pop($this->stack); + break; + + /* A start tag whose tag name is "image" */ + case 'image': + /* Parse error. Change the token's tag name to "img" and + reprocess it. (Don't ask.) */ + $token['name'] = 'img'; + return $this->inBody($token); + break; + + /* A start tag whose tag name is "input" */ + case 'input': + /* Reconstruct the active formatting elements, if any. */ + $this->reconstructActiveFormattingElements(); + + /* Insert an input element for the token. */ + $element = $this->insertElement($token, false); + + /* If the form element pointer is not null, then associate the + input element with the form element pointed to by the form + element pointer. */ + $this->form_pointer !== null + ? $this->form_pointer->appendChild($element) + : end($this->stack)->appendChild($element); + + /* Pop that input element off the stack of open elements. */ + array_pop($this->stack); + break; + + /* A start tag whose tag name is "isindex" */ + case 'isindex': + /* Parse error. */ + // w/e + + /* If the form element pointer is not null, + then ignore the token. */ + if ($this->form_pointer === null) { + /* Act as if a start tag token with the tag name "form" had + been seen. */ + $this->inBody( + array( + 'name' => 'body', + 'type' => HTML5::STARTTAG, + 'attr' => array() + ) + ); + + /* Act as if a start tag token with the tag name "hr" had + been seen. */ + $this->inBody( + array( + 'name' => 'hr', + 'type' => HTML5::STARTTAG, + 'attr' => array() + ) + ); + + /* Act as if a start tag token with the tag name "p" had + been seen. */ + $this->inBody( + array( + 'name' => 'p', + 'type' => HTML5::STARTTAG, + 'attr' => array() + ) + ); + + /* Act as if a start tag token with the tag name "label" + had been seen. */ + $this->inBody( + array( + 'name' => 'label', + 'type' => HTML5::STARTTAG, + 'attr' => array() + ) + ); + + /* Act as if a stream of character tokens had been seen. */ + $this->insertText( + 'This is a searchable index. ' . + 'Insert your search keywords here: ' + ); + + /* Act as if a start tag token with the tag name "input" + had been seen, with all the attributes from the "isindex" + token, except with the "name" attribute set to the value + "isindex" (ignoring any explicit "name" attribute). */ + $attr = $token['attr']; + $attr[] = array('name' => 'name', 'value' => 'isindex'); + + $this->inBody( + array( + 'name' => 'input', + 'type' => HTML5::STARTTAG, + 'attr' => $attr + ) + ); + + /* Act as if a stream of character tokens had been seen + (see below for what they should say). */ + $this->insertText( + 'This is a searchable index. ' . + 'Insert your search keywords here: ' + ); + + /* Act as if an end tag token with the tag name "label" + had been seen. */ + $this->inBody( + array( + 'name' => 'label', + 'type' => HTML5::ENDTAG + ) + ); + + /* Act as if an end tag token with the tag name "p" had + been seen. */ + $this->inBody( + array( + 'name' => 'p', + 'type' => HTML5::ENDTAG + ) + ); + + /* Act as if a start tag token with the tag name "hr" had + been seen. */ + $this->inBody( + array( + 'name' => 'hr', + 'type' => HTML5::ENDTAG + ) + ); + + /* Act as if an end tag token with the tag name "form" had + been seen. */ + $this->inBody( + array( + 'name' => 'form', + 'type' => HTML5::ENDTAG + ) + ); + } + break; + + /* A start tag whose tag name is "textarea" */ + case 'textarea': + $this->insertElement($token); + + /* Switch the tokeniser's content model flag to the + RCDATA state. */ + return HTML5::RCDATA; + break; + + /* A start tag whose tag name is one of: "iframe", "noembed", + "noframes" */ + case 'iframe': + case 'noembed': + case 'noframes': + $this->insertElement($token); + + /* Switch the tokeniser's content model flag to the CDATA state. */ + return HTML5::CDATA; + break; + + /* A start tag whose tag name is "select" */ + case 'select': + /* Reconstruct the active formatting elements, if any. */ + $this->reconstructActiveFormattingElements(); + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + + /* Change the insertion mode to "in select". */ + $this->mode = self::IN_SELECT; + break; + + /* A start or end tag whose tag name is one of: "caption", "col", + "colgroup", "frame", "frameset", "head", "option", "optgroup", + "tbody", "td", "tfoot", "th", "thead", "tr". */ + case 'caption': + case 'col': + case 'colgroup': + case 'frame': + case 'frameset': + case 'head': + case 'option': + case 'optgroup': + case 'tbody': + case 'td': + case 'tfoot': + case 'th': + case 'thead': + case 'tr': + // Parse error. Ignore the token. + break; + + /* A start or end tag whose tag name is one of: "event-source", + "section", "nav", "article", "aside", "header", "footer", + "datagrid", "command" */ + case 'event-source': + case 'section': + case 'nav': + case 'article': + case 'aside': + case 'header': + case 'footer': + case 'datagrid': + case 'command': + // Work in progress! + break; + + /* A start tag token not covered by the previous entries */ + default: + /* Reconstruct the active formatting elements, if any. */ + $this->reconstructActiveFormattingElements(); + + $this->insertElement($token, true, true); + break; + } + break; + + case HTML5::ENDTAG: + switch ($token['name']) { + /* An end tag with the tag name "body" */ + case 'body': + /* If the second element in the stack of open elements is + not a body element, this is a parse error. Ignore the token. + (innerHTML case) */ + if (count($this->stack) < 2 || $this->stack[1]->nodeName !== 'body') { + // Ignore. + + /* If the current node is not the body element, then this + is a parse error. */ + } elseif (end($this->stack)->nodeName !== 'body') { + // Parse error. + } + + /* Change the insertion mode to "after body". */ + $this->mode = self::AFTER_BODY; + break; + + /* An end tag with the tag name "html" */ + case 'html': + /* Act as if an end tag with tag name "body" had been seen, + then, if that token wasn't ignored, reprocess the current + token. */ + $this->inBody( + array( + 'name' => 'body', + 'type' => HTML5::ENDTAG + ) + ); + + return $this->afterBody($token); + break; + + /* An end tag whose tag name is one of: "address", "blockquote", + "center", "dir", "div", "dl", "fieldset", "listing", "menu", + "ol", "pre", "ul" */ + case 'address': + case 'blockquote': + case 'center': + case 'dir': + case 'div': + case 'dl': + case 'fieldset': + case 'listing': + case 'menu': + case 'ol': + case 'pre': + case 'ul': + /* If the stack of open elements has an element in scope + with the same tag name as that of the token, then generate + implied end tags. */ + if ($this->elementInScope($token['name'])) { + $this->generateImpliedEndTags(); + + /* Now, if the current node is not an element with + the same tag name as that of the token, then this + is a parse error. */ + // w/e + + /* If the stack of open elements has an element in + scope with the same tag name as that of the token, + then pop elements from this stack until an element + with that tag name has been popped from the stack. */ + for ($n = count($this->stack) - 1; $n >= 0; $n--) { + if ($this->stack[$n]->nodeName === $token['name']) { + $n = -1; + } + + array_pop($this->stack); + } + } + break; + + /* An end tag whose tag name is "form" */ + case 'form': + /* If the stack of open elements has an element in scope + with the same tag name as that of the token, then generate + implied end tags. */ + if ($this->elementInScope($token['name'])) { + $this->generateImpliedEndTags(); + + } + + if (end($this->stack)->nodeName !== $token['name']) { + /* Now, if the current node is not an element with the + same tag name as that of the token, then this is a parse + error. */ + // w/e + + } else { + /* Otherwise, if the current node is an element with + the same tag name as that of the token pop that element + from the stack. */ + array_pop($this->stack); + } + + /* In any case, set the form element pointer to null. */ + $this->form_pointer = null; + break; + + /* An end tag whose tag name is "p" */ + case 'p': + /* If the stack of open elements has a p element in scope, + then generate implied end tags, except for p elements. */ + if ($this->elementInScope('p')) { + $this->generateImpliedEndTags(array('p')); + + /* If the current node is not a p element, then this is + a parse error. */ + // k + + /* If the stack of open elements has a p element in + scope, then pop elements from this stack until the stack + no longer has a p element in scope. */ + for ($n = count($this->stack) - 1; $n >= 0; $n--) { + if ($this->elementInScope('p')) { + array_pop($this->stack); + + } else { + break; + } + } + } + break; + + /* An end tag whose tag name is "dd", "dt", or "li" */ + case 'dd': + case 'dt': + case 'li': + /* If the stack of open elements has an element in scope + whose tag name matches the tag name of the token, then + generate implied end tags, except for elements with the + same tag name as the token. */ + if ($this->elementInScope($token['name'])) { + $this->generateImpliedEndTags(array($token['name'])); + + /* If the current node is not an element with the same + tag name as the token, then this is a parse error. */ + // w/e + + /* If the stack of open elements has an element in scope + whose tag name matches the tag name of the token, then + pop elements from this stack until an element with that + tag name has been popped from the stack. */ + for ($n = count($this->stack) - 1; $n >= 0; $n--) { + if ($this->stack[$n]->nodeName === $token['name']) { + $n = -1; + } + + array_pop($this->stack); + } + } + break; + + /* An end tag whose tag name is one of: "h1", "h2", "h3", "h4", + "h5", "h6" */ + case 'h1': + case 'h2': + case 'h3': + case 'h4': + case 'h5': + case 'h6': + $elements = array('h1', 'h2', 'h3', 'h4', 'h5', 'h6'); + + /* If the stack of open elements has in scope an element whose + tag name is one of "h1", "h2", "h3", "h4", "h5", or "h6", then + generate implied end tags. */ + if ($this->elementInScope($elements)) { + $this->generateImpliedEndTags(); + + /* Now, if the current node is not an element with the same + tag name as that of the token, then this is a parse error. */ + // w/e + + /* If the stack of open elements has in scope an element + whose tag name is one of "h1", "h2", "h3", "h4", "h5", or + "h6", then pop elements from the stack until an element + with one of those tag names has been popped from the stack. */ + while ($this->elementInScope($elements)) { + array_pop($this->stack); + } + } + break; + + /* An end tag whose tag name is one of: "a", "b", "big", "em", + "font", "i", "nobr", "s", "small", "strike", "strong", "tt", "u" */ + case 'a': + case 'b': + case 'big': + case 'em': + case 'font': + case 'i': + case 'nobr': + case 's': + case 'small': + case 'strike': + case 'strong': + case 'tt': + case 'u': + /* 1. Let the formatting element be the last element in + the list of active formatting elements that: + * is between the end of the list and the last scope + marker in the list, if any, or the start of the list + otherwise, and + * has the same tag name as the token. + */ + while (true) { + for ($a = count($this->a_formatting) - 1; $a >= 0; $a--) { + if ($this->a_formatting[$a] === self::MARKER) { + break; + + } elseif ($this->a_formatting[$a]->tagName === $token['name']) { + $formatting_element = $this->a_formatting[$a]; + $in_stack = in_array($formatting_element, $this->stack, true); + $fe_af_pos = $a; + break; + } + } + + /* If there is no such node, or, if that node is + also in the stack of open elements but the element + is not in scope, then this is a parse error. Abort + these steps. The token is ignored. */ + if (!isset($formatting_element) || ($in_stack && + !$this->elementInScope($token['name'])) + ) { + break; + + /* Otherwise, if there is such a node, but that node + is not in the stack of open elements, then this is a + parse error; remove the element from the list, and + abort these steps. */ + } elseif (isset($formatting_element) && !$in_stack) { + unset($this->a_formatting[$fe_af_pos]); + $this->a_formatting = array_merge($this->a_formatting); + break; + } + + /* 2. Let the furthest block be the topmost node in the + stack of open elements that is lower in the stack + than the formatting element, and is not an element in + the phrasing or formatting categories. There might + not be one. */ + $fe_s_pos = array_search($formatting_element, $this->stack, true); + $length = count($this->stack); + + for ($s = $fe_s_pos + 1; $s < $length; $s++) { + $category = $this->getElementCategory($this->stack[$s]->nodeName); + + if ($category !== self::PHRASING && $category !== self::FORMATTING) { + $furthest_block = $this->stack[$s]; + } + } + + /* 3. If there is no furthest block, then the UA must + skip the subsequent steps and instead just pop all + the nodes from the bottom of the stack of open + elements, from the current node up to the formatting + element, and remove the formatting element from the + list of active formatting elements. */ + if (!isset($furthest_block)) { + for ($n = $length - 1; $n >= $fe_s_pos; $n--) { + array_pop($this->stack); + } + + unset($this->a_formatting[$fe_af_pos]); + $this->a_formatting = array_merge($this->a_formatting); + break; + } + + /* 4. Let the common ancestor be the element + immediately above the formatting element in the stack + of open elements. */ + $common_ancestor = $this->stack[$fe_s_pos - 1]; + + /* 5. If the furthest block has a parent node, then + remove the furthest block from its parent node. */ + if ($furthest_block->parentNode !== null) { + $furthest_block->parentNode->removeChild($furthest_block); + } + + /* 6. Let a bookmark note the position of the + formatting element in the list of active formatting + elements relative to the elements on either side + of it in the list. */ + $bookmark = $fe_af_pos; + + /* 7. Let node and last node be the furthest block. + Follow these steps: */ + $node = $furthest_block; + $last_node = $furthest_block; + + while (true) { + for ($n = array_search($node, $this->stack, true) - 1; $n >= 0; $n--) { + /* 7.1 Let node be the element immediately + prior to node in the stack of open elements. */ + $node = $this->stack[$n]; + + /* 7.2 If node is not in the list of active + formatting elements, then remove node from + the stack of open elements and then go back + to step 1. */ + if (!in_array($node, $this->a_formatting, true)) { + unset($this->stack[$n]); + $this->stack = array_merge($this->stack); + + } else { + break; + } + } + + /* 7.3 Otherwise, if node is the formatting + element, then go to the next step in the overall + algorithm. */ + if ($node === $formatting_element) { + break; + + /* 7.4 Otherwise, if last node is the furthest + block, then move the aforementioned bookmark to + be immediately after the node in the list of + active formatting elements. */ + } elseif ($last_node === $furthest_block) { + $bookmark = array_search($node, $this->a_formatting, true) + 1; + } + + /* 7.5 If node has any children, perform a + shallow clone of node, replace the entry for + node in the list of active formatting elements + with an entry for the clone, replace the entry + for node in the stack of open elements with an + entry for the clone, and let node be the clone. */ + if ($node->hasChildNodes()) { + $clone = $node->cloneNode(); + $s_pos = array_search($node, $this->stack, true); + $a_pos = array_search($node, $this->a_formatting, true); + + $this->stack[$s_pos] = $clone; + $this->a_formatting[$a_pos] = $clone; + $node = $clone; + } + + /* 7.6 Insert last node into node, first removing + it from its previous parent node if any. */ + if ($last_node->parentNode !== null) { + $last_node->parentNode->removeChild($last_node); + } + + $node->appendChild($last_node); + + /* 7.7 Let last node be node. */ + $last_node = $node; + } + + /* 8. Insert whatever last node ended up being in + the previous step into the common ancestor node, + first removing it from its previous parent node if + any. */ + if ($last_node->parentNode !== null) { + $last_node->parentNode->removeChild($last_node); + } + + $common_ancestor->appendChild($last_node); + + /* 9. Perform a shallow clone of the formatting + element. */ + $clone = $formatting_element->cloneNode(); + + /* 10. Take all of the child nodes of the furthest + block and append them to the clone created in the + last step. */ + while ($furthest_block->hasChildNodes()) { + $child = $furthest_block->firstChild; + $furthest_block->removeChild($child); + $clone->appendChild($child); + } + + /* 11. Append that clone to the furthest block. */ + $furthest_block->appendChild($clone); + + /* 12. Remove the formatting element from the list + of active formatting elements, and insert the clone + into the list of active formatting elements at the + position of the aforementioned bookmark. */ + $fe_af_pos = array_search($formatting_element, $this->a_formatting, true); + unset($this->a_formatting[$fe_af_pos]); + $this->a_formatting = array_merge($this->a_formatting); + + $af_part1 = array_slice($this->a_formatting, 0, $bookmark - 1); + $af_part2 = array_slice($this->a_formatting, $bookmark, count($this->a_formatting)); + $this->a_formatting = array_merge($af_part1, array($clone), $af_part2); + + /* 13. Remove the formatting element from the stack + of open elements, and insert the clone into the stack + of open elements immediately after (i.e. in a more + deeply nested position than) the position of the + furthest block in that stack. */ + $fe_s_pos = array_search($formatting_element, $this->stack, true); + $fb_s_pos = array_search($furthest_block, $this->stack, true); + unset($this->stack[$fe_s_pos]); + + $s_part1 = array_slice($this->stack, 0, $fb_s_pos); + $s_part2 = array_slice($this->stack, $fb_s_pos + 1, count($this->stack)); + $this->stack = array_merge($s_part1, array($clone), $s_part2); + + /* 14. Jump back to step 1 in this series of steps. */ + unset($formatting_element, $fe_af_pos, $fe_s_pos, $furthest_block); + } + break; + + /* An end tag token whose tag name is one of: "button", + "marquee", "object" */ + case 'button': + case 'marquee': + case 'object': + /* If the stack of open elements has an element in scope whose + tag name matches the tag name of the token, then generate implied + tags. */ + if ($this->elementInScope($token['name'])) { + $this->generateImpliedEndTags(); + + /* Now, if the current node is not an element with the same + tag name as the token, then this is a parse error. */ + // k + + /* Now, if the stack of open elements has an element in scope + whose tag name matches the tag name of the token, then pop + elements from the stack until that element has been popped from + the stack, and clear the list of active formatting elements up + to the last marker. */ + for ($n = count($this->stack) - 1; $n >= 0; $n--) { + if ($this->stack[$n]->nodeName === $token['name']) { + $n = -1; + } + + array_pop($this->stack); + } + + $marker = end(array_keys($this->a_formatting, self::MARKER, true)); + + for ($n = count($this->a_formatting) - 1; $n > $marker; $n--) { + array_pop($this->a_formatting); + } + } + break; + + /* Or an end tag whose tag name is one of: "area", "basefont", + "bgsound", "br", "embed", "hr", "iframe", "image", "img", + "input", "isindex", "noembed", "noframes", "param", "select", + "spacer", "table", "textarea", "wbr" */ + case 'area': + case 'basefont': + case 'bgsound': + case 'br': + case 'embed': + case 'hr': + case 'iframe': + case 'image': + case 'img': + case 'input': + case 'isindex': + case 'noembed': + case 'noframes': + case 'param': + case 'select': + case 'spacer': + case 'table': + case 'textarea': + case 'wbr': + // Parse error. Ignore the token. + break; + + /* An end tag token not covered by the previous entries */ + default: + for ($n = count($this->stack) - 1; $n >= 0; $n--) { + /* Initialise node to be the current node (the bottommost + node of the stack). */ + $node = end($this->stack); + + /* If node has the same tag name as the end tag token, + then: */ + if ($token['name'] === $node->nodeName) { + /* Generate implied end tags. */ + $this->generateImpliedEndTags(); + + /* If the tag name of the end tag token does not + match the tag name of the current node, this is a + parse error. */ + // k + + /* Pop all the nodes from the current node up to + node, including node, then stop this algorithm. */ + for ($x = count($this->stack) - $n; $x >= $n; $x--) { + array_pop($this->stack); + } + + } else { + $category = $this->getElementCategory($node); + + if ($category !== self::SPECIAL && $category !== self::SCOPING) { + /* Otherwise, if node is in neither the formatting + category nor the phrasing category, then this is a + parse error. Stop this algorithm. The end tag token + is ignored. */ + return false; + } + } + } + break; + } + break; + } + } + + private function inTable($token) + { + $clear = array('html', 'table'); + + /* A character token that is one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE */ + if ($token['type'] === HTML5::CHARACTR && + preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data']) + ) { + /* Append the character to the current node. */ + $text = $this->dom->createTextNode($token['data']); + end($this->stack)->appendChild($text); + + /* A comment token */ + } elseif ($token['type'] === HTML5::COMMENT) { + /* Append a Comment node to the current node with the data + attribute set to the data given in the comment token. */ + $comment = $this->dom->createComment($token['data']); + end($this->stack)->appendChild($comment); + + /* A start tag whose tag name is "caption" */ + } elseif ($token['type'] === HTML5::STARTTAG && + $token['name'] === 'caption' + ) { + /* Clear the stack back to a table context. */ + $this->clearStackToTableContext($clear); + + /* Insert a marker at the end of the list of active + formatting elements. */ + $this->a_formatting[] = self::MARKER; + + /* Insert an HTML element for the token, then switch the + insertion mode to "in caption". */ + $this->insertElement($token); + $this->mode = self::IN_CAPTION; + + /* A start tag whose tag name is "colgroup" */ + } elseif ($token['type'] === HTML5::STARTTAG && + $token['name'] === 'colgroup' + ) { + /* Clear the stack back to a table context. */ + $this->clearStackToTableContext($clear); + + /* Insert an HTML element for the token, then switch the + insertion mode to "in column group". */ + $this->insertElement($token); + $this->mode = self::IN_CGROUP; + + /* A start tag whose tag name is "col" */ + } elseif ($token['type'] === HTML5::STARTTAG && + $token['name'] === 'col' + ) { + $this->inTable( + array( + 'name' => 'colgroup', + 'type' => HTML5::STARTTAG, + 'attr' => array() + ) + ); + + $this->inColumnGroup($token); + + /* A start tag whose tag name is one of: "tbody", "tfoot", "thead" */ + } elseif ($token['type'] === HTML5::STARTTAG && in_array( + $token['name'], + array('tbody', 'tfoot', 'thead') + ) + ) { + /* Clear the stack back to a table context. */ + $this->clearStackToTableContext($clear); + + /* Insert an HTML element for the token, then switch the insertion + mode to "in table body". */ + $this->insertElement($token); + $this->mode = self::IN_TBODY; + + /* A start tag whose tag name is one of: "td", "th", "tr" */ + } elseif ($token['type'] === HTML5::STARTTAG && + in_array($token['name'], array('td', 'th', 'tr')) + ) { + /* Act as if a start tag token with the tag name "tbody" had been + seen, then reprocess the current token. */ + $this->inTable( + array( + 'name' => 'tbody', + 'type' => HTML5::STARTTAG, + 'attr' => array() + ) + ); + + return $this->inTableBody($token); + + /* A start tag whose tag name is "table" */ + } elseif ($token['type'] === HTML5::STARTTAG && + $token['name'] === 'table' + ) { + /* Parse error. Act as if an end tag token with the tag name "table" + had been seen, then, if that token wasn't ignored, reprocess the + current token. */ + $this->inTable( + array( + 'name' => 'table', + 'type' => HTML5::ENDTAG + ) + ); + + return $this->mainPhase($token); + + /* An end tag whose tag name is "table" */ + } elseif ($token['type'] === HTML5::ENDTAG && + $token['name'] === 'table' + ) { + /* If the stack of open elements does not have an element in table + scope with the same tag name as the token, this is a parse error. + Ignore the token. (innerHTML case) */ + if (!$this->elementInScope($token['name'], true)) { + return false; + + /* Otherwise: */ + } else { + /* Generate implied end tags. */ + $this->generateImpliedEndTags(); + + /* Now, if the current node is not a table element, then this + is a parse error. */ + // w/e + + /* Pop elements from this stack until a table element has been + popped from the stack. */ + while (true) { + $current = end($this->stack)->nodeName; + array_pop($this->stack); + + if ($current === 'table') { + break; + } + } + + /* Reset the insertion mode appropriately. */ + $this->resetInsertionMode(); + } + + /* An end tag whose tag name is one of: "body", "caption", "col", + "colgroup", "html", "tbody", "td", "tfoot", "th", "thead", "tr" */ + } elseif ($token['type'] === HTML5::ENDTAG && in_array( + $token['name'], + array( + 'body', + 'caption', + 'col', + 'colgroup', + 'html', + 'tbody', + 'td', + 'tfoot', + 'th', + 'thead', + 'tr' + ) + ) + ) { + // Parse error. Ignore the token. + + /* Anything else */ + } else { + /* Parse error. Process the token as if the insertion mode was "in + body", with the following exception: */ + + /* If the current node is a table, tbody, tfoot, thead, or tr + element, then, whenever a node would be inserted into the current + node, it must instead be inserted into the foster parent element. */ + if (in_array( + end($this->stack)->nodeName, + array('table', 'tbody', 'tfoot', 'thead', 'tr') + ) + ) { + /* The foster parent element is the parent element of the last + table element in the stack of open elements, if there is a + table element and it has such a parent element. If there is no + table element in the stack of open elements (innerHTML case), + then the foster parent element is the first element in the + stack of open elements (the html element). Otherwise, if there + is a table element in the stack of open elements, but the last + table element in the stack of open elements has no parent, or + its parent node is not an element, then the foster parent + element is the element before the last table element in the + stack of open elements. */ + for ($n = count($this->stack) - 1; $n >= 0; $n--) { + if ($this->stack[$n]->nodeName === 'table') { + $table = $this->stack[$n]; + break; + } + } + + if (isset($table) && $table->parentNode !== null) { + $this->foster_parent = $table->parentNode; + + } elseif (!isset($table)) { + $this->foster_parent = $this->stack[0]; + + } elseif (isset($table) && ($table->parentNode === null || + $table->parentNode->nodeType !== XML_ELEMENT_NODE) + ) { + $this->foster_parent = $this->stack[$n - 1]; + } + } + + $this->inBody($token); + } + } + + private function inCaption($token) + { + /* An end tag whose tag name is "caption" */ + if ($token['type'] === HTML5::ENDTAG && $token['name'] === 'caption') { + /* If the stack of open elements does not have an element in table + scope with the same tag name as the token, this is a parse error. + Ignore the token. (innerHTML case) */ + if (!$this->elementInScope($token['name'], true)) { + // Ignore + + /* Otherwise: */ + } else { + /* Generate implied end tags. */ + $this->generateImpliedEndTags(); + + /* Now, if the current node is not a caption element, then this + is a parse error. */ + // w/e + + /* Pop elements from this stack until a caption element has + been popped from the stack. */ + while (true) { + $node = end($this->stack)->nodeName; + array_pop($this->stack); + + if ($node === 'caption') { + break; + } + } + + /* Clear the list of active formatting elements up to the last + marker. */ + $this->clearTheActiveFormattingElementsUpToTheLastMarker(); + + /* Switch the insertion mode to "in table". */ + $this->mode = self::IN_TABLE; + } + + /* A start tag whose tag name is one of: "caption", "col", "colgroup", + "tbody", "td", "tfoot", "th", "thead", "tr", or an end tag whose tag + name is "table" */ + } elseif (($token['type'] === HTML5::STARTTAG && in_array( + $token['name'], + array( + 'caption', + 'col', + 'colgroup', + 'tbody', + 'td', + 'tfoot', + 'th', + 'thead', + 'tr' + ) + )) || ($token['type'] === HTML5::ENDTAG && + $token['name'] === 'table') + ) { + /* Parse error. Act as if an end tag with the tag name "caption" + had been seen, then, if that token wasn't ignored, reprocess the + current token. */ + $this->inCaption( + array( + 'name' => 'caption', + 'type' => HTML5::ENDTAG + ) + ); + + return $this->inTable($token); + + /* An end tag whose tag name is one of: "body", "col", "colgroup", + "html", "tbody", "td", "tfoot", "th", "thead", "tr" */ + } elseif ($token['type'] === HTML5::ENDTAG && in_array( + $token['name'], + array( + 'body', + 'col', + 'colgroup', + 'html', + 'tbody', + 'tfoot', + 'th', + 'thead', + 'tr' + ) + ) + ) { + // Parse error. Ignore the token. + + /* Anything else */ + } else { + /* Process the token as if the insertion mode was "in body". */ + $this->inBody($token); + } + } + + private function inColumnGroup($token) + { + /* A character token that is one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE */ + if ($token['type'] === HTML5::CHARACTR && + preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data']) + ) { + /* Append the character to the current node. */ + $text = $this->dom->createTextNode($token['data']); + end($this->stack)->appendChild($text); + + /* A comment token */ + } elseif ($token['type'] === HTML5::COMMENT) { + /* Append a Comment node to the current node with the data + attribute set to the data given in the comment token. */ + $comment = $this->dom->createComment($token['data']); + end($this->stack)->appendChild($comment); + + /* A start tag whose tag name is "col" */ + } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'col') { + /* Insert a col element for the token. Immediately pop the current + node off the stack of open elements. */ + $this->insertElement($token); + array_pop($this->stack); + + /* An end tag whose tag name is "colgroup" */ + } elseif ($token['type'] === HTML5::ENDTAG && + $token['name'] === 'colgroup' + ) { + /* If the current node is the root html element, then this is a + parse error, ignore the token. (innerHTML case) */ + if (end($this->stack)->nodeName === 'html') { + // Ignore + + /* Otherwise, pop the current node (which will be a colgroup + element) from the stack of open elements. Switch the insertion + mode to "in table". */ + } else { + array_pop($this->stack); + $this->mode = self::IN_TABLE; + } + + /* An end tag whose tag name is "col" */ + } elseif ($token['type'] === HTML5::ENDTAG && $token['name'] === 'col') { + /* Parse error. Ignore the token. */ + + /* Anything else */ + } else { + /* Act as if an end tag with the tag name "colgroup" had been seen, + and then, if that token wasn't ignored, reprocess the current token. */ + $this->inColumnGroup( + array( + 'name' => 'colgroup', + 'type' => HTML5::ENDTAG + ) + ); + + return $this->inTable($token); + } + } + + private function inTableBody($token) + { + $clear = array('tbody', 'tfoot', 'thead', 'html'); + + /* A start tag whose tag name is "tr" */ + if ($token['type'] === HTML5::STARTTAG && $token['name'] === 'tr') { + /* Clear the stack back to a table body context. */ + $this->clearStackToTableContext($clear); + + /* Insert a tr element for the token, then switch the insertion + mode to "in row". */ + $this->insertElement($token); + $this->mode = self::IN_ROW; + + /* A start tag whose tag name is one of: "th", "td" */ + } elseif ($token['type'] === HTML5::STARTTAG && + ($token['name'] === 'th' || $token['name'] === 'td') + ) { + /* Parse error. Act as if a start tag with the tag name "tr" had + been seen, then reprocess the current token. */ + $this->inTableBody( + array( + 'name' => 'tr', + 'type' => HTML5::STARTTAG, + 'attr' => array() + ) + ); + + return $this->inRow($token); + + /* An end tag whose tag name is one of: "tbody", "tfoot", "thead" */ + } elseif ($token['type'] === HTML5::ENDTAG && + in_array($token['name'], array('tbody', 'tfoot', 'thead')) + ) { + /* If the stack of open elements does not have an element in table + scope with the same tag name as the token, this is a parse error. + Ignore the token. */ + if (!$this->elementInScope($token['name'], true)) { + // Ignore + + /* Otherwise: */ + } else { + /* Clear the stack back to a table body context. */ + $this->clearStackToTableContext($clear); + + /* Pop the current node from the stack of open elements. Switch + the insertion mode to "in table". */ + array_pop($this->stack); + $this->mode = self::IN_TABLE; + } + + /* A start tag whose tag name is one of: "caption", "col", "colgroup", + "tbody", "tfoot", "thead", or an end tag whose tag name is "table" */ + } elseif (($token['type'] === HTML5::STARTTAG && in_array( + $token['name'], + array('caption', 'col', 'colgroup', 'tbody', 'tfoor', 'thead') + )) || + ($token['type'] === HTML5::STARTTAG && $token['name'] === 'table') + ) { + /* If the stack of open elements does not have a tbody, thead, or + tfoot element in table scope, this is a parse error. Ignore the + token. (innerHTML case) */ + if (!$this->elementInScope(array('tbody', 'thead', 'tfoot'), true)) { + // Ignore. + + /* Otherwise: */ + } else { + /* Clear the stack back to a table body context. */ + $this->clearStackToTableContext($clear); + + /* Act as if an end tag with the same tag name as the current + node ("tbody", "tfoot", or "thead") had been seen, then + reprocess the current token. */ + $this->inTableBody( + array( + 'name' => end($this->stack)->nodeName, + 'type' => HTML5::ENDTAG + ) + ); + + return $this->mainPhase($token); + } + + /* An end tag whose tag name is one of: "body", "caption", "col", + "colgroup", "html", "td", "th", "tr" */ + } elseif ($token['type'] === HTML5::ENDTAG && in_array( + $token['name'], + array('body', 'caption', 'col', 'colgroup', 'html', 'td', 'th', 'tr') + ) + ) { + /* Parse error. Ignore the token. */ + + /* Anything else */ + } else { + /* Process the token as if the insertion mode was "in table". */ + $this->inTable($token); + } + } + + private function inRow($token) + { + $clear = array('tr', 'html'); + + /* A start tag whose tag name is one of: "th", "td" */ + if ($token['type'] === HTML5::STARTTAG && + ($token['name'] === 'th' || $token['name'] === 'td') + ) { + /* Clear the stack back to a table row context. */ + $this->clearStackToTableContext($clear); + + /* Insert an HTML element for the token, then switch the insertion + mode to "in cell". */ + $this->insertElement($token); + $this->mode = self::IN_CELL; + + /* Insert a marker at the end of the list of active formatting + elements. */ + $this->a_formatting[] = self::MARKER; + + /* An end tag whose tag name is "tr" */ + } elseif ($token['type'] === HTML5::ENDTAG && $token['name'] === 'tr') { + /* If the stack of open elements does not have an element in table + scope with the same tag name as the token, this is a parse error. + Ignore the token. (innerHTML case) */ + if (!$this->elementInScope($token['name'], true)) { + // Ignore. + + /* Otherwise: */ + } else { + /* Clear the stack back to a table row context. */ + $this->clearStackToTableContext($clear); + + /* Pop the current node (which will be a tr element) from the + stack of open elements. Switch the insertion mode to "in table + body". */ + array_pop($this->stack); + $this->mode = self::IN_TBODY; + } + + /* A start tag whose tag name is one of: "caption", "col", "colgroup", + "tbody", "tfoot", "thead", "tr" or an end tag whose tag name is "table" */ + } elseif ($token['type'] === HTML5::STARTTAG && in_array( + $token['name'], + array('caption', 'col', 'colgroup', 'tbody', 'tfoot', 'thead', 'tr') + ) + ) { + /* Act as if an end tag with the tag name "tr" had been seen, then, + if that token wasn't ignored, reprocess the current token. */ + $this->inRow( + array( + 'name' => 'tr', + 'type' => HTML5::ENDTAG + ) + ); + + return $this->inCell($token); + + /* An end tag whose tag name is one of: "tbody", "tfoot", "thead" */ + } elseif ($token['type'] === HTML5::ENDTAG && + in_array($token['name'], array('tbody', 'tfoot', 'thead')) + ) { + /* If the stack of open elements does not have an element in table + scope with the same tag name as the token, this is a parse error. + Ignore the token. */ + if (!$this->elementInScope($token['name'], true)) { + // Ignore. + + /* Otherwise: */ + } else { + /* Otherwise, act as if an end tag with the tag name "tr" had + been seen, then reprocess the current token. */ + $this->inRow( + array( + 'name' => 'tr', + 'type' => HTML5::ENDTAG + ) + ); + + return $this->inCell($token); + } + + /* An end tag whose tag name is one of: "body", "caption", "col", + "colgroup", "html", "td", "th" */ + } elseif ($token['type'] === HTML5::ENDTAG && in_array( + $token['name'], + array('body', 'caption', 'col', 'colgroup', 'html', 'td', 'th', 'tr') + ) + ) { + /* Parse error. Ignore the token. */ + + /* Anything else */ + } else { + /* Process the token as if the insertion mode was "in table". */ + $this->inTable($token); + } + } + + private function inCell($token) + { + /* An end tag whose tag name is one of: "td", "th" */ + if ($token['type'] === HTML5::ENDTAG && + ($token['name'] === 'td' || $token['name'] === 'th') + ) { + /* If the stack of open elements does not have an element in table + scope with the same tag name as that of the token, then this is a + parse error and the token must be ignored. */ + if (!$this->elementInScope($token['name'], true)) { + // Ignore. + + /* Otherwise: */ + } else { + /* Generate implied end tags, except for elements with the same + tag name as the token. */ + $this->generateImpliedEndTags(array($token['name'])); + + /* Now, if the current node is not an element with the same tag + name as the token, then this is a parse error. */ + // k + + /* Pop elements from this stack until an element with the same + tag name as the token has been popped from the stack. */ + while (true) { + $node = end($this->stack)->nodeName; + array_pop($this->stack); + + if ($node === $token['name']) { + break; + } + } + + /* Clear the list of active formatting elements up to the last + marker. */ + $this->clearTheActiveFormattingElementsUpToTheLastMarker(); + + /* Switch the insertion mode to "in row". (The current node + will be a tr element at this point.) */ + $this->mode = self::IN_ROW; + } + + /* A start tag whose tag name is one of: "caption", "col", "colgroup", + "tbody", "td", "tfoot", "th", "thead", "tr" */ + } elseif ($token['type'] === HTML5::STARTTAG && in_array( + $token['name'], + array( + 'caption', + 'col', + 'colgroup', + 'tbody', + 'td', + 'tfoot', + 'th', + 'thead', + 'tr' + ) + ) + ) { + /* If the stack of open elements does not have a td or th element + in table scope, then this is a parse error; ignore the token. + (innerHTML case) */ + if (!$this->elementInScope(array('td', 'th'), true)) { + // Ignore. + + /* Otherwise, close the cell (see below) and reprocess the current + token. */ + } else { + $this->closeCell(); + return $this->inRow($token); + } + + /* A start tag whose tag name is one of: "caption", "col", "colgroup", + "tbody", "td", "tfoot", "th", "thead", "tr" */ + } elseif ($token['type'] === HTML5::STARTTAG && in_array( + $token['name'], + array( + 'caption', + 'col', + 'colgroup', + 'tbody', + 'td', + 'tfoot', + 'th', + 'thead', + 'tr' + ) + ) + ) { + /* If the stack of open elements does not have a td or th element + in table scope, then this is a parse error; ignore the token. + (innerHTML case) */ + if (!$this->elementInScope(array('td', 'th'), true)) { + // Ignore. + + /* Otherwise, close the cell (see below) and reprocess the current + token. */ + } else { + $this->closeCell(); + return $this->inRow($token); + } + + /* An end tag whose tag name is one of: "body", "caption", "col", + "colgroup", "html" */ + } elseif ($token['type'] === HTML5::ENDTAG && in_array( + $token['name'], + array('body', 'caption', 'col', 'colgroup', 'html') + ) + ) { + /* Parse error. Ignore the token. */ + + /* An end tag whose tag name is one of: "table", "tbody", "tfoot", + "thead", "tr" */ + } elseif ($token['type'] === HTML5::ENDTAG && in_array( + $token['name'], + array('table', 'tbody', 'tfoot', 'thead', 'tr') + ) + ) { + /* If the stack of open elements does not have an element in table + scope with the same tag name as that of the token (which can only + happen for "tbody", "tfoot" and "thead", or, in the innerHTML case), + then this is a parse error and the token must be ignored. */ + if (!$this->elementInScope($token['name'], true)) { + // Ignore. + + /* Otherwise, close the cell (see below) and reprocess the current + token. */ + } else { + $this->closeCell(); + return $this->inRow($token); + } + + /* Anything else */ + } else { + /* Process the token as if the insertion mode was "in body". */ + $this->inBody($token); + } + } + + private function inSelect($token) + { + /* Handle the token as follows: */ + + /* A character token */ + if ($token['type'] === HTML5::CHARACTR) { + /* Append the token's character to the current node. */ + $this->insertText($token['data']); + + /* A comment token */ + } elseif ($token['type'] === HTML5::COMMENT) { + /* Append a Comment node to the current node with the data + attribute set to the data given in the comment token. */ + $this->insertComment($token['data']); + + /* A start tag token whose tag name is "option" */ + } elseif ($token['type'] === HTML5::STARTTAG && + $token['name'] === 'option' + ) { + /* If the current node is an option element, act as if an end tag + with the tag name "option" had been seen. */ + if (end($this->stack)->nodeName === 'option') { + $this->inSelect( + array( + 'name' => 'option', + 'type' => HTML5::ENDTAG + ) + ); + } + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + + /* A start tag token whose tag name is "optgroup" */ + } elseif ($token['type'] === HTML5::STARTTAG && + $token['name'] === 'optgroup' + ) { + /* If the current node is an option element, act as if an end tag + with the tag name "option" had been seen. */ + if (end($this->stack)->nodeName === 'option') { + $this->inSelect( + array( + 'name' => 'option', + 'type' => HTML5::ENDTAG + ) + ); + } + + /* If the current node is an optgroup element, act as if an end tag + with the tag name "optgroup" had been seen. */ + if (end($this->stack)->nodeName === 'optgroup') { + $this->inSelect( + array( + 'name' => 'optgroup', + 'type' => HTML5::ENDTAG + ) + ); + } + + /* Insert an HTML element for the token. */ + $this->insertElement($token); + + /* An end tag token whose tag name is "optgroup" */ + } elseif ($token['type'] === HTML5::ENDTAG && + $token['name'] === 'optgroup' + ) { + /* First, if the current node is an option element, and the node + immediately before it in the stack of open elements is an optgroup + element, then act as if an end tag with the tag name "option" had + been seen. */ + $elements_in_stack = count($this->stack); + + if ($this->stack[$elements_in_stack - 1]->nodeName === 'option' && + $this->stack[$elements_in_stack - 2]->nodeName === 'optgroup' + ) { + $this->inSelect( + array( + 'name' => 'option', + 'type' => HTML5::ENDTAG + ) + ); + } + + /* If the current node is an optgroup element, then pop that node + from the stack of open elements. Otherwise, this is a parse error, + ignore the token. */ + if ($this->stack[$elements_in_stack - 1] === 'optgroup') { + array_pop($this->stack); + } + + /* An end tag token whose tag name is "option" */ + } elseif ($token['type'] === HTML5::ENDTAG && + $token['name'] === 'option' + ) { + /* If the current node is an option element, then pop that node + from the stack of open elements. Otherwise, this is a parse error, + ignore the token. */ + if (end($this->stack)->nodeName === 'option') { + array_pop($this->stack); + } + + /* An end tag whose tag name is "select" */ + } elseif ($token['type'] === HTML5::ENDTAG && + $token['name'] === 'select' + ) { + /* If the stack of open elements does not have an element in table + scope with the same tag name as the token, this is a parse error. + Ignore the token. (innerHTML case) */ + if (!$this->elementInScope($token['name'], true)) { + // w/e + + /* Otherwise: */ + } else { + /* Pop elements from the stack of open elements until a select + element has been popped from the stack. */ + while (true) { + $current = end($this->stack)->nodeName; + array_pop($this->stack); + + if ($current === 'select') { + break; + } + } + + /* Reset the insertion mode appropriately. */ + $this->resetInsertionMode(); + } + + /* A start tag whose tag name is "select" */ + } elseif ($token['name'] === 'select' && + $token['type'] === HTML5::STARTTAG + ) { + /* Parse error. Act as if the token had been an end tag with the + tag name "select" instead. */ + $this->inSelect( + array( + 'name' => 'select', + 'type' => HTML5::ENDTAG + ) + ); + + /* An end tag whose tag name is one of: "caption", "table", "tbody", + "tfoot", "thead", "tr", "td", "th" */ + } elseif (in_array( + $token['name'], + array( + 'caption', + 'table', + 'tbody', + 'tfoot', + 'thead', + 'tr', + 'td', + 'th' + ) + ) && $token['type'] === HTML5::ENDTAG + ) { + /* Parse error. */ + // w/e + + /* If the stack of open elements has an element in table scope with + the same tag name as that of the token, then act as if an end tag + with the tag name "select" had been seen, and reprocess the token. + Otherwise, ignore the token. */ + if ($this->elementInScope($token['name'], true)) { + $this->inSelect( + array( + 'name' => 'select', + 'type' => HTML5::ENDTAG + ) + ); + + $this->mainPhase($token); + } + + /* Anything else */ + } else { + /* Parse error. Ignore the token. */ + } + } + + private function afterBody($token) + { + /* Handle the token as follows: */ + + /* A character token that is one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE */ + if ($token['type'] === HTML5::CHARACTR && + preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data']) + ) { + /* Process the token as it would be processed if the insertion mode + was "in body". */ + $this->inBody($token); + + /* A comment token */ + } elseif ($token['type'] === HTML5::COMMENT) { + /* Append a Comment node to the first element in the stack of open + elements (the html element), with the data attribute set to the + data given in the comment token. */ + $comment = $this->dom->createComment($token['data']); + $this->stack[0]->appendChild($comment); + + /* An end tag with the tag name "html" */ + } elseif ($token['type'] === HTML5::ENDTAG && $token['name'] === 'html') { + /* If the parser was originally created in order to handle the + setting of an element's innerHTML attribute, this is a parse error; + ignore the token. (The element will be an html element in this + case.) (innerHTML case) */ + + /* Otherwise, switch to the trailing end phase. */ + $this->phase = self::END_PHASE; + + /* Anything else */ + } else { + /* Parse error. Set the insertion mode to "in body" and reprocess + the token. */ + $this->mode = self::IN_BODY; + return $this->inBody($token); + } + } + + private function inFrameset($token) + { + /* Handle the token as follows: */ + + /* A character token that is one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + U+000D CARRIAGE RETURN (CR), or U+0020 SPACE */ + if ($token['type'] === HTML5::CHARACTR && + preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data']) + ) { + /* Append the character to the current node. */ + $this->insertText($token['data']); + + /* A comment token */ + } elseif ($token['type'] === HTML5::COMMENT) { + /* Append a Comment node to the current node with the data + attribute set to the data given in the comment token. */ + $this->insertComment($token['data']); + + /* A start tag with the tag name "frameset" */ + } elseif ($token['name'] === 'frameset' && + $token['type'] === HTML5::STARTTAG + ) { + $this->insertElement($token); + + /* An end tag with the tag name "frameset" */ + } elseif ($token['name'] === 'frameset' && + $token['type'] === HTML5::ENDTAG + ) { + /* If the current node is the root html element, then this is a + parse error; ignore the token. (innerHTML case) */ + if (end($this->stack)->nodeName === 'html') { + // Ignore + + } else { + /* Otherwise, pop the current node from the stack of open + elements. */ + array_pop($this->stack); + + /* If the parser was not originally created in order to handle + the setting of an element's innerHTML attribute (innerHTML case), + and the current node is no longer a frameset element, then change + the insertion mode to "after frameset". */ + $this->mode = self::AFTR_FRAME; + } + + /* A start tag with the tag name "frame" */ + } elseif ($token['name'] === 'frame' && + $token['type'] === HTML5::STARTTAG + ) { + /* Insert an HTML element for the token. */ + $this->insertElement($token); + + /* Immediately pop the current node off the stack of open elements. */ + array_pop($this->stack); + + /* A start tag with the tag name "noframes" */ + } elseif ($token['name'] === 'noframes' && + $token['type'] === HTML5::STARTTAG + ) { + /* Process the token as if the insertion mode had been "in body". */ + $this->inBody($token); + + /* Anything else */ + } else { + /* Parse error. Ignore the token. */ + } + } + + private function afterFrameset($token) + { + /* Handle the token as follows: */ + + /* A character token that is one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + U+000D CARRIAGE RETURN (CR), or U+0020 SPACE */ + if ($token['type'] === HTML5::CHARACTR && + preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data']) + ) { + /* Append the character to the current node. */ + $this->insertText($token['data']); + + /* A comment token */ + } elseif ($token['type'] === HTML5::COMMENT) { + /* Append a Comment node to the current node with the data + attribute set to the data given in the comment token. */ + $this->insertComment($token['data']); + + /* An end tag with the tag name "html" */ + } elseif ($token['name'] === 'html' && + $token['type'] === HTML5::ENDTAG + ) { + /* Switch to the trailing end phase. */ + $this->phase = self::END_PHASE; + + /* A start tag with the tag name "noframes" */ + } elseif ($token['name'] === 'noframes' && + $token['type'] === HTML5::STARTTAG + ) { + /* Process the token as if the insertion mode had been "in body". */ + $this->inBody($token); + + /* Anything else */ + } else { + /* Parse error. Ignore the token. */ + } + } + + private function trailingEndPhase($token) + { + /* After the main phase, as each token is emitted from the tokenisation + stage, it must be processed as described in this section. */ + + /* A DOCTYPE token */ + if ($token['type'] === HTML5::DOCTYPE) { + // Parse error. Ignore the token. + + /* A comment token */ + } elseif ($token['type'] === HTML5::COMMENT) { + /* Append a Comment node to the Document object with the data + attribute set to the data given in the comment token. */ + $comment = $this->dom->createComment($token['data']); + $this->dom->appendChild($comment); + + /* A character token that is one of one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE */ + } elseif ($token['type'] === HTML5::CHARACTR && + preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data']) + ) { + /* Process the token as it would be processed in the main phase. */ + $this->mainPhase($token); + + /* A character token that is not one of U+0009 CHARACTER TABULATION, + U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF), + or U+0020 SPACE. Or a start tag token. Or an end tag token. */ + } elseif (($token['type'] === HTML5::CHARACTR && + preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])) || + $token['type'] === HTML5::STARTTAG || $token['type'] === HTML5::ENDTAG + ) { + /* Parse error. Switch back to the main phase and reprocess the + token. */ + $this->phase = self::MAIN_PHASE; + return $this->mainPhase($token); + + /* An end-of-file token */ + } elseif ($token['type'] === HTML5::EOF) { + /* OMG DONE!! */ + } + } + + private function insertElement($token, $append = true, $check = false) + { + // Proprietary workaround for libxml2's limitations with tag names + if ($check) { + // Slightly modified HTML5 tag-name modification, + // removing anything that's not an ASCII letter, digit, or hyphen + $token['name'] = preg_replace('/[^a-z0-9-]/i', '', $token['name']); + // Remove leading hyphens and numbers + $token['name'] = ltrim($token['name'], '-0..9'); + // In theory, this should ever be needed, but just in case + if ($token['name'] === '') { + $token['name'] = 'span'; + } // arbitrary generic choice + } + + $el = $this->dom->createElement($token['name']); + + foreach ($token['attr'] as $attr) { + if (!$el->hasAttribute($attr['name'])) { + $el->setAttribute($attr['name'], (string)$attr['value']); + } + } + + $this->appendToRealParent($el); + $this->stack[] = $el; + + return $el; + } + + private function insertText($data) + { + $text = $this->dom->createTextNode($data); + $this->appendToRealParent($text); + } + + private function insertComment($data) + { + $comment = $this->dom->createComment($data); + $this->appendToRealParent($comment); + } + + private function appendToRealParent($node) + { + if ($this->foster_parent === null) { + end($this->stack)->appendChild($node); + + } elseif ($this->foster_parent !== null) { + /* If the foster parent element is the parent element of the + last table element in the stack of open elements, then the new + node must be inserted immediately before the last table element + in the stack of open elements in the foster parent element; + otherwise, the new node must be appended to the foster parent + element. */ + for ($n = count($this->stack) - 1; $n >= 0; $n--) { + if ($this->stack[$n]->nodeName === 'table' && + $this->stack[$n]->parentNode !== null + ) { + $table = $this->stack[$n]; + break; + } + } + + if (isset($table) && $this->foster_parent->isSameNode($table->parentNode)) { + $this->foster_parent->insertBefore($node, $table); + } else { + $this->foster_parent->appendChild($node); + } + + $this->foster_parent = null; + } + } + + private function elementInScope($el, $table = false) + { + if (is_array($el)) { + foreach ($el as $element) { + if ($this->elementInScope($element, $table)) { + return true; + } + } + + return false; + } + + $leng = count($this->stack); + + for ($n = 0; $n < $leng; $n++) { + /* 1. Initialise node to be the current node (the bottommost node of + the stack). */ + $node = $this->stack[$leng - 1 - $n]; + + if ($node->tagName === $el) { + /* 2. If node is the target node, terminate in a match state. */ + return true; + + } elseif ($node->tagName === 'table') { + /* 3. Otherwise, if node is a table element, terminate in a failure + state. */ + return false; + + } elseif ($table === true && in_array( + $node->tagName, + array( + 'caption', + 'td', + 'th', + 'button', + 'marquee', + 'object' + ) + ) + ) { + /* 4. Otherwise, if the algorithm is the "has an element in scope" + variant (rather than the "has an element in table scope" variant), + and node is one of the following, terminate in a failure state. */ + return false; + + } elseif ($node === $node->ownerDocument->documentElement) { + /* 5. Otherwise, if node is an html element (root element), terminate + in a failure state. (This can only happen if the node is the topmost + node of the stack of open elements, and prevents the next step from + being invoked if there are no more elements in the stack.) */ + return false; + } + + /* Otherwise, set node to the previous entry in the stack of open + elements and return to step 2. (This will never fail, since the loop + will always terminate in the previous step if the top of the stack + is reached.) */ + } + } + + private function reconstructActiveFormattingElements() + { + /* 1. If there are no entries in the list of active formatting elements, + then there is nothing to reconstruct; stop this algorithm. */ + $formatting_elements = count($this->a_formatting); + + if ($formatting_elements === 0) { + return false; + } + + /* 3. Let entry be the last (most recently added) element in the list + of active formatting elements. */ + $entry = end($this->a_formatting); + + /* 2. If the last (most recently added) entry in the list of active + formatting elements is a marker, or if it is an element that is in the + stack of open elements, then there is nothing to reconstruct; stop this + algorithm. */ + if ($entry === self::MARKER || in_array($entry, $this->stack, true)) { + return false; + } + + for ($a = $formatting_elements - 1; $a >= 0; true) { + /* 4. If there are no entries before entry in the list of active + formatting elements, then jump to step 8. */ + if ($a === 0) { + $step_seven = false; + break; + } + + /* 5. Let entry be the entry one earlier than entry in the list of + active formatting elements. */ + $a--; + $entry = $this->a_formatting[$a]; + + /* 6. If entry is neither a marker nor an element that is also in + thetack of open elements, go to step 4. */ + if ($entry === self::MARKER || in_array($entry, $this->stack, true)) { + break; + } + } + + while (true) { + /* 7. Let entry be the element one later than entry in the list of + active formatting elements. */ + if (isset($step_seven) && $step_seven === true) { + $a++; + $entry = $this->a_formatting[$a]; + } + + /* 8. Perform a shallow clone of the element entry to obtain clone. */ + $clone = $entry->cloneNode(); + + /* 9. Append clone to the current node and push it onto the stack + of open elements so that it is the new current node. */ + end($this->stack)->appendChild($clone); + $this->stack[] = $clone; + + /* 10. Replace the entry for entry in the list with an entry for + clone. */ + $this->a_formatting[$a] = $clone; + + /* 11. If the entry for clone in the list of active formatting + elements is not the last entry in the list, return to step 7. */ + if (end($this->a_formatting) !== $clone) { + $step_seven = true; + } else { + break; + } + } + } + + private function clearTheActiveFormattingElementsUpToTheLastMarker() + { + /* When the steps below require the UA to clear the list of active + formatting elements up to the last marker, the UA must perform the + following steps: */ + + while (true) { + /* 1. Let entry be the last (most recently added) entry in the list + of active formatting elements. */ + $entry = end($this->a_formatting); + + /* 2. Remove entry from the list of active formatting elements. */ + array_pop($this->a_formatting); + + /* 3. If entry was a marker, then stop the algorithm at this point. + The list has been cleared up to the last marker. */ + if ($entry === self::MARKER) { + break; + } + } + } + + private function generateImpliedEndTags($exclude = array()) + { + /* When the steps below require the UA to generate implied end tags, + then, if the current node is a dd element, a dt element, an li element, + a p element, a td element, a th element, or a tr element, the UA must + act as if an end tag with the respective tag name had been seen and + then generate implied end tags again. */ + $node = end($this->stack); + $elements = array_diff(array('dd', 'dt', 'li', 'p', 'td', 'th', 'tr'), $exclude); + + while (in_array(end($this->stack)->nodeName, $elements)) { + array_pop($this->stack); + } + } + + private function getElementCategory($node) + { + $name = $node->tagName; + if (in_array($name, $this->special)) { + return self::SPECIAL; + } elseif (in_array($name, $this->scoping)) { + return self::SCOPING; + } elseif (in_array($name, $this->formatting)) { + return self::FORMATTING; + } else { + return self::PHRASING; + } + } + + private function clearStackToTableContext($elements) + { + /* When the steps above require the UA to clear the stack back to a + table context, it means that the UA must, while the current node is not + a table element or an html element, pop elements from the stack of open + elements. If this causes any elements to be popped from the stack, then + this is a parse error. */ + while (true) { + $node = end($this->stack)->nodeName; + + if (in_array($node, $elements)) { + break; + } else { + array_pop($this->stack); + } + } + } + + private function resetInsertionMode() + { + /* 1. Let last be false. */ + $last = false; + $leng = count($this->stack); + + for ($n = $leng - 1; $n >= 0; $n--) { + /* 2. Let node be the last node in the stack of open elements. */ + $node = $this->stack[$n]; + + /* 3. If node is the first node in the stack of open elements, then + set last to true. If the element whose innerHTML attribute is being + set is neither a td element nor a th element, then set node to the + element whose innerHTML attribute is being set. (innerHTML case) */ + if ($this->stack[0]->isSameNode($node)) { + $last = true; + } + + /* 4. If node is a select element, then switch the insertion mode to + "in select" and abort these steps. (innerHTML case) */ + if ($node->nodeName === 'select') { + $this->mode = self::IN_SELECT; + break; + + /* 5. If node is a td or th element, then switch the insertion mode + to "in cell" and abort these steps. */ + } elseif ($node->nodeName === 'td' || $node->nodeName === 'th') { + $this->mode = self::IN_CELL; + break; + + /* 6. If node is a tr element, then switch the insertion mode to + "in row" and abort these steps. */ + } elseif ($node->nodeName === 'tr') { + $this->mode = self::IN_ROW; + break; + + /* 7. If node is a tbody, thead, or tfoot element, then switch the + insertion mode to "in table body" and abort these steps. */ + } elseif (in_array($node->nodeName, array('tbody', 'thead', 'tfoot'))) { + $this->mode = self::IN_TBODY; + break; + + /* 8. If node is a caption element, then switch the insertion mode + to "in caption" and abort these steps. */ + } elseif ($node->nodeName === 'caption') { + $this->mode = self::IN_CAPTION; + break; + + /* 9. If node is a colgroup element, then switch the insertion mode + to "in column group" and abort these steps. (innerHTML case) */ + } elseif ($node->nodeName === 'colgroup') { + $this->mode = self::IN_CGROUP; + break; + + /* 10. If node is a table element, then switch the insertion mode + to "in table" and abort these steps. */ + } elseif ($node->nodeName === 'table') { + $this->mode = self::IN_TABLE; + break; + + /* 11. If node is a head element, then switch the insertion mode + to "in body" ("in body"! not "in head"!) and abort these steps. + (innerHTML case) */ + } elseif ($node->nodeName === 'head') { + $this->mode = self::IN_BODY; + break; + + /* 12. If node is a body element, then switch the insertion mode to + "in body" and abort these steps. */ + } elseif ($node->nodeName === 'body') { + $this->mode = self::IN_BODY; + break; + + /* 13. If node is a frameset element, then switch the insertion + mode to "in frameset" and abort these steps. (innerHTML case) */ + } elseif ($node->nodeName === 'frameset') { + $this->mode = self::IN_FRAME; + break; + + /* 14. If node is an html element, then: if the head element + pointer is null, switch the insertion mode to "before head", + otherwise, switch the insertion mode to "after head". In either + case, abort these steps. (innerHTML case) */ + } elseif ($node->nodeName === 'html') { + $this->mode = ($this->head_pointer === null) + ? self::BEFOR_HEAD + : self::AFTER_HEAD; + + break; + + /* 15. If last is true, then set the insertion mode to "in body" + and abort these steps. (innerHTML case) */ + } elseif ($last) { + $this->mode = self::IN_BODY; + break; + } + } + } + + private function closeCell() + { + /* If the stack of open elements has a td or th element in table scope, + then act as if an end tag token with that tag name had been seen. */ + foreach (array('td', 'th') as $cell) { + if ($this->elementInScope($cell, true)) { + $this->inCell( + array( + 'name' => $cell, + 'type' => HTML5::ENDTAG + ) + ); + + break; + } + } + } + + public function save() + { + return $this->dom; + } +} diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node.php new file mode 100644 index 0000000..3995fec --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node.php @@ -0,0 +1,49 @@ +data = $data; + $this->line = $line; + $this->col = $col; + } + + public function toTokenPair() { + return array(new HTMLPurifier_Token_Comment($this->data, $this->line, $this->col), null); + } +} diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php new file mode 100644 index 0000000..6cbf56d --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php @@ -0,0 +1,59 @@ + form or the form, i.e. + * is it a pair of start/end tokens or an empty token. + * @bool + */ + public $empty = false; + + public $endCol = null, $endLine = null, $endArmor = array(); + + public function __construct($name, $attr = array(), $line = null, $col = null, $armor = array()) { + $this->name = $name; + $this->attr = $attr; + $this->line = $line; + $this->col = $col; + $this->armor = $armor; + } + + public function toTokenPair() { + // XXX inefficiency here, normalization is not necessary + if ($this->empty) { + return array(new HTMLPurifier_Token_Empty($this->name, $this->attr, $this->line, $this->col, $this->armor), null); + } else { + $start = new HTMLPurifier_Token_Start($this->name, $this->attr, $this->line, $this->col, $this->armor); + $end = new HTMLPurifier_Token_End($this->name, array(), $this->endLine, $this->endCol, $this->endArmor); + //$end->start = $start; + return array($start, $end); + } + } +} + diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php new file mode 100644 index 0000000..aec9166 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php @@ -0,0 +1,54 @@ +data = $data; + $this->is_whitespace = $is_whitespace; + $this->line = $line; + $this->col = $col; + } + + public function toTokenPair() { + return array(new HTMLPurifier_Token_Text($this->data, $this->line, $this->col), null); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/PercentEncoder.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/PercentEncoder.php new file mode 100644 index 0000000..18c8bbb --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/PercentEncoder.php @@ -0,0 +1,111 @@ +preserve[$i] = true; + } + for ($i = 65; $i <= 90; $i++) { // upper-case + $this->preserve[$i] = true; + } + for ($i = 97; $i <= 122; $i++) { // lower-case + $this->preserve[$i] = true; + } + $this->preserve[45] = true; // Dash - + $this->preserve[46] = true; // Period . + $this->preserve[95] = true; // Underscore _ + $this->preserve[126]= true; // Tilde ~ + + // extra letters not to escape + if ($preserve !== false) { + for ($i = 0, $c = strlen($preserve); $i < $c; $i++) { + $this->preserve[ord($preserve[$i])] = true; + } + } + } + + /** + * Our replacement for urlencode, it encodes all non-reserved characters, + * as well as any extra characters that were instructed to be preserved. + * @note + * Assumes that the string has already been normalized, making any + * and all percent escape sequences valid. Percents will not be + * re-escaped, regardless of their status in $preserve + * @param string $string String to be encoded + * @return string Encoded string. + */ + public function encode($string) + { + $ret = ''; + for ($i = 0, $c = strlen($string); $i < $c; $i++) { + if ($string[$i] !== '%' && !isset($this->preserve[$int = ord($string[$i])])) { + $ret .= '%' . sprintf('%02X', $int); + } else { + $ret .= $string[$i]; + } + } + return $ret; + } + + /** + * Fix up percent-encoding by decoding unreserved characters and normalizing. + * @warning This function is affected by $preserve, even though the + * usual desired behavior is for this not to preserve those + * characters. Be careful when reusing instances of PercentEncoder! + * @param string $string String to normalize + * @return string + */ + public function normalize($string) + { + if ($string == '') { + return ''; + } + $parts = explode('%', $string); + $ret = array_shift($parts); + foreach ($parts as $part) { + $length = strlen($part); + if ($length < 2) { + $ret .= '%25' . $part; + continue; + } + $encoding = substr($part, 0, 2); + $text = substr($part, 2); + if (!ctype_xdigit($encoding)) { + $ret .= '%25' . $part; + continue; + } + $int = hexdec($encoding); + if (isset($this->preserve[$int])) { + $ret .= chr($int) . $text; + continue; + } + $encoding = strtoupper($encoding); + $ret .= '%' . $encoding . $text; + } + return $ret; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer.php new file mode 100644 index 0000000..549e4ce --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer.php @@ -0,0 +1,218 @@ +getAll(); + $context = new HTMLPurifier_Context(); + $this->generator = new HTMLPurifier_Generator($config, $context); + } + + /** + * Main function that renders object or aspect of that object + * @note Parameters vary depending on printer + */ + // function render() {} + + /** + * Returns a start tag + * @param string $tag Tag name + * @param array $attr Attribute array + * @return string + */ + protected function start($tag, $attr = array()) + { + return $this->generator->generateFromToken( + new HTMLPurifier_Token_Start($tag, $attr ? $attr : array()) + ); + } + + /** + * Returns an end tag + * @param string $tag Tag name + * @return string + */ + protected function end($tag) + { + return $this->generator->generateFromToken( + new HTMLPurifier_Token_End($tag) + ); + } + + /** + * Prints a complete element with content inside + * @param string $tag Tag name + * @param string $contents Element contents + * @param array $attr Tag attributes + * @param bool $escape whether or not to escape contents + * @return string + */ + protected function element($tag, $contents, $attr = array(), $escape = true) + { + return $this->start($tag, $attr) . + ($escape ? $this->escape($contents) : $contents) . + $this->end($tag); + } + + /** + * @param string $tag + * @param array $attr + * @return string + */ + protected function elementEmpty($tag, $attr = array()) + { + return $this->generator->generateFromToken( + new HTMLPurifier_Token_Empty($tag, $attr) + ); + } + + /** + * @param string $text + * @return string + */ + protected function text($text) + { + return $this->generator->generateFromToken( + new HTMLPurifier_Token_Text($text) + ); + } + + /** + * Prints a simple key/value row in a table. + * @param string $name Key + * @param mixed $value Value + * @return string + */ + protected function row($name, $value) + { + if (is_bool($value)) { + $value = $value ? 'On' : 'Off'; + } + return + $this->start('tr') . "\n" . + $this->element('th', $name) . "\n" . + $this->element('td', $value) . "\n" . + $this->end('tr'); + } + + /** + * Escapes a string for HTML output. + * @param string $string String to escape + * @return string + */ + protected function escape($string) + { + $string = HTMLPurifier_Encoder::cleanUTF8($string); + $string = htmlspecialchars($string, ENT_COMPAT, 'UTF-8'); + return $string; + } + + /** + * Takes a list of strings and turns them into a single list + * @param string[] $array List of strings + * @param bool $polite Bool whether or not to add an end before the last + * @return string + */ + protected function listify($array, $polite = false) + { + if (empty($array)) { + return 'None'; + } + $ret = ''; + $i = count($array); + foreach ($array as $value) { + $i--; + $ret .= $value; + if ($i > 0 && !($polite && $i == 1)) { + $ret .= ', '; + } + if ($polite && $i == 1) { + $ret .= 'and '; + } + } + return $ret; + } + + /** + * Retrieves the class of an object without prefixes, as well as metadata + * @param object $obj Object to determine class of + * @param string $sec_prefix Further prefix to remove + * @return string + */ + protected function getClass($obj, $sec_prefix = '') + { + static $five = null; + if ($five === null) { + $five = version_compare(PHP_VERSION, '5', '>='); + } + $prefix = 'HTMLPurifier_' . $sec_prefix; + if (!$five) { + $prefix = strtolower($prefix); + } + $class = str_replace($prefix, '', get_class($obj)); + $lclass = strtolower($class); + $class .= '('; + switch ($lclass) { + case 'enum': + $values = array(); + foreach ($obj->valid_values as $value => $bool) { + $values[] = $value; + } + $class .= implode(', ', $values); + break; + case 'css_composite': + $values = array(); + foreach ($obj->defs as $def) { + $values[] = $this->getClass($def, $sec_prefix); + } + $class .= implode(', ', $values); + break; + case 'css_multiple': + $class .= $this->getClass($obj->single, $sec_prefix) . ', '; + $class .= $obj->max; + break; + case 'css_denyelementdecorator': + $class .= $this->getClass($obj->def, $sec_prefix) . ', '; + $class .= $obj->element; + break; + case 'css_importantdecorator': + $class .= $this->getClass($obj->def, $sec_prefix); + if ($obj->allow) { + $class .= ', !important'; + } + break; + } + $class .= ')'; + return $class; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php new file mode 100644 index 0000000..29505fe --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php @@ -0,0 +1,44 @@ +def = $config->getCSSDefinition(); + $ret = ''; + + $ret .= $this->start('div', array('class' => 'HTMLPurifier_Printer')); + $ret .= $this->start('table'); + + $ret .= $this->element('caption', 'Properties ($info)'); + + $ret .= $this->start('thead'); + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Property', array('class' => 'heavy')); + $ret .= $this->element('th', 'Definition', array('class' => 'heavy', 'style' => 'width:auto;')); + $ret .= $this->end('tr'); + $ret .= $this->end('thead'); + + ksort($this->def->info); + foreach ($this->def->info as $property => $obj) { + $name = $this->getClass($obj, 'AttrDef_'); + $ret .= $this->row($property, $name); + } + + $ret .= $this->end('table'); + $ret .= $this->end('div'); + + return $ret; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.css b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.css new file mode 100644 index 0000000..3ff1a88 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.css @@ -0,0 +1,10 @@ + +.hp-config {} + +.hp-config tbody th {text-align:right; padding-right:0.5em;} +.hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;} +.hp-config .namespace th {text-align:center;} +.hp-config .verbose {display:none;} +.hp-config .controls {text-align:center;} + +/* vim: et sw=4 sts=4 */ diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.js b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.js new file mode 100644 index 0000000..cba00c9 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.js @@ -0,0 +1,5 @@ +function toggleWriteability(id_of_patient, checked) { + document.getElementById(id_of_patient).disabled = checked; +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php new file mode 100644 index 0000000..4c3ce17 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php @@ -0,0 +1,456 @@ +docURL = $doc_url; + $this->name = $name; + $this->compress = $compress; + // initialize sub-printers + $this->fields[0] = new HTMLPurifier_Printer_ConfigForm_default(); + $this->fields[HTMLPurifier_VarParser::C_BOOL] = new HTMLPurifier_Printer_ConfigForm_bool(); + } + + /** + * Sets default column and row size for textareas in sub-printers + * @param $cols Integer columns of textarea, null to use default + * @param $rows Integer rows of textarea, null to use default + */ + public function setTextareaDimensions($cols = null, $rows = null) + { + if ($cols) { + $this->fields['default']->cols = $cols; + } + if ($rows) { + $this->fields['default']->rows = $rows; + } + } + + /** + * Retrieves styling, in case it is not accessible by webserver + */ + public static function getCSS() + { + return file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/Printer/ConfigForm.css'); + } + + /** + * Retrieves JavaScript, in case it is not accessible by webserver + */ + public static function getJavaScript() + { + return file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/Printer/ConfigForm.js'); + } + + /** + * Returns HTML output for a configuration form + * @param HTMLPurifier_Config|array $config Configuration object of current form state, or an array + * where [0] has an HTML namespace and [1] is being rendered. + * @param array|bool $allowed Optional namespace(s) and directives to restrict form to. + * @param bool $render_controls + * @return string + */ + public function render($config, $allowed = true, $render_controls = true) + { + if (is_array($config) && isset($config[0])) { + $gen_config = $config[0]; + $config = $config[1]; + } else { + $gen_config = $config; + } + + $this->config = $config; + $this->genConfig = $gen_config; + $this->prepareGenerator($gen_config); + + $allowed = HTMLPurifier_Config::getAllowedDirectivesForForm($allowed, $config->def); + $all = array(); + foreach ($allowed as $key) { + list($ns, $directive) = $key; + $all[$ns][$directive] = $config->get($ns . '.' . $directive); + } + + $ret = ''; + $ret .= $this->start('table', array('class' => 'hp-config')); + $ret .= $this->start('thead'); + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Directive', array('class' => 'hp-directive')); + $ret .= $this->element('th', 'Value', array('class' => 'hp-value')); + $ret .= $this->end('tr'); + $ret .= $this->end('thead'); + foreach ($all as $ns => $directives) { + $ret .= $this->renderNamespace($ns, $directives); + } + if ($render_controls) { + $ret .= $this->start('tbody'); + $ret .= $this->start('tr'); + $ret .= $this->start('td', array('colspan' => 2, 'class' => 'controls')); + $ret .= $this->elementEmpty('input', array('type' => 'submit', 'value' => 'Submit')); + $ret .= '[Reset]'; + $ret .= $this->end('td'); + $ret .= $this->end('tr'); + $ret .= $this->end('tbody'); + } + $ret .= $this->end('table'); + return $ret; + } + + /** + * Renders a single namespace + * @param $ns String namespace name + * @param array $directives array of directives to values + * @return string + */ + protected function renderNamespace($ns, $directives) + { + $ret = ''; + $ret .= $this->start('tbody', array('class' => 'namespace')); + $ret .= $this->start('tr'); + $ret .= $this->element('th', $ns, array('colspan' => 2)); + $ret .= $this->end('tr'); + $ret .= $this->end('tbody'); + $ret .= $this->start('tbody'); + foreach ($directives as $directive => $value) { + $ret .= $this->start('tr'); + $ret .= $this->start('th'); + if ($this->docURL) { + $url = str_replace('%s', urlencode("$ns.$directive"), $this->docURL); + $ret .= $this->start('a', array('href' => $url)); + } + $attr = array('for' => "{$this->name}:$ns.$directive"); + + // crop directive name if it's too long + if (!$this->compress || (strlen($directive) < $this->compress)) { + $directive_disp = $directive; + } else { + $directive_disp = substr($directive, 0, $this->compress - 2) . '...'; + $attr['title'] = $directive; + } + + $ret .= $this->element( + 'label', + $directive_disp, + // component printers must create an element with this id + $attr + ); + if ($this->docURL) { + $ret .= $this->end('a'); + } + $ret .= $this->end('th'); + + $ret .= $this->start('td'); + $def = $this->config->def->info["$ns.$directive"]; + if (is_int($def)) { + $allow_null = $def < 0; + $type = abs($def); + } else { + $type = $def->type; + $allow_null = isset($def->allow_null); + } + if (!isset($this->fields[$type])) { + $type = 0; + } // default + $type_obj = $this->fields[$type]; + if ($allow_null) { + $type_obj = new HTMLPurifier_Printer_ConfigForm_NullDecorator($type_obj); + } + $ret .= $type_obj->render($ns, $directive, $value, $this->name, array($this->genConfig, $this->config)); + $ret .= $this->end('td'); + $ret .= $this->end('tr'); + } + $ret .= $this->end('tbody'); + return $ret; + } + +} + +/** + * Printer decorator for directives that accept null + */ +class HTMLPurifier_Printer_ConfigForm_NullDecorator extends HTMLPurifier_Printer +{ + /** + * Printer being decorated + * @type HTMLPurifier_Printer + */ + protected $obj; + + /** + * @param HTMLPurifier_Printer $obj Printer to decorate + */ + public function __construct($obj) + { + parent::__construct(); + $this->obj = $obj; + } + + /** + * @param string $ns + * @param string $directive + * @param string $value + * @param string $name + * @param HTMLPurifier_Config|array $config + * @return string + */ + public function render($ns, $directive, $value, $name, $config) + { + if (is_array($config) && isset($config[0])) { + $gen_config = $config[0]; + $config = $config[1]; + } else { + $gen_config = $config; + } + $this->prepareGenerator($gen_config); + + $ret = ''; + $ret .= $this->start('label', array('for' => "$name:Null_$ns.$directive")); + $ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose')); + $ret .= $this->text(' Null/Disabled'); + $ret .= $this->end('label'); + $attr = array( + 'type' => 'checkbox', + 'value' => '1', + 'class' => 'null-toggle', + 'name' => "$name" . "[Null_$ns.$directive]", + 'id' => "$name:Null_$ns.$directive", + 'onclick' => "toggleWriteability('$name:$ns.$directive',checked)" // INLINE JAVASCRIPT!!!! + ); + if ($this->obj instanceof HTMLPurifier_Printer_ConfigForm_bool) { + // modify inline javascript slightly + $attr['onclick'] = + "toggleWriteability('$name:Yes_$ns.$directive',checked);" . + "toggleWriteability('$name:No_$ns.$directive',checked)"; + } + if ($value === null) { + $attr['checked'] = 'checked'; + } + $ret .= $this->elementEmpty('input', $attr); + $ret .= $this->text(' or '); + $ret .= $this->elementEmpty('br'); + $ret .= $this->obj->render($ns, $directive, $value, $name, array($gen_config, $config)); + return $ret; + } +} + +/** + * Swiss-army knife configuration form field printer + */ +class HTMLPurifier_Printer_ConfigForm_default extends HTMLPurifier_Printer +{ + /** + * @type int + */ + public $cols = 18; + + /** + * @type int + */ + public $rows = 5; + + /** + * @param string $ns + * @param string $directive + * @param string $value + * @param string $name + * @param HTMLPurifier_Config|array $config + * @return string + */ + public function render($ns, $directive, $value, $name, $config) + { + if (is_array($config) && isset($config[0])) { + $gen_config = $config[0]; + $config = $config[1]; + } else { + $gen_config = $config; + } + $this->prepareGenerator($gen_config); + // this should probably be split up a little + $ret = ''; + $def = $config->def->info["$ns.$directive"]; + if (is_int($def)) { + $type = abs($def); + } else { + $type = $def->type; + } + if (is_array($value)) { + switch ($type) { + case HTMLPurifier_VarParser::LOOKUP: + $array = $value; + $value = array(); + foreach ($array as $val => $b) { + $value[] = $val; + } + //TODO does this need a break? + case HTMLPurifier_VarParser::ALIST: + $value = implode(PHP_EOL, $value); + break; + case HTMLPurifier_VarParser::HASH: + $nvalue = ''; + foreach ($value as $i => $v) { + if (is_array($v)) { + // HACK + $v = implode(";", $v); + } + $nvalue .= "$i:$v" . PHP_EOL; + } + $value = $nvalue; + break; + default: + $value = ''; + } + } + if ($type === HTMLPurifier_VarParser::C_MIXED) { + return 'Not supported'; + $value = serialize($value); + } + $attr = array( + 'name' => "$name" . "[$ns.$directive]", + 'id' => "$name:$ns.$directive" + ); + if ($value === null) { + $attr['disabled'] = 'disabled'; + } + if (isset($def->allowed)) { + $ret .= $this->start('select', $attr); + foreach ($def->allowed as $val => $b) { + $attr = array(); + if ($value == $val) { + $attr['selected'] = 'selected'; + } + $ret .= $this->element('option', $val, $attr); + } + $ret .= $this->end('select'); + } elseif ($type === HTMLPurifier_VarParser::TEXT || + $type === HTMLPurifier_VarParser::ITEXT || + $type === HTMLPurifier_VarParser::ALIST || + $type === HTMLPurifier_VarParser::HASH || + $type === HTMLPurifier_VarParser::LOOKUP) { + $attr['cols'] = $this->cols; + $attr['rows'] = $this->rows; + $ret .= $this->start('textarea', $attr); + $ret .= $this->text($value); + $ret .= $this->end('textarea'); + } else { + $attr['value'] = $value; + $attr['type'] = 'text'; + $ret .= $this->elementEmpty('input', $attr); + } + return $ret; + } +} + +/** + * Bool form field printer + */ +class HTMLPurifier_Printer_ConfigForm_bool extends HTMLPurifier_Printer +{ + /** + * @param string $ns + * @param string $directive + * @param string $value + * @param string $name + * @param HTMLPurifier_Config|array $config + * @return string + */ + public function render($ns, $directive, $value, $name, $config) + { + if (is_array($config) && isset($config[0])) { + $gen_config = $config[0]; + $config = $config[1]; + } else { + $gen_config = $config; + } + $this->prepareGenerator($gen_config); + $ret = ''; + $ret .= $this->start('div', array('id' => "$name:$ns.$directive")); + + $ret .= $this->start('label', array('for' => "$name:Yes_$ns.$directive")); + $ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose')); + $ret .= $this->text(' Yes'); + $ret .= $this->end('label'); + + $attr = array( + 'type' => 'radio', + 'name' => "$name" . "[$ns.$directive]", + 'id' => "$name:Yes_$ns.$directive", + 'value' => '1' + ); + if ($value === true) { + $attr['checked'] = 'checked'; + } + if ($value === null) { + $attr['disabled'] = 'disabled'; + } + $ret .= $this->elementEmpty('input', $attr); + + $ret .= $this->start('label', array('for' => "$name:No_$ns.$directive")); + $ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose')); + $ret .= $this->text(' No'); + $ret .= $this->end('label'); + + $attr = array( + 'type' => 'radio', + 'name' => "$name" . "[$ns.$directive]", + 'id' => "$name:No_$ns.$directive", + 'value' => '0' + ); + if ($value === false) { + $attr['checked'] = 'checked'; + } + if ($value === null) { + $attr['disabled'] = 'disabled'; + } + $ret .= $this->elementEmpty('input', $attr); + + $ret .= $this->end('div'); + + return $ret; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php new file mode 100644 index 0000000..ae86391 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php @@ -0,0 +1,324 @@ +config =& $config; + + $this->def = $config->getHTMLDefinition(); + + $ret .= $this->start('div', array('class' => 'HTMLPurifier_Printer')); + + $ret .= $this->renderDoctype(); + $ret .= $this->renderEnvironment(); + $ret .= $this->renderContentSets(); + $ret .= $this->renderInfo(); + + $ret .= $this->end('div'); + + return $ret; + } + + /** + * Renders the Doctype table + * @return string + */ + protected function renderDoctype() + { + $doctype = $this->def->doctype; + $ret = ''; + $ret .= $this->start('table'); + $ret .= $this->element('caption', 'Doctype'); + $ret .= $this->row('Name', $doctype->name); + $ret .= $this->row('XML', $doctype->xml ? 'Yes' : 'No'); + $ret .= $this->row('Default Modules', implode(', ', $doctype->modules)); + $ret .= $this->row('Default Tidy Modules', implode(', ', $doctype->tidyModules)); + $ret .= $this->end('table'); + return $ret; + } + + + /** + * Renders environment table, which is miscellaneous info + * @return string + */ + protected function renderEnvironment() + { + $def = $this->def; + + $ret = ''; + + $ret .= $this->start('table'); + $ret .= $this->element('caption', 'Environment'); + + $ret .= $this->row('Parent of fragment', $def->info_parent); + $ret .= $this->renderChildren($def->info_parent_def->child); + $ret .= $this->row('Block wrap name', $def->info_block_wrapper); + + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Global attributes'); + $ret .= $this->element('td', $this->listifyAttr($def->info_global_attr), null, 0); + $ret .= $this->end('tr'); + + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Tag transforms'); + $list = array(); + foreach ($def->info_tag_transform as $old => $new) { + $new = $this->getClass($new, 'TagTransform_'); + $list[] = "<$old> with $new"; + } + $ret .= $this->element('td', $this->listify($list)); + $ret .= $this->end('tr'); + + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Pre-AttrTransform'); + $ret .= $this->element('td', $this->listifyObjectList($def->info_attr_transform_pre)); + $ret .= $this->end('tr'); + + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Post-AttrTransform'); + $ret .= $this->element('td', $this->listifyObjectList($def->info_attr_transform_post)); + $ret .= $this->end('tr'); + + $ret .= $this->end('table'); + return $ret; + } + + /** + * Renders the Content Sets table + * @return string + */ + protected function renderContentSets() + { + $ret = ''; + $ret .= $this->start('table'); + $ret .= $this->element('caption', 'Content Sets'); + foreach ($this->def->info_content_sets as $name => $lookup) { + $ret .= $this->heavyHeader($name); + $ret .= $this->start('tr'); + $ret .= $this->element('td', $this->listifyTagLookup($lookup)); + $ret .= $this->end('tr'); + } + $ret .= $this->end('table'); + return $ret; + } + + /** + * Renders the Elements ($info) table + * @return string + */ + protected function renderInfo() + { + $ret = ''; + $ret .= $this->start('table'); + $ret .= $this->element('caption', 'Elements ($info)'); + ksort($this->def->info); + $ret .= $this->heavyHeader('Allowed tags', 2); + $ret .= $this->start('tr'); + $ret .= $this->element('td', $this->listifyTagLookup($this->def->info), array('colspan' => 2)); + $ret .= $this->end('tr'); + foreach ($this->def->info as $name => $def) { + $ret .= $this->start('tr'); + $ret .= $this->element('th', "<$name>", array('class' => 'heavy', 'colspan' => 2)); + $ret .= $this->end('tr'); + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Inline content'); + $ret .= $this->element('td', $def->descendants_are_inline ? 'Yes' : 'No'); + $ret .= $this->end('tr'); + if (!empty($def->excludes)) { + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Excludes'); + $ret .= $this->element('td', $this->listifyTagLookup($def->excludes)); + $ret .= $this->end('tr'); + } + if (!empty($def->attr_transform_pre)) { + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Pre-AttrTransform'); + $ret .= $this->element('td', $this->listifyObjectList($def->attr_transform_pre)); + $ret .= $this->end('tr'); + } + if (!empty($def->attr_transform_post)) { + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Post-AttrTransform'); + $ret .= $this->element('td', $this->listifyObjectList($def->attr_transform_post)); + $ret .= $this->end('tr'); + } + if (!empty($def->auto_close)) { + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Auto closed by'); + $ret .= $this->element('td', $this->listifyTagLookup($def->auto_close)); + $ret .= $this->end('tr'); + } + $ret .= $this->start('tr'); + $ret .= $this->element('th', 'Allowed attributes'); + $ret .= $this->element('td', $this->listifyAttr($def->attr), array(), 0); + $ret .= $this->end('tr'); + + if (!empty($def->required_attr)) { + $ret .= $this->row('Required attributes', $this->listify($def->required_attr)); + } + + $ret .= $this->renderChildren($def->child); + } + $ret .= $this->end('table'); + return $ret; + } + + /** + * Renders a row describing the allowed children of an element + * @param HTMLPurifier_ChildDef $def HTMLPurifier_ChildDef of pertinent element + * @return string + */ + protected function renderChildren($def) + { + $context = new HTMLPurifier_Context(); + $ret = ''; + $ret .= $this->start('tr'); + $elements = array(); + $attr = array(); + if (isset($def->elements)) { + if ($def->type == 'strictblockquote') { + $def->validateChildren(array(), $this->config, $context); + } + $elements = $def->elements; + } + if ($def->type == 'chameleon') { + $attr['rowspan'] = 2; + } elseif ($def->type == 'empty') { + $elements = array(); + } elseif ($def->type == 'table') { + $elements = array_flip( + array( + 'col', + 'caption', + 'colgroup', + 'thead', + 'tfoot', + 'tbody', + 'tr' + ) + ); + } + $ret .= $this->element('th', 'Allowed children', $attr); + + if ($def->type == 'chameleon') { + + $ret .= $this->element( + 'td', + 'Block: ' . + $this->escape($this->listifyTagLookup($def->block->elements)), + null, + 0 + ); + $ret .= $this->end('tr'); + $ret .= $this->start('tr'); + $ret .= $this->element( + 'td', + 'Inline: ' . + $this->escape($this->listifyTagLookup($def->inline->elements)), + null, + 0 + ); + + } elseif ($def->type == 'custom') { + + $ret .= $this->element( + 'td', + '' . ucfirst($def->type) . ': ' . + $def->dtd_regex + ); + + } else { + $ret .= $this->element( + 'td', + '' . ucfirst($def->type) . ': ' . + $this->escape($this->listifyTagLookup($elements)), + null, + 0 + ); + } + $ret .= $this->end('tr'); + return $ret; + } + + /** + * Listifies a tag lookup table. + * @param array $array Tag lookup array in form of array('tagname' => true) + * @return string + */ + protected function listifyTagLookup($array) + { + ksort($array); + $list = array(); + foreach ($array as $name => $discard) { + if ($name !== '#PCDATA' && !isset($this->def->info[$name])) { + continue; + } + $list[] = $name; + } + return $this->listify($list); + } + + /** + * Listifies a list of objects by retrieving class names and internal state + * @param array $array List of objects + * @return string + * @todo Also add information about internal state + */ + protected function listifyObjectList($array) + { + ksort($array); + $list = array(); + foreach ($array as $obj) { + $list[] = $this->getClass($obj, 'AttrTransform_'); + } + return $this->listify($list); + } + + /** + * Listifies a hash of attributes to AttrDef classes + * @param array $array Array hash in form of array('attrname' => HTMLPurifier_AttrDef) + * @return string + */ + protected function listifyAttr($array) + { + ksort($array); + $list = array(); + foreach ($array as $name => $obj) { + if ($obj === false) { + continue; + } + $list[] = "$name = " . $this->getClass($obj, 'AttrDef_') . ''; + } + return $this->listify($list); + } + + /** + * Creates a heavy header row + * @param string $text + * @param int $num + * @return string + */ + protected function heavyHeader($text, $num = 1) + { + $ret = ''; + $ret .= $this->start('tr'); + $ret .= $this->element('th', $text, array('colspan' => $num, 'class' => 'heavy')); + $ret .= $this->end('tr'); + return $ret; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/PropertyList.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/PropertyList.php new file mode 100644 index 0000000..189348f --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/PropertyList.php @@ -0,0 +1,122 @@ +parent = $parent; + } + + /** + * Recursively retrieves the value for a key + * @param string $name + * @throws HTMLPurifier_Exception + */ + public function get($name) + { + if ($this->has($name)) { + return $this->data[$name]; + } + // possible performance bottleneck, convert to iterative if necessary + if ($this->parent) { + return $this->parent->get($name); + } + throw new HTMLPurifier_Exception("Key '$name' not found"); + } + + /** + * Sets the value of a key, for this plist + * @param string $name + * @param mixed $value + */ + public function set($name, $value) + { + $this->data[$name] = $value; + } + + /** + * Returns true if a given key exists + * @param string $name + * @return bool + */ + public function has($name) + { + return array_key_exists($name, $this->data); + } + + /** + * Resets a value to the value of it's parent, usually the default. If + * no value is specified, the entire plist is reset. + * @param string $name + */ + public function reset($name = null) + { + if ($name == null) { + $this->data = array(); + } else { + unset($this->data[$name]); + } + } + + /** + * Squashes this property list and all of its property lists into a single + * array, and returns the array. This value is cached by default. + * @param bool $force If true, ignores the cache and regenerates the array. + * @return array + */ + public function squash($force = false) + { + if ($this->cache !== null && !$force) { + return $this->cache; + } + if ($this->parent) { + return $this->cache = array_merge($this->parent->squash($force), $this->data); + } else { + return $this->cache = $this->data; + } + } + + /** + * Returns the parent plist. + * @return HTMLPurifier_PropertyList + */ + public function getParent() + { + return $this->parent; + } + + /** + * Sets the parent plist. + * @param HTMLPurifier_PropertyList $plist Parent plist + */ + public function setParent($plist) + { + $this->parent = $plist; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/PropertyListIterator.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/PropertyListIterator.php new file mode 100644 index 0000000..f68fc8c --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/PropertyListIterator.php @@ -0,0 +1,43 @@ +l = strlen($filter); + $this->filter = $filter; + } + + /** + * @return bool + */ + #[\ReturnTypeWillChange] + public function accept() + { + $key = $this->getInnerIterator()->key(); + if (strncmp($key, $this->filter, $this->l) !== 0) { + return false; + } + return true; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Queue.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Queue.php new file mode 100644 index 0000000..f58db90 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Queue.php @@ -0,0 +1,56 @@ +input = $input; + $this->output = array(); + } + + /** + * Shifts an element off the front of the queue. + */ + public function shift() { + if (empty($this->output)) { + $this->output = array_reverse($this->input); + $this->input = array(); + } + if (empty($this->output)) { + return NULL; + } + return array_pop($this->output); + } + + /** + * Pushes an element onto the front of the queue. + */ + public function push($x) { + array_push($this->input, $x); + } + + /** + * Checks if it's empty. + */ + public function isEmpty() { + return empty($this->input) && empty($this->output); + } +} diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy.php new file mode 100644 index 0000000..e1ff3b7 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy.php @@ -0,0 +1,26 @@ +strategies as $strategy) { + $tokens = $strategy->execute($tokens, $config, $context); + } + return $tokens; + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php new file mode 100644 index 0000000..4414c17 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php @@ -0,0 +1,17 @@ +strategies[] = new HTMLPurifier_Strategy_RemoveForeignElements(); + $this->strategies[] = new HTMLPurifier_Strategy_MakeWellFormed(); + $this->strategies[] = new HTMLPurifier_Strategy_FixNesting(); + $this->strategies[] = new HTMLPurifier_Strategy_ValidateAttributes(); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php new file mode 100644 index 0000000..f193933 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php @@ -0,0 +1,181 @@ +getHTMLDefinition(); + + $excludes_enabled = !$config->get('Core.DisableExcludes'); + + // setup the context variable 'IsInline', for chameleon processing + // is 'false' when we are not inline, 'true' when it must always + // be inline, and an integer when it is inline for a certain + // branch of the document tree + $is_inline = $definition->info_parent_def->descendants_are_inline; + $context->register('IsInline', $is_inline); + + // setup error collector + $e =& $context->get('ErrorCollector', true); + + //####################################################################// + // Loop initialization + + // stack that contains all elements that are excluded + // it is organized by parent elements, similar to $stack, + // but it is only populated when an element with exclusions is + // processed, i.e. there won't be empty exclusions. + $exclude_stack = array($definition->info_parent_def->excludes); + + // variable that contains the start token while we are processing + // nodes. This enables error reporting to do its job + $node = $top_node; + // dummy token + list($token, $d) = $node->toTokenPair(); + $context->register('CurrentNode', $node); + $context->register('CurrentToken', $token); + + //####################################################################// + // Loop + + // We need to implement a post-order traversal iteratively, to + // avoid running into stack space limits. This is pretty tricky + // to reason about, so we just manually stack-ify the recursive + // variant: + // + // function f($node) { + // foreach ($node->children as $child) { + // f($child); + // } + // validate($node); + // } + // + // Thus, we will represent a stack frame as array($node, + // $is_inline, stack of children) + // e.g. array_reverse($node->children) - already processed + // children. + + $parent_def = $definition->info_parent_def; + $stack = array( + array($top_node, + $parent_def->descendants_are_inline, + $parent_def->excludes, // exclusions + 0) + ); + + while (!empty($stack)) { + list($node, $is_inline, $excludes, $ix) = array_pop($stack); + // recursive call + $go = false; + $def = empty($stack) ? $definition->info_parent_def : $definition->info[$node->name]; + while (isset($node->children[$ix])) { + $child = $node->children[$ix++]; + if ($child instanceof HTMLPurifier_Node_Element) { + $go = true; + $stack[] = array($node, $is_inline, $excludes, $ix); + $stack[] = array($child, + // ToDo: I don't think it matters if it's def or + // child_def, but double check this... + $is_inline || $def->descendants_are_inline, + empty($def->excludes) ? $excludes + : array_merge($excludes, $def->excludes), + 0); + break; + } + }; + if ($go) continue; + list($token, $d) = $node->toTokenPair(); + // base case + if ($excludes_enabled && isset($excludes[$node->name])) { + $node->dead = true; + if ($e) $e->send(E_ERROR, 'Strategy_FixNesting: Node excluded'); + } else { + // XXX I suppose it would be slightly more efficient to + // avoid the allocation here and have children + // strategies handle it + $children = array(); + foreach ($node->children as $child) { + if (!$child->dead) $children[] = $child; + } + $result = $def->child->validateChildren($children, $config, $context); + if ($result === true) { + // nop + $node->children = $children; + } elseif ($result === false) { + $node->dead = true; + if ($e) $e->send(E_ERROR, 'Strategy_FixNesting: Node removed'); + } else { + $node->children = $result; + if ($e) { + // XXX This will miss mutations of internal nodes. Perhaps defer to the child validators + if (empty($result) && !empty($children)) { + $e->send(E_ERROR, 'Strategy_FixNesting: Node contents removed'); + } else if ($result != $children) { + $e->send(E_WARNING, 'Strategy_FixNesting: Node reorganized'); + } + } + } + } + } + + //####################################################################// + // Post-processing + + // remove context variables + $context->destroy('IsInline'); + $context->destroy('CurrentNode'); + $context->destroy('CurrentToken'); + + //####################################################################// + // Return + + return HTMLPurifier_Arborize::flatten($node, $config, $context); + } +} + +// vim: et sw=4 sts=4 diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php new file mode 100644 index 0000000..f65e352 --- /dev/null +++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php @@ -0,0 +1,659 @@ +getHTMLDefinition(); + + // local variables + $generator = new HTMLPurifier_Generator($config, $context); + $escape_invalid_tags = $config->get('Core.EscapeInvalidTags'); + // used for autoclose early abortion + $global_parent_allowed_elements = $definition->info_parent_def->child->getAllowedElements($config); + $e = $context->get('ErrorCollector', true); + $i = false; // injector index + list($zipper, $token) = HTMLPurifier_Zipper::fromArray($tokens); + if ($token === NULL) { + return array(); + } + $reprocess = false; // whether or not to reprocess the same token + $stack = array(); + + // member variables + $this->stack =& $stack; + $this->tokens =& $tokens; + $this->token =& $token; + $this->zipper =& $zipper; + $this->config = $config; + $this->context = $context; + + // context variables + $context->register('CurrentNesting', $stack); + $context->register('InputZipper', $zipper); + $context->register('CurrentToken', $token); + + // -- begin INJECTOR -- + + $this->injectors = array(); + + $injectors = $config->getBatch('AutoFormat'); + $def_injectors = $definition->info_injector; + $custom_injectors = $injectors['Custom']; + unset($injectors['Custom']); // special case + foreach ($injectors as $injector => $b) { + // XXX: Fix with a legitimate lookup table of enabled filters + if (strpos($injector, '.') !== false) { + continue; + } + $injector = "HTMLPurifier_Injector_$injector"; + if (!$b) { + continue; + } + $this->injectors[] = new $injector; + } + foreach ($def_injectors as $injector) { + // assumed to be objects + $this->injectors[] = $injector; + } + foreach ($custom_injectors as $injector) { + if (!$injector) { + continue; + } + if (is_string($injector)) { + $injector = "HTMLPurifier_Injector_$injector"; + $injector = new $injector; + } + $this->injectors[] = $injector; + } + + // give the injectors references to the definition and context + // variables for performance reasons + foreach ($this->injectors as $ix => $injector) { + $error = $injector->prepare($config, $context); + if (!$error) { + continue; + } + array_splice($this->injectors, $ix, 1); // rm the injector + trigger_error("Cannot enable {$injector->name} injector because $error is not allowed", E_USER_WARNING); + } + + // -- end INJECTOR -- + + // a note on reprocessing: + // In order to reduce code duplication, whenever some code needs + // to make HTML changes in order to make things "correct", the + // new HTML gets sent through the purifier, regardless of its + // status. This means that if we add a start token, because it + // was totally necessary, we don't have to update nesting; we just + // punt ($reprocess = true; continue;) and it does that for us. + + // isset is in loop because $tokens size changes during loop exec + for (;; + // only increment if we don't need to reprocess + $reprocess ? $reprocess = false : $token = $zipper->next($token)) { + + // check for a rewind + if (is_int($i)) { + // possibility: disable rewinding if the current token has a + // rewind set on it already. This would offer protection from + // infinite loop, but might hinder some advanced rewinding. + $rewind_offset = $this->injectors[$i]->getRewindOffset(); + if (is_int($rewind_offset)) { + for ($j = 0; $j < $rewind_offset; $j++) { + if (empty($zipper->front)) break; + $token = $zipper->prev($token); + // indicate that other injectors should not process this token, + // but we need to reprocess it. See Note [Injector skips] + unset($token->skip[$i]); + $token->rewind = $i; + if ($token instanceof HTMLPurifier_Token_Start) { + array_pop($this->stack); + } elseif ($token instanceof HTMLPurifier_Token_End) { + $this->stack[] = $token->start; + } + } + } + $i = false; + } + + // handle case of document end + if ($token === NULL) { + // kill processing if stack is empty + if (empty($this->stack)) { + break; + } + + // peek + $top_nesting = array_pop($this->stack); + $this->stack[] = $top_nesting; + + // send error [TagClosedSuppress] + if ($e && !isset($top_nesting->armor['MakeWellFormed_TagClosedError'])) { + $e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag closed by document end', $top_nesting); + } + + // append, don't splice, since this is the end + $token = new HTMLPurifier_Token_End($top_nesting->name); + + // punt! + $reprocess = true; + continue; + } + + //echo '
'; printZipper($zipper, $token);//printTokens($this->stack); + //flush(); + + // quick-check: if it's not a tag, no need to process + if (empty($token->is_tag)) { + if ($token instanceof HTMLPurifier_Token_Text) { + foreach ($this->injectors as $i => $injector) { + if (isset($token->skip[$i])) { + // See Note [Injector skips] + continue; + } + if ($token->rewind !== null && $token->rewind !== $i) { + continue; + } + // XXX fuckup + $r = $token; + $injector->handleText($r); + $token = $this->processToken($r, $i); + $reprocess = true; + break; + } + } + // another possibility is a comment + continue; + } + + if (isset($definition->info[$token->name])) { + $type = $definition->info[$token->name]->child->type; + } else { + $type = false; // Type is unknown, treat accordingly + } + + // quick tag checks: anything that's *not* an end tag + $ok = false; + if ($type === 'empty' && $token instanceof HTMLPurifier_Token_Start) { + // claims to be a start tag but is empty + $token = new HTMLPurifier_Token_Empty( + $token->name, + $token->attr, + $token->line, + $token->col, + $token->armor + ); + $ok = true; + } elseif ($type && $type !== 'empty' && $token instanceof HTMLPurifier_Token_Empty) { + // claims to be empty but really is a start tag + // NB: this assignment is required + $old_token = $token; + $token = new HTMLPurifier_Token_End($token->name); + $token = $this->insertBefore( + new HTMLPurifier_Token_Start($old_token->name, $old_token->attr, $old_token->line, $old_token->col, $old_token->armor) + ); + // punt (since we had to modify the input stream in a non-trivial way) + $reprocess = true; + continue; + } elseif ($token instanceof HTMLPurifier_Token_Empty) { + // real empty token + $ok = true; + } elseif ($token instanceof HTMLPurifier_Token_Start) { + // start tag + + // ...unless they also have to close their parent + if (!empty($this->stack)) { + + // Performance note: you might think that it's rather + // inefficient, recalculating the autoclose information + // for every tag that a token closes (since when we + // do an autoclose, we push a new token into the + // stream and then /process/ that, before + // re-processing this token.) But this is + // necessary, because an injector can make an + // arbitrary transformations to the autoclosing + // tokens we introduce, so things may have changed + // in the meantime. Also, doing the inefficient thing is + // "easy" to reason about (for certain perverse definitions + // of "easy") + + $parent = array_pop($this->stack); + $this->stack[] = $parent; + + $parent_def = null; + $parent_elements = null; + $autoclose = false; + if (isset($definition->info[$parent->name])) { + $parent_def = $definition->info[$parent->name]; + $parent_elements = $parent_def->child->getAllowedElements($config); + $autoclose = !isset($parent_elements[$token->name]); + } + + if ($autoclose && $definition->info[$token->name]->wrap) { + // Check if an element can be wrapped by another + // element to make it valid in a context (for + // example,