You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/app/Exceptions/Handler.php

98 lines
2.5 KiB
PHTML

<?php
namespace App\Exceptions;
use GuzzleHttp\Exception\ConnectException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Illuminate\Http\Client\ConnectionException;
use Illuminate\Http\Exceptions\HttpResponseException;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Validation\ValidationException;
use League\OAuth2\Server\Exception\OAuthServerException;
9 months ago
use Throwable;
class Handler extends ExceptionHandler
{
9 months ago
/**
* A list of the exception types that are not reported.
*
* @var array
*/
protected $dontReport = [
OAuthServerException::class,
ConnectException::class,
ConnectionException::class,
9 months ago
];
/**
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array
*/
protected $dontFlash = [
'password',
'password_confirmation',
];
9 months ago
/**
* Report or log an exception.
*
* @param \Exception $exception
* @return void
*/
public function report(Throwable $exception)
{
parent::report($exception);
}
9 months ago
/**
* Register the exception handling callbacks for the application.
*
* @return void
*/
public function register()
{
$this->reportable(function (\BadMethodCallException $e) {
return app()->environment() !== 'production';
});
$this->reportable(function (ConnectionException $e) {
9 months ago
return app()->environment() !== 'production';
});
}
9 months ago
/**
* Render an exception into an HTTP response.
*
* @param Request $request
9 months ago
* @param \Exception $exception
* @return Response
9 months ago
*/
public function render($request, Throwable $exception)
{
if ($request->wantsJson()) {
if ($exception instanceof HttpResponseException) {
return $exception->getResponse();
}
if ($exception instanceof ValidationException) {
return response()->json([
9 months ago
'message' => $exception->getMessage(),
'errors' => $exception->validator->getMessageBag(),
], $exception->status);
}
$isHttp = $this->isHttpException($exception);
9 months ago
return response()->json(
['error' => $exception->getMessage()],
$isHttp ? $exception->getStatusCode() : 500,
$isHttp ? $exception->getHeaders() : [],
9 months ago
);
}
9 months ago
return parent::render($request, $exception);
}
}