Index.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. namespace app\admin\controller;
  16. use think\admin\Controller;
  17. use think\admin\service\AdminService;
  18. use think\admin\service\MenuService;
  19. /**
  20. * 后台界面入口
  21. * Class Index
  22. * @package app\admin\controller
  23. */
  24. class Index extends Controller
  25. {
  26. /**
  27. * 显示后台首页
  28. * @throws \ReflectionException
  29. * @throws \think\db\exception\DataNotFoundException
  30. * @throws \think\db\exception\DbException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. */
  33. public function index()
  34. {
  35. /*! 根据运行模式刷新权限 */
  36. AdminService::instance()->apply($this->app->isDebug());
  37. /*! 读取当前用户权限菜单树 */
  38. $this->menus = MenuService::instance()->getTree();
  39. /*! 判断当前用户的登录状态 */
  40. $this->login = AdminService::instance()->isLogin();
  41. /*! 菜单为空且未登录跳转到登录页 */
  42. if (empty($this->menus) && empty($this->login)) {
  43. $this->redirect(sysuri('admin/login/index'));
  44. } else {
  45. $this->title = '系统管理后台';
  46. $this->isSuper = AdminService::instance()->isSuper();
  47. $this->fetch();
  48. }
  49. }
  50. /**
  51. * 修改用户资料
  52. * @login true
  53. * @param mixed $id 用户ID
  54. * @throws \think\db\exception\DataNotFoundException
  55. * @throws \think\db\exception\DbException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. */
  58. public function info($id = 0)
  59. {
  60. $this->_applyFormToken();
  61. if (AdminService::instance()->getUserId() === intval($id)) {
  62. $this->_form('SystemUser', 'admin@user/form', 'id', [], ['id' => $id]);
  63. } else {
  64. $this->error('只能修改自己的资料!');
  65. }
  66. }
  67. /**
  68. * 资料修改后处理
  69. * @param bool $status
  70. */
  71. protected function _info_form_result(bool $status)
  72. {
  73. if ($status) {
  74. $this->success('用户资料修改成功!', 'javascript:location.reload()');
  75. }
  76. }
  77. /**
  78. * 修改当前用户密码
  79. * @login true
  80. * @param mixed $id
  81. * @throws \think\db\exception\DataNotFoundException
  82. * @throws \think\db\exception\DbException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. */
  85. public function pass($id = 0)
  86. {
  87. $this->_applyFormToken();
  88. if (AdminService::instance()->getUserId() !== intval($id)) {
  89. $this->error('只能修改当前用户的密码!');
  90. }
  91. if ($this->app->request->isGet()) {
  92. $this->verify = true;
  93. $this->_form('SystemUser', 'admin@user/pass', 'id', [], ['id' => $id]);
  94. } else {
  95. $data = $this->_vali([
  96. 'password.require' => '登录密码不能为空!',
  97. 'repassword.require' => '重复密码不能为空!',
  98. 'oldpassword.require' => '旧的密码不能为空!',
  99. 'password.confirm:repassword' => '两次输入的密码不一致!',
  100. ]);
  101. $user = $this->app->db->name('SystemUser')->where(['id' => $id])->find();
  102. if (md5($data['oldpassword']) !== $user['password']) {
  103. $this->error('旧密码验证失败,请重新输入!');
  104. }
  105. if (data_save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) {
  106. sysoplog('系统用户管理', "修改用户[{$user['id']}]密码成功");
  107. $this->success('密码修改成功,下次请使用新密码登录!', '');
  108. } else {
  109. $this->error('密码修改失败,请稍候再试!');
  110. }
  111. }
  112. }
  113. }