Request.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. namespace app;
  3. // 应用请求对象类
  4. use catchAdmin\permissions\model\Users;
  5. use catcher\CatchAuth;
  6. use catcher\Code;
  7. use catcher\exceptions\FailedException;
  8. use catcher\exceptions\LoginFailedException;
  9. use thans\jwt\exception\TokenBlacklistException;
  10. use thans\jwt\exception\TokenExpiredException;
  11. use thans\jwt\exception\TokenInvalidException;
  12. class Request extends \think\Request
  13. {
  14. protected $auth;
  15. /**
  16. * login user
  17. *
  18. * @time 2020年01月09日
  19. * @param null $guard
  20. * @return mixed
  21. */
  22. public function user($guard = null)
  23. {
  24. if (!$this->auth) {
  25. $this->auth = new CatchAuth;
  26. }
  27. try {
  28. $user = $this->auth->guard($guard ? : config('catch.auth.default.guard'))->user();
  29. if ($user->status == Users::DISABLE) {
  30. throw new LoginFailedException('该用户已被禁用', Code::USER_FORBIDDEN);
  31. }
  32. } catch (\Exception $e) {
  33. if ($e instanceof TokenExpiredException) {
  34. throw new FailedException('token 过期', Code::LOGIN_EXPIRED);
  35. }
  36. if ($e instanceof TokenBlacklistException) {
  37. throw new FailedException('token 被加入黑名单', Code::LOGIN_BLACKLIST);
  38. }
  39. if ($e instanceof TokenInvalidException) {
  40. throw new FailedException('token 不合法', Code::LOST_LOGIN);
  41. }
  42. throw new FailedException('认证失败: '. $e->getMessage(), $e->getCode());
  43. }
  44. return $user;
  45. }
  46. }