Bug: 372715083 Flag: Flag EXEMPT manual tests Change-Id: I386bc590955d762af0370e7ff5d6fbece55b564d
259 lines
9.7 KiB
Java
259 lines
9.7 KiB
Java
/*
|
|
* Copyright (C) 2023 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.applications.credentials;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.credentials.CredentialManager;
|
|
import android.credentials.CredentialProviderInfo;
|
|
import android.credentials.SetEnabledProvidersException;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.os.OutcomeReceiver;
|
|
import android.os.UserHandle;
|
|
import android.provider.Settings;
|
|
import android.service.autofill.AutofillService;
|
|
import android.service.autofill.AutofillServiceInfo;
|
|
import android.text.TextUtils;
|
|
import android.util.Log;
|
|
import android.view.autofill.AutofillManager;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.core.content.ContextCompat;
|
|
import androidx.preference.Preference;
|
|
|
|
import com.android.internal.annotations.VisibleForTesting;
|
|
import com.android.settings.R;
|
|
import com.android.settings.Utils;
|
|
import com.android.settings.applications.defaultapps.DefaultAppPreferenceController;
|
|
import com.android.settingslib.applications.DefaultAppInfo;
|
|
import com.android.settingslib.widget.TwoTargetPreference;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.concurrent.Executor;
|
|
|
|
public class DefaultCombinedPreferenceController extends DefaultAppPreferenceController {
|
|
private final boolean mIsWorkProfile;
|
|
private final boolean mIsPrivateSpace;
|
|
private static final Intent AUTOFILL_PROBE = new Intent(AutofillService.SERVICE_INTERFACE);
|
|
private static final String TAG = "DefaultCombinedPreferenceController";
|
|
|
|
private final AutofillManager mAutofillManager;
|
|
private final CredentialManager mCredentialManager;
|
|
private final Executor mExecutor;
|
|
|
|
public DefaultCombinedPreferenceController(Context context,
|
|
boolean isWorkProfile, boolean isPrivateSpace) {
|
|
super(context);
|
|
|
|
mExecutor = ContextCompat.getMainExecutor(context);
|
|
mAutofillManager = mContext.getSystemService(AutofillManager.class);
|
|
mIsWorkProfile = isWorkProfile;
|
|
mIsPrivateSpace = isPrivateSpace;
|
|
|
|
if (CredentialManager.isServiceEnabled(context)) {
|
|
mCredentialManager = mContext.getSystemService(CredentialManager.class);
|
|
} else {
|
|
mCredentialManager = null;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean isAvailable() {
|
|
return mAutofillManager != null
|
|
&& mCredentialManager != null
|
|
&& mAutofillManager.hasAutofillFeature()
|
|
&& mAutofillManager.isAutofillSupported();
|
|
}
|
|
|
|
@Override
|
|
public String getPreferenceKey() {
|
|
return "default_credman_autofill_main";
|
|
}
|
|
|
|
@Override
|
|
protected Intent getSettingIntent(DefaultAppInfo info) {
|
|
// Despite this method being called getSettingIntent this intent actually
|
|
// opens the primary picker. This is so that we can swap the cog and the left
|
|
// hand side presses to align the UX.
|
|
if (PrimaryProviderPreference.shouldUseNewSettingsUi()) {
|
|
// We need to return an empty intent here since the class we inherit
|
|
// from will throw an NPE if we return null and we don't want it to
|
|
// open anything since we added the buttons.
|
|
return new Intent();
|
|
}
|
|
return createIntentToOpenPicker();
|
|
}
|
|
|
|
@Override
|
|
public void updateState(@NonNull Preference preference) {
|
|
final CombinedProviderInfo topProvider = getTopProvider();
|
|
final int userId = getUser();
|
|
|
|
if (topProvider != null && mContext != null) {
|
|
updatePreferenceForProvider(
|
|
preference,
|
|
topProvider.getAppName(mContext),
|
|
topProvider.getSettingsSubtitle(),
|
|
topProvider.getAppIcon(mContext, userId),
|
|
topProvider.getPackageName(),
|
|
topProvider.getSettingsActivity());
|
|
} else {
|
|
updatePreferenceForProvider(preference, null, null, null, null, null);
|
|
}
|
|
}
|
|
|
|
@VisibleForTesting
|
|
public void updatePreferenceForProvider(
|
|
Preference preference,
|
|
@Nullable CharSequence appName,
|
|
@Nullable String appSubtitle,
|
|
@Nullable Drawable appIcon,
|
|
@Nullable String packageName,
|
|
@Nullable CharSequence settingsActivity) {
|
|
if (appName == null) {
|
|
preference.setTitle(R.string.credman_app_list_preference_none);
|
|
} else {
|
|
preference.setTitle(appName);
|
|
}
|
|
|
|
if (appIcon == null) {
|
|
preference.setIcon(null);
|
|
} else {
|
|
preference.setIcon(Utils.getSafeIcon(appIcon));
|
|
}
|
|
|
|
preference.setSummary(appSubtitle);
|
|
|
|
if (preference instanceof PrimaryProviderPreference) {
|
|
PrimaryProviderPreference primaryPref = (PrimaryProviderPreference) preference;
|
|
primaryPref.setIconSize(TwoTargetPreference.ICON_SIZE_MEDIUM);
|
|
primaryPref.setDelegate(
|
|
new PrimaryProviderPreference.Delegate() {
|
|
public void onOpenButtonClicked() {
|
|
CombinedProviderInfo.launchSettingsActivityIntent(
|
|
mContext, packageName, settingsActivity, getUser());
|
|
}
|
|
|
|
public void onChangeButtonClicked() {
|
|
startActivity(createIntentToOpenPicker());
|
|
}
|
|
});
|
|
|
|
// Hide the open button if there is no defined settings activity.
|
|
primaryPref.setOpenButtonVisible(!TextUtils.isEmpty(settingsActivity));
|
|
primaryPref.setButtonsCompactMode(appName != null);
|
|
}
|
|
}
|
|
|
|
private @Nullable CombinedProviderInfo getTopProvider() {
|
|
final int userId = getUser();
|
|
final @Nullable CombinedProviderInfo topProvider =
|
|
CombinedProviderInfo.getTopProvider(getAllProviders(userId));
|
|
|
|
// Apply device admin restrictions to top provider.
|
|
if (topProvider != null
|
|
&& topProvider.getDeviceAdminRestrictions(mContext, userId) != null) {
|
|
// This case means, the provider is blocked by device admin, but settings' storage has
|
|
// not be cleared correctly. So clean the storage here.
|
|
removePrimaryProvider();
|
|
return null;
|
|
}
|
|
|
|
return topProvider;
|
|
}
|
|
|
|
@Override
|
|
protected DefaultAppInfo getDefaultAppInfo() {
|
|
return null;
|
|
}
|
|
|
|
private List<CombinedProviderInfo> getAllProviders(int userId) {
|
|
final List<AutofillServiceInfo> autofillProviders =
|
|
AutofillServiceInfo.getAvailableServices(mContext, userId);
|
|
final String selectedAutofillProvider =
|
|
CredentialManagerPreferenceController
|
|
.getSelectedAutofillProvider(mContext, userId, TAG);
|
|
|
|
final List<CredentialProviderInfo> credManProviders = new ArrayList<>();
|
|
if (mCredentialManager != null) {
|
|
credManProviders.addAll(
|
|
mCredentialManager.getCredentialProviderServices(
|
|
userId,
|
|
CredentialManager.PROVIDER_FILTER_USER_PROVIDERS_INCLUDING_HIDDEN));
|
|
}
|
|
|
|
return CombinedProviderInfo.buildMergedList(
|
|
autofillProviders, credManProviders, selectedAutofillProvider);
|
|
}
|
|
|
|
@Override
|
|
protected boolean showLabelAsTitle() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
protected boolean showAppSummary() {
|
|
return true;
|
|
}
|
|
|
|
protected int getUser() {
|
|
return UserUtils.getUser(mIsWorkProfile, mIsPrivateSpace, mContext);
|
|
}
|
|
|
|
/** Creates an intent to open the credential picker. */
|
|
private Intent createIntentToOpenPicker() {
|
|
final Context context =
|
|
mContext.createContextAsUser(UserHandle.of(getUser()), /* flags= */ 0);
|
|
Intent intent = new Intent(context, CredentialsPickerActivity.class);
|
|
intent.putExtra(UserUtils.EXTRA_IS_WORK_PROFILE, mIsWorkProfile);
|
|
intent.putExtra(UserUtils.EXTRA_IS_PRIVATE_SPACE, mIsPrivateSpace);
|
|
return intent;
|
|
}
|
|
|
|
private void removePrimaryProvider() {
|
|
// Commit using the CredMan API.
|
|
if (mCredentialManager == null) {
|
|
return;
|
|
}
|
|
|
|
// Clean the autofill provider settings
|
|
Settings.Secure.putStringForUser(
|
|
mContext.getContentResolver(),
|
|
DefaultCombinedPicker.AUTOFILL_SETTING, null, getUser());
|
|
|
|
// Clean the credman provider settings.
|
|
mCredentialManager.setEnabledProviders(
|
|
List.of(), // empty primary provider.
|
|
List.of(), // empty enabled providers.
|
|
getUser(),
|
|
mExecutor,
|
|
new OutcomeReceiver<Void, SetEnabledProvidersException>() {
|
|
@Override
|
|
public void onResult(Void result) {
|
|
Log.i(TAG, "setEnabledProviders success");
|
|
}
|
|
|
|
@Override
|
|
public void onError(SetEnabledProvidersException e) {
|
|
Log.e(TAG, "setEnabledProviders error: " + e.toString());
|
|
}
|
|
});
|
|
}
|
|
}
|