Login.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. /**
  3. * Created by PhpStorm
  4. * User: 林志杰
  5. * Email: [email protected]
  6. * Time: 2020/1/2 12:58
  7. */
  8. namespace app\admin\controller;
  9. use app\admin\business\AdminUser as AdminUserBusiness;
  10. use app\admin\validate\AdminUser as AdminUserValidate;
  11. use think\facade\View;
  12. class Login extends AdminBase
  13. {
  14. public function initialize()
  15. {
  16. if ($this->isLogin()) {
  17. return $this->redirect(url('index/index'), 302);
  18. }
  19. }
  20. public function index()
  21. {
  22. return View::fetch();
  23. }
  24. public function md5()
  25. {
  26. halt(session(config('admin.session_admin')));
  27. echo md5('admin_singwa_abc');
  28. }
  29. public function check()
  30. {
  31. if (!$this->request->isPost()) {
  32. return show(config('status.error'), '请求方式错误');
  33. }
  34. // 参数校验 1、原生方式 2、TP6 验证机制
  35. $username = $this->request->param('username', '', 'trim');
  36. $password = $this->request->param('password', '', 'trim');
  37. $captcha = $this->request->param('captcha', '', 'trim');
  38. $data = [
  39. 'username' => $username,
  40. 'password' => $password,
  41. 'captcha' => $captcha,
  42. ];
  43. $validate = new AdminUserValidate();
  44. if (!$validate->check($data)) {
  45. return show(config('status.error'), $validate->getError());
  46. }
  47. // if (empty($username) || empty($password) || empty($captcha)) {
  48. // return show(config('status.error'), '参数不能为空');
  49. // }
  50. // 验证码校验
  51. // if (!captcha_check($captcha)) {
  52. // // 验证码校验失败
  53. // return show(config('status.error'), '验证码不正确');
  54. // }
  55. try {
  56. $result = AdminUserBusiness::login($data);
  57. } catch (\Exception $e) {
  58. return show(config('status.error'), $e->getMessage());
  59. }
  60. if ($result) {
  61. return show(config('status.success'), '登录成功');
  62. } else {
  63. return show(config('status.error'), '登录失败');
  64. }
  65. }
  66. }