Events.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. namespace addons\shopro\library\chat;
  3. /**
  4. * This file is part of workerman.
  5. *
  6. * Licensed under The MIT License
  7. * For full copyright and license information, please see the MIT-LICENSE.txt
  8. * Redistributions of files must retain the above copyright notice.
  9. *
  10. * @author walkor<walkor@workerman.net>
  11. * @copyright walkor<walkor@workerman.net>
  12. * @link http://www.workerman.net/
  13. * @license http://www.opensource.org/licenses/mit-license.php MIT License
  14. */
  15. /**
  16. * 用于检测业务代码死循环或者长时间阻塞等问题
  17. * 如果发现业务卡死,可以将下面declare打开(去掉//注释),并执行php start.php reload
  18. * 然后观察一段时间workerman.log看是否有process_timeout异常
  19. */
  20. //declare(ticks=1);
  21. use GatewayWorker\Lib\Gateway;
  22. use Workerman\Lib\Timer;
  23. /**
  24. * 主逻辑
  25. * 主要是处理 onConnect onMessage onClose 三个方法
  26. * onConnect 和 onClose 如果不需要可以不用实现并删除
  27. */
  28. class Events
  29. {
  30. public static function onWorkerStart($businessWorker)
  31. {
  32. // 5 秒同步一下 客服当前接待客户数,计算客服忙碌度
  33. Timer::add(5, function () {
  34. // 获取当前连接的客服
  35. $clientIds = Gateway::getClientIdListByGroup(Online::getGrouponName('online_customer_service'));
  36. foreach ($clientIds as $client_id) {
  37. $session = Gateway::getSession($client_id);
  38. $customerService = $session['user'];
  39. $customer_service_id = $session['uid'] ?? 0; // 客服 id
  40. if ($customer_service_id) {
  41. // 当前客服分组名
  42. $customerServiceGroupName = Online::getGrouponName('customer_service_user', ['customer_service_id' => $customer_service_id]);
  43. // 获取并设置当前客服正在服务的用户
  44. $customerService['current_num'] = Gateway::getClientIdCountByGroup($customerServiceGroupName);
  45. $customerService['busy_percent'] = $customerService['current_num'] / $customerService['max_num']; // 繁忙程度,越大越繁忙
  46. Gateway::updateSession($client_id, ['user' => $customerService]);
  47. }
  48. }
  49. });
  50. // 初始化上传配置
  51. Online::uploadConfigInit();
  52. }
  53. public static function onWebSocketConnect($client_id, $data)
  54. {
  55. // 存储当前请求信息
  56. $_SESSION['server'] = $data['server'] ?? [];
  57. $request = $data['get'];
  58. $linkerData = [];
  59. $linkerData['identify'] = $request['identify'] ?? '';
  60. $linkerData['session_id'] = $request['session_id'] ?? '';
  61. $linkerData['token'] = $request['token'] ?? '';
  62. $linkerData['expire_time'] = $request['expire_time'] ?? '';
  63. $linkerData['customer_service_id'] = $request['customer_service_id'] ?? 0;
  64. if (empty($linkerData['identify'])) {
  65. // 缺少参数
  66. Sender::error($client_id, [
  67. 'type' => 'connect_error',
  68. 'msg' => '连接错误'
  69. ]);
  70. Gateway::closeClient($client_id);
  71. return false;
  72. }
  73. // 连接者
  74. $linker = new Linker($client_id, $linkerData);
  75. if ($linker->checkAndBind()) {
  76. // init
  77. $linker->init();
  78. }
  79. }
  80. /**
  81. * 当客户端发来消息时触发
  82. * @param int $client_id 连接id
  83. * @param mixed $message 具体消息
  84. */
  85. public static function onMessage($client_id, $requestData)
  86. {
  87. $requestData = json_decode($requestData, true);
  88. $identify = $_SESSION['identify'] ?? '';
  89. $type = $requestData['type'] ?? ''; // 消息类型
  90. $data = $requestData['data'] ?? []; // 要做的事件,参数
  91. $message = $requestData['message'] ?? []; // 发送的消息
  92. if (empty($type) || empty($identify)) {
  93. // 缺少参数
  94. Sender::error($client_id, [
  95. 'type' => 'params_error',
  96. 'msg' => '参数错误'
  97. ]);
  98. Gateway::closeClient($client_id);
  99. return false;
  100. }
  101. if ($type == 'ping') {
  102. // 心跳检测,直接返回
  103. return true;
  104. }
  105. if ($identify == 'customer_service') {
  106. $session_id = $requestData['session_id'] ?? ''; // 如果是客服,接受传入的 session_id
  107. } else {
  108. $session_id = $_SESSION['uid'] ?? '';
  109. }
  110. $linkerData = [
  111. 'identify' => $identify,
  112. ];
  113. // 连接者
  114. $linker = new Linker($client_id, $linkerData);
  115. $linker->message($session_id, $type, $message, $data);
  116. }
  117. /**
  118. * 当用户断开连接时触发
  119. * @param int $client_id 连接id
  120. */
  121. public static function onClose($client_id)
  122. {
  123. $identify = $_SESSION['identify'] ?? '';
  124. if (empty($identify)) {
  125. // 缺少参数
  126. Sender::error($client_id, [
  127. 'type' => 'params_error',
  128. 'msg' => '参数错误'
  129. ]);
  130. Gateway::closeClient($client_id);
  131. return false;
  132. }
  133. // 只能通过 $identify 获取 session
  134. $linkerData = [
  135. 'identify' => $identify,
  136. ];
  137. // 连接者
  138. $linker = new Linker($client_id, $linkerData);
  139. $linker->close($client_id);
  140. }
  141. }