AuthMiddleware.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php namespace App\Http\Middleware;
  2. use Closure;
  3. use Illuminate\Routing\Route;
  4. use Illuminate\Contracts\Auth\Authenticator;
  5. use Illuminate\Contracts\Routing\Middleware;
  6. use Illuminate\Contracts\Routing\ResponseFactory;
  7. class AuthMiddleware implements Middleware {
  8. /**
  9. * The authenticator implementation.
  10. *
  11. * @var Authenticator
  12. */
  13. protected $auth;
  14. /**
  15. * The response factory implementation.
  16. *
  17. * @var ResponseFactory
  18. */
  19. protected $response;
  20. /**
  21. * Create a new filter instance.
  22. *
  23. * @param Authenticator $auth
  24. * @param ResponseFactory $response
  25. * @return void
  26. */
  27. public function __construct(Authenticator $auth,
  28. ResponseFactory $response)
  29. {
  30. $this->auth = $auth;
  31. $this->response = $response;
  32. }
  33. /**
  34. * Handle an incoming request.
  35. *
  36. * @param \Illuminate\Http\Request $request
  37. * @param \Closure $next
  38. * @return mixed
  39. */
  40. public function handle($request, Closure $next)
  41. {
  42. if ($this->auth->guest())
  43. {
  44. if ($request->ajax())
  45. {
  46. return $this->response->make('Unauthorized', 401);
  47. }
  48. else
  49. {
  50. return $this->response->redirectGuest('auth/login');
  51. }
  52. }
  53. return $next($request);
  54. }
  55. }