截流自动化的商城平台
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.

KefuLogic.php 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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\admin\logic\kefu;
  20. use app\common\basics\Logic;
  21. use app\common\logic\ChatLogic;
  22. use app\common\model\Admin;
  23. use app\common\model\Client_;
  24. use app\common\model\kefu\Kefu;
  25. use app\common\model\Role;
  26. use app\common\server\UrlServer;
  27. use app\kefuapi\logic\LoginLogic;
  28. /**
  29. * 客服逻辑
  30. * Class KefuLogic
  31. * @package app\admin\logic\index
  32. */
  33. class KefuLogic extends Logic
  34. {
  35. /**
  36. * @notes 客服列表
  37. * @param $get
  38. * @return array
  39. * @author 段誉
  40. * @date 2021/11/26 18:44
  41. */
  42. public static function getLists($get)
  43. {
  44. $result = (new Kefu())->alias('k')
  45. ->field("k.*,a.account")
  46. ->join('admin a', 'a.id = k.admin_id')
  47. ->where(['a.del' => 0, 'k.del' => 0, 'shop_id' => 0])
  48. ->order('sort asc')->paginate([
  49. 'list_rows' => $get['limit'],
  50. 'page' => $get['page'],
  51. ]);
  52. foreach ($result as $value) {
  53. $value['avatar'] = empty($value['avatar']) ? "" : UrlServer::getFileUrl($value['avatar']);
  54. }
  55. return ['count' => $result->total(), 'lists' => $result->getCollection()];
  56. }
  57. /**
  58. * @notes 添加客服
  59. * @param $post
  60. * @return Kefu|false|\think\Model
  61. * @author 段誉
  62. * @date 2021/11/27 10:43
  63. */
  64. public static function add($post)
  65. {
  66. try {
  67. return (new Kefu())->insertKefu($post);
  68. } catch (\Exception $e) {
  69. self::$error = $e->getMessage();
  70. return false;
  71. }
  72. }
  73. /**
  74. * @notes 编辑客服
  75. * @param $post
  76. * @return Kefu|false
  77. * @author 段誉
  78. * @date 2021/11/27 10:44
  79. */
  80. public static function edit($post)
  81. {
  82. try {
  83. if ($post['disable'] == 1) {
  84. ChatLogic::setChatDisable(0, $post['id']);
  85. }
  86. return (new Kefu())->updateKefu($post['id'], $post);
  87. } catch (\Exception $e) {
  88. self::$error = $e->getMessage();
  89. return false;
  90. }
  91. }
  92. /**
  93. * @notes 详情
  94. * @param $id
  95. * @return mixed
  96. * @author 段誉
  97. * @date 2021/11/27 10:44
  98. */
  99. public static function detail($id)
  100. {
  101. $detail = (new Kefu())->alias('k')
  102. ->field("k.*, a.account, a.name")
  103. ->join('admin a', 'a.id = k.admin_id')
  104. ->where(['k.id' => $id, 'k.shop_id' => 0])
  105. ->findOrEmpty();
  106. $detail['avatar'] = !empty($detail['avatar']) ? UrlServer::getFileUrl($detail['avatar']) : '';
  107. return $detail;
  108. }
  109. /**
  110. * @notes 删除客服
  111. * @param $post
  112. * @return Kefu
  113. * @author 段誉
  114. * @date 2021/11/27 10:48
  115. */
  116. public static function del($post)
  117. {
  118. return (new Kefu())->delKefu($post['id']);
  119. }
  120. /**
  121. * @notes 管理员列表
  122. * @param $get
  123. * @return array
  124. * @throws \think\db\exception\DbException
  125. * @author 段誉
  126. * @date 2021/11/26 18:00
  127. */
  128. public static function getAdminLists($get)
  129. {
  130. // 角色名称
  131. $role_column = (new Role())->getNameColumn();
  132. // 已有客服列表
  133. $kefu = (new Kefu())->where(['del' => 0, 'shop_id' => 0])->column("admin_id");
  134. // 查询条件
  135. $where[] = ['del', '=', 0];
  136. $where[] = ['id', 'not in', $kefu];
  137. if (isset($get['role_id']) && $get['role_id'] != '') {
  138. $where[] = ['role_id', '=', $get['role_id']];
  139. }
  140. if (isset($get['name']) && $get['name'] != '') {
  141. $where[] = ['name', 'like', "%{$get['name']}%"];
  142. }
  143. $result = (new Admin())->where($where)
  144. ->hidden(['password', 'salt'])
  145. ->paginate([
  146. 'list_rows' => $get['limit'],
  147. 'page' => $get['page'],
  148. ]);
  149. foreach ($result as $k => $item) {
  150. if ($item['root'] == 1) {
  151. $role = '超级管理员';
  152. } else {
  153. $role = $role_column[$item['role_id']] ?? '';
  154. }
  155. $result[$k]['role'] = $role;
  156. }
  157. return ['count' => $result->total(), 'lists' => $result->getCollection()];
  158. }
  159. /**
  160. * @notes 设置客服状态
  161. * @param $post
  162. * @return Kefu
  163. * @author 段誉
  164. * @date 2021/11/26 18:32
  165. */
  166. public static function setStatus($post)
  167. {
  168. if ($post['disable'] == 1) {
  169. ChatLogic::setChatDisable(0, $post['id']);
  170. }
  171. return (new Kefu())->updateStatus($post['id'], $post['disable']);
  172. }
  173. /**
  174. * @notes 返回登录链接
  175. * @param $id
  176. * @return bool|string
  177. * @author 段誉
  178. * @date 2021/12/15 19:52
  179. */
  180. public static function login($id)
  181. {
  182. try{
  183. $kefu = (new Admin())->alias('a')
  184. ->field(['k.id', 'k.nickname', 'k.avatar', 'k.shop_id', 'a.account'])
  185. ->join('kefu k', 'a.id = k.admin_id')
  186. ->where(['k.id' => $id, 'k.shop_id' => 0, 'k.del' => 0])
  187. ->findOrEmpty()->toArray();
  188. if(empty($kefu)) {
  189. throw new \Exception('该客服信息缺失');
  190. }
  191. $token = LoginLogic::createSession($kefu['id'], $kefu['shop_id'], Client_::pc);
  192. return request()->domain() . '/kefu?token='. $token;
  193. } catch(\Exception $e) {
  194. self::$error = $e->getMessage();
  195. return false;
  196. }
  197. }
  198. }