PublishMessageRequest.php
1.2 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
<?php
namespace AliyunMNS\Requests;
use AliyunMNS\Constants;
use AliyunMNS\Requests\BaseRequest;
use AliyunMNS\Traits\MessagePropertiesForPublish;
class PublishMessageRequest extends BaseRequest
{
use MessagePropertiesForPublish;
private $topicName;
public function __construct($messageBody, $messageAttributes = NULL)
{
parent::__construct('post', NULL);
$this->topicName = NULL;
$this->messageBody = $messageBody;
$this->messageAttributes = $messageAttributes;
}
public function setTopicName($topicName)
{
$this->topicName = $topicName;
$this->resourcePath = 'topics/' . $topicName . '/messages';
}
public function getTopicName()
{
return $this->topicName;
}
public function generateBody()
{
$xmlWriter = new \XMLWriter;
$xmlWriter->openMemory();
$xmlWriter->startDocument("1.0", "UTF-8");
$xmlWriter->startElementNS(NULL, "Message", Constants::MNS_XML_NAMESPACE);
$this->writeMessagePropertiesForPublishXML($xmlWriter);
$xmlWriter->endElement();
$xmlWriter->endDocument();
return $xmlWriter->outputMemory();
}
public function generateQueryString()
{
return NULL;
}
}
?>