koel/app/Exceptions/Handler.php

47 lines
1.3 KiB
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App\Exceptions;
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;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
2018-08-31 13:47:15 +00:00
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;
2020-09-06 18:21:39 +00:00
use Throwable;
2015-12-13 04:42:28 +00:00
class Handler extends ExceptionHandler
{
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
];
2020-09-06 18:21:39 +00:00
public function report(Throwable $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
}
2020-09-06 18:21:39 +00:00
public function render($request, Throwable $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
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);
}
2020-09-06 18:21:39 +00:00
return redirect()->guest('/');
2016-09-26 06:30:00 +00:00
}
2015-12-13 04:42:28 +00:00
}