Ratchet / Websockets:有多少客户订阅了一个对象?
Ratchet / Websockets : How many clients subscribing to an object?
我想知道有多少客户实际订阅了聊天室/对话。
更准确地说,我只想知道是否有超过 1 个客户端。 (聊天室实际上是两个用户之间的私人对话)。
一次只有一个聊天室/私人对话(每位用户)。
class Chat implements WampServerInterface
{
protected $conversationId;
public function __construct(){
$this->conversationId = null;
}
public function onSubscribe(ConnectionInterface $conn, $conversation_id){
$this->conversationId = $conversation_id;
echo "Client $conn->resourceId assigned to the conversation : $conversation_id\n";
}
public function onPublish(ConnectionInterface $conn, $conversation_id, $event, array $exclude, array $eligible){
// How to get $nb_clients ?
echo "$nb_clients User(s) in conversation";
echo "Message sent to $conversation_id : $event";
// ...
$message = $event;
// Send data to conversation
$this->conversationId->broadcast($message);
}
}
那么在给定的代码中,如何得到$nb_clients?
更新:
我想我开始看到解决方案了。
这是我的第二次尝试:
class Chat implements WampServerInterface
{
protected $conversation = array();
public function onSubscribe(ConnectionInterface $conn, $conversation_id){
$conversation_id = (string) $conversation_id;
if(!array_key_exists($conversation_id, $this->conversation)){
$this->conversation[$conversation_id] = 1;
}
else{
$this->conversation[$conversation_id]++;
}
echo "{$this->conversation[$conversation_id]}\n";
echo "Client $conn->resourceId assigned to the conversation : {$conversation_id}\n";
}
public function onUnSubscribe(ConnectionInterface $conn, $conversation_id){
// Foreach conversations or given conversation remove one client
$this->conversation[$conversation_id]--;
echo "$this->conversation[$conversation_id]\n";
echo "Client $conn->resourceId left the conversation : $conversation_id\n";
}
public function onOpen(ConnectionInterface $conn){
echo "New connection! ({$conn->resourceId})\n";
}
public function onClose(ConnectionInterface $conn){
$this->onUnsubscribe($conn, $this->conversation);
echo "Connection closed!\n";
}
public function onCall(ConnectionInterface $conn, $id, $fn, array $params){
}
public function onPublish(ConnectionInterface $conn, $conversation_id, $event, array $exclude, array $eligible){
$conversation_id = (string) $conversation_id;
$nb_clients = $this->conversation[$conversation_id]
echo "$nb_clients User(s) in conversation";
echo "Message sent to $conversation_id : $event";
// ...
$message = $event;
// Send data to conversation
$this->conversation[$conversation_id]->broadcast($message);
}
public function onError(ConnectionInterface $conn, \Exception $e){
echo "An error has occurred: {$e->getMessage()}\n";
$conn->close();
}
}
有什么想法可以正常工作吗?它实际上似乎有效,但我仍然不确定它是否是最佳解决方案。我实际上是从 Ratchet github.
中得到灵感的
onPublish
的第二个参数是一个 Topic
对象 (Interface WampServerInterface):
onPublish( Ratchet\ConnectionInterface $conn,
string|Ratchet\Wamp\Topic $topic, string $event, array $exclude, array
$eligible )
所以根据Ratchet's documentation,您可以使用主题上的count()
方法来获取订阅者:
$nb_clients = $conversation_id->count();
我想知道有多少客户实际订阅了聊天室/对话。
更准确地说,我只想知道是否有超过 1 个客户端。 (聊天室实际上是两个用户之间的私人对话)。
一次只有一个聊天室/私人对话(每位用户)。
class Chat implements WampServerInterface
{
protected $conversationId;
public function __construct(){
$this->conversationId = null;
}
public function onSubscribe(ConnectionInterface $conn, $conversation_id){
$this->conversationId = $conversation_id;
echo "Client $conn->resourceId assigned to the conversation : $conversation_id\n";
}
public function onPublish(ConnectionInterface $conn, $conversation_id, $event, array $exclude, array $eligible){
// How to get $nb_clients ?
echo "$nb_clients User(s) in conversation";
echo "Message sent to $conversation_id : $event";
// ...
$message = $event;
// Send data to conversation
$this->conversationId->broadcast($message);
}
}
那么在给定的代码中,如何得到$nb_clients?
更新:
我想我开始看到解决方案了。
这是我的第二次尝试:
class Chat implements WampServerInterface
{
protected $conversation = array();
public function onSubscribe(ConnectionInterface $conn, $conversation_id){
$conversation_id = (string) $conversation_id;
if(!array_key_exists($conversation_id, $this->conversation)){
$this->conversation[$conversation_id] = 1;
}
else{
$this->conversation[$conversation_id]++;
}
echo "{$this->conversation[$conversation_id]}\n";
echo "Client $conn->resourceId assigned to the conversation : {$conversation_id}\n";
}
public function onUnSubscribe(ConnectionInterface $conn, $conversation_id){
// Foreach conversations or given conversation remove one client
$this->conversation[$conversation_id]--;
echo "$this->conversation[$conversation_id]\n";
echo "Client $conn->resourceId left the conversation : $conversation_id\n";
}
public function onOpen(ConnectionInterface $conn){
echo "New connection! ({$conn->resourceId})\n";
}
public function onClose(ConnectionInterface $conn){
$this->onUnsubscribe($conn, $this->conversation);
echo "Connection closed!\n";
}
public function onCall(ConnectionInterface $conn, $id, $fn, array $params){
}
public function onPublish(ConnectionInterface $conn, $conversation_id, $event, array $exclude, array $eligible){
$conversation_id = (string) $conversation_id;
$nb_clients = $this->conversation[$conversation_id]
echo "$nb_clients User(s) in conversation";
echo "Message sent to $conversation_id : $event";
// ...
$message = $event;
// Send data to conversation
$this->conversation[$conversation_id]->broadcast($message);
}
public function onError(ConnectionInterface $conn, \Exception $e){
echo "An error has occurred: {$e->getMessage()}\n";
$conn->close();
}
}
有什么想法可以正常工作吗?它实际上似乎有效,但我仍然不确定它是否是最佳解决方案。我实际上是从 Ratchet github.
中得到灵感的onPublish
的第二个参数是一个 Topic
对象 (Interface WampServerInterface):
onPublish( Ratchet\ConnectionInterface $conn, string|Ratchet\Wamp\Topic $topic, string $event, array $exclude, array $eligible )
所以根据Ratchet's documentation,您可以使用主题上的count()
方法来获取订阅者:
$nb_clients = $conversation_id->count();