Index.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  12. // +----------------------------------------------------------------------
  13. namespace app\admin\controller;
  14. use library\Controller;
  15. use library\tools\Data;
  16. use think\Console;
  17. use think\Db;
  18. /**
  19. * 后台入口管理
  20. * Class Index
  21. * @package app\admin\controller
  22. */
  23. class Index extends Controller
  24. {
  25. /**
  26. * 显示后台首页
  27. * @throws \think\db\exception\DataNotFoundException
  28. * @throws \think\db\exception\ModelNotFoundException
  29. * @throws \think\exception\DbException
  30. */
  31. public function index()
  32. {
  33. $this->title = '系统管理后台';
  34. $this->menus = \app\admin\service\Auth::getAuthMenu();
  35. if (empty($this->menus) && !session('user.id')) {
  36. $this->redirect('@admin/login');
  37. } else {
  38. $this->fetch();
  39. }
  40. }
  41. /**
  42. * 后台环境信息
  43. * @return mixed
  44. */
  45. public function main()
  46. {
  47. $this->title = '后台首页';
  48. $this->think_ver = \think\App::VERSION;
  49. $this->mysql_ver = Db::query('select version() as ver')[0]['ver'];
  50. $this->fetch();
  51. }
  52. /**
  53. * 清理系统运行缓存
  54. */
  55. public function clearRuntime()
  56. {
  57. if (!\app\admin\service\Auth::isLogin()) {
  58. $this->error('需要登录才能操作哦!');
  59. }
  60. $this->list = [
  61. [
  62. 'title' => 'Clean up running cached files',
  63. 'message' => nl2br(Console::call('clear')->fetch()),
  64. ], [
  65. 'title' => 'Clean up invalid session files',
  66. 'message' => nl2br(Console::call('xclean:session')->fetch()),
  67. ],
  68. ];
  69. $this->fetch('admin@index/command');
  70. }
  71. /**
  72. * 压缩发布系统
  73. */
  74. public function buildOptimize()
  75. {
  76. if (!\app\admin\service\Auth::isLogin()) {
  77. $this->error('需要登录才能操作哦!');
  78. }
  79. $this->list = [
  80. [
  81. 'title' => 'Build route cache',
  82. 'message' => nl2br(Console::call('optimize:route')->fetch()),
  83. ], [
  84. 'title' => 'Build database schema cache',
  85. 'message' => nl2br(Console::call('optimize:schema')->fetch()),
  86. ], [
  87. 'title' => 'Optimizes PSR0 and PSR4 packages',
  88. 'message' => nl2br(Console::call('optimize:autoload')->fetch()),
  89. ], [
  90. 'title' => 'Build config and common file cache',
  91. 'message' => nl2br(Console::call('optimize:config')->fetch()),
  92. ],
  93. ];
  94. $this->fetch('admin@index/command');
  95. }
  96. /**
  97. * 修改密码
  98. * @param integer $id
  99. * @throws \think\Exception
  100. * @throws \think\db\exception\DataNotFoundException
  101. * @throws \think\db\exception\ModelNotFoundException
  102. * @throws \think\exception\DbException
  103. * @throws \think\exception\PDOException
  104. */
  105. public function pass($id)
  106. {
  107. $this->applyCsrfToken();
  108. if (intval($id) !== intval(session('user.id'))) {
  109. $this->error('只能修改当前用户的密码!');
  110. }
  111. if ($this->request->isGet()) {
  112. $this->verify = true;
  113. $this->_form('SystemUser', 'admin@user/pass', 'id', [], ['id' => $id]);
  114. } else {
  115. $data = $this->_input([
  116. 'password' => $this->request->post('password'),
  117. 'repassword' => $this->request->post('repassword'),
  118. 'oldpassword' => $this->request->post('oldpassword'),
  119. ], [
  120. 'oldpassword' => 'require',
  121. 'password' => 'require|min:4',
  122. 'repassword' => 'require|confirm:password',
  123. ], [
  124. 'oldpassword.require' => '旧密码不能为空!',
  125. 'password.require' => '登录密码不能为空!',
  126. 'password.min' => '登录密码长度不能少于4位有效字符!',
  127. 'repassword.require' => '重复密码不能为空!',
  128. 'repassword.confirm' => '重复密码与登录密码不匹配,请重新输入!',
  129. ]);
  130. $user = Db::name('SystemUser')->where(['id' => $id])->find();
  131. if (md5($data['oldpassword']) !== $user['password']) {
  132. $this->error('旧密码验证失败,请重新输入!');
  133. }
  134. $result = \app\admin\service\Auth::checkPassword($data['password']);
  135. if (empty($result['code'])) $this->error($result['msg']);
  136. if (Data::save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) {
  137. $this->success('密码修改成功,下次请使用新密码登录!', '');
  138. } else {
  139. $this->error('密码修改失败,请稍候再试!');
  140. }
  141. }
  142. }
  143. /**
  144. * 修改用户资料
  145. * @param integer $id 会员ID
  146. */
  147. public function info($id = 0)
  148. {
  149. $this->applyCsrfToken();
  150. if (intval($id) === intval(session('user.id'))) {
  151. $this->_form('SystemUser', 'user/form', 'id', [], ['id' => $id]);
  152. } else {
  153. $this->error('只能修改登录用户的资料!');
  154. }
  155. }
  156. }