AuthTokenMiddleware.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace catchAdmin\permissions\middleware;
  3. use catcher\Code;
  4. use catcher\exceptions\FailedException;
  5. use thans\jwt\exception\TokenBlacklistException;
  6. use thans\jwt\exception\TokenExpiredException;
  7. use thans\jwt\exception\TokenInvalidException;
  8. use thans\jwt\facade\JWTAuth;
  9. use think\Middleware;
  10. class AuthTokenMiddleware extends Middleware
  11. {
  12. public function handle($request, \Closure $next)
  13. {
  14. try {
  15. JWTAuth::auth();
  16. } catch (\Exception $e) {
  17. if ($e instanceof TokenExpiredException) {
  18. throw new FailedException('token 过期', Code::LOGIN_EXPIRED);
  19. }
  20. if ($e instanceof TokenBlacklistException) {
  21. throw new FailedException('token 被加入黑名单', Code::LOGIN_BLACKLIST);
  22. }
  23. if ($e instanceof TokenInvalidException) {
  24. throw new FailedException('token 不合法', Code::LOST_LOGIN);
  25. }
  26. throw new FailedException('登录用户不合法', Code::LOST_LOGIN);
  27. }
  28. return $next($request);
  29. }
  30. }