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
|
|
|
|
2017-03-17 22:00:13 +01:00
|
|
|
use App\Exceptions\Api\ApiException;
|
|
|
|
|
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
|
2016-09-11 22:01:34 +02:00
|
|
|
if ($e instanceof NotFoundHttpException) {
|
2017-03-17 22:00:13 +01:00
|
|
|
// Handle 404 exceptions
|
2016-09-11 22:01:34 +02:00
|
|
|
if (env('SETTING_REDIRECT_404')) {
|
|
|
|
// Redirect 404s to SETTING_INDEX_REDIRECT
|
|
|
|
return redirect()->to(env('SETTING_INDEX_REDIRECT'));
|
|
|
|
}
|
|
|
|
// Otherwise, show a nice error page
|
2018-02-11 20:46:29 +01:00
|
|
|
return response(view('errors.404'), 404);
|
2015-12-19 01:10:05 +01:00
|
|
|
}
|
2016-09-11 22:01:34 +02:00
|
|
|
if ($e instanceof HttpException) {
|
2017-03-17 22:00:13 +01:00
|
|
|
// Handle HTTP exceptions thrown by public-facing controllers
|
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 {
|
2016-09-11 22:01:34 +02:00
|
|
|
// If not 500, render generic page
|
2016-05-14 00:44:09 +02:00
|
|
|
return response(view('errors.generic', ['status_code' => $status_code, 'status_message' => $status_message]), $status_code);
|
|
|
|
}
|
2015-12-19 01:10:05 +01:00
|
|
|
}
|
2017-03-17 22:00:13 +01:00
|
|
|
if ($e instanceof ApiException) {
|
|
|
|
// Handle HTTP exceptions thrown by API controllers
|
|
|
|
$status_code = $e->getCode();
|
|
|
|
$encoded_status_message = $e->getEncodedErrorMessage();
|
|
|
|
if ($e->response_type == 'json') {
|
|
|
|
return response($encoded_status_message, $status_code)
|
|
|
|
->header('Content-Type', 'application/json')
|
|
|
|
->header('Access-Control-Allow-Origin', '*');
|
|
|
|
}
|
|
|
|
|
|
|
|
return response($encoded_status_message, $status_code)
|
|
|
|
->header('Content-Type', 'text/plain')
|
|
|
|
->header('Access-Control-Allow-Origin', '*');
|
|
|
|
}
|
2015-11-07 03:56:09 +01:00
|
|
|
}
|
|
|
|
|
2015-11-03 05:13:32 +01:00
|
|
|
return parent::render($request, $e);
|
|
|
|
}
|
|
|
|
}
|