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
806 B
32 lines
806 B
![]()
2 months ago
|
<?php
|
||
|
|
||
|
include_once dirname(dirname(__FILE__)). "/Core/OssException.php";
|
||
|
|
||
|
/**
|
||
|
* Class AclResult GetBucketAcl interface returns the result class, encapsulated
|
||
|
* The returned xml data is parsed
|
||
|
*
|
||
|
* @package OSS\Result
|
||
|
*/
|
||
|
class GetStorageCapacityResult extends Result
|
||
|
{
|
||
|
/**
|
||
|
* Parse data from response
|
||
|
*
|
||
|
* @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->StorageCapacity)) {
|
||
|
return intval($xml->StorageCapacity);
|
||
|
} else {
|
||
|
throw new OssException("xml format exception");
|
||
|
}
|
||
|
}
|
||
|
}
|