Message.php
4.9 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php
namespace AliyunMNS\Model;
use AliyunMNS\Constants;
use AliyunMNS\Traits\MessagePropertiesForReceive;
class Message
{
use MessagePropertiesForReceive;
public function __construct($messageId, $messageBodyMD5, $messageBody, $enqueueTime, $nextVisibleTime, $firstDequeueTime, $dequeueCount, $priority, $receiptHandle)
{
$this->messageId = $messageId;
$this->messageBodyMD5 = $messageBodyMD5;
$this->messageBody = $messageBody;
$this->enqueueTime = $enqueueTime;
$this->nextVisibleTime = $nextVisibleTime;
$this->firstDequeueTime = $firstDequeueTime;
$this->dequeueCount = $dequeueCount;
$this->priority = $priority;
$this->receiptHandle = $receiptHandle;
}
static public function fromXML(\XMLReader $xmlReader, $base64)
{
$messageId = NULL;
$messageBodyMD5 = NULL;
$messageBody = NULL;
$enqueueTime = NULL;
$nextVisibleTime = NULL;
$firstDequeueTime = NULL;
$dequeueCount = NULL;
$priority = NULL;
$receiptHandle = NULL;
while ($xmlReader->read())
{
switch ($xmlReader->nodeType)
{
case \XMLReader::ELEMENT:
switch ($xmlReader->name) {
case Constants::MESSAGE_ID:
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$messageId = $xmlReader->value;
}
break;
case Constants::MESSAGE_BODY_MD5:
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$messageBodyMD5 = $xmlReader->value;
}
break;
case Constants::MESSAGE_BODY:
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
if ($base64 == TRUE) {
$messageBody = base64_decode($xmlReader->value);
} else {
$messageBody = $xmlReader->value;
}
}
break;
case Constants::ENQUEUE_TIME:
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$enqueueTime = $xmlReader->value;
}
break;
case Constants::NEXT_VISIBLE_TIME:
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$nextVisibleTime = $xmlReader->value;
}
break;
case Constants::FIRST_DEQUEUE_TIME:
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$firstDequeueTime = $xmlReader->value;
}
break;
case Constants::DEQUEUE_COUNT:
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$dequeueCount = $xmlReader->value;
}
break;
case Constants::PRIORITY:
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$priority = $xmlReader->value;
}
break;
case Constants::RECEIPT_HANDLE:
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$receiptHandle = $xmlReader->value;
}
break;
}
break;
case \XMLReader::END_ELEMENT:
if ($xmlReader->name == 'Message')
{
$message = new Message(
$messageId,
$messageBodyMD5,
$messageBody,
$enqueueTime,
$nextVisibleTime,
$firstDequeueTime,
$dequeueCount,
$priority,
$receiptHandle);
return $message;
}
break;
}
}
$message = new Message(
$messageId,
$messageBodyMD5,
$messageBody,
$enqueueTime,
$nextVisibleTime,
$firstDequeueTime,
$dequeueCount,
$priority,
$receiptHandle);
return $message;
}
}
?>