Index.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\Admin;
  4. use app\admin\model\AdminLog;
  5. use app\common\controller\Backend;
  6. use app\common\library\Sms;
  7. use think\Config;
  8. use think\Hook;
  9. use think\Validate;
  10. /**
  11. * 后台首页
  12. * @internal
  13. */
  14. class Index extends Backend
  15. {
  16. protected $noNeedLogin = ['login','login_sms'];
  17. protected $noNeedRight = ['index', 'logout'];
  18. protected $layout = '';
  19. public function _initialize()
  20. {
  21. parent::_initialize();
  22. //移除HTML标签
  23. $this->request->filter('trim,strip_tags,htmlspecialchars');
  24. }
  25. /**
  26. * 后台首页
  27. */
  28. public function index()
  29. {
  30. //左侧菜单
  31. list($menulist, $navlist, $fixedmenu, $referermenu) = $this->auth->getSidebar([
  32. //'dashboard' => 'hot',
  33. //'addon' => ['new', 'red', 'badge'],
  34. 'auth/rule' => __('Menu'),
  35. //'general' => ['new', 'purple'],
  36. ], $this->view->site['fixedpage']);
  37. $action = $this->request->request('action');
  38. if ($this->request->isPost()) {
  39. if ($action == 'refreshmenu') {
  40. $this->success('', null, ['menulist' => $menulist, 'navlist' => $navlist]);
  41. }
  42. }
  43. $this->view->assign('menulist', $menulist);
  44. $this->view->assign('navlist', $navlist);
  45. $this->view->assign('fixedmenu', $fixedmenu);
  46. $this->view->assign('referermenu', $referermenu);
  47. $this->view->assign('title', __('Home'));
  48. return $this->view->fetch();
  49. }
  50. /**
  51. * 管理员登录
  52. */
  53. public function login()
  54. {
  55. $url = $this->request->get('url', 'index/index');
  56. if ($this->auth->isLogin()) {
  57. $this->success(__("You've logged in, do not login again"), $url);
  58. }
  59. if ($this->request->isPost()) {
  60. $username = $this->request->post('username');
  61. $password = $this->request->post('password');
  62. $keeplogin = $this->request->post('keeplogin');
  63. $token = $this->request->post('__token__');
  64. $rule = [
  65. 'username' => 'require|length:3,30',
  66. 'password' => 'require|length:3,30',
  67. 'captcha_sms|手机验证码' => 'require|length:3,30',
  68. '__token__' => 'require|token',
  69. ];
  70. $data = [
  71. 'username' => $username,
  72. 'password' => $password,
  73. 'captcha_sms'=> input('captcha_sms'),
  74. '__token__' => $token,
  75. ];
  76. if (Config::get('fastadmin.login_captcha')) {
  77. $rule['captcha'] = 'require|captcha';
  78. $data['captcha'] = $this->request->post('captcha');
  79. }
  80. $validate = new Validate($rule, [], ['username' => __('Username'), 'password' => __('Password'), 'captcha' => __('Captcha')]);
  81. $result = $validate->check($data);
  82. if (!$result) {
  83. $this->error($validate->getError(), $url, ['token' => $this->request->token()]);
  84. }
  85. $admin=Admin::where('username',$data['username'])->find();
  86. if(!$admin){
  87. $this->error('用户名或密码有错误');
  88. }
  89. $checkSms = Sms::check($admin['phone'],$data['captcha_sms'],'admin_login');
  90. // if(!$checkSms){
  91. // $this->error('手机验证码错误');
  92. // }
  93. AdminLog::setTitle(__('Login'));
  94. $result = $this->auth->login($username, $password, $keeplogin ? 86400 : 0);
  95. if ($result === true) {
  96. Hook::listen("admin_login_after", $this->request);
  97. $this->success(__('Login successful'), $url, ['url' => $url, 'id' => $this->auth->id, 'username' => $username, 'avatar' => $this->auth->avatar]);
  98. } else {
  99. $msg = $this->auth->getError();
  100. $msg = $msg ? $msg : __('Username or password is incorrect'.'!');
  101. $this->error($msg, $url, ['token' => $this->request->token()]);
  102. }
  103. }
  104. // 根据客户端的cookie,判断是否可以自动登录
  105. if ($this->auth->autologin()) {
  106. $this->redirect($url);
  107. }
  108. $background = Config::get('fastadmin.login_background');
  109. $background = $background ? (stripos($background, 'http') === 0 ? $background : config('site.cdnurl') . $background) : '';
  110. $this->view->assign('background', $background);
  111. $this->view->assign('title', __('Login'));
  112. Hook::listen("admin_login_init", $this->request);
  113. return $this->view->fetch();
  114. }
  115. /**
  116. * 退出登录
  117. */
  118. public function logout()
  119. {
  120. if ($this->request->isPost()) {
  121. $this->auth->logout();
  122. Hook::listen("admin_logout_after", $this->request);
  123. $this->success(__('Logout successful'), 'index/login');
  124. }
  125. $html = "<form id='logout_submit' name='logout_submit' action='' method='post'>" . token() . "<input type='submit' value='ok' style='display:none;'></form>";
  126. $html .= "<script>document.forms['logout_submit'].submit();</script>";
  127. return $html;
  128. }
  129. public function login_sms(){
  130. $this->validateFailException();
  131. $data=input();
  132. $this->validate($data,[
  133. 'username|用户名'=>['require'],
  134. ]);
  135. $admin=Admin::where('username',$data['username'])->find();
  136. if(!$admin){
  137. $this->error('用户不存在');
  138. }
  139. if($admin['id']==1 && !$admin['phone']){
  140. $this->success();
  141. }else{
  142. if(!$admin['phone']){
  143. $this->error('发送失败');
  144. }
  145. if($admin['status']=='hidden'){
  146. $this->error('请联系超级管理员开通权限');
  147. }
  148. }
  149. Sms::send($admin['phone'],null,'admin_login');
  150. $this->success();
  151. }
  152. }