您好,登錄后才能下訂單哦!
這篇文章主要介紹workerman實現聊天系統的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
安裝 thinkphp5.1
composer create-project topthink/think=5.1.x-dev tp5andWorkerman
安裝 think-worker
composer require topthink/think-worker=2.0.*
直接安裝 Workerman
composer require workerman/workerman
(2)我們先看 think-worker 的代碼
config/worker_server.php
先來個服務器廣播消息的示例,每10秒鐘定時廣播一條消息
'onWorkerStart' => function ($worker) { \Workerman\Lib\Timer::add(10, function()use($worker){ // 遍歷當前進程所有的客戶端連接,發送自定義消息 foreach($worker->connections as $connection){ $send['name'] = '系統信息'; $send['content'] = '這是一個定時任務信息'; $send['time'] = time(); $connection->send(json_encode($send)); } });}
但是在 onMessage 時,我們獲取不到 $worker 對象,所以無法廣播消息。
'onMessage' => function ($connection, $data) { $origin = json_decode($data,true); $send['name'] = '廣播數據'; $send['content'] = $origin['content']; $message = json_encode($send); foreach($worker->connections as $connection) { $connection->send($message); }}
修改框架內部的代碼:/vendor/topthink/think-worker/src/command/Server.php,主要是把 onMessage 方法自己加進去
use() 就是把外部變量傳遞到函數內部使用,或者使用global $worker
$worker = new Worker($socket, $context);$worker->onMessage = function ($connection, $data)use($worker) { $origin = json_decode($data,true); $send['name'] = '廣播數據'; $send['content'] = $origin['content']; $send['uid'] = $connection->uid; $message = json_encode($send); foreach($worker->connections as $connection) { $connection->send($message); }};
這樣,我們就能夠獲取到 $worker 對象了
$worker->onMessage = function ($connection, $data)use($worker) { ... }
(3)$connection 綁定 uid
其實你早都已經看出,$worker->connections 獲取到的是當前所有用戶的連接,connections 即為其中一個鏈接。
記錄websocket連接時間:
$worker->onConnect = function ($connection) { $connection->login_time = time();};
獲取websocket連接時間:
$worker->onMessage = function ($connection, $data)use($worker) { $login_time = $connection->login_time;};
由此可以看出,我們可以把數據綁定到 $connection 連接的一個屬性,例如:
$connection->uid = $uid;
當JavaScript端在連接websocket服務器成功后,即把自己的 uid 立馬發送服務端綁定:
var uid = 600;ws.onopen = function() { ws.send(JSON.stringify({bind:'yes',uid:uid}));};
$worker->onMessage = function ($connection, $data)use($worker) { $origin = json_decode($data,true); if(array_key_exists('bind',$origin)){ $connection->uid = $origin['uid']; }};
(4)單播發送消息,即自定義發送
$worker->onMessage = function ($connection, $data)use($worker) { $origin = json_decode($data,true); $sendTo = $origin['sendto']; // 需要發送的對方的uid $content = $origin['content']; // 需要發送到對方的內容 foreach($worker->connections as $connection) { if( $connection->uid == $sendTo){ $connection->send($content); } }};
到此,已經完成基于 Workerman 的自定義對象發送消息。
由于該php文件存放于composer中,只需要把該文件復制出來,放到application/command,修改命名空間,即可保存到自己的項目中
(5)存儲聊天記錄
使用 Redis 做緩存對服務器影響較小,且基本不影響響應時間
1、把聊天記錄存儲到 Redis 中,使用列表存儲
$message = json_decode($data,true); // $data為接收到的數據 $redis_instance = Cache::handler(); // TP5代碼獲取Cache實例 $redis_instance->lPush('message',json_encode($message,JSON_UNESCAPED_UNICODE));
2、某些情況下,當用戶第一次(或刷新)聊天頁面時,顯示最近10條記錄
$redis_instance = Cache::handler(); // TP5代碼獲取Cache實例 $worker->onConnect = function ($connection)use($redis_instance) { $length = $redis_instance->lLen('message'); if($length > 0){ $send['recently'] = array_reverse($redis_instance->lRange('message', 0, 10)); $send['state'] = 200; $message = json_encode($send,JSON_UNESCAPED_UNICODE); $connection->send($message); }else{ $send['state'] = 204; $send['recently'] = []; $send['msg'] = '暫無聊天記錄'; $message = json_encode($send,JSON_UNESCAPED_UNICODE); $connection->send($message); } };
javascript獲取到 recently 最近聊天記錄時處理:
ws.onmessage = function(e) { var your = JSON.parse(e.data); if(your.recently){ // 初次打開頁面,渲染最近10條聊天記錄 $.each(your.recently,function(index,item){ item = JSON.parse(item); // TODO:遍歷渲染頁面 }); }else{ // 處理其他消息 msglist.append('<li>'+your.content+'</li>'); } };
以上是“workerman實現聊天系統的方法”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。