laravel-websockets/src/Websocket/Handler.php

827 lines
25 KiB
PHP
Raw Normal View History

2025-01-16 07:54:02 +00:00
<?php
declare(strict_types=1);
namespace BlaxSoftware\LaravelWebSockets\Websocket;
use BlaxSoftware\LaravelWebSockets\Apps\App;
use BlaxSoftware\LaravelWebSockets\Channels\Channel;
use BlaxSoftware\LaravelWebSockets\Channels\PresenceChannel;
use BlaxSoftware\LaravelWebSockets\Channels\PrivateChannel;
use BlaxSoftware\LaravelWebSockets\Contracts\ChannelManager;
use BlaxSoftware\LaravelWebSockets\Events\ConnectionClosed;
use BlaxSoftware\LaravelWebSockets\Events\NewConnection;
use BlaxSoftware\LaravelWebSockets\Exceptions\WebSocketException;
use BlaxSoftware\LaravelWebSockets\Server\Exceptions\ConnectionsOverCapacity;
use BlaxSoftware\LaravelWebSockets\Server\Exceptions\OriginNotAllowed;
use BlaxSoftware\LaravelWebSockets\Server\Exceptions\UnknownAppKey;
use BlaxSoftware\LaravelWebSockets\Server\Exceptions\WebSocketException as ExceptionsWebSocketException;
use BlaxSoftware\LaravelWebSockets\Server\Messages\PusherMessageFactory;
use BlaxSoftware\LaravelWebSockets\Server\QueryParameters;
use Exception;
2025-05-08 08:54:11 +00:00
use Illuminate\Support\Facades\Auth;
2025-01-17 09:45:53 +00:00
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Log;
2025-01-16 07:54:02 +00:00
use Ratchet\ConnectionInterface;
use Ratchet\RFC6455\Messaging\MessageInterface;
use Ratchet\WebSocket\MessageComponentInterface;
class Handler implements MessageComponentInterface
{
2025-12-05 19:53:52 +00:00
/**
* Track channel connections using associative arrays for O(1) lookup
* Structure: [channel_name => [socket_id => true]]
*/
2025-01-16 07:54:02 +00:00
protected $channel_connections = [];
/**
* Initialize a new handler.
*
* @return void
*/
public function __construct(
protected ChannelManager $channelManager
) {}
public function onOpen(ConnectionInterface $connection)
{
2025-12-05 19:53:52 +00:00
if (! $this->connectionCanBeMade($connection)) {
return $connection->close();
}
2025-06-12 14:16:07 +00:00
2025-12-05 19:53:52 +00:00
try {
$this->setupConnectionAddress($connection);
2025-06-12 14:16:07 +00:00
$this->verifyAppKey($connection);
$this->verifyOrigin($connection);
$this->limitConcurrentConnections($connection);
$this->generateSocketId($connection);
$this->establishConnection($connection);
2025-12-05 19:53:52 +00:00
$this->initializeAppConnection($connection);
2025-09-14 13:00:27 +00:00
} catch (UnknownAppKey $e) {
Log::channel('websocket')->error('Root level error: ' . $e->getMessage(), [
2025-06-12 14:16:07 +00:00
'file' => $e->getFile(),
'line' => $e->getLine(),
'trace' => $e->getTraceAsString(),
]);
2025-01-16 07:54:02 +00:00
}
}
2025-01-19 08:01:22 +00:00
public function onMessage(
ConnectionInterface $connection,
MessageInterface $message
) {
2025-12-05 19:53:52 +00:00
if (!isset($connection->app)) {
return;
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
try {
2025-06-13 08:31:59 +00:00
request()->server->set('REMOTE_ADDR', $connection->remoteAddress);
2025-01-16 07:54:02 +00:00
2025-06-13 08:31:59 +00:00
PusherMessageFactory::createForMessage(
$message,
$connection,
$this->channelManager
)->respond();
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
$message = json_decode($message->getPayload(), true, 512, JSON_THROW_ON_ERROR);
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
if ($this->handlePingPong($message, $connection)) {
return;
2025-06-13 08:31:59 +00:00
}
2025-01-16 07:54:02 +00:00
2025-09-15 14:22:59 +00:00
$channel = $this->handleChannelSubscriptions($message, $connection);
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
if ($this->shouldRejectMessage($channel, $connection, $message)) {
return;
2025-09-18 16:07:15 +00:00
}
2025-10-15 08:32:35 +00:00
$this->authenticateConnection($connection, $channel, $message);
2025-09-18 13:56:13 +00:00
\Log::channel('websocket')->info('[' . $connection->socketId . ']@' . $channel->getName() . ' | ' . json_encode($message));
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
if ($this->handlePusherEvent($message, $connection)) {
return;
2025-01-16 07:54:02 +00:00
}
2025-12-05 19:53:52 +00:00
$this->forkAndProcessMessage($connection, $channel, $message);
} catch (\Throwable $e) {
2025-12-05 19:53:52 +00:00
$this->handleMessageError($e);
2025-12-02 17:33:52 +00:00
}
2025-01-16 07:54:02 +00:00
}
/**
* Handle the websocket close.
*/
2025-01-17 09:45:53 +00:00
public function onClose(ConnectionInterface $connection): void
2025-01-16 07:54:02 +00:00
{
2025-10-15 07:27:37 +00:00
$this->authenticateConnection($connection, null);
2025-12-05 19:53:52 +00:00
if (isset($connection->remoteAddress)) {
request()->server->set('REMOTE_ADDR', $connection->remoteAddress);
}
2025-12-05 19:53:52 +00:00
$this->cleanupChannelConnections($connection);
$this->finalizeConnectionClose($connection);
}
protected function setupConnectionAddress(ConnectionInterface $connection): void
{
$connection->remoteAddress = trim(
explode(
',',
$connection->httpRequest->getHeaderLine('X-Forwarded-For')
)[0] ?? $connection->remoteAddress
);
request()->server->set('REMOTE_ADDR', $connection->remoteAddress);
Log::channel('websocket')->info('WS onOpen IP: ' . $connection->remoteAddress);
}
protected function initializeAppConnection(ConnectionInterface $connection): void
{
if (!isset($connection->app)) {
return;
}
$this->channelManager->subscribeToApp($connection->app->id);
$this->channelManager->connectionPonged($connection);
NewConnection::dispatch(
$connection->app->id,
$connection->socketId
);
}
protected function handlePingPong(array $message, ConnectionInterface $connection): bool
{
$eventLower = strtolower($message['event']);
if ($eventLower !== 'pusher:ping' && $eventLower !== 'pusher.ping') {
return false;
}
$this->channelManager->connectionPonged($connection);
gc_collect_cycles();
return true;
}
protected function shouldRejectMessage(?Channel $channel, ConnectionInterface $connection, array $message): bool
{
$isUnsubscribe = $message['event'] === 'pusher:unsubscribe' || $message['event'] === 'pusher.unsubscribe';
if (!$channel?->hasConnection($connection) && !$isUnsubscribe) {
$connection->send(json_encode([
'event' => $message['event'] . ':error',
'data' => [
'message' => 'Subscription not established',
'meta' => $message,
],
]));
return true;
}
if (!$channel) {
$connection->send(json_encode([
'event' => $message['event'] . ':error',
'data' => [
'message' => 'Channel not found',
'meta' => $message,
],
]));
return true;
}
return false;
}
protected function handlePusherEvent(array $message, ConnectionInterface $connection): bool
{
if (!str_contains($message['event'], 'pusher')) {
return false;
}
$connection->send(json_encode([
'event' => $message['event'] . ':response',
'data' => [
'message' => 'Success',
],
]));
return true;
}
protected function forkAndProcessMessage(
ConnectionInterface $connection,
Channel $channel,
array $message
): void {
$pid = pcntl_fork();
if ($pid === -1) {
Log::error('Fork error');
return;
}
if ($pid === 0) {
$this->processMessageInChild($connection, $channel, $message);
exit(0);
}
$this->addDataCheckLoop($connection, $message, $pid);
}
protected function processMessageInChild(
ConnectionInterface $connection,
Channel $channel,
array $message
): void {
try {
DB::disconnect();
DB::reconnect();
$this->setRequest($message, $connection);
$mock = new MockConnection($connection);
Controller::controll_message(
$mock,
$channel,
$message,
$this->channelManager
);
\Illuminate\Container\Container::getInstance()
->make(\Illuminate\Support\Defer\DeferredCallbackCollection::class)
->invokeWhen(fn($callback) => true);
} catch (Exception $e) {
$mock->send(json_encode([
'event' => $message['event'] . ':error',
'data' => [
'message' => $e->getMessage(),
],
]));
if (app()->bound('sentry')) {
app('sentry')->captureException($e);
}
}
}
protected function handleMessageError(\Throwable $e): void
{
Log::channel('websocket')->error('onMessage unhandled error: ' . $e->getMessage(), [
'file' => $e->getFile(),
'line' => $e->getLine(),
'trace' => $e->getTraceAsString(),
]);
if (app()->bound('sentry')) {
app('sentry')->captureException($e);
}
}
protected function cleanupChannelConnections(ConnectionInterface $connection): void
{
$cacheUpdates = [];
$cacheDeletes = ['ws_socket_auth_' . $connection->socketId];
2025-01-16 07:54:02 +00:00
foreach ($this->channel_connections as $channel => $connections) {
2025-12-05 19:53:52 +00:00
if (!isset($connections[$connection->socketId])) {
continue;
2025-01-16 07:54:02 +00:00
}
2025-12-05 19:53:52 +00:00
unset($this->channel_connections[$channel][$connection->socketId]);
if (empty($this->channel_connections[$channel])) {
2025-01-16 07:54:02 +00:00
unset($this->channel_connections[$channel]);
2025-12-05 19:53:52 +00:00
$cacheDeletes[] = 'ws_channel_connections_' . $channel;
continue;
2025-01-16 07:54:02 +00:00
}
2025-12-05 19:53:52 +00:00
$cacheUpdates['ws_channel_connections_' . $channel] = array_keys($this->channel_connections[$channel]);
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
$cacheUpdates['ws_active_channels'] = array_keys($this->channel_connections);
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
$authed_users = cache()->get('ws_socket_authed_users') ?? [];
unset($authed_users[$connection->socketId]);
$cacheUpdates['ws_socket_authed_users'] = $authed_users;
2025-09-15 08:20:13 +00:00
2025-12-05 19:53:52 +00:00
cache()->setMultiple($cacheUpdates);
cache()->deleteMultiple($cacheDeletes);
2025-10-15 07:27:37 +00:00
2025-12-05 19:53:52 +00:00
\BlaxSoftware\LaravelWebSockets\Services\WebsocketService::clearUserAuthed(
$connection->socketId
);
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
protected function finalizeConnectionClose(ConnectionInterface $connection): void
{
2025-01-16 07:54:02 +00:00
$this->channelManager
->unsubscribeFromAllChannels($connection)
2025-01-17 09:45:53 +00:00
->then(function (bool $unsubscribed) use ($connection): void {
2025-12-05 19:53:52 +00:00
if (!isset($connection->app)) {
return;
2025-01-16 07:54:02 +00:00
}
2025-12-05 19:53:52 +00:00
$this->channelManager->unsubscribeFromApp($connection->app->id);
ConnectionClosed::dispatch($connection->app->id, $connection->socketId);
cache()->forget('ws_connection_' . $connection->socketId);
2025-01-16 07:54:02 +00:00
});
}
/**
* Handle the websocket errors.
*
* @param WebSocketException $exception
*/
2025-01-17 09:45:53 +00:00
public function onError(ConnectionInterface $connection, Exception $exception): void
2025-01-16 07:54:02 +00:00
{
if ($exception instanceof ExceptionsWebSocketException) {
$connection->send(json_encode(
$exception->getPayload()
));
}
}
/**
* Check if the connection can be made for the
* current server instance.
*/
2025-01-17 09:45:53 +00:00
protected function connectionCanBeMade(ConnectionInterface $connection): bool
2025-01-16 07:54:02 +00:00
{
return $this->channelManager->acceptsNewConnections();
}
/**
* Verify the app key validity.
*
* @return $this
*/
protected function verifyAppKey(ConnectionInterface $connection)
{
$query = QueryParameters::create($connection->httpRequest);
$appKey = $query->get('appKey');
if (! $app = App::findByKey($appKey)) {
throw new UnknownAppKey($appKey);
}
2025-01-17 09:45:53 +00:00
$app->then(function ($app) use ($connection) {
$connection->app = $app;
});
2025-01-16 07:54:02 +00:00
return $this;
}
/**
* Verify the origin.
*
* @return $this
*/
protected function verifyOrigin(ConnectionInterface $connection)
{
if (! $connection->app->allowedOrigins) {
return $this;
}
$header = (string) ($connection->httpRequest->getHeader('Origin')[0] ?? null);
$origin = parse_url($header, PHP_URL_HOST) ?: $header;
if (! $header || ! in_array($origin, $connection->app->allowedOrigins)) {
throw new OriginNotAllowed($connection->app->key);
}
return $this;
}
/**
* Limit the connections count by the app.
*
* @return $this
*/
protected function limitConcurrentConnections(ConnectionInterface $connection)
{
if (! is_null($capacity = $connection->app->capacity)) {
$this->channelManager
->getGlobalConnectionsCount($connection->app->id)
2025-01-17 09:45:53 +00:00
->then(function ($connectionsCount) use ($capacity, $connection): void {
2025-01-16 07:54:02 +00:00
if ($connectionsCount >= $capacity) {
$exception = new ConnectionsOverCapacity;
$payload = json_encode($exception->getPayload());
tap($connection)->send($payload)->close();
}
});
}
return $this;
}
/**
* Create a socket id.
*
* @return $this
*/
protected function generateSocketId(ConnectionInterface $connection)
{
$socketId = sprintf('%d.%d', random_int(1, 1000000000), random_int(1, 1000000000));
$connection->socketId = $socketId;
return $this;
}
/**
* Establish connection with the client.
*
* @return $this
*/
protected function establishConnection(ConnectionInterface $connection)
{
$connection->send(json_encode([
2025-01-18 16:06:52 +00:00
'event' => 'pusher.connection_established',
2025-01-16 07:54:02 +00:00
'data' => json_encode([
'socket_id' => $connection->socketId,
'activity_timeout' => 30,
]),
]));
return $this;
}
2025-09-14 13:00:27 +00:00
protected function get_connection_channel(&$connection, &$message): ?Channel
2025-01-16 07:54:02 +00:00
{
// Put channel on its place
2025-12-05 19:53:52 +00:00
if (! isset($message['channel']) && isset($message['data']['channel'])) {
2025-01-16 07:54:02 +00:00
$message['channel'] = $message['data']['channel'];
unset($message['data']['channel']);
}
2025-09-16 06:54:13 +00:00
$this->channelManager->findOrCreate(
2025-01-16 07:54:02 +00:00
$connection->app->id,
$message['channel']
);
return $this->channelManager->find(
$connection->app->id,
$message['channel']
);
}
2025-09-18 13:56:13 +00:00
protected function handleChannelSubscriptions($message, $connection): ?Channel
2025-01-16 07:54:02 +00:00
{
2025-09-15 14:22:59 +00:00
$channel = $this->get_connection_channel($connection, $message);
2025-12-05 19:53:52 +00:00
$channel_name = $channel?->getName();
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
if (!$channel_name || !$channel) {
2025-09-15 14:22:59 +00:00
return null;
2025-09-15 12:29:07 +00:00
}
2025-12-05 19:53:52 +00:00
$eventLower = strtolower($message['event']);
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
if ($eventLower === 'pusher.subscribe' || $eventLower === 'pusher:subscribe') {
$this->handleSubscription($channel, $channel_name, $connection, $message);
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
if (str_contains($message['event'], '.unsubscribe')) {
$this->handleUnsubscription($channel, $channel_name, $connection);
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
return $channel;
}
2025-09-15 12:29:07 +00:00
2025-12-05 19:53:52 +00:00
protected function handleSubscription(
Channel $channel,
string $channel_name,
ConnectionInterface $connection,
array $message
): void {
if (!isset($this->channel_connections[$channel_name])) {
$this->channel_connections[$channel_name] = [];
2025-01-16 07:54:02 +00:00
}
2025-12-05 19:53:52 +00:00
if (!isset($this->channel_connections[$channel_name][$connection->socketId])) {
$this->channel_connections[$channel_name][$connection->socketId] = true;
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
cache()->setMultiple([
'ws_channel_connections_' . $channel_name => array_keys($this->channel_connections[$channel_name]),
'ws_active_channels' => array_keys($this->channel_connections)
]);
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
if ($channel->hasConnection($connection)) {
return;
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
try {
$channel->subscribe($connection, (object) $message);
} catch (\Throwable $e) {
// Silently handle subscription errors
}
}
2025-09-16 09:20:48 +00:00
2025-12-05 19:53:52 +00:00
protected function handleUnsubscription(
Channel $channel,
string $channel_name,
ConnectionInterface $connection
): void {
if (isset($this->channel_connections[$channel_name][$connection->socketId])) {
unset($this->channel_connections[$channel_name][$connection->socketId]);
2025-01-16 07:54:02 +00:00
}
2025-12-05 19:53:52 +00:00
if (empty($this->channel_connections[$channel_name])) {
unset($this->channel_connections[$channel_name]);
cache()->forget('ws_channel_connections_' . $channel_name);
cache()->forever('ws_active_channels', array_keys($this->channel_connections));
} else {
cache()->setMultiple([
'ws_channel_connections_' . $channel_name => array_keys($this->channel_connections[$channel_name]),
'ws_active_channels' => array_keys($this->channel_connections)
]);
}
$channel->unsubscribe($connection);
2025-01-16 07:54:02 +00:00
}
protected function setRequest($message, $connection)
{
foreach (request()->keys() as $key) {
request()->offsetUnset($key);
}
2025-12-05 19:53:52 +00:00
request()->merge($message['data'] ?? []);
2025-01-16 07:54:02 +00:00
}
protected function authenticateConnection(
ConnectionInterface $connection,
PrivateChannel|Channel|PresenceChannel|null $channel,
2025-10-15 07:45:04 +00:00
$message = []
2025-01-16 07:54:02 +00:00
) {
2025-12-05 19:53:52 +00:00
$this->loadCachedAuth($connection, $channel);
$this->ensureUserIsSet($connection, $channel);
$this->updateAuthState($connection);
$this->cacheAuthenticatedUser($connection);
$this->scheduleLogout();
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
protected function loadCachedAuth(ConnectionInterface $connection, $channel): void
{
if (isset($connection->auth)) {
return;
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
if (!$connection->socketId) {
return;
2025-01-16 07:54:02 +00:00
}
2025-12-05 19:53:52 +00:00
$cached_auth = cache()->get('socket_' . $connection->socketId);
if (!$cached_auth || !isset($cached_auth['type'])) {
return;
2025-01-16 07:54:02 +00:00
}
2025-12-05 19:53:52 +00:00
$connection->user = $cached_auth['type']::find($cached_auth['id']);
if ($channel) {
$channel->saveConnection($connection);
}
}
protected function ensureUserIsSet(ConnectionInterface $connection, $channel): void
{
if (isset($connection->user) && $connection->user) {
return;
}
$connection->user = false;
if ($channel) {
$channel->saveConnection($connection);
}
}
protected function updateAuthState(ConnectionInterface $connection): void
{
$connection->user
2025-05-08 08:54:11 +00:00
? Auth::login($connection->user)
: Auth::logout();
2025-12-05 19:53:52 +00:00
}
2025-05-08 08:54:11 +00:00
2025-12-05 19:53:52 +00:00
protected function cacheAuthenticatedUser(ConnectionInterface $connection): void
{
if (!Auth::user()) {
return;
}
2025-09-15 08:20:13 +00:00
2025-12-05 19:53:52 +00:00
/** @var \App\Models\User */
$user = Auth::user();
$user->refresh();
2025-09-15 08:20:13 +00:00
2025-12-05 19:53:52 +00:00
cache()->forever('ws_socket_auth_' . $connection->socketId, $user);
2025-09-15 08:20:13 +00:00
2025-12-05 19:53:52 +00:00
$authed_users = cache()->get('ws_socket_authed_users') ?? [];
$authed_users[$connection->socketId] = $user->id;
cache()->forever('ws_socket_authed_users', $authed_users);
2025-10-15 07:35:07 +00:00
2025-12-05 19:53:52 +00:00
\BlaxSoftware\LaravelWebSockets\Services\WebsocketService::setUserAuthed(
$connection->socketId,
$user
);
}
2025-10-15 07:27:37 +00:00
2025-12-05 19:53:52 +00:00
protected function scheduleLogout(): void
{
2025-10-15 07:27:37 +00:00
$this->channelManager->loop->futureTick(function () {
Auth::logout();
});
2025-01-16 07:54:02 +00:00
}
private function addDataCheckLoop(
$connection,
$message,
$pid,
$optional = false,
$iteration = false
) {
2025-12-05 19:53:52 +00:00
$pid = $this->preparePid($pid, $iteration);
2025-09-14 13:00:27 +00:00
$pidcache_start = 'dedicated_start_' . $pid;
2025-01-16 07:54:02 +00:00
cache()->put($pidcache_start, microtime(true), 100);
$this->channelManager->loop->addPeriodicTimer(0.01, function ($timer) use (
$pidcache_start,
$message,
$pid,
$connection,
$optional,
$iteration
) {
2025-12-05 19:53:52 +00:00
$this->checkDataLoopIteration(
$timer,
$pidcache_start,
$message,
$pid,
$connection,
$optional,
$iteration
);
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
pcntl_waitpid(-1, $status, WNOHANG);
});
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
protected function preparePid($pid, $iteration): string
{
$pid = explode('_', $pid . '')[0];
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
if ($iteration >= 0 && $iteration !== false) {
$pid .= '_' . $iteration;
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
return $pid;
}
2025-01-16 07:54:02 +00:00
2025-12-05 19:53:52 +00:00
protected function checkDataLoopIteration(
$timer,
string $pidcache_start,
array $message,
string $pid,
$connection,
bool $optional,
$iteration
): void {
$pidcache_data = 'dedicated_data_' . $pid;
$pidcache_done = 'dedicated_data_' . $pid . '_done';
$pidcache_complete = 'dedicated_data_' . $pid . '_complete';
if ($this->handleTimeout($timer, $pidcache_start, $pidcache_complete, $message, $connection, $optional)) {
return;
}
if (!cache()->has($pidcache_done)) {
return;
}
$this->scheduleNextIteration($connection, $message, $pid, $iteration);
$this->processAndSendData($connection, $pidcache_data);
$this->channelManager->loop->cancelTimer($timer);
}
protected function handleTimeout(
$timer,
string $pidcache_start,
string $pidcache_complete,
array $message,
$connection,
bool $optional
): bool {
if (!cache()->has($pidcache_start)) {
return false;
}
$diff = microtime(true) - ((int) cache()->get($pidcache_start));
if ($diff <= 60) {
return false;
}
if (!$optional) {
$connection->send(json_encode([
'event' => $message['event'] . ':error',
'data' => [
'message' => $message['event'] . ' timeout',
'diff' => $diff,
],
]));
}
$this->channelManager->loop->cancelTimer($timer);
cache()->put($pidcache_complete, true, 360);
return true;
}
protected function scheduleNextIteration($connection, array $message, string $pid, $iteration): void
{
$nextIteration = ($iteration === false) ? 0 : $iteration + 1;
$this->addDataCheckLoop($connection, $message, $pid, true, $nextIteration);
}
protected function processAndSendData($connection, string $pidcache_data): void
{
$sending = cache()->get($pidcache_data);
$bm = json_decode($sending, true);
if (isset($bm['broadcast']) && $bm['broadcast']) {
$this->broadcast(
$connection->app->id,
$bm['data'] ?? null,
$bm['event'] ?? null,
$bm['channel'] ?? null,
$bm['including_self'] ?? false,
$connection
);
return;
}
if (isset($bm['whisper']) && $bm['whisper']) {
$this->whisper(
$connection->app->id,
$bm['data'] ?? null,
$bm['event'] ?? null,
$bm['socket_ids'] ?? [],
$bm['channel'] ?? null,
);
return;
}
$connection->send($sending);
2025-01-16 07:54:02 +00:00
}
2025-09-13 17:33:29 +00:00
public function broadcast(
string $appId,
mixed $payload,
?string $event = null,
?string $channel = null,
bool $including_self = false,
$connection = null
2025-09-14 13:00:27 +00:00
): void {
2025-09-13 17:33:29 +00:00
2025-09-14 13:00:27 +00:00
$channel = $this->channelManager->findOrCreate($appId, $channel);
$p = [
'event' => ($event ?? $event),
'data' => $payload,
'channel' => $channel->getName(),
];
2025-09-13 17:33:29 +00:00
foreach ($channel->getConnections() as $channel_conection) {
2025-09-16 08:58:54 +00:00
if ($channel_conection->socketId !== $connection->socketId) {
2025-09-14 13:00:27 +00:00
$channel_conection->send(json_encode($p));
2025-09-13 17:33:29 +00:00
}
if ($including_self) {
2025-09-14 13:00:27 +00:00
$connection->send(json_encode($p));
2025-09-13 17:33:29 +00:00
}
}
}
2025-09-15 12:29:07 +00:00
public function whisper(
string $appId,
mixed $payload,
?string $event = null,
array $socketIds = [],
?string $channel = null
): void {
$channel = $this->channelManager->findOrCreate($appId, $channel);
$p = [
'event' => ($event ?? $event),
'data' => $payload,
'channel' => $channel->getName(),
];
2025-12-05 19:53:52 +00:00
$socketIdLookup = array_flip($socketIds);
2025-09-15 12:29:07 +00:00
foreach ($channel->getConnections() as $channel_conection) {
2025-12-05 19:53:52 +00:00
if (isset($socketIdLookup[$channel_conection->socketId])) {
2025-09-15 12:29:07 +00:00
$channel_conection->send(json_encode($p));
}
}
}
2025-01-16 07:54:02 +00:00
}