You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
<?php
|
|
namespace AliyunMNS\Requests;
|
|
|
|
use AliyunMNS\Constants;
|
|
use AliyunMNS\Requests\BaseRequest;
|
|
use AliyunMNS\Model\AccountAttributes;
|
|
|
|
class SetAccountAttributesRequest extends BaseRequest
|
|
{
|
|
private $attributes;
|
|
|
|
public function __construct(AccountAttributes $attributes = NULL)
|
|
{
|
|
parent::__construct('put', '/?accountmeta=true');
|
|
|
|
if ($attributes == NULL)
|
|
{
|
|
$attributes = new AccountAttributes;
|
|
}
|
|
|
|
$this->attributes = $attributes;
|
|
}
|
|
|
|
public function getAccountAttributes()
|
|
{
|
|
return $this->attributes;
|
|
}
|
|
|
|
public function generateBody()
|
|
{
|
|
$xmlWriter = new \XMLWriter;
|
|
$xmlWriter->openMemory();
|
|
$xmlWriter->startDocument("1.0", "UTF-8");
|
|
$xmlWriter->startElementNS(NULL, "Account", Constants::MNS_XML_NAMESPACE);
|
|
$this->attributes->writeXML($xmlWriter);
|
|
$xmlWriter->endElement();
|
|
$xmlWriter->endDocument();
|
|
return $xmlWriter->outputMemory();
|
|
}
|
|
|
|
public function generateQueryString()
|
|
{
|
|
return NULL;
|
|
}
|
|
}
|
|
?>
|