Index.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. * @throws \think\Exception
  109. * @throws \think\db\exception\DataNotFoundException
  110. * @throws \think\db\exception\ModelNotFoundException
  111. * @throws \think\exception\DbException
  112. * @throws \think\exception\PDOException
  113. */
  114. public function info($id = 0)
  115. {
  116. if (!NodeService::islogin()) {
  117. $this->error('需要登录才能操作哦!');
  118. }
  119. $this->applyCsrfToken();
  120. if (intval($id) === intval(session('admin_user.id'))) {
  121. $this->_form('SystemUser', 'admin@user/form', 'id', [], ['id' => $id]);
  122. } else {
  123. $this->error('只能修改登录用户的资料!');
  124. }
  125. }
  126. /**
  127. * 清理运行缓存
  128. * @auth true
  129. */
  130. public function clearRuntime()
  131. {
  132. if (!NodeService::islogin()) {
  133. $this->error('需要登录才能操作哦!');
  134. }
  135. try {
  136. Console::call('clear');
  137. Console::call('xclean:session');
  138. $this->success('清理运行缓存成功!');
  139. } catch (HttpResponseException $exception) {
  140. throw $exception;
  141. } catch (\Exception $e) {
  142. $this->error("清理运行缓存失败,{$e->getMessage()}");
  143. }
  144. }
  145. /**
  146. * 压缩发布系统
  147. * @auth true
  148. */
  149. public function buildOptimize()
  150. {
  151. if (!NodeService::islogin()) {
  152. $this->error('需要登录才能操作哦!');
  153. }
  154. try {
  155. Console::call('optimize:route');
  156. Console::call('optimize:schema');
  157. Console::call('optimize:autoload');
  158. Console::call('optimize:config');
  159. $this->success('压缩发布成功!');
  160. } catch (HttpResponseException $exception) {
  161. throw $exception;
  162. } catch (\Exception $e) {
  163. $this->error("压缩发布失败,{$e->getMessage()}");
  164. }
  165. }
  166. }