-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
318 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<?php | ||
|
||
namespace think\swoole\websocket\socketio; | ||
|
||
class EnginePacket | ||
{ | ||
/** | ||
* Engine.io packet type `open`. | ||
*/ | ||
const OPEN = 0; | ||
|
||
/** | ||
* Engine.io packet type `close`. | ||
*/ | ||
const CLOSE = 1; | ||
|
||
/** | ||
* Engine.io packet type `ping`. | ||
*/ | ||
const PING = 2; | ||
|
||
/** | ||
* Engine.io packet type `pong`. | ||
*/ | ||
const PONG = 3; | ||
|
||
/** | ||
* Engine.io packet type `message`. | ||
*/ | ||
const MESSAGE = 4; | ||
|
||
/** | ||
* Engine.io packet type 'upgrade' | ||
*/ | ||
const UPGRADE = 5; | ||
|
||
/** | ||
* Engine.io packet type `noop`. | ||
*/ | ||
const NOOP = 6; | ||
|
||
public $type; | ||
|
||
public $data = ''; | ||
|
||
public function __construct($type, $data = '') | ||
{ | ||
$this->type = $type; | ||
$this->data = $data; | ||
} | ||
|
||
public static function open($payload) | ||
{ | ||
return new static(self::OPEN, $payload); | ||
} | ||
|
||
public static function pong($payload = '') | ||
{ | ||
return new static(self::PONG, $payload); | ||
} | ||
|
||
public static function ping() | ||
{ | ||
return new static(self::PING); | ||
} | ||
|
||
public static function message($payload) | ||
{ | ||
return new static(self::MESSAGE, $payload); | ||
} | ||
|
||
public static function fromString(string $packet) | ||
{ | ||
return new static($packet{0}, substr($packet, 1) ?? ''); | ||
} | ||
|
||
public function toString() | ||
{ | ||
return $this->type . $this->data; | ||
} | ||
} |
Oops, something went wrong.