|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Fazland\SkebbyRestClient\DataStructure; |
|
4
|
|
|
|
|
5
|
|
|
use Fazland\SkebbyRestClient\Constant\SendMethods; |
|
6
|
|
|
use Fazland\SkebbyRestClient\Exception\EmptyResponseException; |
|
7
|
|
|
use Fazland\SkebbyRestClient\Exception\UnknownErrorResponseException; |
|
8
|
|
|
|
|
9
|
|
|
/** |
|
10
|
|
|
* @author Massimiliano Braglia <[email protected]> |
|
11
|
|
|
*/ |
|
12
|
|
|
class Response |
|
13
|
|
|
{ |
|
14
|
|
|
/** |
|
15
|
|
|
* @var string |
|
16
|
|
|
*/ |
|
17
|
|
|
private $status; |
|
18
|
|
|
|
|
19
|
|
|
/** |
|
20
|
|
|
* @var string |
|
21
|
|
|
*/ |
|
22
|
|
|
private $code; |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* @var string |
|
26
|
|
|
*/ |
|
27
|
|
|
private $errorMessage; |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* @var string |
|
31
|
|
|
*/ |
|
32
|
|
|
private $messageId; |
|
33
|
|
|
|
|
34
|
|
|
/** |
|
35
|
|
|
* @param string $rawResponse |
|
36
|
|
|
* |
|
37
|
|
|
* @throws EmptyResponseException |
|
38
|
|
|
* @throws UnknownErrorResponseException |
|
39
|
|
|
*/ |
|
40
|
8 |
|
public function __construct($rawResponse) |
|
41
|
|
|
{ |
|
42
|
8 |
|
if (empty($rawResponse)) { |
|
43
|
1 |
|
throw new EmptyResponseException(); |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
7 |
|
$doc = simplexml_load_string($rawResponse); |
|
47
|
7 |
|
foreach (SendMethods::all() as $method) { |
|
48
|
7 |
|
if (! isset($doc->$method)) { |
|
49
|
7 |
|
continue; |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
7 |
|
$element = $doc->$method; |
|
53
|
|
|
|
|
54
|
7 |
|
if (! isset($element->status)) { |
|
55
|
1 |
|
throw new UnknownErrorResponseException('Missing response status value from Skebby'); |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
6 |
|
$this->status = (string)$element->status; |
|
59
|
6 |
|
$this->messageId = isset($element->id) ? (string)$element->id : null; |
|
60
|
|
|
|
|
61
|
6 |
|
if (! $this->isSuccessful()) { |
|
62
|
1 |
|
$this->code = isset($element->code) ? (string)$element->code : null; |
|
63
|
1 |
|
$this->errorMessage = isset($element->message) ? (string)$element->message : 'Unknown error'; |
|
64
|
1 |
|
} |
|
65
|
|
|
|
|
66
|
6 |
|
return; |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
throw new UnknownErrorResponseException('Missing response status value from Skebby'); |
|
70
|
|
|
} |
|
71
|
|
|
|
|
72
|
|
|
/** |
|
73
|
|
|
* @return string |
|
74
|
|
|
*/ |
|
75
|
1 |
|
public function getStatus() |
|
76
|
|
|
{ |
|
77
|
1 |
|
return $this->status; |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
6 |
|
public function isSuccessful() |
|
81
|
|
|
{ |
|
82
|
6 |
|
return 'success' === $this->status; |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
/** |
|
86
|
|
|
* @return string |
|
87
|
|
|
*/ |
|
88
|
|
|
public function getCode() |
|
89
|
|
|
{ |
|
90
|
|
|
return $this->code; |
|
91
|
|
|
} |
|
92
|
|
|
|
|
93
|
|
|
/** |
|
94
|
|
|
* @return string |
|
95
|
|
|
*/ |
|
96
|
|
|
public function getErrorMessage() |
|
97
|
|
|
{ |
|
98
|
|
|
return $this->errorMessage; |
|
99
|
|
|
} |
|
100
|
|
|
|
|
101
|
|
|
/** |
|
102
|
|
|
* @return string |
|
103
|
|
|
*/ |
|
104
|
|
|
public function getMessageId() |
|
105
|
|
|
{ |
|
106
|
|
|
return $this->messageId; |
|
107
|
|
|
} |
|
108
|
|
|
|
|
109
|
|
|
public function __toString() |
|
110
|
|
|
{ |
|
111
|
|
|
return "Response status: $this->status, code: $this->code, error_message: $this->errorMessage, message_id: $this->messageId"; |
|
112
|
|
|
} |
|
113
|
|
|
} |
|
114
|
|
|
|