Handler.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace App\Exceptions;
  3. use Exception;
  4. use Illuminate\Auth\AuthenticationException;
  5. use Illuminate\Validation\ValidationException;
  6. use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
  7. class Handler extends ExceptionHandler
  8. {
  9. /**
  10. * A list of the exception types that should not be reported.
  11. *
  12. * @var array
  13. */
  14. protected $dontReport = [
  15. //
  16. ];
  17. /**
  18. * Report or log an exception.
  19. *
  20. * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
  21. *
  22. * @param \Exception $exception
  23. * @return void
  24. */
  25. public function report(Exception $exception)
  26. {
  27. parent::report($exception);
  28. }
  29. /**
  30. * Render an exception into an HTTP response.
  31. *
  32. * @param \Illuminate\Http\Request $request
  33. * @param \Exception $exception
  34. * @return \Illuminate\Http\Response
  35. */
  36. public function render($request, Exception $exception)
  37. {
  38. return parent::render($request, $exception);
  39. }
  40. /**
  41. * Convert a validation exception into a response.
  42. *
  43. * @param \Illuminate\Http\Request $request
  44. * @param Illuminate\Validation\ValidationException $exception
  45. * @return \Illuminate\Http\Response
  46. */
  47. protected function invalid($request, ValidationException $exception)
  48. {
  49. $errors = $exception->validator->errors()->messages();
  50. return $request->expectsJson()
  51. ? response()->json(['message' => $exception->getMessage(), 'errors' => $errors], 422)
  52. : redirect()->back()->withInput()->withErrors(
  53. $errors, $exception->errorBag
  54. );
  55. }
  56. /**
  57. * Convert an authentication exception into a response.
  58. *
  59. * @param \Illuminate\Http\Request $request
  60. * @param \Illuminate\Auth\AuthenticationException $exception
  61. * @return \Illuminate\Http\Response
  62. */
  63. protected function unauthenticated($request, AuthenticationException $exception)
  64. {
  65. return $request->expectsJson()
  66. ? response()->json(['message' => 'Unauthenticated.'], 401)
  67. : redirect()->guest(route('login'));
  68. }
  69. }