Skip to content

Commit e57c804

Browse files
authored
fix: ws->push() compatible old and latest version (#539)
fix: ws->push() compatible old and latest version
2 parents 16557ce + 43a5075 commit e57c804

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

src/websocket-server/src/Helper/WsHelper.php

+19
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Swoft\WebSocket\Server\Helper;
44

5+
use Swoft\Console\Console;
56
use Swoole\Http\Request;
67
use Swoole\Http\Response;
78
use function base64_decode;
@@ -10,6 +11,7 @@
1011
use function sha1;
1112
use function strlen;
1213
use function trim;
14+
use const SWOOLE_VERSION;
1315

1416
/**
1517
* Class WsHelper
@@ -105,4 +107,21 @@ public static function fastHandshake(Request $request, Response $response): bool
105107
$response->end();
106108
return true;
107109
}
110+
111+
/**
112+
* @param string $version
113+
*
114+
* @return bool
115+
*/
116+
public static function isLtSwooleVersion(string $version = '4.4.12'): bool
117+
{
118+
$curVer = SWOOLE_VERSION;
119+
120+
if (version_compare($curVer, $version, '<')) {
121+
Console::colored("[NOTICE] Swoole current version is {$curVer}, suggestion upgrade to {$version}+", 'warning');
122+
return true;
123+
}
124+
125+
return false;
126+
}
108127
}

src/websocket-server/src/WebSocketServer.php

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use Swoft\Server\Exception\ServerException;
77
use Swoft\Server\Server;
88
use Swoft\Server\SwooleEvent;
9+
use Swoft\WebSocket\Server\Helper\WsHelper;
910
use Swoole\Websocket\Frame;
1011
use Throwable;
1112
use function array_flip;
@@ -125,6 +126,11 @@ public function sendTo(
125126
$fromUser = $sender < 1 ? 'SYSTEM' : $sender;
126127
$this->log("(private)The #{$fromUser} send message to the user #{$receiver}. Opcode: $opcode Data: {$data}");
127128

129+
// Fix: since swoole 4.4.12 $finish change type to int.
130+
if (WsHelper::isLtSwooleVersion()) {
131+
$finish = (bool)$finish;
132+
}
133+
128134
return $this->swooleServer->push($receiver, $data, $opcode, $finish);
129135
}
130136

0 commit comments

Comments
 (0)