jonnybarnes.uk/app/Exceptions/Handler.php

90 lines
2.6 KiB
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
<?php
namespace App\Exceptions;
use Exception;
2016-09-06 16:40:39 +01:00
use Illuminate\Auth\AuthenticationException;
2016-06-23 14:27:00 +01:00
use Symfony\Component\Debug\Exception\FlattenException;
2016-05-19 15:01:28 +01:00
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that should not be reported.
*
* @var array
*/
protected $dontReport = [
2016-09-06 16:40:39 +01:00
\Illuminate\Auth\AuthenticationException::class,
\Illuminate\Auth\Access\AuthorizationException::class,
\Symfony\Component\HttpKernel\Exception\HttpException::class,
\Illuminate\Database\Eloquent\ModelNotFoundException::class,
\Illuminate\Session\TokenMismatchException::class,
\Illuminate\Validation\ValidationException::class,
2016-05-19 15:01:28 +01:00
];
/**
* Report or log an exception.
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
2016-09-06 16:40:39 +01:00
* @param \Exception $exception
2016-05-19 15:01:28 +01:00
* @return void
*/
2016-09-06 16:40:39 +01:00
public function report(Exception $exception)
2016-05-19 15:01:28 +01:00
{
2016-09-06 16:40:39 +01:00
parent::report($exception);
2016-05-19 15:01:28 +01:00
}
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
2016-09-06 16:40:39 +01:00
* @param \Exception $exception
2016-05-19 15:01:28 +01:00
* @return \Illuminate\Http\Response
*/
2016-09-06 16:40:39 +01:00
public function render($request, Exception $exception)
2016-05-19 15:01:28 +01:00
{
2016-09-06 16:40:39 +01:00
return parent::render($request, $exception);
}
2016-05-19 15:01:28 +01:00
2016-09-06 16:40:39 +01:00
/**
* Convert an authentication exception into an unauthenticated response.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Auth\AuthenticationException $exception
* @return \Illuminate\Http\Response
*/
protected function unauthenticated($request, AuthenticationException $exception)
{
if ($request->expectsJson()) {
return response()->json(['error' => 'Unauthenticated.'], 401);
2016-05-19 15:01:28 +01:00
}
2016-09-06 16:40:39 +01:00
return redirect()->guest('login');
2016-05-19 15:01:28 +01:00
}
/**
* Render an exception using Whoops.
*
* @param \Exception $exc
* @return \Illuminate\Http\Response
*/
2016-09-06 16:40:39 +01:00
protected function renderExceptionWithWhoops(Exception $exception)
2016-05-19 15:01:28 +01:00
{
$whoops = new \Whoops\Run;
$handler = new \Whoops\Handler\PrettyPageHandler();
$handler->setEditor(function ($file, $line) {
return "atom://open?file=$file&line=$line";
});
$whoops->pushHandler($handler);
2016-09-06 16:40:39 +01:00
$flattened = FlattenException::create($exception);
2016-06-23 15:58:45 +01:00
2016-05-19 15:01:28 +01:00
return new \Illuminate\Http\Response(
$whoops->handleException($exc),
2016-06-23 14:27:00 +01:00
$flattened->getStatusCode(),
$flattened->getHeaders()
2016-05-19 15:01:28 +01:00
);
}
}