GetSubscriptionAttributeResponse.php
2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?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());
}
}
}
?>