User.php 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://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 think\admin\Controller;
  16. /**
  17. * 系统用户管理
  18. * Class User
  19. * @package app\admin\controller
  20. */
  21. class User extends Controller
  22. {
  23. /**
  24. * 绑定数据表
  25. * @var string
  26. */
  27. private $table = 'SystemUser';
  28. /**
  29. * 系统用户管理
  30. * @auth true
  31. * @menu true
  32. * @throws \think\db\exception\DataNotFoundException
  33. * @throws \think\db\exception\DbException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. */
  36. public function index()
  37. {
  38. $this->title = '系统用户管理';
  39. $query = $this->_query($this->table);
  40. $query->equal('status')->dateBetween('login_at,create_at');
  41. $query->like('username,contact_phone#phone,contact_mail#mail');
  42. // 加载对应数据列表
  43. $this->type = input('type', 'all');
  44. if ($this->type === 'all') {
  45. $query->where(['is_deleted' => 0, 'status' => 1]);
  46. } elseif ($this->type = 'recycle') {
  47. $query->where(['is_deleted' => 0, 'status' => 0]);
  48. }
  49. // 列表排序并显示
  50. $query->order('sort desc,id desc')->page();
  51. }
  52. /**
  53. * 添加系统用户
  54. * @auth true
  55. * @throws \think\db\exception\DataNotFoundException
  56. * @throws \think\db\exception\DbException
  57. * @throws \think\db\exception\ModelNotFoundException
  58. */
  59. public function add()
  60. {
  61. $this->_applyFormToken();
  62. $this->_form($this->table, 'form');
  63. }
  64. /**
  65. * 编辑系统用户
  66. * @auth true
  67. * @throws \think\db\exception\DataNotFoundException
  68. * @throws \think\db\exception\DbException
  69. * @throws \think\db\exception\ModelNotFoundException
  70. */
  71. public function edit()
  72. {
  73. $this->_applyFormToken();
  74. $this->_form($this->table, 'form');
  75. }
  76. /**
  77. * 修改用户密码
  78. * @auth true
  79. * @throws \think\db\exception\DataNotFoundException
  80. * @throws \think\db\exception\DbException
  81. * @throws \think\db\exception\ModelNotFoundException
  82. */
  83. public function pass()
  84. {
  85. $this->_applyFormToken();
  86. if ($this->request->isGet()) {
  87. $this->verify = false;
  88. $this->_form($this->table, 'pass');
  89. } else {
  90. $data = $this->_vali([
  91. 'id.require' => '用户ID不能为空!',
  92. 'password.require' => '登录密码不能为空!',
  93. 'repassword.require' => '重复密码不能为空!',
  94. 'repassword.confirm:password' => '两次输入的密码不一致!',
  95. ]);
  96. if (data_save($this->table, ['id' => $data['id'], 'password' => md5($data['password'])], 'id')) {
  97. sysoplog('系统用户管理', "修改用户[{$data['id']}]密码成功");
  98. $this->success('密码修改成功,请使用新密码登录!', '');
  99. } else {
  100. $this->error('密码修改失败,请稍候再试!');
  101. }
  102. }
  103. }
  104. /**
  105. * 表单数据处理
  106. * @param array $data
  107. * @throws \think\db\exception\DataNotFoundException
  108. * @throws \think\db\exception\DbException
  109. * @throws \think\db\exception\ModelNotFoundException
  110. */
  111. protected function _form_filter(array &$data)
  112. {
  113. if ($this->request->isPost()) {
  114. if (isset($data['id']) && $data['id'] > 0) {
  115. unset($data['username']);
  116. } else {
  117. // 检查登录账号是否出现重复
  118. if (empty($data['username'])) $this->error('登录账号不能为空!');
  119. $where = ['username' => $data['username'], 'is_deleted' => 0];
  120. if ($this->app->db->name($this->table)->where($where)->count() > 0) {
  121. $this->error("账号已经存在,请使用其它账号!");
  122. }
  123. // 新添加的用户密码与账号相同
  124. $data['password'] = md5($data['username']);
  125. }
  126. // 账号权限绑定处理
  127. $data['authorize'] = arr2str($data['authorize'] ?? []);
  128. } else {
  129. $data['authorize'] = str2arr($data['authorize'] ?? '');
  130. $query = $this->app->db->name('SystemAuth')->where(['status' => 1]);
  131. $this->authorizes = $query->order('sort desc,id desc')->select()->toArray();
  132. }
  133. }
  134. /**
  135. * 修改用户状态
  136. * @auth true
  137. * @throws \think\db\exception\DbException
  138. */
  139. public function state()
  140. {
  141. $this->_checkInput();
  142. $this->_applyFormToken();
  143. $this->_save($this->table, $this->_vali([
  144. 'status.in:0,1' => '状态值范围异常!',
  145. 'status.require' => '状态值不能为空!',
  146. ]));
  147. }
  148. /**
  149. * 删除系统用户
  150. * @auth true
  151. * @throws \think\db\exception\DbException
  152. */
  153. public function remove()
  154. {
  155. $this->_checkInput();
  156. $this->_applyFormToken();
  157. $this->_delete($this->table);
  158. }
  159. /**
  160. * 检查输入变量
  161. */
  162. private function _checkInput()
  163. {
  164. if (in_array('10000', str2arr(input('id', '')))) {
  165. $this->error('系统超级账号禁止删除!');
  166. }
  167. }
  168. /**
  169. * 表单结果处理
  170. * @param bool $result
  171. */
  172. protected function _add_form_result(bool $result)
  173. {
  174. if ($result) {
  175. $id = $this->app->db->name($this->table)->getLastInsID();
  176. sysoplog('系统用户管理', "添加系统用户[{$id}]成功");
  177. }
  178. }
  179. /**
  180. * 表单结果处理
  181. * @param boolean $result
  182. */
  183. protected function _edit_form_result(bool $result)
  184. {
  185. if ($result) {
  186. $id = input('id') ?: 0;
  187. sysoplog('系统用户管理', "修改系统用户[{$id}]成功");
  188. }
  189. }
  190. /**
  191. * 状态结果处理
  192. * @param boolean $result
  193. */
  194. protected function _state_save_result(bool $result)
  195. {
  196. if ($result) {
  197. [$id, $state] = [input('id'), input('status')];
  198. sysoplog('系统用户管理', ($state ? '激活' : '禁用') . "系统用户[{$id}]成功");
  199. }
  200. }
  201. /**
  202. * 删除结果处理
  203. * @param boolean $result
  204. */
  205. protected function _remove_delete_result(bool $result)
  206. {
  207. if ($result) {
  208. $id = input('id') ?: 0;
  209. sysoplog('系统用户管理', "删除系统用户[{$id}]成功");
  210. }
  211. }
  212. }