Как отправить сообщения только одному клиенту с помощью php socket(Ratchet)?

Исользую библиотеку Ratchet
есть сервер
use Ratchet\Server\IoServer;
use Ratchet\Http\HttpServer;
use Ratchet\WebSocket\WsServer;
use Coreserver\Chat;

    require dirname(__DIR__) . '/vendor/autoload.php';

    $server = IoServer::factory(
        new HttpServer(
            new WsServer(
                new Chat()
            )
        ),
        9300
    );

    $server->run();

Вот реализация Chat
namespace Coreserver;
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;

class Chat implements MessageComponentInterface {
    protected $clients;

    public function __construct() {
        $this->clients = new \SplObjectStorage;
    }

    public function onOpen(ConnectionInterface $conn) {
        // Store the new connection to send messages to later
        $this->clients->attach($conn);
    
        echo "New connection! ({$conn->resourceId})\n";
    }

    public function onMessage(ConnectionInterface $from, $msg) {
    	
        $numRecv = count($this->clients) - 1;
        echo sprintf('Connection %d sending message "%s" to %d other connection%s' . "\n"
            , $from->resourceId, $msg, $numRecv, $numRecv == 1 ? '' : 's');
   

        foreach ($this->clients as $client) {
            if ($from !== $client) {
                // The sender is not the receiver, send to each client connected
                $client->send($msg);
             
            }
        }
    }

    public function onClose(ConnectionInterface $conn) {
        // The connection is closed, remove it, as we can no longer send it messages
        $this->clients->detach($conn);

        echo "Connection {$conn->resourceId} has disconnected\n";
    }

    public function onError(ConnectionInterface $conn, \Exception $e) {
        echo "An error has occurred: {$e->getMessage()}\n";

        $conn->close();
    }

Сейчас сервер отправляет сообщения всем кто коннетился.
foreach ($this->clients as $client) {
            if ($from !== $client) {
                // The sender is not the receiver, send to each client connected
                $client->send($msg);
             
            }
        }

Мне нужно отправить только одному клиент(кому отправить приходить от клиента формате json
{
"from":"user1",
"toUser":"user2",
"message":"Hi"
}

).
  • Вопрос задан
  • 5604 просмотра
Пригласить эксперта
Ответы на вопрос 2
BoneFletcher
@BoneFletcher
Вам нужно сохранять соответствие юзеров и коннекшенов, это можно делать, например, отправкой сообщения авторизации {auth: "user1"}
protected $usersToClients = [];

public function onMessage(ConnectionInterface $from, $msg) {
    $msg = json_decode($msg);
    if (property_exists($msg, 'auth')) {
        $usersToClients[$msg->auth] = $from;
    } else {
        if (isset($usersToClients[$msg->toUser])) {
            $usersToClients[$msg->toUser]->send($msg->message);
        }
    }
}
Ответ написан
Комментировать
kzakhariy
@kzakhariy
PHP Developer
public function onMessage(ConnectionInterface $from, $msg) {
       foreach ($this->clients as $client) {
            if ($from === $client) {
                $client->send($msg);
            }
        }
    }
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы