Authenticated confirmation before deletion of eSim
adds an authentication confirmation before deleting an eSim this feature is turned on/off in the security page Bug: 138861284 Test: mp settingsg Change-Id: I32e0e3bff2091ec1097b3c37fa066d966e3373df
This commit is contained in:
@@ -18,15 +18,18 @@ package com.android.settings.network.telephony;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.provider.Settings;
|
||||
import android.telephony.SubscriptionInfo;
|
||||
import android.telephony.euicc.EuiccManager;
|
||||
|
||||
import androidx.fragment.app.Fragment;
|
||||
import androidx.preference.Preference;
|
||||
import androidx.preference.PreferenceScreen;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.core.BasePreferenceController;
|
||||
import com.android.settings.network.SubscriptionUtil;
|
||||
import com.android.settings.security.ConfirmSimDeletionPreferenceController;
|
||||
import com.android.settings.wifi.dpp.WifiDppUtils;
|
||||
|
||||
/** This controls a preference allowing the user to delete the profile for an eSIM. */
|
||||
public class DeleteSimProfilePreferenceController extends BasePreferenceController {
|
||||
@@ -34,16 +37,19 @@ public class DeleteSimProfilePreferenceController extends BasePreferenceControll
|
||||
private SubscriptionInfo mSubscriptionInfo;
|
||||
private Fragment mParentFragment;
|
||||
private int mRequestCode;
|
||||
private boolean mConfirmationDefaultOn;
|
||||
|
||||
public DeleteSimProfilePreferenceController(Context context, String preferenceKey) {
|
||||
super(context, preferenceKey);
|
||||
mConfirmationDefaultOn =
|
||||
context.getResources()
|
||||
.getBoolean(R.bool.config_sim_deletion_confirmation_default_on);
|
||||
}
|
||||
|
||||
public void init(int subscriptionId, Fragment parentFragment, int requestCode) {
|
||||
mParentFragment = parentFragment;
|
||||
|
||||
for (SubscriptionInfo info : SubscriptionUtil.getAvailableSubscriptions(
|
||||
mContext)) {
|
||||
for (SubscriptionInfo info : SubscriptionUtil.getAvailableSubscriptions(mContext)) {
|
||||
if (info.getSubscriptionId() == subscriptionId && info.isEmbedded()) {
|
||||
mSubscriptionInfo = info;
|
||||
break;
|
||||
@@ -53,16 +59,27 @@ public class DeleteSimProfilePreferenceController extends BasePreferenceControll
|
||||
}
|
||||
|
||||
@Override
|
||||
public void displayPreference(PreferenceScreen screen) {
|
||||
super.displayPreference(screen);
|
||||
final Preference pref = screen.findPreference(getPreferenceKey());
|
||||
pref.setOnPreferenceClickListener(p -> {
|
||||
final Intent intent = new Intent(EuiccManager.ACTION_DELETE_SUBSCRIPTION_PRIVILEGED);
|
||||
intent.putExtra(EuiccManager.EXTRA_SUBSCRIPTION_ID,
|
||||
mSubscriptionInfo.getSubscriptionId());
|
||||
mParentFragment.startActivityForResult(intent, mRequestCode);
|
||||
return true;
|
||||
});
|
||||
public boolean handlePreferenceTreeClick(Preference preference) {
|
||||
boolean confirmDeletion =
|
||||
Settings.Global.getInt(
|
||||
mContext.getContentResolver(),
|
||||
ConfirmSimDeletionPreferenceController.KEY_CONFIRM_SIM_DELETION,
|
||||
mConfirmationDefaultOn ? 1 : 0)
|
||||
== 1;
|
||||
if (confirmDeletion) {
|
||||
WifiDppUtils.showLockScreen(mContext, () -> deleteSim());
|
||||
} else {
|
||||
deleteSim();
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
private void deleteSim() {
|
||||
final Intent intent = new Intent(EuiccManager.ACTION_DELETE_SUBSCRIPTION_PRIVILEGED);
|
||||
intent.putExtra(EuiccManager.EXTRA_SUBSCRIPTION_ID, mSubscriptionInfo.getSubscriptionId());
|
||||
mParentFragment.startActivityForResult(intent, mRequestCode);
|
||||
// result handled in MobileNetworkSettings
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -73,5 +90,4 @@ public class DeleteSimProfilePreferenceController extends BasePreferenceControll
|
||||
return CONDITIONALLY_UNAVAILABLE;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -274,9 +274,11 @@ public class MobileNetworkSettings extends RestrictedDashboardFragment {
|
||||
break;
|
||||
|
||||
case REQUEST_CODE_DELETE_SUBSCRIPTION:
|
||||
final Activity activity = getActivity();
|
||||
if (activity != null && !activity.isFinishing()) {
|
||||
activity.finish();
|
||||
if (resultCode != Activity.RESULT_CANCELED) {
|
||||
final Activity activity = getActivity();
|
||||
if (activity != null && !activity.isFinishing()) {
|
||||
activity.finish();
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
|
@@ -0,0 +1,86 @@
|
||||
/*
|
||||
* Copyright (C) 2020 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.security;
|
||||
|
||||
import android.app.KeyguardManager;
|
||||
import android.content.Context;
|
||||
import android.provider.Settings;
|
||||
|
||||
import androidx.preference.Preference;
|
||||
import androidx.preference.TwoStatePreference;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.core.TogglePreferenceController;
|
||||
import com.android.settings.network.telephony.MobileNetworkUtils;
|
||||
|
||||
/** Enable/disable user confirmation before deleting an eSim */
|
||||
public class ConfirmSimDeletionPreferenceController extends TogglePreferenceController {
|
||||
public static final String KEY_CONFIRM_SIM_DELETION = "confirm_sim_deletion";
|
||||
private boolean mConfirmationDefaultOn;
|
||||
|
||||
public ConfirmSimDeletionPreferenceController(Context context, String key) {
|
||||
super(context, key);
|
||||
mConfirmationDefaultOn =
|
||||
context.getResources()
|
||||
.getBoolean(R.bool.config_sim_deletion_confirmation_default_on);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getAvailabilityStatus() {
|
||||
// hide if eSim is not supported on the device
|
||||
return MobileNetworkUtils.showEuiccSettings(mContext) ? AVAILABLE : UNSUPPORTED_ON_DEVICE;
|
||||
}
|
||||
|
||||
private boolean getGlobalState() {
|
||||
return Settings.Global.getInt(
|
||||
mContext.getContentResolver(),
|
||||
KEY_CONFIRM_SIM_DELETION,
|
||||
mConfirmationDefaultOn ? 1 : 0)
|
||||
== 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isChecked() {
|
||||
return getGlobalState();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean setChecked(boolean isChecked) {
|
||||
Settings.Global.putInt(
|
||||
mContext.getContentResolver(), KEY_CONFIRM_SIM_DELETION, isChecked ? 1 : 0);
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateState(Preference preference) {
|
||||
|
||||
final KeyguardManager keyguardManager = mContext.getSystemService(KeyguardManager.class);
|
||||
if (!keyguardManager.isKeyguardSecure()) {
|
||||
preference.setEnabled(false);
|
||||
if (preference instanceof TwoStatePreference) {
|
||||
((TwoStatePreference) preference).setChecked(false);
|
||||
}
|
||||
preference.setSummary(R.string.disabled_because_no_backup_security);
|
||||
} else {
|
||||
preference.setEnabled(true);
|
||||
if (preference instanceof TwoStatePreference) {
|
||||
((TwoStatePreference) preference).setChecked(getGlobalState());
|
||||
}
|
||||
preference.setSummary(R.string.confirm_sim_deletion_description);
|
||||
}
|
||||
}
|
||||
}
|
@@ -20,7 +20,6 @@ import static com.android.settings.security.EncryptionStatusPreferenceController
|
||||
import android.app.settings.SettingsEnums;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.provider.SearchIndexableResource;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.biometrics.face.FaceProfileStatusPreferenceController;
|
||||
|
Reference in New Issue
Block a user