2015-11-03 05:13:32 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
use Symfony\Component\HttpKernel\Exception\HttpException;
|
2015-11-07 03:56:09 +01:00
|
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
2015-11-03 05:13:32 +01:00
|
|
|
use Laravel\Lumen\Exceptions\Handler as ExceptionHandler;
|
2016-05-14 00:44:09 +02:00
|
|
|
use Illuminate\Support\Facades\Response;
|
2015-11-03 05:13:32 +01:00
|
|
|
|
2016-05-14 00:44:09 +02:00
|
|
|
class Handler extends ExceptionHandler {
|
2015-11-03 05:13:32 +01:00
|
|
|
/**
|
|
|
|
* A list of the exception types that should not be reported.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dontReport = [
|
|
|
|
HttpException::class,
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Report or log an exception.
|
|
|
|
*
|
|
|
|
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
|
|
|
|
*
|
|
|
|
* @param \Exception $e
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function report(Exception $e)
|
|
|
|
{
|
|
|
|
return parent::report($e);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render an exception into an HTTP response.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \Exception $e
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function render($request, Exception $e)
|
|
|
|
{
|
2016-01-19 00:23:33 +01:00
|
|
|
if (env('APP_DEBUG') != true) {
|
2015-12-19 01:10:05 +01:00
|
|
|
// Render nice error pages if debug is off
|
|
|
|
if ($e instanceof NotFoundHttpException){
|
|
|
|
return view('errors.404');
|
|
|
|
}
|
|
|
|
if ($e instanceof HttpException){
|
2016-05-14 00:44:09 +02:00
|
|
|
$status_code = $e->getStatusCode();
|
|
|
|
$status_message = $e->getMessage();
|
|
|
|
|
|
|
|
if ($status_code == 500) {
|
|
|
|
// Render a nice error page for 500s
|
|
|
|
return view('errors.500');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// If not 500, then render generic page
|
|
|
|
return response(view('errors.generic', ['status_code' => $status_code, 'status_message' => $status_message]), $status_code);
|
|
|
|
}
|
2015-12-19 01:10:05 +01:00
|
|
|
}
|
2015-11-07 03:56:09 +01:00
|
|
|
}
|
|
|
|
|
2015-11-03 05:13:32 +01:00
|
|
|
return parent::render($request, $e);
|
|
|
|
}
|
|
|
|
}
|