Index.php 5.6 KB

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