共计 2359 个字符,预计需要花费 6 分钟才能阅读完成。
实现一个可以主动触发消息推送的功能,这个可以实现向模板消息那个,给予所有成员发送自定义消息,而不需要通过客户端发送消息,服务端上 message 中监听传送的消息进行做相对于的业务逻辑。
主动消息推送实现
平常我们采用 swoole 来写 WebSocket 服务可能最多的用到的是 open,message,close 这三个监听状态,但是万万没有看下下面的 onRequest 回调的使用,没错,解决这次主动消息推送的就是需要用 onRequest 回调。
官方文档:正因为 swoole_websocket_server 继承自 swoole_http_server,所以在 websocket 中有 onRequest 回调。
详细实现:
# 这里是一个 laravel 中 Commands
# 运行 php artisan swoole start 即可运行
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
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 SendMessage\n");
});
// 监听 WebSocket 主动推送消息事件
$this->ws->on('request', function ($request, $response) {$scene = $request->post['scene']; // 获取值
$this->info("client is PushMessage\n".$scene);
});
// 监听 WebSocket 连接关闭事件
$this->ws->on('close', function ($ws, $fd) {$this->info("client is close\n");
});
$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 回调特别适用于需要在控制器中调用的推送消息,比如模板消息之类,在控制器中调用。
大部分 phper 在进阶的时候总会遇到一些问题和瓶颈,业务代码写多了没有方向感,不知道该从那里入手去提升,对此我整理了一些资料,包括但不限于:分布式架构、高可扩展、高性能、高并发、服务器性能调优、TP6,laravel,YII2,Redis,Swoole、Swoft、Kafka、Mysql 优化、shell 脚本、Docker、微服务、Nginx 等多个知识点高级进阶干货需要的可以免费分享给大家,需要 请戳这里
正文完