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.
89 lines
2.3 KiB
89 lines
2.3 KiB
<?php
|
|
namespace AliyunMNS\Responses;
|
|
|
|
use AliyunMNS\Constants;
|
|
use AliyunMNS\Model\SubscriptionAttributes;
|
|
use AliyunMNS\Exception\MnsException;
|
|
use AliyunMNS\Exception\SubscriptionNotExistException;
|
|
use AliyunMNS\Responses\BaseResponse;
|
|
use AliyunMNS\Common\XMLParser;
|
|
|
|
class GetSubscriptionAttributeResponse extends BaseResponse
|
|
{
|
|
private $attributes;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->attributes = NULL;
|
|
}
|
|
|
|
public function getSubscriptionAttributes()
|
|
{
|
|
return $this->attributes;
|
|
}
|
|
|
|
public function parseResponse($statusCode, $content)
|
|
{
|
|
$this->statusCode = $statusCode;
|
|
if ($statusCode == 200)
|
|
{
|
|
$this->succeed = TRUE;
|
|
}
|
|
else
|
|
{
|
|
$this->parseErrorResponse($statusCode, $content);
|
|
}
|
|
|
|
$xmlReader = $this->loadXmlContent($content);
|
|
|
|
try
|
|
{
|
|
$this->attributes = SubscriptionAttributes::fromXML($xmlReader);
|
|
}
|
|
catch (\Exception $e)
|
|
{
|
|
throw new MnsException($statusCode, $e->getMessage(), $e);
|
|
}
|
|
catch (\Throwable $t)
|
|
{
|
|
throw new MnsException($statusCode, $t->getMessage());
|
|
}
|
|
}
|
|
|
|
public function parseErrorResponse($statusCode, $content, MnsException $exception = NULL)
|
|
{
|
|
$this->succeed = FALSE;
|
|
$xmlReader = $this->loadXmlContent($content);
|
|
|
|
try
|
|
{
|
|
$result = XMLParser::parseNormalError($xmlReader);
|
|
if ($result['Code'] == Constants::SUBSCRIPTION_NOT_EXIST)
|
|
{
|
|
throw new SubscriptionNotExistException($statusCode, $result['Message'], $exception, $result['Code'], $result['RequestId'], $result['HostId']);
|
|
}
|
|
throw new MnsException($statusCode, $result['Message'], $exception, $result['Code'], $result['RequestId'], $result['HostId']);
|
|
}
|
|
catch (\Exception $e)
|
|
{
|
|
if ($exception != NULL)
|
|
{
|
|
throw $exception;
|
|
}
|
|
elseif ($e instanceof MnsException)
|
|
{
|
|
throw $e;
|
|
}
|
|
else
|
|
{
|
|
throw new MnsException($statusCode, $e->getMessage());
|
|
}
|
|
}
|
|
catch (\Throwable $t)
|
|
{
|
|
throw new MnsException($statusCode, $t->getMessage());
|
|
}
|
|
}
|
|
}
|
|
?>
|