Skip to content

Commit 466936e

Browse files
authored
Merge pull request #11068 from nanaya/oauth-session
Ignore invalid session error from oauth approval endpoint
2 parents acee939 + c05f7e5 commit 466936e

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

app/Exceptions/Handler.php

+11-1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ public static function statusCode($e)
7272
return 401;
7373
} elseif ($e instanceof AuthorizationException || $e instanceof MissingScopeException) {
7474
return 403;
75+
} elseif (static::isOAuthSessionException($e)) {
76+
return 422;
7577
} else {
7678
return 500;
7779
}
@@ -82,6 +84,12 @@ private static function isOAuthServerException($e)
8284
return ($e instanceof PassportOAuthServerException) && ($e->getPrevious() instanceof OAuthServerException);
8385
}
8486

87+
private static function isOAuthSessionException(Throwable $e): bool
88+
{
89+
return ($e instanceof \Exception)
90+
&& $e->getMessage() === 'Authorization request was not present in the session.';
91+
}
92+
8593
private static function unwrapViewException(Throwable $e): Throwable
8694
{
8795
if ($e instanceof ViewException) {
@@ -175,7 +183,9 @@ public function render($request, Throwable $e)
175183

176184
protected function shouldntReport(Throwable $e)
177185
{
178-
return parent::shouldntReport(static::unwrapViewException($e)) || $this->isOAuthServerException($e);
186+
$e = static::unwrapViewException($e);
187+
188+
return parent::shouldntReport($e) || static::isOAuthServerException($e) || static::isOAuthSessionException($e);
179189
}
180190

181191
protected function unauthenticated($request, AuthenticationException $exception)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4+
// See the LICENCE file in the repository root for full licence text.
5+
6+
namespace Tests\Controllers\Passport;
7+
8+
use App\Models\User;
9+
use Tests\TestCase;
10+
11+
class ApproveAuthorizationControllerTest extends TestCase
12+
{
13+
public function testApproveWithInvalidSession(): void
14+
{
15+
$user = User::factory()->create();
16+
17+
$this->actingAsVerified($user)
18+
->post(route('oauth.authorizations.authorize'))
19+
->assertStatus(422);
20+
}
21+
}

0 commit comments

Comments
 (0)