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.
32 lines
732 B
32 lines
732 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace OSS\Result;
|
||
|
|
||
|
use OSS\Core\OssException;
|
||
|
|
||
|
/**
|
||
|
* Class AclResult getBucketAcl接口返回结果类,封装了
|
||
|
* 返回的xml数据的解析
|
||
|
*
|
||
|
* @package OSS\Result
|
||
|
*/
|
||
|
class AclResult extends Result
|
||
|
{
|
||
|
/**
|
||
|
* @return string
|
||
|
* @throws OssException
|
||
|
*/
|
||
|
protected function parseDataFromResponse()
|
||
|
{
|
||
|
$content = $this->rawResponse->body;
|
||
|
if (empty($content)) {
|
||
|
throw new OssException("body is null");
|
||
|
}
|
||
|
$xml = simplexml_load_string($content);
|
||
|
if (isset($xml->AccessControlList->Grant)) {
|
||
|
return strval($xml->AccessControlList->Grant);
|
||
|
} else {
|
||
|
throw new OssException("xml format exception");
|
||
|
}
|
||
|
}
|
||
|
}
|