User.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use app\admin\service\AuthService;
  16. use think\admin\Controller;
  17. use think\admin\extend\DataExtend;
  18. /**
  19. * 系统用户管理
  20. * Class User
  21. * @package app\admin\controller
  22. */
  23. class User extends Controller
  24. {
  25. /**
  26. * 绑定数据表
  27. * @var string
  28. */
  29. public $table = 'SystemUser';
  30. /**
  31. * 系统用户管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. public function index()
  39. {
  40. $this->title = '系统用户管理';
  41. $query = $this->_query($this->table)->like('username,phone,mail')->equal('status');
  42. $query->dateBetween('login_at,create_at')->where(['is_deleted' => '0'])->order('id desc')->page();
  43. }
  44. /**
  45. * 添加系统用户
  46. * @auth true
  47. * @throws \think\db\exception\DataNotFoundException
  48. * @throws \think\db\exception\DbException
  49. * @throws \think\db\exception\ModelNotFoundException
  50. */
  51. public function add()
  52. {
  53. $this->_applyFormToken();
  54. $this->_form($this->table, 'form');
  55. }
  56. /**
  57. * 编辑系统用户
  58. * @auth true
  59. * @throws \think\db\exception\DataNotFoundException
  60. * @throws \think\db\exception\DbException
  61. * @throws \think\db\exception\ModelNotFoundException
  62. */
  63. public function edit()
  64. {
  65. $this->_applyFormToken();
  66. $this->_form($this->table, 'form');
  67. }
  68. /**
  69. * 修改用户密码
  70. * @auth true
  71. * @throws \think\db\exception\DataNotFoundException
  72. * @throws \think\db\exception\DbException
  73. * @throws \think\db\exception\ModelNotFoundException
  74. */
  75. public function pass()
  76. {
  77. $this->_applyFormToken();
  78. if ($this->request->isGet()) {
  79. $this->verify = false;
  80. $this->_form($this->table, 'pass');
  81. } else {
  82. $post = $this->request->post();
  83. if ($post['password'] !== $post['repassword']) {
  84. $this->error('两次输入的密码不一致!');
  85. }
  86. if (DataExtend::save($this->table, ['id' => $post['id'], 'password' => md5($post['password'])], 'id')) {
  87. $this->success('密码修改成功,下次请使用新密码登录!', '');
  88. } else {
  89. $this->error('密码修改失败,请稍候再试!');
  90. }
  91. }
  92. }
  93. /**
  94. * 表单数据处理
  95. * @param array $data
  96. * @throws \think\db\exception\DataNotFoundException
  97. * @throws \think\db\exception\DbException
  98. * @throws \think\db\exception\ModelNotFoundException
  99. */
  100. protected function _form_filter(&$data)
  101. {
  102. if ($this->request->isPost()) {
  103. // 刷新系统授权
  104. AuthService::apply();
  105. // 用户权限处理
  106. $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
  107. // 用户账号重复检查
  108. if (isset($data['id'])) unset($data['username']);
  109. elseif ($this->app->db->name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
  110. $this->error("账号{$data['username']}已经存在,请使用其它账号!");
  111. }
  112. } else {
  113. $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
  114. $this->authorizes = $this->app->db->name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
  115. }
  116. }
  117. /**
  118. * 修改系统用户状态
  119. * @auth true
  120. * @throws \think\db\exception\DbException
  121. */
  122. public function state()
  123. {
  124. if (in_array('10000', explode(',', $this->request->post('id')))) {
  125. $this->error('系统超级账号禁止操作!');
  126. }
  127. $this->_applyFormToken();
  128. $this->_save($this->table, ['status' => intval(input('status'))]);
  129. }
  130. /**
  131. * 删除系统用户
  132. * @auth true
  133. * @throws \think\db\exception\DbException
  134. */
  135. public function remove()
  136. {
  137. if (in_array('10000', explode(',', $this->request->post('id')))) {
  138. $this->error('系统超级账号禁止删除!');
  139. }
  140. $this->_applyFormToken();
  141. $this->_delete($this->table);
  142. }
  143. }