You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?php
namespace OSS\Model;
use OSS\Core\OssException;
/** * Class CorsRule * @package OSS\Model * @link http://help.aliyun.com/document_detail/oss/api-reference/cors/PutBucketcors.html */ class CorsRule { /** * Rule中增加一条allowedOrigin * * @param string $allowedOrigin */ public function addAllowedOrigin($allowedOrigin) { if (!empty($allowedOrigin)) { $this->allowedOrigins[] = $allowedOrigin; } }
/** * Rule中增加一条allowedMethod * * @param string $allowedMethod */ public function addAllowedMethod($allowedMethod) { if (!empty($allowedMethod)) { $this->allowedMethods[] = $allowedMethod; } }
/** * Rule中增加一条allowedHeader * * @param string $allowedHeader */ public function addAllowedHeader($allowedHeader) { if (!empty($allowedHeader)) { $this->allowedHeaders[] = $allowedHeader; } }
/** * Rule中增加一条exposeHeader * * @param string $exposeHeader */ public function addExposeHeader($exposeHeader) { if (!empty($exposeHeader)) { $this->exposeHeaders[] = $exposeHeader; } }
/** * @return int */ public function getMaxAgeSeconds() { return $this->maxAgeSeconds; }
/** * @param int $maxAgeSeconds */ public function setMaxAgeSeconds($maxAgeSeconds) { $this->maxAgeSeconds = $maxAgeSeconds; }
/** * 得到AllowedHeaders列表 * * @return string[] */ public function getAllowedHeaders() { return $this->allowedHeaders; }
/** * 得到AllowedOrigins列表 * * @return string[] */ public function getAllowedOrigins() { return $this->allowedOrigins; }
/** * 得到AllowedMethods列表 * * @return string[] */ public function getAllowedMethods() { return $this->allowedMethods; }
/** * 得到ExposeHeaders列表 * * @return string[] */ public function getExposeHeaders() { return $this->exposeHeaders; }
/** * 根据提供的xmlRule, 把this按照一定的规则插入到$xmlRule中 * * @param \SimpleXMLElement $xmlRule * @throws OssException */ public function appendToXml(&$xmlRule) { if (!isset($this->maxAgeSeconds)) { throw new OssException("maxAgeSeconds is not set in the Rule"); } foreach ($this->allowedOrigins as $allowedOrigin) { $xmlRule->addChild(CorsConfig::OSS_CORS_ALLOWED_ORIGIN, $allowedOrigin); } foreach ($this->allowedMethods as $allowedMethod) { $xmlRule->addChild(CorsConfig::OSS_CORS_ALLOWED_METHOD, $allowedMethod); } foreach ($this->allowedHeaders as $allowedHeader) { $xmlRule->addChild(CorsConfig::OSS_CORS_ALLOWED_HEADER, $allowedHeader); } foreach ($this->exposeHeaders as $exposeHeader) { $xmlRule->addChild(CorsConfig::OSS_CORS_EXPOSE_HEADER, $exposeHeader); } $xmlRule->addChild(CorsConfig::OSS_CORS_MAX_AGE_SECONDS, strval($this->maxAgeSeconds)); }
private $allowedHeaders = array(); private $allowedOrigins = array(); private $allowedMethods = array(); private $exposeHeaders = array(); private $maxAgeSeconds = null; }
|