截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Handler.php 8.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | LikeShop有特色的全开源社交分销电商系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 商业用途务必购买系统授权,以免引起不必要的法律纠纷
  7. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  8. // | 微信公众号:好象科技
  9. // | 访问官网:http://www.likemarket.net
  10. // | 访问社区:http://bbs.likemarket.net
  11. // | 访问手册:http://doc.likemarket.net
  12. // | 好象科技开发团队 版权所有 拥有最终解释权
  13. // +----------------------------------------------------------------------
  14. // | Author: LikeShopTeam-段誉
  15. // +----------------------------------------------------------------------
  16. namespace app\common\websocket;
  17. use app\common\enum\ChatMsgEnum;
  18. use app\common\utils\Redis;
  19. use Swoole\Server;
  20. use Swoole\Websocket\Frame;
  21. use think\App;
  22. use think\Event;
  23. use think\Request;
  24. use think\swoole\Websocket;
  25. use think\swoole\websocket\Room;
  26. class Handler extends Websocket
  27. {
  28. protected $server;
  29. protected $room;
  30. protected $parser;
  31. protected $cache;
  32. protected $prefix;
  33. public function __construct(App $app, Server $server, Room $room, Event $event, Parser $parser, Redis $redis)
  34. {
  35. $this->server = $server;
  36. $this->room = $room;
  37. $this->parser = $parser;
  38. $this->cache = $redis;
  39. $this->prefix = config('default.websocket_prefix');
  40. parent::__construct($app, $server, $room, $event);
  41. }
  42. /**
  43. * @notes open
  44. * @param int $fd
  45. * @param Request $request
  46. * @return bool|mixed|void
  47. * @author 段誉
  48. * @date 2021/12/15 19:13
  49. */
  50. public function onOpen($fd, Request $request)
  51. {
  52. $token = $request->get('token/s'); // 客服
  53. $type = $request->get('type/s'); // user, kefu
  54. $client = $request->get('client/d');
  55. $shop_id = $request->get('shop_id/d', 0); //当前对话的商家id
  56. try {
  57. $user = $this->triggerEvent('login', ['client' => $client, 'token' => $token, 'type' => $type]);
  58. if ($user['code'] == 20001 || empty($user['data']['id'])) {
  59. throw new \Exception(empty($user['msg']) ? "未知错误" : $user['msg']);
  60. }
  61. } catch (\Throwable $e) {
  62. echo 'onOpen错误:' . $e->getMessage();
  63. return $this->server->close($fd);
  64. }
  65. // 登录者绑定fd
  66. $this->bindFd($type, $user['data'], $fd, $shop_id);
  67. $this->ping($fd);
  68. return $this->pushData($fd, 'login', [
  69. 'msg' => '连接成功',
  70. 'msg_type' => ChatMsgEnum::TYPE_TEXT
  71. ]);
  72. }
  73. /**
  74. * @notes onMessage
  75. * @param Frame $frame
  76. * @return bool|mixed|void
  77. * @author 段誉
  78. * @date 2021/12/20 10:53
  79. */
  80. public function onMessage(Frame $frame)
  81. {
  82. $param = $this->parser->decode($frame->data);
  83. try {
  84. // 回应ping
  85. if ('ping' === $param['event']) {
  86. return $this->ping($frame->fd);
  87. }
  88. $param['handle'] = $this;
  89. $param['fd'] = $frame->fd;
  90. return $this->triggerEvent($param['event'], $param);
  91. } catch (\Throwable $e) {
  92. echo $e->getMessage();
  93. return $this->pushData($frame->fd, 'error', [
  94. 'msg' => $e->getMessage(),
  95. 'msg_type' => ChatMsgEnum::TYPE_TEXT
  96. ]);
  97. }
  98. }
  99. /**
  100. * @notes onClose
  101. * @param int $fd
  102. * @param int $reactorId
  103. * @author 段誉
  104. * @date 2021/12/15 19:03
  105. */
  106. public function onClose($fd, $reactorId)
  107. {
  108. $this->triggerEvent('close', ['handle' => $this, 'fd' => $fd]);
  109. $this->removeBind($fd);
  110. $this->server->close($fd);
  111. }
  112. /**
  113. * @notes 触发事件
  114. * @param string $event
  115. * @param array $data
  116. * @return mixed
  117. * @author 段誉
  118. * @date 2021/12/15 19:03
  119. */
  120. public function triggerEvent(string $event, array $data)
  121. {
  122. return $this->event->until('swoole.websocket.' . $event, $data);
  123. }
  124. /**
  125. * @notes 登录者的id绑定fd
  126. * @param $type
  127. * @param $user
  128. * @param $fd
  129. * @param $shop_id
  130. * @author 段誉
  131. * @date 2021/12/15 19:02
  132. */
  133. public function bindFd($type, $user, $fd, $shop_id)
  134. {
  135. $uid = $user['id'];
  136. //检查当前用户当前终端是否已存在
  137. // $check = $this->getFdByUid($uid, $type);
  138. // if (!empty($check)) {
  139. // foreach ($check as $item) {
  140. // $info = $this->getDataByFd($item);
  141. // $client = $info['client'] ?? 0;
  142. // if ($client == $user['client'] && $fd != $item) {
  143. // $this->del($this->prefix . 'fd_' . $item);
  144. // $this->cache->srem($this->prefix . $type . '_' . $uid, $item);
  145. // }
  146. // }
  147. // }
  148. // socket_fd_{fd} => ['uid' => {uid}, 'type' => {type}]
  149. // 以fd为键缓存当前fd的信息
  150. $fdKey = $this->prefix . 'fd_' . $fd;
  151. $fdData = [
  152. 'uid' => $uid,
  153. 'type' => $type,
  154. 'nickname' => $user['nickname'],
  155. 'avatar' => $user['avatar'],
  156. 'client' => $user['client'],
  157. 'shop_id' => $shop_id
  158. ];
  159. $this->cache->set($fdKey, json_encode($fdData, true));
  160. // socket_user_1(user_id) => {fd} 用户userid为1 的 fd
  161. // socket_kefu_2(kefu_id) => {fd} 客服kefu_id为2 的 fd
  162. $uidKey = $this->prefix . $type . '_' . $uid;
  163. $this->cache->sadd($uidKey, $fd);
  164. // socket_user => {fd} 在线用户的所有fd
  165. if ($type == 'kefu') {
  166. $groupKey = $this->prefix . 'shop_' . $shop_id . '_kefu';
  167. } else {
  168. $groupKey = $this->prefix . 'user';
  169. }
  170. $this->cache->sadd($groupKey, $uid);
  171. }
  172. /**
  173. * @notes 移除绑定
  174. * @param $fd
  175. * @author 段誉
  176. * @date 2021/12/15 19:02
  177. */
  178. public function removeBind($fd)
  179. {
  180. $data = $this->getDataByFd($fd);
  181. if ($data) {
  182. $key = $this->prefix . 'user';
  183. if($data['type'] == 'kefu') {
  184. $key = $this->prefix . 'shop_'. $data['shop_id'] . '_kefu';
  185. }
  186. $this->cache->srem($key, $data['uid']); // socket_user => 11
  187. $this->cache->srem($this->prefix . $data['type'] . '_' . $data['uid'], $fd); // socket_user_uid => fd
  188. }
  189. $this->cache->del($this->prefix . 'fd_' . $fd);
  190. }
  191. /**
  192. * @notes 通过登录id和登录类型获取对应的fd
  193. * @param $uid
  194. * @param $type
  195. * @return bool
  196. * @author 段誉
  197. * @date 2021/12/15 19:02
  198. */
  199. public function getFdByUid($uid, $type)
  200. {
  201. $key = $this->prefix . $type . '_' . $uid;
  202. return $this->cache->sMembers($key);
  203. }
  204. /**
  205. * @notes 根据fd获取登录的id和登录类型
  206. * @param $fd
  207. * @return mixed|string
  208. * @author 段誉
  209. * @date 2021/12/15 19:02
  210. */
  211. public function getDataByFd($fd)
  212. {
  213. $key = $this->prefix . 'fd_' . $fd;
  214. $result = $this->cache->get($key);
  215. if (!empty($result)) {
  216. $result = json_decode($result, true);
  217. }
  218. return $result;
  219. }
  220. /**
  221. * @notes ping
  222. * @param $fd
  223. * @return bool
  224. * @author 段誉
  225. * @date 2021/12/20 15:19
  226. */
  227. public function ping($fd)
  228. {
  229. $data = $this->getDataByFd($fd);
  230. if (!empty($data)) {
  231. return $this->pushData($fd, 'ping', ['client_time' => time()]);
  232. }
  233. return true;
  234. }
  235. /**
  236. * @notes 推送数据
  237. * @param $fd
  238. * @param $event
  239. * @param $data
  240. * @return bool
  241. * @author 段誉
  242. * @date 2021/12/15 19:02
  243. */
  244. public function pushData($fd, $event, $data)
  245. {
  246. $data = $this->parser->encode($event, $data);
  247. // fd非数组时转为数组
  248. if (!is_array($fd)) {
  249. $fd = [$fd];
  250. }
  251. // 向fd发送消息
  252. foreach ($fd as $item) {
  253. if ($this->server->exist($item)) {
  254. $this->server->push($item, $data);
  255. }
  256. }
  257. return true;
  258. }
  259. /**
  260. * @notes 在线fd
  261. * @param $fd
  262. * @return array
  263. * @author 段誉
  264. * @date 2021/12/17 18:19
  265. */
  266. public function onlineFd($fd)
  267. {
  268. $result = [];
  269. if (empty($fd)) {
  270. return $result;
  271. }
  272. if (!is_array($fd)) {
  273. $fd = [$fd];
  274. }
  275. foreach ($fd as $item) {
  276. // $fd_data = $this->getDataByFd($fd);
  277. // $fd_shop_id = $fd_data['shop_id'] ?? 0;
  278. // if ($fd_shop_id != $shop_id) {
  279. // continue;
  280. // }
  281. if ($this->server->exist($item)) {
  282. $result[] = $item;
  283. }
  284. }
  285. return $result;
  286. }
  287. }