User.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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 library\Controller;
  16. use library\tools\Data;
  17. use think\Db;
  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\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '系统用户管理';
  43. $query = $this->_query($this->table)->like('username,phone,mail')->equal('status');
  44. $query->dateBetween('login_at,create_at')->where(['is_deleted' => '0'])->order('id desc')->page();
  45. }
  46. /**
  47. * 添加系统用户
  48. * @auth true
  49. * @throws \think\Exception
  50. * @throws \think\db\exception\DataNotFoundException
  51. * @throws \think\db\exception\ModelNotFoundException
  52. * @throws \think\exception\DbException
  53. * @throws \think\exception\PDOException
  54. */
  55. public function add()
  56. {
  57. $this->applyCsrfToken();
  58. $this->_form($this->table, 'form');
  59. }
  60. /**
  61. * 编辑系统用户
  62. * @auth true
  63. * @throws \think\Exception
  64. * @throws \think\db\exception\DataNotFoundException
  65. * @throws \think\db\exception\ModelNotFoundException
  66. * @throws \think\exception\DbException
  67. * @throws \think\exception\PDOException
  68. */
  69. public function edit()
  70. {
  71. $this->applyCsrfToken();
  72. $this->_form($this->table, 'form');
  73. }
  74. /**
  75. * 修改用户密码
  76. * @auth true
  77. * @throws \think\Exception
  78. * @throws \think\exception\PDOException
  79. */
  80. public function pass()
  81. {
  82. $this->applyCsrfToken();
  83. if ($this->request->isGet()) {
  84. $this->verify = false;
  85. $this->_form($this->table, 'pass');
  86. } else {
  87. $post = $this->request->post();
  88. if ($post['password'] !== $post['repassword']) {
  89. $this->error('两次输入的密码不一致!');
  90. }
  91. if (Data::save($this->table, ['id' => $post['id'], 'password' => md5($post['password'])], 'id')) {
  92. $this->success('密码修改成功,下次请使用新密码登录!', '');
  93. } else {
  94. $this->error('密码修改失败,请稍候再试!');
  95. }
  96. }
  97. }
  98. /**
  99. * 表单数据处理
  100. * @param array $data
  101. * @throws \think\db\exception\DataNotFoundException
  102. * @throws \think\db\exception\ModelNotFoundException
  103. * @throws \think\exception\DbException
  104. */
  105. public function _form_filter(&$data)
  106. {
  107. if ($this->request->isPost()) {
  108. // 用户权限处理
  109. $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
  110. // 用户账号重复检查
  111. if (isset($data['id'])) unset($data['username']);
  112. elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
  113. $this->error("账号{$data['username']}已经存在,请使用其它账号!");
  114. }
  115. } else {
  116. $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
  117. $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
  118. }
  119. }
  120. /**
  121. * 禁用系统用户
  122. * @auth true
  123. * @throws \think\Exception
  124. * @throws \think\exception\PDOException
  125. */
  126. public function forbid()
  127. {
  128. if (in_array('10000', explode(',', $this->request->post('id')))) {
  129. $this->error('系统超级账号禁止操作!');
  130. }
  131. $this->applyCsrfToken();
  132. $this->_save($this->table, ['status' => '0']);
  133. }
  134. /**
  135. * 启用系统用户
  136. * @auth true
  137. * @throws \think\Exception
  138. * @throws \think\exception\PDOException
  139. */
  140. public function resume()
  141. {
  142. $this->applyCsrfToken();
  143. $this->_save($this->table, ['status' => '1']);
  144. }
  145. /**
  146. * 删除系统用户
  147. * @auth true
  148. * @throws \think\Exception
  149. * @throws \think\exception\PDOException
  150. */
  151. public function remove()
  152. {
  153. if (in_array('10000', explode(',', $this->request->post('id')))) {
  154. $this->error('系统超级账号禁止删除!');
  155. }
  156. $this->applyCsrfToken();
  157. $this->_delete($this->table);
  158. }
  159. }