|
| 1 | +package com.google.androidbrowserhelper.demos.customtabsauthtab; |
| 2 | + |
| 3 | +import android.content.Context; |
| 4 | +import android.content.Intent; |
| 5 | +import android.content.SharedPreferences; |
| 6 | +import android.net.Uri; |
| 7 | +import android.os.Handler; |
| 8 | +import android.os.Looper; |
| 9 | +import android.util.Log; |
| 10 | + |
| 11 | +import androidx.activity.result.ActivityResultLauncher; |
| 12 | +import androidx.annotation.NonNull; |
| 13 | +import androidx.browser.auth.AuthTabIntent; |
| 14 | +import androidx.annotation.OptIn; |
| 15 | +import androidx.browser.auth.ExperimentalAuthTab; |
| 16 | + |
| 17 | +import java.io.IOException; |
| 18 | +import java.util.UUID; |
| 19 | + |
| 20 | +/** |
| 21 | + * This class helps managing an authentication flow. It was created with the goal of demonstrating |
| 22 | + * how to use Custom Tabs Auth Tab to handle auth and is not meant as a complete implementation |
| 23 | + * of the OAuth protocol. We recommend checking out https://github.com/openid/AppAuth-Android for |
| 24 | + * a comprehensive implementation of the OAuth protocol. |
| 25 | + */ |
| 26 | + |
| 27 | +@OptIn(markerClass = ExperimentalAuthTab.class) |
| 28 | +public class AuthManager { |
| 29 | + private static final String TAG = "OAuthManager"; |
| 30 | + |
| 31 | + private final String mClientId; |
| 32 | + private final String mClientSecret; |
| 33 | + private final String mAuthorizationEndpoint; |
| 34 | + private final String mRedirectScheme; |
| 35 | + |
| 36 | + public interface OAuthCallback { |
| 37 | + void auth(String accessToken, String scope, String tokenType); |
| 38 | + } |
| 39 | + |
| 40 | + public AuthManager(String clientId, String clientSecret, String authorizationEndpoint, |
| 41 | + String redirectScheme) { |
| 42 | + mClientId = clientId; |
| 43 | + mClientSecret = clientSecret; |
| 44 | + mAuthorizationEndpoint = authorizationEndpoint; |
| 45 | + mRedirectScheme = redirectScheme; |
| 46 | + } |
| 47 | + |
| 48 | + public void authorize(Context context, ActivityResultLauncher<Intent> launcher, String scope) { |
| 49 | + // Generate a random state. |
| 50 | + String state = UUID.randomUUID().toString(); |
| 51 | + |
| 52 | + // Save the state so we can verify later. |
| 53 | + SharedPreferences preferences = |
| 54 | + context.getSharedPreferences("OAUTH_STORAGE", Context.MODE_PRIVATE); |
| 55 | + preferences.edit() |
| 56 | + .putString("OAUTH_STATE", state) |
| 57 | + .apply(); |
| 58 | + |
| 59 | + // Create an authorization URI to the OAuth Endpoint. |
| 60 | + Uri uri = Uri.parse(mAuthorizationEndpoint) |
| 61 | + .buildUpon() |
| 62 | + .appendQueryParameter("response_type", "code") |
| 63 | + .appendQueryParameter("client_id", mClientId) |
| 64 | + .appendQueryParameter("scope", scope) |
| 65 | + .appendQueryParameter("state", state) |
| 66 | + .build(); |
| 67 | + |
| 68 | + // Open the Authorization URI in a Chrome Custom Auth Tab. |
| 69 | + AuthTabIntent authTabIntent = new AuthTabIntent.Builder().build(); |
| 70 | + authTabIntent.launch(launcher, uri, mRedirectScheme); |
| 71 | + } |
| 72 | + |
| 73 | + public void continueAuthFlow(@NonNull Context context, Uri uri, @NonNull OAuthCallback callback) { |
| 74 | + String code = uri.getQueryParameter("code"); |
| 75 | + SharedPreferences preferences = |
| 76 | + context.getSharedPreferences("OAUTH_STORAGE", Context.MODE_PRIVATE); |
| 77 | + String state = preferences.getString("OAUTH_STATE", ""); |
| 78 | + Uri tokenUri = Uri.parse("https://github.com/login/oauth/access_token") |
| 79 | + .buildUpon() |
| 80 | + .appendQueryParameter("client_id", mClientId) |
| 81 | + .appendQueryParameter("client_secret", mClientSecret) |
| 82 | + .appendQueryParameter("code", code) |
| 83 | + .appendQueryParameter("state", state) |
| 84 | + .build(); |
| 85 | + |
| 86 | + // Run the network request off the UI thread. |
| 87 | + new Thread(() -> { |
| 88 | + try { |
| 89 | + String response = Utils.fetch(tokenUri); |
| 90 | + // The response is a query-string. We concatenate with a valid domain to be |
| 91 | + // able to easily parse and extract values. |
| 92 | + Uri responseUri = Uri.parse("http://example.com?" + response); |
| 93 | + String accessToken = responseUri.getQueryParameter("access_token"); |
| 94 | + String tokenType = responseUri.getQueryParameter("token_type"); |
| 95 | + String scope = responseUri.getQueryParameter("scope"); |
| 96 | + |
| 97 | + // Invoke the callback in the main thread. |
| 98 | + new Handler(Looper.getMainLooper()).post( |
| 99 | + () -> callback.auth(accessToken, scope, tokenType)); |
| 100 | + |
| 101 | + } catch (IOException e) { |
| 102 | + Log.e(TAG, "Error requesting access token: " + e.getMessage()); |
| 103 | + } |
| 104 | + }).start(); |
| 105 | + } |
| 106 | +} |
0 commit comments