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

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