forked from mobdim/Web-Socket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_server.php
More file actions
227 lines (196 loc) · 4.96 KB
/
Copy path_server.php
File metadata and controls
227 lines (196 loc) · 4.96 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
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
<?php
class Server
{
public function __construct($settings) {
$this->settings = $settings;
}
/**
* Server constructor
*/
public function deploy() {
/**
* Create TCP/IP sream socket
*/
$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
/**
* Reuseable port
*/
socket_set_option($socket, SOL_SOCKET, SO_REUSEADDR, 1);
/**
* Bind socket to specified host
*/
socket_bind($socket, 0, $this->settings['port']);
/**
* Listen to port
*/
socket_listen($socket);
/**
* Create & add listning socket to the list
*/
global $clients;
$clients = array($socket);
/**
* Loooooooooooop
*/
while (true) {
/**
* Manage multipal connections
*/
$changed = $clients;
/**
* Returns the socket resources in $changed array
*/
socket_select($changed, $null, $null, 0, 10);
/**
* Check for new socket
*/
if (in_array($socket, $changed)) {
$socket_new = socket_accept($socket); //accpet new socket
$clients[] = $socket_new; //add socket to client array
$header = socket_read($socket_new, 1024); //read data sent by the socket
$this->perform_handshaking($header, $socket_new, $this->settings['host'], $this->settings['port']); //perform websocket handshake
/**
* Make room for new socket
*/
$found_socket = array_search($socket, $changed);
unset($changed[$found_socket]);
}
/**
* Loop through all connected sockets
*/
foreach ($changed as $changed_socket) {
/**
* Check for any incomming data
*/
while(socket_recv($changed_socket, $buf, 1024, 0) >= 1)
{
$new_post = $this->unmask($buf); //unmask data
if(strlen($new_post) > 10) {
$post = json_decode($new_post); //json decode
$post_title = $post->title; //post title
$post_url = $post->url; //post url
$post_hubs = $post->hubs; //post hubs
/**
* Prepare data to be sent to client
*/
if($post_title > NULL) {
$response_text = $this->mask(json_encode(array('title'=>$post_title, 'url'=>$post_url, 'hubs'=>$post_hubs)));
$this->send_message($response_text); //send data
}
break 2; //exist this loop
}
}
$buf = @socket_read($changed_socket, 1024, PHP_NORMAL_READ);
/**
* Check disconnected client
*/
if ($buf === false) {
// remove client for $clients array
/**
* Remove client for $clients array
*/
$found_socket = array_search($changed_socket, $clients);
socket_getpeername($changed_socket, $ip);
unset($clients[$found_socket]);
}
}
}
/**
* Close the listening socket
*/
socket_close($socket);
}
/**
* Send message function
*/
private function send_message($msg)
{
global $clients;
foreach($clients as $changed_socket)
{
@socket_write($changed_socket,$msg,strlen($msg));
}
return true;
}
/**
* Unmask incoming framed message
*/
private function unmask($text) {
$length = ord($text[1]) & 127;
if($length == 126) {
$masks = substr($text, 4, 4);
$data = substr($text, 8);
}
elseif($length == 127) {
$masks = substr($text, 10, 4);
$data = substr($text, 14);
}
else {
$masks = substr($text, 2, 4);
$data = substr($text, 6);
}
$text = "";
for ($i = 0; $i < strlen($data); ++$i) {
$text .= $data[$i] ^ $masks[$i%4];
}
return $text;
}
/**
* Encode message for transfer to client
*/
private function mask($text)
{
$b1 = 0x80 | (0x1 & 0x0f);
$length = strlen($text);
if($length <= 125)
$header = pack('CC', $b1, $length);
elseif($length > 125 && $length < 65536)
$header = pack('CCn', $b1, 126, $length);
elseif($length >= 65536)
$header = pack('CCNN', $b1, 127, $length);
return $header.$text;
}
/**
* Handshake
*/
private function perform_handshaking($receved_header,$client_conn, $host, $port)
{
$headers = array();
$lines = preg_split("/\r\n/", $receved_header);
foreach($lines as $line)
{
$line = chop($line);
if(preg_match('/\A(\S+): (.*)\z/', $line, $matches))
{
$headers[$matches[1]] = $matches[2];
}
}
$secKey = $headers['Sec-WebSocket-Key'];
$secAccept = base64_encode(pack('H*', sha1($secKey . '258EAFA5-E914-47DA-95CA-C5AB0DC85B11')));
/**
* Handshaking header
*/
$upgrade = "HTTP/1.1 101 Web Socket Protocol Handshake\r\n" .
"Upgrade: websocket\r\n" .
"Connection: Upgrade\r\n" .
"WebSocket-Origin: $host\r\n" .
"WebSocket-Location: ws://$host:$port\r\n".
"Sec-WebSocket-Accept:$secAccept\r\n\r\n";
socket_write($client_conn,$upgrade,strlen($upgrade));
}
/**
* Print a text to the terminal
* @param $text the text to display
* @param $exit if true, the process will exit
*/
public function console($text) {
echo $text = date('[Y-m-d H:i:s] ').$text."\r\n";
}
}
$settings = array(
'host' => '0.0.0.0',
'port' => 10001,
'null' => NULL,
);
$Server = new Server($settings);
$Server->deploy();