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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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;
  20. use app\common\basics\Logic;
  21. use app\common\model\Admin;
  22. use app\common\model\shop\ShopAdmin;
  23. use app\common\model\shop\ShopRole;
  24. class AdminLogic extends Logic
  25. {
  26. /**
  27. * Notes: 列表
  28. * @param $get
  29. * @author 段誉(2021/4/10 11:05)
  30. * @return array
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\DbException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. */
  35. public static function lists($get, $shop_id)
  36. {
  37. $roleModel = new ShopRole();
  38. $adminModel = new ShopAdmin();
  39. $role_column = $roleModel->getNameColumn();
  40. $where[] = ['del', '=', 0];
  41. $where[] = ['shop_id', '=', $shop_id];
  42. if (isset($get['role_id']) && $get['role_id']) {
  43. $where[] = ['role_id', '=', $get['role_id']];
  44. }
  45. if (isset($get['name']) && $get['name']) {
  46. $where[] = ['name', 'like', "%{$get['name']}%"];
  47. }
  48. if (isset($get['account']) && $get['account']) {
  49. $where[] = ['account', 'like', "%{$get['account']}%"];
  50. }
  51. $result = $adminModel->where($where)
  52. ->hidden(['password', 'salt'])
  53. ->paginate([
  54. 'list_rows'=> $get['limit'],
  55. 'page'=> $get['page']
  56. ]);
  57. foreach ($result as $k => $item) {
  58. if ($item['root'] == 1) {
  59. $role = '超级管理员';
  60. } else {
  61. $role = $role_column[$item['role_id']] ?? '';
  62. }
  63. $result[$k]['role'] = $role;
  64. }
  65. return ['count' => $result->total(), 'lists' => $result->getCollection()];
  66. }
  67. /**
  68. * Notes: 添加管理员
  69. * @param $post
  70. * @author 段誉(2021/4/10 16:14)
  71. * @return Admin|\think\Model
  72. */
  73. public static function addAdmin($shop_id, $post)
  74. {
  75. $time = time();
  76. $salt = substr(md5($time . $post['name']), 0, 4);//随机4位密码盐
  77. $password = generatePassword($post['password'], $salt);//生成密码
  78. return ShopAdmin::create([
  79. 'name' => $post['name'],
  80. 'shop_id' => $shop_id,
  81. 'root' => 0,
  82. 'account' => $post['account'],
  83. 'password' => $password,
  84. 'salt' => $salt,
  85. 'role_id' => $post['role_id'],
  86. 'disable' => $post['disable']
  87. ]);
  88. }
  89. /**
  90. * Notes: 更新管理员
  91. * @param $post
  92. * @author 段誉(2021/4/10 17:11)
  93. * @return bool
  94. * @throws \think\db\exception\DataNotFoundException
  95. * @throws \think\db\exception\DbException
  96. * @throws \think\db\exception\ModelNotFoundException
  97. */
  98. public static function editAdmin($shop_id, $post)
  99. {
  100. $admin = ShopAdmin::where('shop_id', $shop_id)->find($post['id']);
  101. if(empty($admin)) {
  102. self::$error = '未找到相关管理员';
  103. return false;
  104. }
  105. $data = [
  106. 'name' => $post['name'],
  107. 'account' => $post['account'],
  108. 'role_id' => $post['role_id'],
  109. 'update_time' => time(),
  110. 'disable' => $post['disable']
  111. ];
  112. //生成密码
  113. if ($post['password']) {
  114. $data['password'] = generatePassword($post['password'], $admin['salt']);
  115. }
  116. //TODO 禁用管理员并强制下线
  117. if (1 == $post['disable'] || $admin['role_id'] != $post['role_id']) {
  118. }
  119. return $admin->save($data);
  120. }
  121. /**
  122. * Notes: 删除
  123. * @param $shop_id
  124. * @param $id
  125. * @author 段誉(2021/5/7 11:11)
  126. * @return ShopAdmin
  127. */
  128. public static function delAdmin($shop_id, $id)
  129. {
  130. return ShopAdmin::update([
  131. 'account' => time() . '_' . $id,
  132. 'del' => 1,
  133. 'shop_id' => $shop_id
  134. ], ['id' => $id]);
  135. }
  136. /**
  137. * Notes: 修改密码
  138. * @param $password
  139. * @param $admin_id
  140. * @param $shop_id
  141. * @author 段誉(2021/5/7 11:15)
  142. * @return bool
  143. */
  144. public static function updatePassword($password, $admin_id, $shop_id)
  145. {
  146. try {
  147. $admin = ShopAdmin::where(['id' => $admin_id, 'shop_id' => $shop_id])->find();
  148. $admin->password = generatePassword($password, $admin['salt']);
  149. $admin->save();
  150. return true;
  151. } catch (\Exception $e) {
  152. self::$error = $e->getMessage();
  153. return false;
  154. }
  155. }
  156. }