Skip to content

Commit acee939

Browse files
authored
Merge pull request #11066 from nanaya/unwrap-view-exception
Fix handling of ViewException
2 parents 561c2c4 + 80a3624 commit acee939

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

app/Exceptions/Handler.php

+19-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
1414
use Illuminate\Http\Exceptions\HttpResponseException;
1515
use Illuminate\Session\TokenMismatchException;
16+
use Illuminate\View\ViewException;
1617
use Laravel\Passport\Exceptions\MissingScopeException;
1718
use Laravel\Passport\Exceptions\OAuthServerException as PassportOAuthServerException;
1819
use League\OAuth2\Server\Exception\OAuthServerException;
@@ -81,6 +82,21 @@ private static function isOAuthServerException($e)
8182
return ($e instanceof PassportOAuthServerException) && ($e->getPrevious() instanceof OAuthServerException);
8283
}
8384

85+
private static function unwrapViewException(Throwable $e): Throwable
86+
{
87+
if ($e instanceof ViewException) {
88+
$i = 0;
89+
while ($e instanceof ViewException) {
90+
$e = $e->getPrevious();
91+
if (++$i > 10) {
92+
break;
93+
}
94+
}
95+
}
96+
97+
return $e;
98+
}
99+
84100
/**
85101
* Report or log an exception.
86102
*
@@ -115,6 +131,8 @@ public function report(Throwable $e)
115131
*/
116132
public function render($request, Throwable $e)
117133
{
134+
$e = static::unwrapViewException($e);
135+
118136
if (static::isOAuthServerException($e)) {
119137
return parent::render($request, $e);
120138
}
@@ -157,7 +175,7 @@ public function render($request, Throwable $e)
157175

158176
protected function shouldntReport(Throwable $e)
159177
{
160-
return parent::shouldntReport($e) || $this->isOAuthServerException($e);
178+
return parent::shouldntReport(static::unwrapViewException($e)) || $this->isOAuthServerException($e);
161179
}
162180

163181
protected function unauthenticated($request, AuthenticationException $exception)

0 commit comments

Comments
 (0)