GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 9a7ea4...53d770 )
by Yang
02:32
created

ListSubscriptionResponse::parseResponse()   D

Complexity

Conditions 10
Paths 34

Size

Total Lines 45
Code Lines 27

Duplication

Lines 45
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 45
loc 45
rs 4.8196
cc 10
eloc 27
nc 34
nop 2

How to fix   Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
namespace AliyunMNS\Responses;
3
4
use AliyunMNS\Exception\MnsException;
5
use AliyunMNS\Responses\BaseResponse;
6
use AliyunMNS\Common\XMLParser;
7
8
class ListSubscriptionResponse extends BaseResponse
9
{
10
    private $SubscriptionNames;
11
    private $nextMarker;
12
13
    public function __construct()
14
    {
15
        $this->SubscriptionNames = array();
16
        $this->nextMarker = NULL;
17
    }
18
19
    public function isFinished()
20
    {
21
        return $this->nextMarker == NULL;
22
    }
23
24
    public function getSubscriptionNames()
25
    {
26
        return $this->SubscriptionNames;
27
    }
28
29
    public function getNextMarker()
30
    {
31
        return $this->nextMarker;
32
    }
33
34
    public function parseResponse($statusCode, $content)
35
    {
36
        $this->statusCode = $statusCode;
37
        if ($statusCode != 200) {
38
            $this->parseErrorResponse($statusCode, $content);
39
            return;
40
        }
41
42
        $this->succeed = TRUE;
43
        $xmlReader = new \XMLReader();
44
        try {
45
            $xmlReader->XML($content);
46
            while ($xmlReader->read())
47
            {
48
                if ($xmlReader->nodeType == \XMLReader::ELEMENT)
49
                {
50
                    switch ($xmlReader->name) {
51
                    case 'SubscriptionURL':
52
                        $xmlReader->read();
53
                        if ($xmlReader->nodeType == \XMLReader::TEXT)
54
                        {
55
                            $subscriptionName = $this->getSubscriptionNameFromSubscriptionURL($xmlReader->value);
56
                            $this->SubscriptionNames[] = $subscriptionName;
57
                        }
58
                        break;
59
                    case 'NextMarker':
60
                        $xmlReader->read();
61
                        if ($xmlReader->nodeType == \XMLReader::TEXT)
62
                        {
63
                            $this->nextMarker = $xmlReader->value;
64
                        }
65
                        break;
66
                    }
67
                }
68
            }
69
        }
70
        catch (\Exception $e)
71
        {
72
            throw new MnsException($statusCode, $e->getMessage(), $e);
73
        }
74
        catch (\Throwable $t)
75
        {
76
            throw new MnsException($statusCode, $t->getMessage());
77
        }
78
    }
79
80
    private function getSubscriptionNameFromSubscriptionURL($subscriptionURL)
81
    {
82
        $pieces = explode("/", $subscriptionURL);
83
        if (count($pieces) == 7)
84
        {
85
            return $pieces[6];
86
        }
87
        return "";
88
    }
89
90
    public function parseErrorResponse($statusCode, $content, MnsException $exception = NULL)
91
    {
92
        $this->succeed = FALSE;
93
        $xmlReader = new \XMLReader();
94
        try
95
        {
96
            $xmlReader->XML($content);
97
            $result = XMLParser::parseNormalError($xmlReader);
98
99
            throw new MnsException($statusCode, $result['Message'], $exception, $result['Code'], $result['RequestId'], $result['HostId']);
100
        }
101
        catch (\Exception $e)
102
        {
103
            if ($exception != NULL)
104
            {
105
                throw $exception;
106
            }
107
            elseif ($e instanceof MnsException)
108
            {
109
                throw $e;
110
            }
111
            else
112
            {
113
                throw new MnsException($statusCode, $e->getMessage());
114
            }
115
        }
116
        catch (\Throwable $t)
117
        {
118
            throw new MnsException($statusCode, $t->getMessage());
119
        }
120
    }
121
}
122