BatchSmsAttributes.php
2.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
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
<?php
namespace AliyunMNS\Model;
use AliyunMNS\Constants;
use AliyunMNS\Exception\MnsException;
/**
* Please refer to
* https://help.aliyun.com/document_detail/44501.html
* for more details
*/
class BatchSmsAttributes
{
public $freeSignName;
public $templateCode;
public $smsParams;
public function __construct(
$freeSignName, $templateCode, $smsParams=null)
{
$this->freeSignName = $freeSignName;
$this->templateCode = $templateCode;
$this->smsParams = $smsParams;
}
public function setFreeSignName($freeSignName)
{
$this->freeSignName = $freeSignName;
}
public function getFreeSignName()
{
return $this->freeSignName;
}
public function setTemplateCode($templateCode)
{
$this->templateCode = $templateCode;
}
public function getTemplateCode()
{
return $this->templateCode;
}
public function addReceiver($phone, $params)
{
if (!is_array($params))
{
throw new MnsException(400, "Params Should be Array!");
}
if ($this->smsParams == null)
{
$this->smsParams = array();
}
$this->smsParams[$phone] = $params;
}
public function getSmsParams()
{
return $this->smsParams;
}
public function writeXML(\XMLWriter $xmlWriter)
{
$jsonArray = array("Type" => "multiContent");
if ($this->freeSignName !== NULL)
{
$jsonArray[Constants::FREE_SIGN_NAME] = $this->freeSignName;
}
if ($this->templateCode !== NULL)
{
$jsonArray[Constants::TEMPLATE_CODE] = $this->templateCode;
}
if ($this->smsParams != null)
{
if (!is_array($this->smsParams))
{
throw new MnsException(400, "SmsParams should be an array!");
}
if (!empty($this->smsParams))
{
$jsonArray[Constants::SMS_PARAMS] = json_encode($this->smsParams, JSON_FORCE_OBJECT);
}
}
if (!empty($jsonArray))
{
$xmlWriter->writeElement(Constants::DIRECT_SMS, json_encode($jsonArray));
}
}
}
?>