User.php 4.8 KB

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