用laravel+Swoole實現websocket主動訊息推播

2020-07-16 10:05:52
近來有個需求:想實現一個可以主動觸發訊息推播的功能,這個可以實現向模板訊息那個,給予所有成員傳送自定義訊息,而不需要通過用戶端傳送訊息,伺服器端上message中監聽傳送的訊息進行做相對於的業務邏輯。

主動訊息推播實現

平常我們採用 swoole 來寫 WebSocket 服務可能最多的用到的是open,message,close這三個監聽狀態,但是萬萬沒有看下下面的onRequest回撥的使用,沒錯,解決這次主動訊息推播的就是需要用onRequest回撥。

官方文件:正因為swoole_websocket_server繼承自swoole_http_server,所以在 websocket 中有onRequest回撥。

詳細實現:

# 這裡是一個laravel中Commands
# 執行php artisan swoole start 即可執行
<?php

namespace AppConsoleCommands;

use IlluminateConsoleCommand;
use swoole_websocket_server;

class Swoole extends Command
{
    public $ws;
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'swoole {action}';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Active Push Message';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $arg = $this->argument('action');
        switch ($arg) {
            case 'start':
                $this->info('swoole server started');
                $this->start();
                break;
            case 'stop':
                $this->info('swoole server stoped');
                break;
            case 'restart':
                $this->info('swoole server restarted');
                break;
        }
    }

    /**
     * 啟動Swoole
     */
    private function start()
    {
        $this->ws = new swoole_websocket_server("0.0.0.0", 9502);
        //監聽WebSocket連線開啟事件
        $this->ws->on('open', function ($ws, $request) {
        });
        //監聽WebSocket訊息事件
        $this->ws->on('message', function ($ws, $frame) {
            $this->info("client is SendMessagen");
        });
        //監聽WebSocket主動推播訊息事件
        $this->ws->on('request', function ($request, $response) {
            $scene = $request->post['scene'];       // 獲取值
            $this->info("client is PushMessagen".$scene);
        });
        //監聽WebSocket連線關閉事件
        $this->ws->on('close', function ($ws, $fd) {
            $this->info("client is closen");
        });
        $this->ws->start();
    }
}

前面說的是 swoole 中onRequest的實現,下面實現下在控制器中主動觸發onRequest回撥。實現方法就是我們熟悉的curl請求。

# 呼叫activepush方法以後,會在cmd中列印出 
# client is PushMessage 主動推播訊息 字眼
    /**
     * CURL請求
     * @param $data
     */
    public function curl($data)
    {
        $curl = curl_init();
        curl_setopt($curl, CURLOPT_URL, "http://127.0.0.1:9502");
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($curl, CURLOPT_HEADER, 1);
        curl_setopt($curl, CURLOPT_POST, 1);
        curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
        curl_exec($curl);
        curl_close($curl);
    }
    
    /**
     * 主動觸發
     */
    public function activepush()
    {
        $param['scene'] = '主動推播訊息';
        $this->curl($param);            // 主動推播訊息

用途
onRequest 回撥特別適用於需要在控制器中呼叫的推播訊息,比如模板訊息之類,在控制器中呼叫。

以上就是用laravel+Swoole實現websocket主動訊息推播的詳細內容,更多請關注TW511.COM其它相關文章!