2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
2019-03-13 20:12:03 -07:00
|
|
|
use App\Helpers\Helper;
|
2016-03-25 01:18:05 -07:00
|
|
|
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;
|
2017-10-03 07:28:00 -07:00
|
|
|
use Log;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
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-10-03 07:28:00 -07:00
|
|
|
if ($this->shouldReport($exception)) {
|
|
|
|
Log::error($exception);
|
|
|
|
return parent::report($exception);
|
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render an exception into an HTTP response.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
2017-02-23 16:32:35 -08:00
|
|
|
* @param \Exception $e
|
2016-03-25 01:18:05 -07:00
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function render($request, Exception $e)
|
|
|
|
{
|
2017-01-12 19:06:39 -08:00
|
|
|
|
|
|
|
|
|
|
|
// CSRF token mismatch error
|
2016-03-25 01:18:05 -07:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-01-12 19:06:39 -08:00
|
|
|
|
|
|
|
// Handle Ajax requests that fail because the model doesn't exist
|
|
|
|
if ($request->ajax() || $request->wantsJson()) {
|
2017-01-12 19:38:40 -08:00
|
|
|
|
2017-01-12 19:06:39 -08:00
|
|
|
if ($e instanceof \Illuminate\Database\Eloquent\ModelNotFoundException) {
|
|
|
|
$className = last(explode('\\', $e->getModel()));
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $className . ' not found'), 200);
|
|
|
|
}
|
2017-01-12 19:38:40 -08:00
|
|
|
|
2017-02-23 16:32:35 -08:00
|
|
|
if ($e instanceof \Illuminate\Validation\ValidationException) {
|
2017-10-24 17:57:49 -07:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $e->response['messages'], 400));
|
2017-02-23 16:32:35 -08:00
|
|
|
}
|
|
|
|
|
2017-01-12 19:38:40 -08:00
|
|
|
if ($this->isHttpException($e)) {
|
|
|
|
|
2017-01-24 18:56:15 -08:00
|
|
|
$statusCode = $e->getStatusCode();
|
|
|
|
|
2017-01-12 19:38:40 -08:00
|
|
|
switch ($e->getStatusCode()) {
|
|
|
|
case '404':
|
2017-01-24 18:56:15 -08:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $statusCode . ' endpoint not found'), 404);
|
2017-01-12 19:38:40 -08:00
|
|
|
case '405':
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, 'Method not allowed'), 405);
|
|
|
|
default:
|
2017-01-25 21:29:23 -08:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $statusCode), 405);
|
2017-01-12 19:38:40 -08:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2017-08-25 03:27:41 -07:00
|
|
|
// Try to parse 500 Errors in a bit nicer way when debug is enabled.
|
2017-01-25 21:29:23 -08:00
|
|
|
if (config('app.debug')) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, "An Error has occured! " . $e->getMessage()), 500);
|
|
|
|
}
|
2017-01-12 19:38:40 -08:00
|
|
|
|
2017-01-12 19:06:39 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-24 18:56:15 -08:00
|
|
|
if ($this->isHttpException($e) && (isset($statusCode)) && ($statusCode == '404' )) {
|
|
|
|
return response()->view('layouts/basic', [
|
|
|
|
'content' => view('errors/404')
|
2017-06-01 20:41:23 -07:00
|
|
|
],$statusCode);
|
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()) {
|
2017-01-12 19:38:40 -08:00
|
|
|
return response()->json(['error' => 'Unauthorized.'], 401);
|
2017-01-11 14:45:47 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return redirect()->guest('login');
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
}
|