Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix OAuth refresh attempt when no network available causing full logout #24897

Merged
merged 1 commit into from
Sep 24, 2023

Conversation

peppy
Copy link
Member

@peppy peppy commented Sep 24, 2023

Would show "Missing password" because we don't store password, but this is due to incorrect handling of socket exceptions.

Closes #24890.

To test the network failure path:

diff --git a/osu.Game/Online/API/OAuth.cs b/osu.Game/Online/API/OAuth.cs
index 1f26ab5458..c12fbbaa61 100644
--- a/osu.Game/Online/API/OAuth.cs
+++ b/osu.Game/Online/API/OAuth.cs
@@ -120,13 +120,13 @@ internal bool AuthenticateWithRefresh(string refresh)
         private bool ensureAccessToken()
         {
             // if we already have a valid access token, let's use it.
-            if (accessTokenValid) return true;
+            // if (accessTokenValid) return true;
 
             // we want to ensure only a single authentication update is happening at once.
             lock (access_token_retrieval_lock)
             {
                 // re-check if valid, in case another request completed and revalidated our access.
-                if (accessTokenValid) return true;
+                // if (accessTokenValid) return true;
 
                 // if not, let's try using our refresh token to request a new access token.
                 if (!string.IsNullOrEmpty(Token.Value?.RefreshToken))

To test the authentication failure still clears the token:

diff --git a/osu.Game/Online/API/OAuth.cs b/osu.Game/Online/API/OAuth.cs
index 1f26ab5458..7c832be3ca 100644
--- a/osu.Game/Online/API/OAuth.cs
+++ b/osu.Game/Online/API/OAuth.cs
@@ -88,7 +88,7 @@ internal bool AuthenticateWithRefresh(string refresh)
                     Url = $@"{endpoint}/oauth/token",
                     Method = HttpMethod.Post,
                     ClientId = clientId,
-                    ClientSecret = clientSecret
+                    ClientSecret = clientSecret + "wang"
                 };
 
                 using (refreshRequest)
@@ -120,13 +120,13 @@ internal bool AuthenticateWithRefresh(string refresh)
         private bool ensureAccessToken()
         {
             // if we already have a valid access token, let's use it.
-            if (accessTokenValid) return true;
+            // if (accessTokenValid) return true;
 
             // we want to ensure only a single authentication update is happening at once.
             lock (access_token_retrieval_lock)
             {
                 // re-check if valid, in case another request completed and revalidated our access.
-                if (accessTokenValid) return true;
+                // if (accessTokenValid) return true;
 
                 // if not, let's try using our refresh token to request a new access token.
                 if (!string.IsNullOrEmpty(Token.Value?.RefreshToken))

@smoogipoo smoogipoo merged commit 81130ea into ppy:master Sep 24, 2023
@peppy peppy deleted the fix-oauth-refresh-no-connection branch September 26, 2023 07:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Starting osu! without an internet connection shows "Missing password" error
2 participants