|
13 | 13 | use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
14 | 14 | use Illuminate\Http\Exceptions\HttpResponseException;
|
15 | 15 | use Illuminate\Session\TokenMismatchException;
|
| 16 | +use Illuminate\View\ViewException; |
16 | 17 | use Laravel\Passport\Exceptions\MissingScopeException;
|
17 | 18 | use Laravel\Passport\Exceptions\OAuthServerException as PassportOAuthServerException;
|
18 | 19 | use League\OAuth2\Server\Exception\OAuthServerException;
|
@@ -81,6 +82,21 @@ private static function isOAuthServerException($e)
|
81 | 82 | return ($e instanceof PassportOAuthServerException) && ($e->getPrevious() instanceof OAuthServerException);
|
82 | 83 | }
|
83 | 84 |
|
| 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 | + |
84 | 100 | /**
|
85 | 101 | * Report or log an exception.
|
86 | 102 | *
|
@@ -115,6 +131,8 @@ public function report(Throwable $e)
|
115 | 131 | */
|
116 | 132 | public function render($request, Throwable $e)
|
117 | 133 | {
|
| 134 | + $e = static::unwrapViewException($e); |
| 135 | + |
118 | 136 | if (static::isOAuthServerException($e)) {
|
119 | 137 | return parent::render($request, $e);
|
120 | 138 | }
|
@@ -157,7 +175,7 @@ public function render($request, Throwable $e)
|
157 | 175 |
|
158 | 176 | protected function shouldntReport(Throwable $e)
|
159 | 177 | {
|
160 |
| - return parent::shouldntReport($e) || $this->isOAuthServerException($e); |
| 178 | + return parent::shouldntReport(static::unwrapViewException($e)) || $this->isOAuthServerException($e); |
161 | 179 | }
|
162 | 180 |
|
163 | 181 | protected function unauthenticated($request, AuthenticationException $exception)
|
|
0 commit comments