截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Chat.php 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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\controller;
  20. use app\common\basics\KefuBase;
  21. use app\kefuapi\logic\ChatLogic;
  22. use app\common\server\JsonServer;
  23. use app\kefuapi\validate\ChatValidate;
  24. class Chat extends KefuBase
  25. {
  26. public $like_not_need_login = ['config'];
  27. /**
  28. * @notes 用户列表
  29. * @return \think\response\Json
  30. * @throws \think\db\exception\DataNotFoundException
  31. * @throws \think\db\exception\DbException
  32. * @throws \think\db\exception\ModelNotFoundException
  33. * @author 段誉
  34. * @date 2021/12/14 15:42
  35. */
  36. public function user()
  37. {
  38. $get = $this->request->get('');
  39. // 对话过的用户
  40. $result = ChatLogic::getChatUserList($this->kefu_id, $this->shop_id, $get, $this->page_no, $this->page_size);
  41. return JsonServer::success('', $result);
  42. }
  43. /**
  44. * @notes 指定用户聊天记录
  45. * @return \think\response\Json
  46. * @throws \think\db\exception\DataNotFoundException
  47. * @throws \think\db\exception\DbException
  48. * @throws \think\db\exception\ModelNotFoundException
  49. * @author 段誉
  50. * @date 2021/12/14 15:43
  51. */
  52. public function record()
  53. {
  54. $user_id = $this->request->get('user_id/d');
  55. (new ChatValidate())->goCheck();
  56. $result = ChatLogic::getChatRecord($this->kefu_id, $user_id, $this->shop_id, $this->page_no, $this->page_size);
  57. return JsonServer::success('', $result);
  58. }
  59. /**
  60. * @notes 在线的客服
  61. * @return \think\response\Json
  62. * @throws \think\db\exception\DataNotFoundException
  63. * @throws \think\db\exception\DbException
  64. * @throws \think\db\exception\ModelNotFoundException
  65. * @author 段誉
  66. * @date 2021/12/14 15:43
  67. */
  68. public function online()
  69. {
  70. $result = ChatLogic::getOnlineKefu($this->kefu_id, $this->shop_id);
  71. return JsonServer::success('', $result);
  72. }
  73. /**
  74. * @notes 快捷回复
  75. * @return \think\response\Json
  76. * @throws \think\db\exception\DataNotFoundException
  77. * @throws \think\db\exception\DbException
  78. * @throws \think\db\exception\ModelNotFoundException
  79. * @author 段誉
  80. * @date 2021/12/15 11:07
  81. */
  82. public function reply()
  83. {
  84. $keyword = $this->request->get('keyword');
  85. $result = ChatLogic::getReplyLists($this->shop_id, $keyword, $this->page_no, $this->page_size);
  86. return JsonServer::success('', $result);
  87. }
  88. /**
  89. * @notes 用户详情接口
  90. * @return \think\response\Json
  91. * @author 段誉
  92. * @date 2021/12/15 15:05
  93. */
  94. public function userInfo()
  95. {
  96. $user_id = $this->request->get('user_id/d');
  97. $result = ChatLogic::getUserInfo($user_id);
  98. if (false === $result) {
  99. return JsonServer::error(ChatLogic::getError() ?: '系统错误');
  100. }
  101. return JsonServer::success('', $result);
  102. }
  103. /**
  104. * @notes 获取指定订单列表
  105. * @return \think\response\Json
  106. * @author 段誉
  107. * @date 2021/12/15 16:04
  108. */
  109. public function order()
  110. {
  111. $get = $this->request->get();
  112. $result = ChatLogic::getOrderLists($get, $this->shop_id, $this->page_no, $this->page_size);
  113. if (false === $result) {
  114. return JsonServer::error(ChatLogic::getError() ?: '系统错误');
  115. }
  116. return JsonServer::success('', $result);
  117. }
  118. /**
  119. * @notes 客服详情
  120. * @return \think\response\Json
  121. * @author 段誉
  122. * @date 2021/12/15 17:34
  123. */
  124. public function kefuInfo()
  125. {
  126. $result = ChatLogic::getKefuInfo($this->kefu_id);
  127. return JsonServer::success('', $result);
  128. }
  129. /**
  130. * @notes 配置
  131. * @return \think\response\Json
  132. * @author 段誉
  133. * @date 2021/12/16 17:06
  134. */
  135. public function config()
  136. {
  137. $result = ChatLogic::getConfig();
  138. return JsonServer::success('', $result);
  139. }
  140. }