blob: ac97c1174659fa48a36e1055cb6f3ecf8809d0f5 [file] [log] [blame]
Amith Yamasanib14e1e02010-11-02 09:52:29 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.settings;
18
felkachanga6cec472018-03-29 12:08:20 +080019
Fan Zhangc7162cd2018-06-18 15:21:41 -070020import static com.android.settingslib.RestrictedLockUtils.EnforcedAdmin;
21
felkachanga6cec472018-03-29 12:08:20 +080022import android.app.ActionBar;
23import android.app.Activity;
Andres Moralesab61b0d2014-08-26 13:54:12 -070024import android.app.ProgressDialog;
Fan Zhang31b21002019-01-16 13:49:47 -080025import android.app.settings.SettingsEnums;
Andres Morales7ab89292014-07-10 16:10:43 -070026import android.content.Context;
Jason Monk39b46742015-09-10 15:52:51 -040027import android.content.Intent;
Andres Moralesab61b0d2014-08-26 13:54:12 -070028import android.content.pm.ActivityInfo;
felkachanga6cec472018-03-29 12:08:20 +080029import android.graphics.Color;
Andres Moralesab61b0d2014-08-26 13:54:12 -070030import android.os.AsyncTask;
Amith Yamasanib14e1e02010-11-02 09:52:29 -070031import android.os.Bundle;
Sudheer Shanka7dbbe132016-02-16 14:19:32 +000032import android.os.UserHandle;
Julia Reynolds2c539332014-06-11 12:56:02 -040033import android.os.UserManager;
Andrew Scullc23357e2017-04-18 09:40:11 +010034import android.service.oemlock.OemLockManager;
Jason Monk39b46742015-09-10 15:52:51 -040035import android.service.persistentdata.PersistentDataBlockManager;
felkachanga6cec472018-03-29 12:08:20 +080036import android.util.Log;
Amith Yamasanib14e1e02010-11-02 09:52:29 -070037import android.view.LayoutInflater;
38import android.view.View;
39import android.view.ViewGroup;
40import android.widget.Button;
Julia Reynoldsce25af42015-07-08 16:56:31 -040041import android.widget.TextView;
Amith Yamasanib14e1e02010-11-02 09:52:29 -070042
Andrew Sapperstein88930e32019-03-07 14:18:15 -080043import androidx.annotation.VisibleForTesting;
44
Doris Ling72489722017-11-16 11:03:40 -080045import com.android.settings.core.InstrumentedFragment;
arangelov93081542017-10-27 13:51:28 +010046import com.android.settings.enterprise.ActionDisabledByAdminDialogHelper;
Philip P. Moltmanne3f72112018-08-28 15:01:43 -070047import com.android.settingslib.RestrictedLockUtilsInternal;
Pasty Changc1f86002018-12-11 02:22:55 +000048
pastychang9bdb59a2019-01-21 09:49:15 +080049import com.google.android.setupcompat.template.FooterBarMixin;
50import com.google.android.setupcompat.template.FooterButton;
51import com.google.android.setupcompat.template.FooterButton.ButtonType;
Maurice Lam59f1c1a2019-02-14 22:04:30 +000052import com.google.android.setupdesign.GlifLayout;
Sudheer Shanka7dbbe132016-02-16 14:19:32 +000053
Amith Yamasanib14e1e02010-11-02 09:52:29 -070054/**
55 * Confirm and execute a reset of the device to a clean "just out of the box"
56 * state. Multiple confirmations are required: first, a general "are you sure
57 * you want to do this?" prompt, followed by a keyguard pattern trace if the user
58 * has defined one, followed by a final strongly-worded "THIS WILL ERASE EVERYTHING
59 * ON THE PHONE" prompt. If at any time the phone is allowed to go to sleep, is
60 * locked, et cetera, then the confirmation sequence is abandoned.
61 *
62 * This is the confirmation screen.
63 */
Doris Ling72489722017-11-16 11:03:40 -080064public class MasterClearConfirm extends InstrumentedFragment {
felkachanga6cec472018-03-29 12:08:20 +080065 private final static String TAG = "MasterClearConfirm";
Amith Yamasanib14e1e02010-11-02 09:52:29 -070066
Andrew Sapperstein88930e32019-03-07 14:18:15 -080067 @VisibleForTesting View mContentView;
Amith Yamasanib14e1e02010-11-02 09:52:29 -070068 private boolean mEraseSdCard;
Andrew Sapperstein88930e32019-03-07 14:18:15 -080069 @VisibleForTesting boolean mEraseEsims;
Amith Yamasanib14e1e02010-11-02 09:52:29 -070070
71 /**
72 * The user has gone through the multiple confirmation, so now we go ahead
73 * and invoke the Checkin Service to reset the device to its factory-default
74 * state (rebooting in the process).
75 */
76 private Button.OnClickListener mFinalClickListener = new Button.OnClickListener() {
77
78 public void onClick(View v) {
79 if (Utils.isMonkeyRunning()) {
80 return;
81 }
82
Andres Moralesab61b0d2014-08-26 13:54:12 -070083 final PersistentDataBlockManager pdbManager = (PersistentDataBlockManager)
Andres Morales7ab89292014-07-10 16:10:43 -070084 getActivity().getSystemService(Context.PERSISTENT_DATA_BLOCK_SERVICE);
Andrew Scullc23357e2017-04-18 09:40:11 +010085 final OemLockManager oemLockManager = (OemLockManager)
86 getActivity().getSystemService(Context.OEM_LOCK_SERVICE);
Andres Morales7ab89292014-07-10 16:10:43 -070087
Andrew Scullc23357e2017-04-18 09:40:11 +010088 if (pdbManager != null && !oemLockManager.isOemUnlockAllowed() &&
Udam Saini679f7ad2016-03-25 10:47:00 -070089 Utils.isDeviceProvisioned(getActivity())) {
Andrew Scullc23357e2017-04-18 09:40:11 +010090 // if OEM unlock is allowed, the persistent data block will be wiped during FR
91 // process. If disabled, it will be wiped here, unless the device is still being
92 // provisioned, in which case the persistent data block will be preserved.
Andres Moralese6bf2a52014-09-08 13:14:00 -070093 new AsyncTask<Void, Void, Void>() {
Andres Moralesc17ec1b2015-06-01 16:23:41 -070094 int mOldOrientation;
95 ProgressDialog mProgressDialog;
96
Andres Moralese6bf2a52014-09-08 13:14:00 -070097 @Override
98 protected Void doInBackground(Void... params) {
99 pdbManager.wipe();
100 return null;
101 }
Andres Moralesab61b0d2014-08-26 13:54:12 -0700102
Andres Moralese6bf2a52014-09-08 13:14:00 -0700103 @Override
104 protected void onPostExecute(Void aVoid) {
Andres Moralesc17ec1b2015-06-01 16:23:41 -0700105 mProgressDialog.hide();
Julia Reynolds8a388012015-08-19 16:19:55 -0400106 if (getActivity() != null) {
107 getActivity().setRequestedOrientation(mOldOrientation);
108 doMasterClear();
109 }
Andres Moralese6bf2a52014-09-08 13:14:00 -0700110 }
Andres Moralesc17ec1b2015-06-01 16:23:41 -0700111
112 @Override
113 protected void onPreExecute() {
114 mProgressDialog = getProgressDialog();
115 mProgressDialog.show();
116
117 // need to prevent orientation changes as we're about to go into
felkachanga6cec472018-03-29 12:08:20 +0800118 // a long IO request, so we won't be able to access inflate resources on
119 // flash
Andres Moralesc17ec1b2015-06-01 16:23:41 -0700120 mOldOrientation = getActivity().getRequestedOrientation();
felkachanga6cec472018-03-29 12:08:20 +0800121 getActivity().setRequestedOrientation(
122 ActivityInfo.SCREEN_ORIENTATION_LOCKED);
Andres Moralesc17ec1b2015-06-01 16:23:41 -0700123 }
Andres Moralese6bf2a52014-09-08 13:14:00 -0700124 }.execute();
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700125 } else {
Andres Moralesab61b0d2014-08-26 13:54:12 -0700126 doMasterClear();
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700127 }
128 }
Andres Moralesab61b0d2014-08-26 13:54:12 -0700129
130 private ProgressDialog getProgressDialog() {
131 final ProgressDialog progressDialog = new ProgressDialog(getActivity());
132 progressDialog.setIndeterminate(true);
133 progressDialog.setCancelable(false);
134 progressDialog.setTitle(
135 getActivity().getString(R.string.master_clear_progress_title));
136 progressDialog.setMessage(
137 getActivity().getString(R.string.master_clear_progress_text));
138 return progressDialog;
139 }
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700140 };
141
Andres Moralesab61b0d2014-08-26 13:54:12 -0700142 private void doMasterClear() {
Lenka Trochtova3393dac2017-02-13 15:05:27 +0100143 Intent intent = new Intent(Intent.ACTION_FACTORY_RESET);
Christopher Tate1e99f0c2017-01-25 14:46:48 -0800144 intent.setPackage("android");
Rubin Xuccbdc572015-06-26 15:27:23 +0100145 intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
146 intent.putExtra(Intent.EXTRA_REASON, "MasterClearConfirm");
147 intent.putExtra(Intent.EXTRA_WIPE_EXTERNAL_STORAGE, mEraseSdCard);
qingxi072f2862017-04-11 18:28:40 -0700148 intent.putExtra(Intent.EXTRA_WIPE_ESIMS, mEraseEsims);
Rubin Xuccbdc572015-06-26 15:27:23 +0100149 getActivity().sendBroadcast(intent);
150 // Intent handling is asynchronous -- assume it will happen soon.
Andres Moralesab61b0d2014-08-26 13:54:12 -0700151 }
152
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700153 /**
154 * Configure the UI for the final confirmation interaction
155 */
156 private void establishFinalConfirmationState() {
Maurice Lam59f1c1a2019-02-14 22:04:30 +0000157 final GlifLayout layout = mContentView.findViewById(R.id.setup_wizard_layout);
felkachanga6cec472018-03-29 12:08:20 +0800158
pastychang9bdb59a2019-01-21 09:49:15 +0800159 final FooterBarMixin mixin = layout.getMixin(FooterBarMixin.class);
160 mixin.setPrimaryButton(
pastychang908501e2018-12-26 10:46:40 +0800161 new FooterButton.Builder(getActivity())
162 .setText(R.string.master_clear_button_text)
163 .setListener(mFinalClickListener)
164 .setButtonType(ButtonType.OTHER)
pastychang79614822019-01-03 10:12:54 +0800165 .setTheme(R.style.SudGlifButton_Primary)
pastychang908501e2018-12-26 10:46:40 +0800166 .build()
pastychang103409b2018-12-13 23:00:17 +0800167 );
felkachanga6cec472018-03-29 12:08:20 +0800168 }
169
170 private void setUpActionBarAndTitle() {
171 final Activity activity = getActivity();
172 if (activity == null) {
173 Log.e(TAG, "No activity attached, skipping setUpActionBarAndTitle");
174 return;
175 }
176 final ActionBar actionBar = activity.getActionBar();
177 if (actionBar == null) {
178 Log.e(TAG, "No actionbar, skipping setUpActionBarAndTitle");
179 return;
180 }
181 actionBar.hide();
182 activity.getWindow().setStatusBarColor(Color.TRANSPARENT);
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700183 }
184
185 @Override
186 public View onCreateView(LayoutInflater inflater, ViewGroup container,
187 Bundle savedInstanceState) {
Philip P. Moltmanne3f72112018-08-28 15:01:43 -0700188 final EnforcedAdmin admin = RestrictedLockUtilsInternal.checkIfRestrictionEnforced(
Sudheer Shanka7dbbe132016-02-16 14:19:32 +0000189 getActivity(), UserManager.DISALLOW_FACTORY_RESET, UserHandle.myUserId());
Philip P. Moltmanne3f72112018-08-28 15:01:43 -0700190 if (RestrictedLockUtilsInternal.hasBaseUserRestriction(getActivity(),
Sudheer Shanka7dbbe132016-02-16 14:19:32 +0000191 UserManager.DISALLOW_FACTORY_RESET, UserHandle.myUserId())) {
Julia Reynolds2c539332014-06-11 12:56:02 -0400192 return inflater.inflate(R.layout.master_clear_disallowed_screen, null);
Sudheer Shanka7dbbe132016-02-16 14:19:32 +0000193 } else if (admin != null) {
arangelov93081542017-10-27 13:51:28 +0100194 new ActionDisabledByAdminDialogHelper(getActivity())
195 .prepareDialogBuilder(UserManager.DISALLOW_FACTORY_RESET, admin)
196 .setOnDismissListener(__ -> getActivity().finish())
197 .show();
198 return new View(getActivity());
Julia Reynolds2c539332014-06-11 12:56:02 -0400199 }
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700200 mContentView = inflater.inflate(R.layout.master_clear_confirm, null);
felkachanga6cec472018-03-29 12:08:20 +0800201 setUpActionBarAndTitle();
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700202 establishFinalConfirmationState();
Julia Reynoldsce25af42015-07-08 16:56:31 -0400203 setAccessibilityTitle();
Andrew Sapperstein88930e32019-03-07 14:18:15 -0800204 setSubtitle();
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700205 return mContentView;
206 }
207
Julia Reynoldsce25af42015-07-08 16:56:31 -0400208 private void setAccessibilityTitle() {
209 CharSequence currentTitle = getActivity().getTitle();
felkachanga6cec472018-03-29 12:08:20 +0800210 TextView confirmationMessage = mContentView.findViewById(R.id.master_clear_confirm);
Julia Reynoldsce25af42015-07-08 16:56:31 -0400211 if (confirmationMessage != null) {
arangelov93081542017-10-27 13:51:28 +0100212 String accessibleText = new StringBuilder(currentTitle).append(",").append(
Julia Reynoldsce25af42015-07-08 16:56:31 -0400213 confirmationMessage.getText()).toString();
arangelov93081542017-10-27 13:51:28 +0100214 getActivity().setTitle(Utils.createAccessibleSequence(currentTitle, accessibleText));
Julia Reynoldsce25af42015-07-08 16:56:31 -0400215 }
216 }
217
Andrew Sapperstein88930e32019-03-07 14:18:15 -0800218 @VisibleForTesting
219 void setSubtitle() {
220 if (mEraseEsims) {
221 ((TextView) mContentView.findViewById(R.id.master_clear_confirm))
222 .setText(R.string.master_clear_final_desc_esim);
223 }
224 }
225
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700226 @Override
227 public void onCreate(Bundle savedInstanceState) {
228 super.onCreate(savedInstanceState);
229
230 Bundle args = getArguments();
Andres Moralesc17ec1b2015-06-01 16:23:41 -0700231 mEraseSdCard = args != null
232 && args.getBoolean(MasterClear.ERASE_EXTERNAL_EXTRA);
qingxi072f2862017-04-11 18:28:40 -0700233 mEraseEsims = args != null
234 && args.getBoolean(MasterClear.ERASE_ESIMS_EXTRA);
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700235 }
Chris Wren8a963ba2015-03-20 10:29:14 -0400236
237 @Override
Fan Zhang65076132016-08-08 10:25:13 -0700238 public int getMetricsCategory() {
Fan Zhang31b21002019-01-16 13:49:47 -0800239 return SettingsEnums.MASTER_CLEAR_CONFIRM;
Chris Wren8a963ba2015-03-20 10:29:14 -0400240 }
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700241}