Handler.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace App\Exceptions;
  3. use Exception;
  4. use Illuminate\Auth\AuthenticationException;
  5. use Illuminate\Validation\ValidationException;
  6. use Illuminate\Auth\Access\AuthorizationException;
  7. use Illuminate\Database\Eloquent\ModelNotFoundException;
  8. use Symfony\Component\HttpKernel\Exception\HttpException;
  9. use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
  10. class Handler extends ExceptionHandler
  11. {
  12. /**
  13. * A list of the exception types that should not be reported.
  14. *
  15. * @var array
  16. */
  17. protected $dontReport = [
  18. AuthenticationException::class,
  19. AuthorizationException::class,
  20. HttpException::class,
  21. ModelNotFoundException::class,
  22. ValidationException::class,
  23. ];
  24. /**
  25. * Convert an authentication exception into an unauthenticated response.
  26. *
  27. * @param \Illuminate\Http\Request $request
  28. * @param \Illuminate\Auth\AuthenticationException $e
  29. * @return \Symfony\Component\HttpFoundation\Response
  30. */
  31. protected function unauthenticated($request, AuthenticationException $e)
  32. {
  33. if ($request->ajax() || $request->wantsJson()) {
  34. return response('Unauthorized.', 401);
  35. } else {
  36. return redirect()->guest('login');
  37. }
  38. }
  39. /**
  40. * Report or log an exception.
  41. *
  42. * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
  43. *
  44. * @param \Exception $e
  45. * @return void
  46. */
  47. public function report(Exception $e)
  48. {
  49. parent::report($e);
  50. }
  51. /**
  52. * Render an exception into an HTTP response.
  53. *
  54. * @param \Illuminate\Http\Request $request
  55. * @param \Exception $e
  56. * @return \Illuminate\Http\Response
  57. */
  58. public function render($request, Exception $e)
  59. {
  60. return parent::render($request, $e);
  61. }
  62. }