snipe-it/app/Exceptions/Handler.php

84 lines
2.3 KiB
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
namespace App\Exceptions;
use Exception;
2017-01-11 14:45:47 -08:00
use Illuminate\Auth\AuthenticationException;
2016-03-25 01:18:05 -07: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 = [
2017-01-11 14:45:47 -08: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-03-25 01:18:05 -07:00
];
/**
* Report or log an exception.
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
2017-01-11 14:45:47 -08:00
* @param \Exception $exception
2016-03-25 01:18:05 -07:00
* @return void
*/
2017-01-11 14:45:47 -08:00
public function report(Exception $exception)
2016-03-25 01:18:05 -07:00
{
2017-01-11 14:45:47 -08:00
parent::report($exception);
2016-03-25 01:18:05 -07:00
}
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
2017-01-11 14:45:47 -08:00
* @param \Exception $exception
2016-03-25 01:18:05 -07:00
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $e)
{
if ($e instanceof \Illuminate\Session\TokenMismatchException) {
2016-12-29 14:02:18 -08:00
return redirect()->back()->with('error', trans('general.token_expired'));
2016-03-25 01:18:05 -07:00
}
if ($this->isHttpException($e)) {
2016-12-29 14:02:18 -08:00
$statusCode = $e->getStatusCode();
2016-03-25 01:18:05 -07:00
2016-12-29 14:02:18 -08:00
switch ($statusCode) {
2016-03-25 01:18:05 -07:00
2016-12-29 14:02:18 -08:00
case '404':
return response()->view('layouts/basic', [
2017-01-11 14:45:47 -08:00
'content' => view('errors/404')
2016-12-29 14:02:18 -08:00
]);
}
2016-03-25 01:18:05 -07:00
}
return parent::render($request, $e);
2017-01-11 14:45:47 -08: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);
}
return redirect()->guest('login');
2016-03-25 01:18:05 -07:00
}
}