feat: 优化 SendCode 类,增加 Guzzle 客户端单例复用,提升性能
This commit is contained in:
parent
73d6a5f190
commit
e15df4e3c7
|
@ -12,6 +12,29 @@ class SendCode
|
|||
{
|
||||
|
||||
protected static $token = 'druid_ccefa62b-243a-4bdb-8460-89f3b36e79f8';
|
||||
//单例复用http客户端
|
||||
public static $client = null;
|
||||
/**
|
||||
* 获取 Guzzle 客户端
|
||||
* 用于复用 客户端常驻内存
|
||||
*
|
||||
* @return object
|
||||
*/
|
||||
public static function get_client()
|
||||
{
|
||||
if (self::$client == null) {
|
||||
self::$client = new Client([
|
||||
'curl' => [
|
||||
CURLOPT_FRESH_CONNECT => false,
|
||||
CURLOPT_FORBID_REUSE => false,
|
||||
],
|
||||
'headers' => [
|
||||
'Connection' => 'keep-alive',
|
||||
],
|
||||
]);
|
||||
}
|
||||
return self::$client;
|
||||
}
|
||||
/**
|
||||
* 发送验证码
|
||||
* code 状态码 0 成功 1 token无效或已过期 2 端口不足 3 账号已存在 int
|
||||
|
@ -19,7 +42,7 @@ class SendCode
|
|||
*/
|
||||
public static function send_code($phone)
|
||||
{
|
||||
$client = new Client(); // 创建 Guzzle 客户端
|
||||
$client = self::get_client(); // 创建 Guzzle 客户端
|
||||
// 请求数据
|
||||
$data = [
|
||||
"token" => self::$token,
|
||||
|
@ -42,7 +65,7 @@ class SendCode
|
|||
*/
|
||||
public static function get_code($phone)
|
||||
{
|
||||
$client = new Client(); // 创建 Guzzle 客户端
|
||||
$client = self::get_client();
|
||||
|
||||
// 请求数据
|
||||
$data = [
|
||||
|
@ -66,12 +89,12 @@ class SendCode
|
|||
* code 0 成功 1token无效 2WS号不存在
|
||||
* status 当code=0时返回,0表示在线 1表示离线
|
||||
* 返回 0在线 1离线 2 token无效 3 ws号不存在
|
||||
* 对象注入解决tcp 复用问题
|
||||
*/
|
||||
public static function get_ws_status($phone)
|
||||
{
|
||||
|
||||
$client = new Client(); // 创建 Guzzle 客户端
|
||||
|
||||
$client = self::get_client();
|
||||
|
||||
$url = "https://dx1.rocketgo.vip/ex-api/biz/api/wsStatus?wsNumber=" . $phone . "&token=".self::$token;
|
||||
// 发送 POST 请求
|
||||
|
@ -99,7 +122,7 @@ class SendCode
|
|||
public static function delWS($phone)
|
||||
{
|
||||
|
||||
$client = new Client(); // 创建 Guzzle 客户端
|
||||
$client = self::get_client();
|
||||
|
||||
// 请求数据
|
||||
$data = [
|
||||
|
|
|
@ -8,7 +8,7 @@ use app\model\UserPhone;
|
|||
use app\dao\UserRewardDao;
|
||||
use support\Log;
|
||||
use Workerman\Crontab\Crontab;
|
||||
|
||||
use GuzzleHttp\Client;
|
||||
/**
|
||||
* 查询用户是否在线类
|
||||
*/
|
||||
|
@ -20,7 +20,6 @@ class Task2
|
|||
new Crontab('0 */1 * * * *', function () {
|
||||
$phones = UserPhone::where('status' ,'!=', 2)->get();
|
||||
$start_time = time();
|
||||
|
||||
foreach ($phones as $key => $value) {
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue