-
Notifications
You must be signed in to change notification settings - Fork 1
/
SMS.php
277 lines (223 loc) · 8.14 KB
/
SMS.php
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<?php
/**
* SMSManager for Nette
*
* @author Michal Pospiech
* @copyright Copyright (c) 2015 Michal Pospiech
* @license MIT License
*/
namespace SMSManager;
use \Nette,
\Nette\Object,
\Nette\DateTime,
\Nette\Utils\Validators,
\Nette\Utils\Strings,
\SimpleXMLElement;
class SMS extends Object {
const XML_URL_SEND = 'xml-api.smsmanager.cz/Send';
const HTTP_URL_SEND = 'http-api.smsmanager.cz/Send';
const HTTP_URL_REQUESTLIST = 'http-api.smsmanager.cz/RequestList';
const HTTP_URL_REQUESTSTATUS = 'http-api.smsmanager.cz/RequestStatus';
const HTTP_USER_INFO = 'http-api.smsmanager.cz/GetUserInfo';
const HTTP_GET_PRICE = 'http-api.smsmanager.cz/GetPrice';
const REQUEST_TYPE_LOW = 'lowcost';
const REQUEST_TYPE_HIGH = 'high';
const REQUEST_TYPE_DIRECT = 'direct';
const REQUEST_DEFAULT_TYPE = self::REQUEST_TYPE_HIGH;
public $user;
public $pass;
public $ssl = false;
public $sender;
public $recipientNumbers = array();
public $type = self::REQUEST_DEFAULT_TYPE;
public $message;
public $customId;
public $time;
public $expiration;
public $requests = array();
public function __construct($user, $pass, $passIsHash = true, $ssl = false) {
$this->user = $user;
$this->pass = !$passIsHash ? SHA1($pass) : $pass;
$this->ssl = $ssl;
}
public function getRequestsTypes($associative = true) {
$types = array(
self::REQUEST_TYPE_LOW => 'Lowcost SMS',
self::REQUEST_TYPE_HIGH => 'High Quality SMS',
self::REQUEST_TYPE_DIRECT => 'Direct SMS',
);
if (!$associative) {
return array_keys($types);
}
return $types;
}
public function setSender($sender) {
if (Validators::is($sender, 'numericint') && !preg_match('/^\d{1,10}$/', $sender)) {
throw new SMSException('Invalid sender number');
} else if (Validators::is($sender, 'string:1..11')) {
throw new SMSException('Invalid sender text');
} else if (!Validators::is($sender, 'numericint|string:1..11')) {
throw new SMSException('Invalid sender format');
}
$this->sender = $sender;
}
public function setRecipientNumber($number) {
if (Validators::is($number, 'numericint') && !Validators::is($number, 'string:9..18')) {
throw new SMSException('Invalid recipient number');
} else if (!Validators::is($number, 'numericint') && !Validators::is(preg_replace('/\+/', '', $number), 'numericint')) {
throw new SMSException('Invalid recipient number format');
}
$this->recipientNumbers[] = $number;
}
public function setRecipientNumbers(array $numbers) {
if (!Validators::is($numbers, 'array')) {
throw new SMSException('Invalid numbers format');
}
foreach ($numbers as $number) {
$this->setRecipientNumber($number);
}
}
public function setType($type) {
if (!in_array($type, $this->getRequestsTypes(false))) {
throw new SMSException('Invalid type format');
}
$this->type = $type;
}
public function setCustomId($customId) {
if (!Validators::is($customId, 'integer') || !preg_match('/^\d{1,10}$/', $customId)) {
throw new SMSException('Invalid custom ID. Custom ID must be integer.');
}
$this->customId = $customId;
}
public function setTime($time) {
if (!($time instanceof DateTime) && !($time instanceof \DateTime) && !preg_match('/^[0-9]{4}\-[0-9]{2}\-[0-9]{2}T[0-9]{2}\:[0-9]{2}\:[0-9]{2}$/', $time)) {
throw new SMSException('Invalid time format');
} else if ($time instanceof DateTime || $time instanceof \DateTime) {
$time = $time->format('c');
}
$this->time = $time;
}
public function setExpiration($expirationTime) {
if (!($expirationTime instanceof DateTime) && !($expirationTime instanceof \DateTime) && !preg_match('/^[0-9]{4}\-[0-9]{2}\-[0-9]{2}T[0-9]{2}\:[0-9]{2}\:[0-9]{2}$/', $time)) {
throw new SMSException('Invalid expiration time format');
} else if ($expirationTime instanceof DateTime || $time instanceof \DateTime) {
$expirationTime = $expirationTime->format('c');
}
$this->expiration = $expirationTime;
}
public function setMessage($message, $toAscii = true) {
if (!Validators::is($message, 'string:1..')) {
throw new SMSException('Invalid message format');
}
$this->message = $toAscii ? Strings::toAscii($message) : $message;
}
public function createRequest() {
$requestData = array(
'sender' => $this->sender,
'recipientNumbers' => $this->recipientNumbers,
'type' => $this->type,
'message' => $this->message,
'customId' => $this->customId,
'time' => $this->time,
'expiration' => $this->expiration,
);
if (!$requestData['recipientNumbers']) {
throw new SMSException('Recipient numbers is empty');
} else if (!$requestData['type']) {
$requestData['type'] = self::REQUEST_DEFAULT_TYPE;
} else if (!$requestData['message']) {
throw new SMSException('Message is empty');
}
$this->recipientNumbers = null;
$this->type = self::REQUEST_DEFAULT_TYPE;
$this->message = null;
$this->customId = null;
$this->time = null;
$this->expiration = null;
$this->requests[] = $requestData;
}
public function send() {
if (!$this->requests) {
throw new SMSException('There was no requests');
}
$xml = new SimpleXMLElement('<RequestDocument></RequestDocument>');
$header = $xml->addChild('RequestHeader');
$header->addChild('Username', $this->user);
$header->addChild('Password', $this->pass);
$requestList = $xml->addChild('RequestList');
foreach ($this->requests as $req) {
$request = $requestList->addChild('Request');
$request->addAttribute('Type', $req['type']);
if ($req['customId']) {
$request->addAttribute('CustomID', $req['customId']);
}
if ($req['sender']) {
$request->addAttribute('Sender', $req['sender']);
}
if ($req['time']) {
$request->addAttribute('Time', $req['time']);
}
if ($req['expiration']) {
$request->addAttribute('Expiration', $req['expiration']);
}
$request->addChild('Message', $req['message']);
$numbersList = $request->addChild('NumbersList');
foreach ($req['recipientNumbers'] as $number) {
$numbersList->addChild('Number', $number);
}
}
return $this->sendXmlRequest($xml->asXML());
}
private function sendXmlRequest($xml) {
$url = ($this->ssl ? 'https://' : 'http://') . self::XML_URL_SEND;
$conn = curl_init($url);
curl_setopt($conn, CURLOPT_RETURNTRANSFER, true);
curl_setopt($conn, CURLOPT_HEADER, false);
curl_setopt($conn, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($conn, CURLOPT_ENCODING, '');
curl_setopt($conn, CURLOPT_AUTOREFERER, true);
curl_setopt($conn, CURLOPT_CONNECTTIMEOUT, 60);
curl_setopt($conn, CURLOPT_TIMEOUT, 30);
curl_setopt($conn, CURLOPT_MAXREDIRS, 4);
curl_setopt($conn, CURLOPT_USERAGENT, 'nettesmsmanager');
curl_setopt($conn, CURLOPT_POST, 1);
curl_setopt($conn, CURLOPT_POSTFIELDS, http_build_query(array('XMLDATA' => $xml)));
$response = curl_exec($conn);
$header = curl_getinfo($conn);
$httpCode = curl_getinfo($conn, CURLINFO_HTTP_CODE);
curl_close($conn);
if ($httpCode != 200) {
throw new SMSHttpException(self::getErrorCodeFromResponse($response));
}
return self::getResponseData($response);
}
private static function getResponseData($response) {
$xml = new \SimpleXMLElement($response);
$requests = array();
foreach ($xml->ResponseRequestList->ResponseRequest as $request) {
$data = array(
'RequestID' => (int) $request->RequestID,
'SmsCount' => (int) $request['SmsCount'],
'SmsPrice' => (float) $request['SmsPrice'],
'CustomID' => (int) $request->CustomID,
'Status' => (int) $xml->Response['ID'],
'NumbersList' => array(),
);
foreach ($request->ResponseNumbersList->Number as $number) {
$data['NumbersList'][] = (string) $number;
}
$requests[$data['RequestID']] = $data;
}
return $requests;
}
private static function getErrorCodeFromResponse($response) {
$xml = new \SimpleXMLElement($response);
if (!isset($xml->Response) || !isset($xml->Response['ID'])) {
return false;
}
if (!isset($xml->Response['Type']) || (string) $xml->Response['Type'] !== 'ERROR') {
return false;
}
return (int) $xml->Response['ID'];
}
}