2015-12-13 04:42:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
|
|
|
use Exception;
|
2015-12-27 14:07:37 +00:00
|
|
|
use Illuminate\Auth\Access\AuthorizationException;
|
2016-09-26 07:33:53 +00:00
|
|
|
use Illuminate\Auth\AuthenticationException;
|
2015-12-13 04:42:28 +00:00
|
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
2016-01-05 14:08:02 +00:00
|
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
2018-08-31 13:47:15 +00:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
2016-01-15 07:28:34 +00:00
|
|
|
use Symfony\Component\HttpKernel\Exception\HttpException;
|
2016-08-16 15:12:11 +00:00
|
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
class Handler extends ExceptionHandler
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* A list of the exception types that should not be reported.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dontReport = [
|
2015-12-27 09:12:10 +00:00
|
|
|
AuthorizationException::class,
|
2015-12-13 04:42:28 +00:00
|
|
|
HttpException::class,
|
|
|
|
ModelNotFoundException::class,
|
2015-12-27 09:12:10 +00:00
|
|
|
ValidationException::class,
|
2015-12-13 04:42:28 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Report or log an exception.
|
|
|
|
*
|
|
|
|
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
|
|
|
|
*
|
2018-08-31 13:47:15 +00:00
|
|
|
* @throws Exception
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
2018-08-31 13:47:15 +00:00
|
|
|
public function report(Exception $e): void
|
2015-12-13 04:42:28 +00:00
|
|
|
{
|
2016-12-09 08:23:40 +00:00
|
|
|
parent::report($e);
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render an exception into an HTTP response.
|
|
|
|
*
|
2018-08-31 13:47:15 +00:00
|
|
|
* @param Request $request
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
2018-08-31 13:47:15 +00:00
|
|
|
public function render($request, Exception $e): Response
|
2015-12-13 04:42:28 +00:00
|
|
|
{
|
|
|
|
if ($e instanceof ModelNotFoundException) {
|
|
|
|
$e = new NotFoundHttpException($e->getMessage(), $e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::render($request, $e);
|
|
|
|
}
|
2016-09-26 06:30:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert an authentication exception into an unauthenticated response.
|
|
|
|
*
|
2018-08-31 13:47:15 +00:00
|
|
|
* @param Request $request
|
2016-09-26 06:30:00 +00:00
|
|
|
*/
|
2018-08-31 13:47:15 +00:00
|
|
|
protected function unauthenticated($request, AuthenticationException $exception): Response
|
2016-09-26 06:30:00 +00:00
|
|
|
{
|
|
|
|
if ($request->expectsJson()) {
|
|
|
|
return response()->json(['error' => 'Unauthenticated.'], 401);
|
|
|
|
}
|
|
|
|
|
|
|
|
return redirect()->guest('login');
|
|
|
|
}
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|