-
Notifications
You must be signed in to change notification settings - Fork 20
/
class.smpp.php
170 lines (114 loc) · 4.63 KB
/
class.smpp.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
<?php
/* **************************************************
* SMPP v3.4
* PHP Class to send SMS messages using SMPP v3.4 protocol
* Rayed Alrashed
* 10 August 2008
************************************************** */
if (basename($_SERVER['SCRIPT_NAME']) == 'class.smpp.php') {
header('Content-Type: text/plain');
$src = "phone_number"; // or text
$dst = "phone_number";
$message = "Test Message";
$s = new smpp();
$s->debug=1;
// $host,$port,$system_id,$password
$s->open("10.0.0.5", 12345, "system_id", "password");
// $source_addr,$destintation_addr,$short_message,$utf=0,$flash=0
$s->send_long($src, $dst, $message);
/* To send unicode
$utf = true;
$message = iconv('Windows-1256','UTF-16BE',$message);
$s->send_long($src, $dst, $message, $utf);
*/
$s->close();
}
class smpp {
var $socket=0;
var $seq=0;
var $debug=0;
var $data_coding=0;
var $timeout = 2;
//////////////////////////////////////////////////
function send_pdu($id,$data) {
// increment sequence
$this->seq +=1;
// PDU = PDU_header + PDU_content
$pdu = pack('NNNN', strlen($data)+16, $id, 0, $this->seq) . $data;
// send PDU
fputs($this->socket, $pdu);
// Get response length
$data = fread($this->socket, 4);
if($data==false) die("\nSend PDU: Connection closed!");
$tmp = unpack('Nlength', $data);
$command_length = $tmp['length'];
if($command_length<12) return;
// Get response
$data = fread($this->socket, $command_length-4);
$pdu = unpack('Nid/Nstatus/Nseq', $data);
if($this->debug) print "\n< R PDU (id,status,seq): " .join(" ",$pdu) ;
return $pdu;
}
//////////////////////////////////////////////////
function open($host,$port,$system_id,$password) {
// Open the socket
$this->socket = fsockopen($host, $port, $errno, $errstr, $this->timeout);
if ($this->socket===false)
die("$errstr ($errno)<br />");
if (function_exists('stream_set_timeout'))
stream_set_timeout($this->socket, $this->timeout); // function exists for php4.3+
if($this->debug) print "\n> Connected" ;
// Send Bind operation
$data = sprintf("%s\0%s\0", $system_id, $password); // system_id, password
$data .= sprintf("%s\0%c", "", 0x34); // system_type, interface_version
$data .= sprintf("%c%c%s\0", 5, 0, ""); // addr_ton, addr_npi, address_range
$ret = $this->send_pdu(2, $data);
if($this->debug) print "\n> Bind done!" ;
return ($ret['status']==0);
}
//////////////////////////////////////////////////
function submit_sm($source_addr,$destintation_addr,$short_message,$optional='') {
$data = sprintf("%s\0", ""); // service_type
$data .= sprintf("%c%c%s\0", 5,0,$source_addr); // source_addr_ton, source_addr_npi, source_addr
$data .= sprintf("%c%c%s\0", 1,1,$destintation_addr); // dest_addr_ton, dest_addr_npi, destintation_addr
$data .= sprintf("%c%c%c", 0,0,0); // esm_class, protocol_id, priority_flag
$data .= sprintf("%s\0%s\0", "",""); // schedule_delivery_time, validity_period
$data .= sprintf("%c%c", 0,0); // registered_delivery, replace_if_present_flag
$data .= sprintf("%c%c", $this->data_coding,0); // data_coding, sm_default_msg_id
$data .= sprintf("%c%s", strlen($short_message), $short_message); // sm_length, short_message
$data .= $optional;
$ret = $this->send_pdu(4, $data);
return ($ret['status']==0);
}
//////////////////////////////////////////////////
function close() {
$ret = $this->send_pdu(6, "");
fclose($this->socket);
return true;
}
//////////////////////////////////////////////////
function send_long($source_addr,$destintation_addr,$short_message,$utf=0,$flash=0) {
if($utf)
$this->data_coding=0x08;
if($flash)
$this->data_coding=$this->data_coding | 0x10;
$size = strlen($short_message);
if($utf) $size+=20;
if ($size<160) { // Only one part :)
$this->submit_sm($source_addr,$destintation_addr,$short_message);
} else { // Multipart
$sar_msg_ref_num = rand(1,255);
$sar_total_segments = ceil(strlen($short_message)/130);
for($sar_segment_seqnum=1; $sar_segment_seqnum<=$sar_total_segments; $sar_segment_seqnum++) {
$part = substr($short_message, 0 ,130);
$short_message = substr($short_message, 130);
$optional = pack('nnn', 0x020C, 2, $sar_msg_ref_num);
$optional .= pack('nnc', 0x020E, 1, $sar_total_segments);
$optional .= pack('nnc', 0x020F, 1, $sar_segment_seqnum);
if ($this->submit_sm($source_addr,$destintation_addr,$part,$optional)===false)
return false;
}
}
return true;
}
}