Index.php 4.1 KB

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