User.php 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <?php
  2. namespace addons\shopro\library\chat\linker;
  3. use app\common\library\Auth;
  4. use addons\shopro\library\chat\Online;
  5. use addons\shopro\library\chat\Sender;
  6. use GatewayWorker\Lib\Gateway;
  7. use Workerman\Lib\Timer;
  8. class User
  9. {
  10. public $linker = null; // addons\shopro\library\customerservice\Linker
  11. public $identify = 'user';
  12. public $session_id = null; // 前端用户标识
  13. public $client_id = null;
  14. public $user = null; // 当前 fastadmin 用户
  15. public $chatUser = null; // 当前用户对应的顾客表(chat_user) 信息
  16. public function __construct($linker, $client_id, $data)
  17. {
  18. // 初始化获取当前连接着身份
  19. $this->linker = $linker;
  20. $this->client_id = $client_id; // 当前 client_id
  21. if (isset($_SESSION['uid']) && !empty($_SESSION['uid'])) {
  22. $this->session_id = $_SESSION['uid'] ?? '';
  23. $this->user = $_SESSION['user'] ?? null;
  24. } else {
  25. $token = $data['token'] ?? ''; // fastadmin token
  26. $this->session_id = $data['session_id'] ?? ''; // session_id 如果没有,则后端生成
  27. // 根据 token 获取对应的 fastadmin 用户
  28. if ($token) {
  29. $user = Online::checkUser($token);
  30. if ($user) {
  31. $this->user = $user;
  32. }
  33. $_SESSION['user'] = $this->user;
  34. }
  35. // 初始化连接,需要获取 session_id
  36. if (!$this->session_id) {
  37. // 如果没有 session_id
  38. if ($this->user) {
  39. // 如果存在 user
  40. $chatUser = Online::getChatUserByUserId($this->user['id']);
  41. $this->session_id = $chatUser ? $chatUser['session_id'] : '';
  42. }
  43. }
  44. if (!$this->session_id) {
  45. // 如果依然没有 session_id, 随机生成 session_id
  46. $this->session_id = md5(time() . mt_rand(1000000, 9999999));
  47. }
  48. }
  49. // 更新顾客用户信息
  50. $this->chatUser = Online::updateChatUser($this->session_id, $this->user);
  51. $this->chatUser['status'] = 1; // 用户在线状态:在线
  52. $_SESSION['chat_user'] = $this->chatUser; // 转为数组
  53. }
  54. /**
  55. * 检测并绑定 Uid
  56. */
  57. public function checkAndBind()
  58. {
  59. if (!$this->session_id) {
  60. Gateway::closeClient($this->client_id);
  61. return false;
  62. }
  63. // 绑定 uid
  64. Gateway::bindUid($this->client_id, Online::getUId($this->session_id, 'user'));
  65. $_SESSION['uid'] = $this->session_id;
  66. $_SESSION['user_id'] = $this->user ? $this->user['id'] : 0;
  67. $_SESSION['user'] = $this->user;
  68. $_SESSION['identify'] = $this->identify;
  69. $_SESSION['customer_service_id'] = 0; // 分配的客服id
  70. $_SESSION['customer_service'] = []; // 分配的客服
  71. // 加入在线用户组
  72. Gateway::joinGroup($this->client_id, Online::getGrouponName('online_user'));
  73. return true;
  74. }
  75. /**
  76. * 初始化用户
  77. */
  78. public function init()
  79. {
  80. $user_id = $this->user ? $this->user['id'] : 0;
  81. // 用户初始化成功
  82. Sender::success($this->client_id, [
  83. 'type' => 'init',
  84. 'msg' => '连接成功',
  85. 'data' => [
  86. 'client_id' => $this->client_id,
  87. 'session_id' => $this->session_id
  88. ]
  89. ]);
  90. if ($user_id) {
  91. // 处理用户登录
  92. Online::sessionUserSave($this->user, $this->session_id);
  93. }
  94. // 分配客服
  95. $currentCustomerService = Online::allocatCustomerService($this->session_id, $user_id);
  96. if ($currentCustomerService) {
  97. // 记录客服信息,并将用户加入客服组
  98. Online::bindCustomerService($this->client_id, $currentCustomerService, 'user');
  99. // 通知用户已连接上客服
  100. $msg = '您好,客服 ' . $currentCustomerService['name'] . " 为您服务";
  101. Sender::successBySessionId($this->session_id, [
  102. 'type' => 'access',
  103. 'msg' => '客服接入',
  104. 'data' => [
  105. 'message' => [
  106. 'message_type' => 'system',
  107. 'message' => $msg,
  108. 'createtime' => time()
  109. ],
  110. 'customer_service' => $currentCustomerService
  111. ]
  112. ]);
  113. // 通知所有客服用户上线
  114. Sender::userOnline($this->session_id, $this->chatUser);
  115. // 通知所有客服,用户被接入,要把当前用户从别的客服的回话中列表移除
  116. Sender::userAccessed($this->session_id, $currentCustomerService);
  117. // 通知新的客服,有新的用户接入
  118. Sender::userAccess($currentCustomerService, $this->session_id, 'user');
  119. } else {
  120. Sender::success($this->client_id, [
  121. 'type' => 'waiting',
  122. 'msg' => '客服不在线',
  123. 'data' => [
  124. 'message' => [
  125. 'message_type' => 'system',
  126. 'message' => '当前没有客服在线,请耐心等待客服接入',
  127. 'createtime' => time()
  128. ]
  129. ]
  130. ]);
  131. // 加入等待分配客服分组
  132. Online::bindWaiting($this->client_id);
  133. }
  134. }
  135. /**
  136. * 消息处理
  137. */
  138. public function message ($session_id, $type, $message, $data)
  139. {
  140. $customerService = $_SESSION['customer_service'];
  141. $customer_service_id = $customerService ? $customerService['id'] : 0;
  142. if ($type == 'message') {
  143. // 用户发来消息,通知当前连接的客服
  144. Sender::messageByCustomerServiceId($customer_service_id, [
  145. 'type' => 'message',
  146. 'msg' => '收到消息',
  147. 'data' => [
  148. 'message' => $message,
  149. 'session_id' => $session_id
  150. ]
  151. ]);
  152. Sender::success($this->client_id, [
  153. 'type' => 'receipt',
  154. 'msg' => '发送成功'
  155. ]);
  156. if (isset($data['question_id']) && $data['question_id']) {
  157. Online::questionReply($data['question_id'], [
  158. 'client_id' => $this->client_id,
  159. 'session_id' => $session_id,
  160. 'user_id' => $_SESSION['user_id'],
  161. 'customer_service_id' => $customer_service_id,
  162. 'customer_service' => $customerService
  163. ]);
  164. }
  165. } else if ($type == 'message_list') {
  166. // 获取消息列表
  167. $linker = [
  168. 'session_id' => $session_id,
  169. 'user_id' => $this->user ? $this->user['id'] : 0
  170. ];
  171. // 将客服发给自己的消息标记为 已读
  172. Online::readMessage($linker, 'customer_service');
  173. // 通知用户消息列表
  174. $messageList = Online::messageList($linker, $data);
  175. Sender::success($this->client_id, [
  176. 'type' => 'message_list',
  177. 'msg' => '获取成功',
  178. 'data' => [
  179. 'message_list' => $messageList
  180. ]
  181. ]);
  182. }
  183. }
  184. /**
  185. * 连接关闭
  186. */
  187. public function close ()
  188. {
  189. $customerService = $_SESSION['customer_service'] ?? [];
  190. $session_id = $_SESSION['uid'];
  191. if ($customerService) {
  192. // 存在客服,记录当前服务记录,状态依然还是进行中,
  193. $userData = [
  194. 'user' => $_SESSION['user'],
  195. 'session_id' => $session_id,
  196. 'chat_user' => $_SESSION['chat_user']
  197. ];
  198. $connection = Online::checkOrCreateConnection($userData, $customerService);
  199. // 定时器 10 秒之后 关闭当前用户的所有连接,(规避刷新浏览器问题)
  200. Timer::add(10, function ($session_id, $customerService) {
  201. Online::userRealOffline($session_id, $customerService);
  202. }, [$session_id, $customerService], false);
  203. }
  204. // 多端用户,都离线了,才通知客服,用户离线了
  205. $isUidOnline = Gateway::isUidOnline(online::getUId($session_id, 'user'));
  206. if (!$isUidOnline) {
  207. // 通知所有客服,用户下线
  208. Sender::userOffline($this->session_id);
  209. }
  210. }
  211. }