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

KefuLogic.php 6.9KB

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