forked from napengam/phpWebSocketServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresourceWeb.php
More file actions
72 lines (62 loc) · 2.13 KB
/
resourceWeb.php
File metadata and controls
72 lines (62 loc) · 2.13 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
<?php
/*
* **********************************************
* write your backend application
* **********************************************
*/
class resourceWeb extends resource {
private $packet;
function onData($SocketID, $M) {
/*
* *****************************************
* $M is JSON like
* {'opcode':task, <followed by whatever is expected based on the value of opcode>}
* This is just an example used here , you can send what ever you want.
* *****************************************
*/
$packet = $this->getPacket($M);
$this->packet = $packet;
if ($packet->opcode === 'jsonerror') {
$this->server->Log("jsonerror closing #$SocketID");
$this->server->Close($SocketID);
return;
}
if ($packet->opcode === 'quit') {
/*
* *****************************************
* client quits
* *****************************************
*/
$this->server->Log("QUIT; Connection closed to socket #$SocketID");
$this->server->Close($SocketID);
return;
}
if ($packet->opcode === 'feedback') {
/*
* *****************************************
* send feedback to client with uuid found
* in $packet
* *****************************************
*/
$this->server->feedback($packet);
return;
}
if ($packet->opcode === 'echo') {
$this->server->echo($SocketID, $packet);
return;
}
if ($packet->opcode === 'broadcast') {
$this->server->broadCast($SocketID, $M);
return;
}
/*
* *****************************************
* unknown opcode-> do nothing or close socket
* *****************************************
* $this->server>close($SocketID);
*
*/
}
function onError($SocketID, $M) {
}
}