截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ChatLogic.php 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  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\kefuapi\logic;
  20. use app\common\basics\Logic;
  21. use app\common\enum\ChatRecordEnum;
  22. use app\common\model\kefu\ChatRecord;
  23. USE app\common\logic\ChatLogic as CommonChatLogic;
  24. use app\common\model\kefu\ChatRelation;
  25. use app\common\model\kefu\Kefu;
  26. use app\common\model\kefu\KefuLang;
  27. use app\common\model\order\Order;
  28. use app\common\model\user\User;
  29. use app\common\server\ConfigServer;
  30. use app\common\server\UrlServer;
  31. class ChatLogic extends Logic
  32. {
  33. /**
  34. * @notes 曾对话过的用户
  35. * @param $kefu_id
  36. * @param $shop_id
  37. * @param $get
  38. * @param $page
  39. * @param $size
  40. * @return array
  41. * @throws \think\db\exception\DataNotFoundException
  42. * @throws \think\db\exception\DbException
  43. * @throws \think\db\exception\ModelNotFoundException
  44. * @author 段誉
  45. * @date 2021/12/14 12:11
  46. */
  47. public static function getChatUserList($kefu_id, $shop_id, $get, $page, $size)
  48. {
  49. $where[] = ['kefu_id', '=', $kefu_id];
  50. $where[] = ['shop_id', '=', $shop_id];
  51. if (isset($get['nickname']) && $get['nickname']) {
  52. $where[] = ['nickname', 'like', '%' . $get['nickname'] . '%'];
  53. }
  54. $online_user = CommonChatLogic::getOnlineUser();
  55. $exp = 'update_time desc';
  56. if (!empty($online_user)) {
  57. $user_id = implode(",", $online_user);
  58. $exp = "field(user_id," . $user_id . ") desc, update_time desc";
  59. }
  60. // 当前客服曾聊天的记录
  61. $lists = ChatRelation::where($where)
  62. ->page($page, $size)
  63. ->orderRaw($exp)
  64. ->select();
  65. $count = ChatRelation::where($where)->count();
  66. foreach ($lists as &$item) {
  67. $item['online'] = 0;
  68. if (in_array($item['user_id'], $online_user)) {
  69. $item['online'] = 1;
  70. }
  71. if (empty($item['msg'])) {
  72. $item['update_time'] = '';
  73. }
  74. }
  75. return [
  76. 'list' => $lists->toArray(),
  77. 'page' => $page,
  78. 'size' => $size,
  79. 'count' => $count,
  80. 'more' => is_more($count, $page, $size)
  81. ];
  82. }
  83. /**
  84. * @notes 客服与用户的聊天记录
  85. * @param $kefu_id
  86. * @param $user_id
  87. * @param $shop_id
  88. * @param $page
  89. * @param $size
  90. * @return array
  91. * @throws \think\db\exception\DataNotFoundException
  92. * @throws \think\db\exception\DbException
  93. * @throws \think\db\exception\ModelNotFoundException
  94. * @author 段誉
  95. * @date 2021/12/14 14:41
  96. */
  97. public static function getChatRecord($kefu_id, $user_id, $shop_id, $page, $size)
  98. {
  99. $map1 = [
  100. ['shop_id', '=', $shop_id],
  101. ['from_id', '=', $kefu_id],
  102. ['from_type', '=', 'kefu'],
  103. ['to_id', '=', $user_id],
  104. ['type', '=', ChatRecordEnum::TYPE_NORMAL]
  105. ];
  106. $map2 = [
  107. ['shop_id', '=', $shop_id],
  108. ['to_id', '=', $kefu_id],
  109. ['to_type', '=', 'kefu'],
  110. ['from_id', '=', $user_id],
  111. ['type', '=', ChatRecordEnum::TYPE_NORMAL]
  112. ];
  113. // 聊天记录
  114. $records = ChatRecord::whereOr([$map1, $map2])
  115. ->order('id desc')
  116. ->page($page, $size)
  117. ->select()->toArray();
  118. $count = ChatRecord::whereOr([$map1, $map2])->count();
  119. $records = CommonChatLogic::formatChatRecords($records, $count, $page, $size);
  120. return $records;
  121. }
  122. /**
  123. * @notes 获取在线客服
  124. * @param $shop_id
  125. * @return array
  126. * @throws \think\db\exception\DataNotFoundException
  127. * @throws \think\db\exception\DbException
  128. * @throws \think\db\exception\ModelNotFoundException
  129. * @author 段誉
  130. * @date 2021/12/14 14:39
  131. */
  132. public static function getOnlineKefu($kefu_id, $shop_id)
  133. {
  134. $online = CommonChatLogic::getOnlineKefu($shop_id);
  135. if (empty($online)) {
  136. return [];
  137. }
  138. $map = [
  139. ['id', 'in', $online],
  140. ['id', '<>', $kefu_id],
  141. ['shop_id', '=', $shop_id]
  142. ];
  143. $lists = Kefu::where($map)
  144. ->field('id,nickname,avatar')
  145. ->select()
  146. ->toArray();
  147. foreach ($lists as &$item) {
  148. $item['avatar'] = UrlServer::getFileUrl($item['avatar']);
  149. }
  150. return $lists;
  151. }
  152. /**
  153. * @notes 快捷回复列表
  154. * @param $shop_id
  155. * @param $keyword
  156. * @param $page
  157. * @param $size
  158. * @return array
  159. * @throws \think\db\exception\DataNotFoundException
  160. * @throws \think\db\exception\DbException
  161. * @throws \think\db\exception\ModelNotFoundException
  162. * @author 段誉
  163. * @date 2021/12/15 11:07
  164. */
  165. public static function getReplyLists($shop_id, $keyword, $page, $size)
  166. {
  167. $condition[] = ['title', 'like', '%' . $keyword . '%'];
  168. $lists = KefuLang::where(['shop_id' => $shop_id])
  169. ->where($condition)
  170. ->page($page, $size)
  171. ->order('sort')
  172. ->select();
  173. $count = KefuLang::where(['shop_id' => $shop_id])->count();
  174. return [
  175. 'list' => $lists,
  176. 'page' => $page,
  177. 'size' => $size,
  178. 'count' => $count,
  179. 'more' => is_more($count, $page, $size)
  180. ];
  181. }
  182. /**
  183. * @notes 用户信息接口
  184. * @param $user_id
  185. * @return array|bool
  186. * @author 段誉
  187. * @date 2021/12/15 15:05
  188. */
  189. public static function getUserInfo($user_id)
  190. {
  191. try {
  192. $user = User::where(['id' => $user_id, 'del' => 0])->field([
  193. 'id', 'sn', 'nickname', 'avatar',
  194. 'level', 'mobile', 'total_order_amount',
  195. 'birthday', 'client', 'create_time'
  196. ])->findOrEmpty()->append(['level_name', 'client_desc'])->toArray();
  197. if (empty($user)) {
  198. throw new \Exception('用户不存在');
  199. }
  200. $user['birthday'] = empty($user['birthday']) ? '-' : $user['birthday'];
  201. $user['avatar'] = empty($user['avatar']) ? '' : UrlServer::getFileUrl($user['avatar']);
  202. $user['mobile'] = empty($user['mobile']) ? '-' : substr_replace($user['mobile'],'****',3,4);
  203. return $user;
  204. } catch (\Exception $e) {
  205. self::$error = $e->getMessage();
  206. return false;
  207. }
  208. }
  209. /**
  210. * @notes 订单列表
  211. * @param $get
  212. * @param $shop_id
  213. * @param $page
  214. * @param $size
  215. * @return array|bool
  216. * @author 段誉
  217. * @date 2021/12/15 16:04
  218. */
  219. public static function getOrderLists($get, $shop_id, $page, $size)
  220. {
  221. try{
  222. if (empty($get['user_id'])) {
  223. throw new \Exception('参数缺失');
  224. }
  225. $condition[] = ['user_id', '=', $get['user_id']];
  226. $condition[] = ['del', '=', 0];
  227. if ($shop_id > 0) {
  228. $condition[] = ['shop_id', '=', $shop_id];
  229. }
  230. if (isset($get['order_sn']) && $get['order_sn'] != '') {
  231. $condition[] = ['order_sn', 'like', '%' . $get['order_sn'] . '%'];
  232. }
  233. $order = new Order();
  234. $count = $order->with('order_goods')->where($condition)->count();
  235. $lists = $order
  236. ->where($condition)
  237. ->with('order_goods')
  238. ->field(['id', 'order_sn', 'order_type', 'order_status', 'order_amount', 'create_time'])
  239. ->append(['order_status_text', 'order_type_text'])
  240. ->page($page, $size)
  241. ->order('id desc')
  242. ->select()->toArray();
  243. return [
  244. 'list' => $lists,
  245. 'page' => $page,
  246. 'size' => $size,
  247. 'count' => $count,
  248. 'more' => is_more($count, $page, $size)
  249. ];
  250. } catch (\Exception $e) {
  251. self::$error = $e->getMessage();
  252. return false;
  253. }
  254. }
  255. /**
  256. * @notes 客服详情
  257. * @param $id
  258. * @return array
  259. * @author 段誉
  260. * @date 2021/12/15 17:34
  261. */
  262. public static function getKefuInfo($id)
  263. {
  264. $res = Kefu::where(['id' => $id])
  265. ->field(['id', 'shop_id', 'nickname', 'avatar'])
  266. ->findOrEmpty()
  267. ->toArray();
  268. $res['avatar'] = empty($res['avatar']) ? '' : UrlServer::getFileUrl($res['avatar']);
  269. $online = CommonChatLogic::getOnlineKefu($res['shop_id']);
  270. $res['online'] = 0;
  271. if(in_array($res['id'], $online)) {
  272. $res['online'] = 1;
  273. }
  274. return $res;
  275. }
  276. /**
  277. * @notes 上传文件域名
  278. * @return array
  279. * @author 段誉
  280. * @date 2021/12/16 17:05
  281. */
  282. public static function getConfig()
  283. {
  284. $web_favicon = ConfigServer::get('website', 'web_favicon');
  285. return [
  286. 'base_domain' => UrlServer::getFileUrl(),
  287. 'web_favicon' => !empty($web_favicon) ? UrlServer::getFileUrl($web_favicon) : $web_favicon,
  288. 'company_name' => ConfigServer::get('copyright', 'company_name'),
  289. 'ws_domain' => env('project.ws_domain', 'ws:127.0.0.1')
  290. ];
  291. }
  292. }