blob: c25f2af53682b3fb2e87ba27d477b76988196887 [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
Doris Ling72489722017-11-16 11:03:40 -080043import com.android.settings.core.InstrumentedFragment;
arangelov93081542017-10-27 13:51:28 +010044import com.android.settings.enterprise.ActionDisabledByAdminDialogHelper;
Philip P. Moltmanne3f72112018-08-28 15:01:43 -070045import com.android.settingslib.RestrictedLockUtilsInternal;
Pasty Changc1f86002018-12-11 02:22:55 +000046
Maurice Lam0111db72019-02-14 22:01:10 +000047import com.google.android.setupcompat.TemplateLayout;
pastychang9bdb59a2019-01-21 09:49:15 +080048import com.google.android.setupcompat.template.FooterBarMixin;
49import com.google.android.setupcompat.template.FooterButton;
50import com.google.android.setupcompat.template.FooterButton.ButtonType;
Sudheer Shanka7dbbe132016-02-16 14:19:32 +000051
Amith Yamasanib14e1e02010-11-02 09:52:29 -070052/**
53 * Confirm and execute a reset of the device to a clean "just out of the box"
54 * state. Multiple confirmations are required: first, a general "are you sure
55 * you want to do this?" prompt, followed by a keyguard pattern trace if the user
56 * has defined one, followed by a final strongly-worded "THIS WILL ERASE EVERYTHING
57 * ON THE PHONE" prompt. If at any time the phone is allowed to go to sleep, is
58 * locked, et cetera, then the confirmation sequence is abandoned.
59 *
60 * This is the confirmation screen.
61 */
Doris Ling72489722017-11-16 11:03:40 -080062public class MasterClearConfirm extends InstrumentedFragment {
felkachanga6cec472018-03-29 12:08:20 +080063 private final static String TAG = "MasterClearConfirm";
Amith Yamasanib14e1e02010-11-02 09:52:29 -070064
65 private View mContentView;
66 private boolean mEraseSdCard;
qingxi072f2862017-04-11 18:28:40 -070067 private boolean mEraseEsims;
Amith Yamasanib14e1e02010-11-02 09:52:29 -070068
69 /**
70 * The user has gone through the multiple confirmation, so now we go ahead
71 * and invoke the Checkin Service to reset the device to its factory-default
72 * state (rebooting in the process).
73 */
74 private Button.OnClickListener mFinalClickListener = new Button.OnClickListener() {
75
76 public void onClick(View v) {
77 if (Utils.isMonkeyRunning()) {
78 return;
79 }
80
Andres Moralesab61b0d2014-08-26 13:54:12 -070081 final PersistentDataBlockManager pdbManager = (PersistentDataBlockManager)
Andres Morales7ab89292014-07-10 16:10:43 -070082 getActivity().getSystemService(Context.PERSISTENT_DATA_BLOCK_SERVICE);
Andrew Scullc23357e2017-04-18 09:40:11 +010083 final OemLockManager oemLockManager = (OemLockManager)
84 getActivity().getSystemService(Context.OEM_LOCK_SERVICE);
Andres Morales7ab89292014-07-10 16:10:43 -070085
Andrew Scullc23357e2017-04-18 09:40:11 +010086 if (pdbManager != null && !oemLockManager.isOemUnlockAllowed() &&
Udam Saini679f7ad2016-03-25 10:47:00 -070087 Utils.isDeviceProvisioned(getActivity())) {
Andrew Scullc23357e2017-04-18 09:40:11 +010088 // if OEM unlock is allowed, the persistent data block will be wiped during FR
89 // process. If disabled, it will be wiped here, unless the device is still being
90 // provisioned, in which case the persistent data block will be preserved.
Andres Moralese6bf2a52014-09-08 13:14:00 -070091 new AsyncTask<Void, Void, Void>() {
Andres Moralesc17ec1b2015-06-01 16:23:41 -070092 int mOldOrientation;
93 ProgressDialog mProgressDialog;
94
Andres Moralese6bf2a52014-09-08 13:14:00 -070095 @Override
96 protected Void doInBackground(Void... params) {
97 pdbManager.wipe();
98 return null;
99 }
Andres Moralesab61b0d2014-08-26 13:54:12 -0700100
Andres Moralese6bf2a52014-09-08 13:14:00 -0700101 @Override
102 protected void onPostExecute(Void aVoid) {
Andres Moralesc17ec1b2015-06-01 16:23:41 -0700103 mProgressDialog.hide();
Julia Reynolds8a388012015-08-19 16:19:55 -0400104 if (getActivity() != null) {
105 getActivity().setRequestedOrientation(mOldOrientation);
106 doMasterClear();
107 }
Andres Moralese6bf2a52014-09-08 13:14:00 -0700108 }
Andres Moralesc17ec1b2015-06-01 16:23:41 -0700109
110 @Override
111 protected void onPreExecute() {
112 mProgressDialog = getProgressDialog();
113 mProgressDialog.show();
114
115 // need to prevent orientation changes as we're about to go into
felkachanga6cec472018-03-29 12:08:20 +0800116 // a long IO request, so we won't be able to access inflate resources on
117 // flash
Andres Moralesc17ec1b2015-06-01 16:23:41 -0700118 mOldOrientation = getActivity().getRequestedOrientation();
felkachanga6cec472018-03-29 12:08:20 +0800119 getActivity().setRequestedOrientation(
120 ActivityInfo.SCREEN_ORIENTATION_LOCKED);
Andres Moralesc17ec1b2015-06-01 16:23:41 -0700121 }
Andres Moralese6bf2a52014-09-08 13:14:00 -0700122 }.execute();
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700123 } else {
Andres Moralesab61b0d2014-08-26 13:54:12 -0700124 doMasterClear();
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700125 }
126 }
Andres Moralesab61b0d2014-08-26 13:54:12 -0700127
128 private ProgressDialog getProgressDialog() {
129 final ProgressDialog progressDialog = new ProgressDialog(getActivity());
130 progressDialog.setIndeterminate(true);
131 progressDialog.setCancelable(false);
132 progressDialog.setTitle(
133 getActivity().getString(R.string.master_clear_progress_title));
134 progressDialog.setMessage(
135 getActivity().getString(R.string.master_clear_progress_text));
136 return progressDialog;
137 }
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700138 };
139
Andres Moralesab61b0d2014-08-26 13:54:12 -0700140 private void doMasterClear() {
Lenka Trochtova3393dac2017-02-13 15:05:27 +0100141 Intent intent = new Intent(Intent.ACTION_FACTORY_RESET);
Christopher Tate1e99f0c2017-01-25 14:46:48 -0800142 intent.setPackage("android");
Rubin Xuccbdc572015-06-26 15:27:23 +0100143 intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
144 intent.putExtra(Intent.EXTRA_REASON, "MasterClearConfirm");
145 intent.putExtra(Intent.EXTRA_WIPE_EXTERNAL_STORAGE, mEraseSdCard);
qingxi072f2862017-04-11 18:28:40 -0700146 intent.putExtra(Intent.EXTRA_WIPE_ESIMS, mEraseEsims);
Rubin Xuccbdc572015-06-26 15:27:23 +0100147 getActivity().sendBroadcast(intent);
148 // Intent handling is asynchronous -- assume it will happen soon.
Andres Moralesab61b0d2014-08-26 13:54:12 -0700149 }
150
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700151 /**
152 * Configure the UI for the final confirmation interaction
153 */
154 private void establishFinalConfirmationState() {
Maurice Lam0111db72019-02-14 22:01:10 +0000155 final TemplateLayout layout = mContentView.findViewById(R.id.setup_wizard_layout);
felkachanga6cec472018-03-29 12:08:20 +0800156
pastychang9bdb59a2019-01-21 09:49:15 +0800157 final FooterBarMixin mixin = layout.getMixin(FooterBarMixin.class);
158 mixin.setPrimaryButton(
pastychang908501e2018-12-26 10:46:40 +0800159 new FooterButton.Builder(getActivity())
160 .setText(R.string.master_clear_button_text)
161 .setListener(mFinalClickListener)
162 .setButtonType(ButtonType.OTHER)
pastychang79614822019-01-03 10:12:54 +0800163 .setTheme(R.style.SudGlifButton_Primary)
pastychang908501e2018-12-26 10:46:40 +0800164 .build()
pastychang103409b2018-12-13 23:00:17 +0800165 );
felkachanga6cec472018-03-29 12:08:20 +0800166 }
167
168 private void setUpActionBarAndTitle() {
169 final Activity activity = getActivity();
170 if (activity == null) {
171 Log.e(TAG, "No activity attached, skipping setUpActionBarAndTitle");
172 return;
173 }
174 final ActionBar actionBar = activity.getActionBar();
175 if (actionBar == null) {
176 Log.e(TAG, "No actionbar, skipping setUpActionBarAndTitle");
177 return;
178 }
179 actionBar.hide();
180 activity.getWindow().setStatusBarColor(Color.TRANSPARENT);
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700181 }
182
183 @Override
184 public View onCreateView(LayoutInflater inflater, ViewGroup container,
185 Bundle savedInstanceState) {
Philip P. Moltmanne3f72112018-08-28 15:01:43 -0700186 final EnforcedAdmin admin = RestrictedLockUtilsInternal.checkIfRestrictionEnforced(
Sudheer Shanka7dbbe132016-02-16 14:19:32 +0000187 getActivity(), UserManager.DISALLOW_FACTORY_RESET, UserHandle.myUserId());
Philip P. Moltmanne3f72112018-08-28 15:01:43 -0700188 if (RestrictedLockUtilsInternal.hasBaseUserRestriction(getActivity(),
Sudheer Shanka7dbbe132016-02-16 14:19:32 +0000189 UserManager.DISALLOW_FACTORY_RESET, UserHandle.myUserId())) {
Julia Reynolds2c539332014-06-11 12:56:02 -0400190 return inflater.inflate(R.layout.master_clear_disallowed_screen, null);
Sudheer Shanka7dbbe132016-02-16 14:19:32 +0000191 } else if (admin != null) {
arangelov93081542017-10-27 13:51:28 +0100192 new ActionDisabledByAdminDialogHelper(getActivity())
193 .prepareDialogBuilder(UserManager.DISALLOW_FACTORY_RESET, admin)
194 .setOnDismissListener(__ -> getActivity().finish())
195 .show();
196 return new View(getActivity());
Julia Reynolds2c539332014-06-11 12:56:02 -0400197 }
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700198 mContentView = inflater.inflate(R.layout.master_clear_confirm, null);
felkachanga6cec472018-03-29 12:08:20 +0800199 setUpActionBarAndTitle();
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700200 establishFinalConfirmationState();
Julia Reynoldsce25af42015-07-08 16:56:31 -0400201 setAccessibilityTitle();
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700202 return mContentView;
203 }
204
Julia Reynoldsce25af42015-07-08 16:56:31 -0400205 private void setAccessibilityTitle() {
206 CharSequence currentTitle = getActivity().getTitle();
felkachanga6cec472018-03-29 12:08:20 +0800207 TextView confirmationMessage = mContentView.findViewById(R.id.master_clear_confirm);
Julia Reynoldsce25af42015-07-08 16:56:31 -0400208 if (confirmationMessage != null) {
arangelov93081542017-10-27 13:51:28 +0100209 String accessibleText = new StringBuilder(currentTitle).append(",").append(
Julia Reynoldsce25af42015-07-08 16:56:31 -0400210 confirmationMessage.getText()).toString();
arangelov93081542017-10-27 13:51:28 +0100211 getActivity().setTitle(Utils.createAccessibleSequence(currentTitle, accessibleText));
Julia Reynoldsce25af42015-07-08 16:56:31 -0400212 }
213 }
214
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700215 @Override
216 public void onCreate(Bundle savedInstanceState) {
217 super.onCreate(savedInstanceState);
218
219 Bundle args = getArguments();
Andres Moralesc17ec1b2015-06-01 16:23:41 -0700220 mEraseSdCard = args != null
221 && args.getBoolean(MasterClear.ERASE_EXTERNAL_EXTRA);
qingxi072f2862017-04-11 18:28:40 -0700222 mEraseEsims = args != null
223 && args.getBoolean(MasterClear.ERASE_ESIMS_EXTRA);
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700224 }
Chris Wren8a963ba2015-03-20 10:29:14 -0400225
226 @Override
Fan Zhang65076132016-08-08 10:25:13 -0700227 public int getMetricsCategory() {
Fan Zhang31b21002019-01-16 13:49:47 -0800228 return SettingsEnums.MASTER_CLEAR_CONFIRM;
Chris Wren8a963ba2015-03-20 10:29:14 -0400229 }
Amith Yamasanib14e1e02010-11-02 09:52:29 -0700230}