截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\logic;
  20. use app\common\basics\Logic;
  21. use app\common\enum\ChatMsgEnum;
  22. use app\common\model\kefu\ChatRelation;
  23. use app\common\model\kefu\Kefu;
  24. use app\common\model\user\User;
  25. use app\common\server\ConfigServer;
  26. use app\common\server\UrlServer;
  27. use app\common\utils\Redis;
  28. class ChatLogic extends Logic
  29. {
  30. /**
  31. * @notes
  32. * @param $shop_id
  33. * @return array|bool
  34. * @author 段誉
  35. * @date 2021/12/14 12:07
  36. */
  37. public static function getOnlineKefu($shop_id)
  38. {
  39. $key = self::getChatPrefix() . 'shop_' . $shop_id . '_kefu';
  40. return (new Redis())->getSmembersArray($key);
  41. }
  42. /**
  43. * @notes 在线用户
  44. * @return array|bool
  45. * @author 段誉
  46. * @date 2021/12/14 12:11
  47. */
  48. public static function getOnlineUser()
  49. {
  50. $key = self::getChatPrefix() . 'user';
  51. return (new Redis())->getSmembersArray($key);
  52. }
  53. /**
  54. * @notes 格式化聊天记录
  55. * @param $records
  56. * @param $count
  57. * @param $page
  58. * @param $size
  59. * @return array
  60. * @author 段誉
  61. * @date 2021/12/13 10:20
  62. */
  63. public static function formatChatRecords($records, $count, $page, $size)
  64. {
  65. if (empty($records)) {
  66. return [
  67. 'list' => $records,
  68. 'page' => $page,
  69. 'size' => $size,
  70. 'count' => $count,
  71. 'more' => is_more($count, $page, $size)
  72. ];
  73. }
  74. $kefu = [];
  75. $user = [];
  76. // 获取到客服和用户不同的两组id
  77. foreach ($records as $item) {
  78. if ($item['from_type'] == 'kefu') {
  79. $kefu[] = $item['from_id'];
  80. } else {
  81. $user[] = $item['from_id'];
  82. }
  83. }
  84. $kefu = array_unique($kefu);
  85. $user = array_unique($user);
  86. $kefu = Kefu::where('id', 'in', $kefu)->column('nickname, avatar', 'id');
  87. $user = User::where('id', 'in', $user)->column('nickname, avatar', 'id');
  88. foreach ($records as &$item) {
  89. $item['from_nickname'] = '';
  90. $item['from_avatar'] = '';
  91. if ($item['from_type'] == 'kefu') {
  92. $kefu_id = $item['from_id'];
  93. if (isset($kefu[$kefu_id])) {
  94. $item['from_nickname'] = $kefu[$kefu_id]['nickname'] ?? '';
  95. $item['from_avatar'] = $kefu[$kefu_id]['avatar'] ?? '';
  96. }
  97. }
  98. if ($item['from_type'] == 'user') {
  99. $user_id = $item['from_id'];
  100. if (isset($user[$user_id])) {
  101. $item['from_nickname'] = $user[$user_id]['nickname'] ?? '';
  102. $item['from_avatar'] = $user[$user_id]['avatar'] ?? '';
  103. }
  104. }
  105. $item['goods'] = [];
  106. if ($item['msg_type'] == ChatMsgEnum::TYPE_GOODS) {
  107. $item['goods'] = json_decode($item['msg'], true);
  108. }
  109. $item['create_time_stamp'] = strtotime($item['create_time']);
  110. }
  111. $records = array_reverse($records);
  112. return [
  113. 'list' => $records,
  114. 'page' => $page,
  115. 'size' => $size,
  116. 'count' => $count,
  117. 'more' => is_more($count, $page, $size)
  118. ];
  119. }
  120. /**
  121. * @notes 配置
  122. * @param $shop_id
  123. * @return array
  124. * @author 段誉
  125. * @date 2021/12/17 11:24
  126. * @remark code => 0时显示人工客服页,code => 1时显示在线客服页
  127. */
  128. public static function getConfig($shop_id)
  129. {
  130. // 后台客服配置 1->人工客服; 2->在线客服
  131. if (self::getConfigSetting($shop_id) == 1) {
  132. return ['code' => 0, 'msg' => ''];
  133. }
  134. // 缓存配置
  135. if ('redis' != self::getCacheDrive()) {
  136. return ['code' => 0, 'msg' => '请参考部署文档配置在线客服'];
  137. }
  138. // 当前在线客服
  139. $online = self::getOnlineKefu($shop_id);
  140. if (empty($online)) {
  141. return ['code' => 0, 'msg' => '当前客服不在线,有问题请联系人工客服'];
  142. }
  143. return ['code' => 1, 'msg' => ''];
  144. }
  145. /**
  146. * @notes 检查配置
  147. * @param int $shop_id
  148. * @return bool
  149. * @author 段誉
  150. * @date 2021/12/20 14:11
  151. */
  152. public static function checkConfig(int $shop_id = 0)
  153. {
  154. try {
  155. if (self::getConfigSetting($shop_id) == 1) {
  156. throw new \Exception('请联系管理员开启在线客服');
  157. }
  158. if ('redis' != self::getCacheDrive()) {
  159. throw new \Exception('请参考部署文档配置在线客服');
  160. }
  161. return true;
  162. } catch (\Exception $e) {
  163. self::$error = $e->getMessage();
  164. return false;
  165. }
  166. }
  167. /**
  168. * @notes 绑定关系
  169. * @param $user_id
  170. * @param $kefu_id
  171. * @param $shop_id
  172. * @param $data
  173. * @author 段誉
  174. * @date 2021/12/17 15:52
  175. */
  176. public static function bindRelation($user_id, $kefu_id, $shop_id, $data, $is_read = 0)
  177. {
  178. $relation = ChatRelation::where(['user_id' => $user_id, 'shop_id' => $shop_id])->findOrEmpty();
  179. $user = User::where(['id' => $user_id])->findOrEmpty();
  180. if ($relation->isEmpty()) {
  181. $relation = ChatRelation::create([
  182. 'shop_id' => $shop_id,
  183. 'user_id' => $user_id,
  184. 'kefu_id' => $kefu_id,
  185. 'nickname' => $user['nickname'],
  186. 'avatar' => $user['avatar'],
  187. 'client' => $data['client'] ?? 0,
  188. 'msg' => $data['msg'] ?? '',
  189. 'msg_type' => $data['msg_type'] ?? ChatMsgEnum::TYPE_TEXT,
  190. 'is_read' => 1, // 新创建关系都算已读
  191. 'create_time' => time(),
  192. 'update_time' => time(),
  193. ]);
  194. } else {
  195. ChatRelation::update(
  196. [
  197. 'kefu_id' => $kefu_id,
  198. 'nickname' => $user['nickname'],
  199. 'avatar' => $user['avatar'],
  200. 'client' => $data['client'] ?? 0,
  201. 'msg' => $data['msg'] ?? '',
  202. 'msg_type' => $data['msg_type'] ?? ChatMsgEnum::TYPE_TEXT,
  203. 'update_time' => time(),
  204. 'is_read' => $is_read
  205. ],
  206. ['id' => $relation['id']]
  207. );
  208. }
  209. return $relation['id'];
  210. }
  211. /**
  212. * @notes 后台客服配置
  213. * @param $shop_id
  214. * @return array|int|mixed|string|null
  215. * @author 段誉
  216. * @date 2021/12/20 11:51
  217. */
  218. public static function getConfigSetting($shop_id)
  219. {
  220. // 后台客服配置 1->人工客服; 2->在线客服
  221. if ($shop_id > 0) {
  222. $config = ConfigServer::get('shop_customer_service', 'type', 1, $shop_id);
  223. } else {
  224. $config = ConfigServer::get('customer_service', 'type', 1);
  225. }
  226. return $config;
  227. }
  228. /**
  229. * @notes 当前缓存驱动
  230. * @return mixed
  231. * @author 段誉
  232. * @date 2021/12/20 11:51
  233. */
  234. public static function getCacheDrive()
  235. {
  236. return config('cache.default');
  237. }
  238. /**
  239. * @notes 聊天前缀
  240. * @return mixed
  241. * @author 段誉
  242. * @date 2022/4/14 17:42
  243. */
  244. public static function getChatPrefix()
  245. {
  246. return config('default.websocket_prefix');
  247. }
  248. /**
  249. * @notes 禁用客服
  250. * @param $shop_id
  251. * @param $kefu_id
  252. * @author 段誉
  253. * @date 2022/4/14 17:42
  254. */
  255. public static function setChatDisable($shop_id, $kefu_id)
  256. {
  257. $cache = new Redis();
  258. $prefix = self::getChatPrefix();
  259. $key = $prefix . 'shop_' . $shop_id . '_kefu';
  260. $result = $cache->getSmembersArray($key);
  261. $fds = $cache->getSmembersArray($prefix . 'kefu_' . $kefu_id);
  262. if (in_array($kefu_id, $result) && $fds) {
  263. $cache->srem($key, $kefu_id);
  264. foreach ($fds as $fd) {
  265. $cache->srem($prefix . 'kefu_' . $kefu_id, $fd);
  266. $cache->del($prefix . 'fd_' . $fd);
  267. }
  268. }
  269. }
  270. }