-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmsSender.php
238 lines (177 loc) · 5.54 KB
/
smsSender.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
<?php
/**
* SMS Sender Class
*
* It use apistore.co.kr SMS API (support by KTH)
* please set authkey and user id
*
*
* how to use
*
*
*
* $smsSender = new SmsSender();
*
* $msg = "test sms message";
*
* // multi receiver
* $receiver = array('01012344567','01009876543');
*
*
* foreach($receiver as $receiverPhone)
* {
* // sender , receiver, message
* $smsSender->setMessage('0212345678', $receiverPhone, $msg);
* $smsSender->send();
*
* $resultCode = $sms->getResultCode();
*
* if($resultCode == 200) echo "OK!";
* else echo "error {$resultCode} !";
* }
*/
class SmsSender
{
private $userID = "CHANGE_TO_API_SERVICE_USER_ID";
private $develTestAuthKey = "CHANGE_TO_TEST_AUTH_KEY";
private $authKey = "CHANGE_TO_REAL_AUTH_KEY";
private $testEnabled = true; // true on test, must change on real service
private $messageType = "sms";
private $apiVersion = 1;
private $baseURL = "http://api.apistore.co.kr/ppurio";
private $apiURL = null;
// optional value
private $cmid = null;
private $send_time = null;
private $send_name = null;
private $dest_name = null;
private $subject = null;
private $msg_body = null;
// must set value
private $send_phone = null;
private $dest_phone = null;
private $result_code = 0;
private $result_cmid = 0;
private $errormsg = null;
public function __construct()
{
// if test enable == true authkey set devel test key
if($this->testEnabled)
$this->authKey = $this->develTestAuthKey;
$testURL = "";
if($this->testEnabled){
$testURL = "_test";
}
$this->apiURL = $this->baseURL
.$testURL
."/"
.$this->apiVersion
."/"
."message"
.$testURL
."/"
.$this->messageType
."/"
.$this->userID;
}
public function setMessageType($type = "sms"){
if($type=="sms" || $type == "mms" || $type=="lms"){
$this->messageType = $type;
$testURL = "";
if($this->testEnabled){
$testURL = "_test";
}
$this->apiURL = $this->baseURL
.$testURL
."/"
.$this->apiVersion
."/"
."message"
.$testURL
."/"
.$this->messageType
."/"
.$this->userID;
}
}
public function setCMID($cmid = null){
if(!$cmid)
$this->cmid = time();
}
public function setMessage($sender, $receiver, $context){
//validation check
$this->checkNumber($sender);
$this->checkNumber($receiver);
$this->send_phone = $sender;
$this->dest_phone = $receiver;
$this->msg_body = $context;
}
public function setSender($sender){
if(!is_array($sender))
$this->error("set sender error");
$this->send_name = $sender['name'];
$this->checkNumber($sender['phone']);
$this->send_phone = $sender['phone'];
}
public function setReceiver($receiver){
if(!is_array($receiver))
$this->error("set receiver error");
$this->checkNumber($receiver['phone']);
$this->dest_name = $receiver['name'];
$this->dest_phone = $receiver['phone'];
}
public function setSendTime($timeStamp){
$this->send_time = $timeStamp;
}
public function setSubject($subject){
$this->subject = $subject;
}
private function checkNumber($number){
if(strpos($number, "-") !== false)
$this->error("Phone number can't have '-' character");
//just enable kor number
if(substr($number, 0, 1) != "0")
$this->error("Phone number must start '0' character. only support kor ");
}
private function error($msg = null){
if($msg)
$this->errormsg = $msg;
if($this->errormsg!="")
exit($this->errormsg);
}
public function send(){
$paramArr = array(
'cmid' => $this->cmid,
'send_time' => $this->send_time,
'send_phone' => $this->send_phone,
'dest_phone' => $this->dest_phone,
'send_name' => $this->send_name,
'dest_name' => $this->dest_name,
'subject' => $this->subject,
'msg_body' => $this->msg_body);
$param = http_build_query($paramArr);
$optArr = array(
'Content-type: application/x-www-form-urlencoded',
'x-waple-authorization: '.$this->authKey
);
$cp = curl_init($this->apiURL);
curl_setopt($cp, CURLOPT_RETURNTRANSFER, true);
curl_setopt($cp, CURLOPT_POST, true);
curl_setopt($cp, CURLOPT_POSTFIELDS, $param);
curl_setopt($cp, CURLOPT_HTTPHEADER, $optArr);
$res = curl_exec($cp);
curl_close($cp);
$result = json_decode($res);
if($result->cmid =="" && $result->result_code == "" && $result->description)
$this->error($result->description);
$this->result_cmid = $result->cmid;
$this->result_code = $result->result_code;
}
public function getResultCode(){
return $this->result_code;
}
public function getResultCMID(){
return $this->result_cmid;
}
}
?>