Index.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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\service\AdminService;
  17. use library\service\MenuService;
  18. use library\tools\Data;
  19. use think\Console;
  20. use think\Db;
  21. use think\exception\HttpResponseException;
  22. /**
  23. * 系统公共操作
  24. * Class Index
  25. * @package app\admin\controller
  26. */
  27. class Index extends Controller
  28. {
  29. /**
  30. * 显示后台首页
  31. * @throws \ReflectionException
  32. * @throws \think\db\exception\DataNotFoundException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. * @throws \think\exception\DbException
  35. */
  36. public function index()
  37. {
  38. $this->title = '系统管理后台';
  39. $auth = AdminService::instance()->apply(true);
  40. $this->menus = MenuService::instance()->getTree();
  41. if (empty($this->menus) && !$auth->isLogin()) {
  42. $this->redirect('@admin/login');
  43. } else {
  44. $this->fetch();
  45. }
  46. }
  47. /**
  48. * 后台环境信息
  49. */
  50. public function main()
  51. {
  52. $this->think_ver = \think\App::VERSION;
  53. $this->mysql_ver = Db::query('select version() as ver')[0]['ver'];
  54. $this->fetch();
  55. }
  56. /**
  57. * 修改密码
  58. * @login true
  59. * @param integer $id
  60. * @throws \think\Exception
  61. * @throws \think\db\exception\DataNotFoundException
  62. * @throws \think\db\exception\ModelNotFoundException
  63. * @throws \think\exception\DbException
  64. * @throws \think\exception\PDOException
  65. */
  66. public function pass($id)
  67. {
  68. $this->applyCsrfToken();
  69. if (intval($id) !== intval(session('user.id'))) {
  70. $this->error('只能修改当前用户的密码!');
  71. }
  72. if (!AdminService::instance()->isLogin()) {
  73. $this->error('需要登录才能操作哦!');
  74. }
  75. if ($this->request->isGet()) {
  76. $this->verify = true;
  77. $this->_form('SystemUser', 'admin@user/pass', 'id', [], ['id' => $id]);
  78. } else {
  79. $data = $this->_input([
  80. 'password' => $this->request->post('password'),
  81. 'repassword' => $this->request->post('repassword'),
  82. 'oldpassword' => $this->request->post('oldpassword'),
  83. ], [
  84. 'oldpassword' => 'require',
  85. 'password' => 'require|min:4',
  86. 'repassword' => 'require|confirm:password',
  87. ], [
  88. 'oldpassword.require' => '旧密码不能为空!',
  89. 'password.require' => '登录密码不能为空!',
  90. 'password.min' => '登录密码长度不能少于4位有效字符!',
  91. 'repassword.require' => '重复密码不能为空!',
  92. 'repassword.confirm' => '重复密码与登录密码不匹配,请重新输入!',
  93. ]);
  94. $user = Db::name('SystemUser')->where(['id' => $id])->find();
  95. if (md5($data['oldpassword']) !== $user['password']) {
  96. $this->error('旧密码验证失败,请重新输入!');
  97. }
  98. if (Data::save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) {
  99. $this->success('密码修改成功,下次请使用新密码登录!', '');
  100. } else {
  101. $this->error('密码修改失败,请稍候再试!');
  102. }
  103. }
  104. }
  105. /**
  106. * 修改用户资料
  107. * @login true
  108. * @param integer $id 会员ID
  109. * @throws \think\Exception
  110. * @throws \think\db\exception\DataNotFoundException
  111. * @throws \think\db\exception\ModelNotFoundException
  112. * @throws \think\exception\DbException
  113. * @throws \think\exception\PDOException
  114. */
  115. public function info($id = 0)
  116. {
  117. if (!AdminService::instance()->isLogin()) {
  118. $this->error('需要登录才能操作哦!');
  119. }
  120. $this->applyCsrfToken();
  121. if (intval($id) === intval(session('user.id'))) {
  122. $this->_form('SystemUser', 'admin@user/form', 'id', [], ['id' => $id]);
  123. } else {
  124. $this->error('只能修改登录用户的资料!');
  125. }
  126. }
  127. /**
  128. * 清理运行缓存
  129. * @auth true
  130. */
  131. public function clearRuntime()
  132. {
  133. try {
  134. Console::call('clear');
  135. Console::call('xclean:session');
  136. $this->success('清理运行缓存成功!');
  137. } catch (HttpResponseException $exception) {
  138. throw $exception;
  139. } catch (\Exception $e) {
  140. $this->error("清理运行缓存失败,{$e->getMessage()}");
  141. }
  142. }
  143. /**
  144. * 压缩发布系统
  145. * @auth true
  146. */
  147. public function buildOptimize()
  148. {
  149. try {
  150. Console::call('optimize:route');
  151. Console::call('optimize:schema');
  152. Console::call('optimize:autoload');
  153. Console::call('optimize:config');
  154. $this->success('压缩发布成功!');
  155. } catch (HttpResponseException $exception) {
  156. throw $exception;
  157. } catch (\Exception $e) {
  158. $this->error("压缩发布失败,{$e->getMessage()}");
  159. }
  160. }
  161. }