php - Laravel + Ratchet : Pushing notifications to specific clients

标签 php laravel notifications pusher ratchet

我是 websockets 的新手,我想在我的 Laravel 应用程序中实现这样的服务。
我已经阅读了几个关于这个主题的帖子/页面,但没有一个解释我需要做什么。所有这些都展示了如何创建一个“Echo”websocket 服务器,其中服务器只响应从客户端收到的消息,这不是我的情况。
作为起始基础,我使用了以下提供的代码:
https://medium.com/@errohitdhiman/real-time-one-to-one-and-group-chat-with-php-laravel-ratchet-websocket-library-javascript-and-c64ba20621ed
从命令行或其他控制台运行 websocket 服务器的位置。服务器有自己的类来定义它并导入 WebSocketController 类(MessageComponentInterface),其中包含经典的 WebSocket 服务器事件(onOpen、onMessage、onClose、onError)。
一切正常,但是,我如何“告诉”WebSocket 服务器从另一个类(也属于另一个命名空间)向特定连接(客户端)发送消息?这是通知或事件的情况,其中必须将新的 Web 内容发送到该特定客户端。来自客户端的途中没有订阅或发布。
正如@Alias 在他的帖子中所问 Ratchet PHP - Push messaging service我显然无法创建 Websocket 服务器或其事件管理类的新实例,那么向客户端发送内容或消息的最佳方法是什么?
正如你们所看到的,通信只有一种方式:从 WebSocket 服务器到客户端,而不是相反。
我已经为此准备了一个通知类和一个监听器类,但是,我仍然不知道如何通过 handle() 方法解决与客户端的通信:

namespace App\Listeners;

use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Events\NotificationSent;
use Illuminate\Queue\InteractsWithQueue;

class LogNotification
{
    /**
     * Create the event listener.
     *
     * @return void
     */
    public function __construct()
    {
       //
    }

    /**
     * Handle the event.
     *
     * @param  NotificationSent  $event
     * @return void
     */
    public function handle(NotificationSent $event)
    {
       // Can content or message be sent to the client from here? how?
    }
}

最佳答案

好的,经过大量学习和研究,我可以在以下位置发布类似问题的答案:
How to send a message to specific websocket clients with symfony ratchet?
根据我在此线程的第二条评论中所写的内容,这是我找到的解决方案。
我安装了 cboden/Ratchet 使用 composer 为 websocket 服务器打包。
当后端触发事件时,我需要向用户/用户组发送通知,或更新 UI。
我所做的是这样的:
1) 已安装 amphp/websocket-client 使用 Composer 打包。
2) 创建一个单独的类以实例化一个可以连接到 websocket 服务器的对象,发送所需的消息并断开连接:

namespace App;
use Amp\Websocket\Client;

class wsClient {

   public function __construct() {
      //
   }


   // Creates a temporary connection to the WebSocket Server
   // The parameter $to is the user name the server should reply to.
   public function connect($msg) {
      global $x;
      $x = $msg;
      \Amp\Loop::run(
         function() {
            global $x;
            $connection = yield Client\connect('ws://ssa:8090');
            yield $connection->send(json_encode($x));
            yield $connection->close();
            \Amp\Loop::stop();
         }
      );
   }
}
3) onMessage()事件,在 webSocket 服务器的处理程序类中,如下所示:
   /**
    * @method onMessage
    * @param  ConnectionInterface $conn
    * @param  string              $msg
    */   
   public function onMessage(ConnectionInterface $from, $msg) {
      $data = json_decode($msg);
      // The following line is for debugging purposes only
      echo "   Incoming message: " . $msg . PHP_EOL;
      if (isset($data->username)) {
         // Register the name of the just connected user.
         if ($data->username != '') {
            $this->names[$from->resourceId] = $data->username;
         }
      }
      else {
         if (isset($data->to)) {
            // The "to" field contains the name of the users the message should be sent to.
            if (str_contains($data->to, ',')) {
               // It is a comma separated list of names.
               $arrayUsers = explode(",", $data->to);
               foreach($arrayUsers as $name) {
                  $key = array_search($name, $this->names);
                  if ($key !== false) {
                     $this->clients[$key]->send($data->message);
                  }
               }
            }
            else {
               // Find a single user name in the $names array to get the key.
               $key = array_search($data->to, $this->names);
               if ($key !== false) {
                  $this->clients[$key]->send($data->message);
               }
               else {
                  echo "   User: " . $data->to . " not found";
               }
            }
         } 
      }

      echo "  Connected users:\n";
      foreach($this->names as $key => $data) {
         echo "   " . $key . '->' . $data . PHP_EOL;
      }
   }
如您所见,您希望 websocket 服务器将消息发送到的用户在 $msg 参数中指定为字符串 ($data->to) 以及消息本身 ($data->message) .这两件事是 JSON 编码的,因此参数 $msg 可以被视为一个对象。
4) 在客户端(布局 Blade 文件中的 javascript),当客户端连接时,我将用户名发送到 websocket 服务器:
var currentUser = "{{ Auth::user()->name }}";
socket = new WebSocket("ws://ssa:8090");

socket.onopen = function(e) {
   console.log(currentUser + " has connected to websocket server");
   socket.send(JSON.stringify({ username: currentUser }));
};

socket.onmessage = function(event) {
   console.log('Data received from server: ' + event.data);
};
因此,用户名及其连接号保存在 websocket 服务器中。
5) onOpen()处理程序类中的方法如下所示:
   public function onOpen(ConnectionInterface $conn) {
      // Store the new connection to send messages to later
      $this->clients[$conn->resourceId] = $conn;
      echo " \n";
      echo "  New connection ({$conn->resourceId}) " . date('Y/m/d h:i:sa') . "\n";
   }
每次客户端连接到 websocket 服务器时,它的连接号或资源 ID 都存储在一个数组中。因此,用户名存储在一个数组 ($names) 中,而 key 存储在另一个数组 ($clients) 中。
6) 最后,我可以在我的项目中的任何位置创建 PHP websocket 客户端 (wsClient) 的实例,以将任何数据发送给任何用户:
public function handle(NotificationSent $event) {
    $clientSocket = new wsClient();
    $clientSocket->connect(array('to'=>'Anatoly,Joachim,Caralampio', 'message'=>$event->notification->data));
}
在这种情况下,我使用的是通知事件监听器的 handle() 方法。
好的,这适用于想知道如何从 PHP websocket 服务器(AKA 回显服务器)向一个特定客户端或一组客户端发送消息的任何人。

关于php - Laravel + Ratchet : Pushing notifications to specific clients,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67381325/

相关文章:

php - 有没有一种简单的方法可以将渲染网页中的部分保存为图像?

php - Laravel - 使用 onclick 从复选框提交表单

php - Laravel Firebase cURL 错误 60 : SSL certificate problem: unable to get local issuer certificate

php - 无法使用 phpseclib 在 MySQL 中运行 SQL 查询

javascript - 将整个表行数据提取到 javascript 变量中

c# - 当某事订阅事件/委托(delegate)时有什么方法可以得到通知?

ios - 了解 NSUserDefaults 和 NSUserDefaultsDidChangeNotification

ios - 如何安排一周中特定两天的本地通知?

php - 无法在 php 套接字中循环

php - 使用按钮类型 ="submit"而不是输入 - laravel