Authenticate.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace App\Http\Middleware;
  3. use Closure;
  4. use Illuminate\Support\Facades\Auth;
  5. use Illuminate\Auth\AuthenticationException;
  6. class Authenticate
  7. {
  8. /**
  9. * Handle an incoming request.
  10. *
  11. * @param \Illuminate\Http\Request $request
  12. * @param \Closure $next
  13. * @param string ...$guards
  14. * @return mixed
  15. *
  16. * @throws \Illuminate\Auth\AuthenticationException
  17. */
  18. public function handle($request, Closure $next, ...$guards)
  19. {
  20. $this->authenticate($guards);
  21. return $next($request);
  22. }
  23. /**
  24. * Determine if the user is logged in to any of the given guards.
  25. *
  26. * @param array $guards
  27. * @return void
  28. *
  29. * @throws \Illuminate\Auth\AuthenticationException
  30. */
  31. protected function authenticate(array $guards)
  32. {
  33. if (count($guards) <= 1) {
  34. Auth::guard(array_first($guards))->authenticate();
  35. return Auth::shouldUse($guard);
  36. }
  37. foreach ($guards as $guard) {
  38. if (Auth::guard($guard)->check()) {
  39. return Auth::shouldUse($guard);
  40. }
  41. }
  42. throw new AuthenticationException;
  43. }
  44. }