CustomerService.php 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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 addons\shopro\library\chat\traits\GetLinkerTrait;
  7. use addons\shopro\model\chat\User as ChatUser;
  8. use GatewayWorker\Lib\Gateway;
  9. use app\admin\model\Admin;
  10. use Workerman\Lib\Timer;
  11. class CustomerService
  12. {
  13. use GetLinkerTrait;
  14. public $linker = null; // addons\shopro\library\customerservice\Linker
  15. public $identify = 'customer_service';
  16. public $client_id = null;
  17. public $admin = null; // 当前客服对应的 fastadmin 管理员
  18. public $user = null; // 当前 fastadmin 管理员对应的 客服
  19. public function __construct($linker, $client_id, $data)
  20. {
  21. // 初始化获取当前连接着身份
  22. $this->linker = $linker;
  23. $this->client_id = $client_id; // 当前 client_id
  24. // 获取当前 session
  25. if (isset($_SESSION['uid']) && !empty($_SESSION['uid']))
  26. {
  27. $this->user = $_SESSION['user'];
  28. $this->admin = $_SESSION['admin'];
  29. } else {
  30. $token = $data['token'] ?? '';
  31. $expire_time = $data['expire_time'] ?? 0;
  32. $customer_service_id = $data['customer_service_id'] ?? 0;
  33. $data = Online::checkAdmin($token, $customer_service_id, $expire_time);
  34. if ($data) {
  35. $this->user = $data['customerService'];
  36. $this->admin = $data['admin'];
  37. }
  38. }
  39. }
  40. /**
  41. * 检测并绑定 Uid
  42. */
  43. public function checkAndBind()
  44. {
  45. if (!$this->admin) {
  46. Sender::error($this->client_id, [
  47. 'type' => 'nologin',
  48. 'msg' => '请先登录管理后台'
  49. ]);
  50. Gateway::closeClient($this->client_id);
  51. return false;
  52. }
  53. if (!$this->user) {
  54. Sender::error($this->client_id, [
  55. 'type' => 'no_customer_service',
  56. 'msg' => '您还不是客服'
  57. ]);
  58. Gateway::closeClient($this->client_id);
  59. return false;
  60. }
  61. // 绑定 uid
  62. Gateway::bindUid($this->client_id, Online::getUId($this->user['id'], 'customer_service'));
  63. $_SESSION['uid'] = $this->user['id'];
  64. $_SESSION['user'] = $this->user;
  65. $_SESSION['admin_id'] = $this->admin ? $this->admin['id'] : 0;
  66. $_SESSION['admin'] = $this->admin;
  67. $_SESSION['identify'] = $this->identify;
  68. return true;
  69. }
  70. /**
  71. * 初始化客服
  72. */
  73. public function init() {
  74. $customerService = $this->user;
  75. // 客服上线
  76. Online::customerServiceOnline($this->client_id, $this->user);
  77. }
  78. public function message($session_id, $type, $message, $data)
  79. {
  80. if ($type == 'message') {
  81. // 给用户发消息
  82. Sender::messageBySessionId($session_id, [
  83. 'type' => 'message',
  84. 'msg' => '收到消息',
  85. 'data' => [
  86. 'message' => $message,
  87. 'customer_service' => $_SESSION['user']
  88. ]
  89. ]);
  90. Sender::success($this->client_id, [
  91. 'type' => 'receipt',
  92. 'msg' => '发送成功',
  93. ]);
  94. } else if ($type == 'access') { // 接入
  95. // 客服信息
  96. $customerService = $this->user;
  97. // 接入客户
  98. Online::bindCustomerServiceBySessionId($session_id, $customerService, 'customer_service');
  99. $msg = '您好,客服 ' . $customerService['name'] . " 为您服务";
  100. // 通知用户客服接入
  101. Sender::successBySessionId($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' => $customerService
  111. ]
  112. ]);
  113. // 通知所有客服,这个用户已接入,把这个用户从客服待接入列表删除
  114. Sender::userAccessed($session_id, $customerService);
  115. // 通知客服自己,有新的用户接入
  116. Sender::userAccess($customerService, $session_id, 'customer_service');
  117. } else if ($type == 'transfer') { // 转接
  118. // 当前客服信息
  119. $customerService = $this->user;
  120. $new_customer_service_id = $data['customer_service_id'] ?? 0;
  121. if (!$new_customer_service_id) {
  122. // 没有传入转接客服 id
  123. Sender::error($this->client_id, [
  124. 'type' => 'transfer_error',
  125. 'msg' => '请选择要转接的客服'
  126. ]);
  127. }
  128. // 获取被转接入的客服, 自动只取用户信息,过滤重复
  129. $newCustomerService = Self::onlineCustomerServiceById($new_customer_service_id);
  130. // 不能转接给自己
  131. if ($new_customer_service_id == $customerService['id']) {
  132. // 没有传入转接客服 id
  133. Sender::error($this->client_id, [
  134. 'type' => 'transfer_error',
  135. 'msg' => '您不能转接给自己'
  136. ]);
  137. }
  138. // 转接客户,加入新客服,移除老客服
  139. Online::transferCustomerServiceBySessionId($session_id, $newCustomerService, $customerService, 'customer_service');
  140. // 通知用户客服已切换
  141. $msg = '您好,您的客服已由 ' . $customerService['name'] . " 切换为 " . $newCustomerService['name'];
  142. Sender::successBySessionId($session_id, [
  143. 'type' => 'access',
  144. 'msg' => '新客服接入',
  145. 'data' => [
  146. 'message' => [
  147. 'message_type' => 'system',
  148. 'message' => $msg,
  149. 'createtime' => time()
  150. ],
  151. 'customer_service' => $newCustomerService
  152. ]
  153. ]);
  154. // 通知所有客服,用户被接入(用户接入客服变了,要改变历史里面的当前服务客服)
  155. Sender::userAccessed($session_id, $newCustomerService);
  156. // 通知新的客服,有新的用户接入
  157. Sender::userAccess($newCustomerService, $session_id, 'customer_service');
  158. // 通知当前客服,用户被转接成功
  159. Sender::successByCustomerServiceId($customerService['id'], [
  160. 'type' => 'transfer_success',
  161. 'msg' => '转接成功',
  162. 'data' => [
  163. 'session_id' => $session_id
  164. ]
  165. ]);
  166. } else if ($type == 'message_list') {
  167. // 获取 session_id 身份
  168. $customerUser = ChatUser::where('session_id', $session_id)->find();
  169. // 获取消息列表
  170. $linker = [
  171. 'session_id' => $session_id,
  172. 'user_id' => $customerUser ? $customerUser['user_id'] : 0
  173. ];
  174. // 将用户发给自己的消息标记为 已读
  175. Online::readMessage($linker, 'user');
  176. // 通知用户消息列表
  177. $messageList = Online::messageList($linker, $data);
  178. Sender::success($this->client_id, [
  179. 'type' => 'message_list',
  180. 'msg' => '获取成功',
  181. 'data' => [
  182. 'message_list' => $messageList
  183. ]
  184. ]);
  185. } else if ($type == 'switch_status') {
  186. // 客服信息
  187. $customerService = $this->user;
  188. $status = $data['status'];
  189. switch($status) {
  190. case 'online': // 切换为在线
  191. Online::customerServiceOnline($this->client_id, $customerService);
  192. break;
  193. case 'offline': // 切换为离线
  194. Online::customerServiceOffline($this->client_id, $customerService);
  195. break;
  196. case 'busy': // 切换为忙碌
  197. Online::customerServiceBusy($this->client_id, $customerService);
  198. break;
  199. }
  200. Sender::success($this->client_id, [
  201. 'type' => 'switch_ok',
  202. 'msg' => '切换成功',
  203. 'data' => [
  204. 'status' => $status
  205. ]
  206. ]);
  207. } else if ($type == 'del_user') {
  208. $customerService = $this->user;
  209. $session_id = $data['session_id'];
  210. // 返回删除条数,如果用户刚连上,connection 还不存在,这里result 不做使用
  211. $result = Online::delUserBySessionId($customerService, $session_id);
  212. Sender::delUser($this->client_id, [
  213. 'session_id' => $session_id
  214. ]);
  215. } else if ($type == 'del_all_user') {
  216. $customerService = $this->user;
  217. // 返回删除条数,如果用户刚连上,connection 还不存在,这里result 不做使用
  218. $result = Online::delAllUserBySessionId($customerService);
  219. Sender::delUser($this->client_id);
  220. }
  221. }
  222. public function close()
  223. {
  224. $customer_service_id = $_SESSION['uid'];
  225. $customerService = $_SESSION['user'];
  226. $admin_id = $_SESSION['admin_id'];
  227. // 客服下线,只更新当前连接的在线状态
  228. Online::customerServiceOffline($this->client_id, $customerService);
  229. // 定时器十秒检测,如果客服是真的下线了,更新为真实下线
  230. Timer::add(10, function ($customer_service_id, $customerService) {
  231. Online::customerServiceRealOffline($customer_service_id, $customerService);
  232. }, [$customer_service_id, $customerService], false);
  233. }
  234. }