blob: 442c7eaae7296500d7619a8d51ef679ce2490101 [file] [log] [blame]
San Mehat64e6a452010-02-04 20:53:48 -08001/*
Jeff Sharkey56bd3122015-04-14 10:30:34 -07002 * Copyright (C) 2015 The Android Open Source Project
San Mehat64e6a452010-02-04 20:53:48 -08003 *
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
Joe Onoratofe4f3ae2010-06-04 11:25:26 -070017package com.android.systemui.usb;
San Mehat64e6a452010-02-04 20:53:48 -080018
Philip P. Moltmann75b230b2016-04-11 15:27:58 -070019import android.annotation.NonNull;
San Mehat64e6a452010-02-04 20:53:48 -080020import android.app.Notification;
Jeff Sharkey56bd3122015-04-14 10:30:34 -070021import android.app.Notification.Action;
San Mehat64e6a452010-02-04 20:53:48 -080022import android.app.NotificationManager;
23import android.app.PendingIntent;
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -070024import android.content.BroadcastReceiver;
25import android.content.Context;
San Mehat64e6a452010-02-04 20:53:48 -080026import android.content.Intent;
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -070027import android.content.IntentFilter;
Jeff Sharkeyb36586a2015-04-27 08:42:28 -070028import android.content.pm.PackageManager;
29import android.content.pm.PackageManager.MoveCallback;
Jeff Sharkey50a05452015-04-29 11:24:52 -070030import android.os.Bundle;
Jeff Sharkeyb36586a2015-04-27 08:42:28 -070031import android.os.Handler;
Jeff Sharkeye3644412019-04-27 17:13:57 -060032import android.os.StrictMode;
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -070033import android.os.UserHandle;
Jeff Sharkey56bd3122015-04-14 10:30:34 -070034import android.os.storage.DiskInfo;
San Mehatb1043402010-02-05 08:26:50 -080035import android.os.storage.StorageEventListener;
36import android.os.storage.StorageManager;
Jeff Sharkey56bd3122015-04-14 10:30:34 -070037import android.os.storage.VolumeInfo;
Jeff Sharkeyb36586a2015-04-27 08:42:28 -070038import android.os.storage.VolumeRecord;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -080039import android.provider.Settings;
Jeff Sharkeyb36586a2015-04-27 08:42:28 -070040import android.text.TextUtils;
41import android.text.format.DateUtils;
John Spurlockcd686b52013-06-05 10:13:46 -040042import android.util.Log;
Jeff Sharkey50a05452015-04-29 11:24:52 -070043import android.util.SparseArray;
San Mehat64e6a452010-02-04 20:53:48 -080044
Jeff Sharkey56bd3122015-04-14 10:30:34 -070045import com.android.internal.R;
Chris Wren5e6c0ff2017-01-05 12:57:06 -050046import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
John Spurlock3e309b22013-06-25 11:01:29 -040047import com.android.systemui.SystemUI;
Dan Sandler8e032e12017-01-25 13:41:38 -050048import com.android.systemui.util.NotificationChannels;
John Spurlock3e309b22013-06-25 11:01:29 -040049
Jeff Sharkey56bd3122015-04-14 10:30:34 -070050import java.util.List;
51
John Spurlock3e309b22013-06-25 11:01:29 -040052public class StorageNotification extends SystemUI {
San Mehat64e6a452010-02-04 20:53:48 -080053 private static final String TAG = "StorageNotification";
54
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -070055 private static final String ACTION_SNOOZE_VOLUME = "com.android.systemui.action.SNOOZE_VOLUME";
Jeff Sharkeydf27d3b2015-06-16 13:51:48 -070056 private static final String ACTION_FINISH_WIZARD = "com.android.systemui.action.FINISH_WIZARD";
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -070057
Jeff Sharkey56bd3122015-04-14 10:30:34 -070058 // TODO: delay some notifications to avoid bumpy fast operations
San Mehat64e6a452010-02-04 20:53:48 -080059
Jeff Sharkey56bd3122015-04-14 10:30:34 -070060 private NotificationManager mNotificationManager;
San Mehatb1043402010-02-05 08:26:50 -080061 private StorageManager mStorageManager;
San Mehat64e6a452010-02-04 20:53:48 -080062
Dave Mankoffa5d8a392019-10-10 12:21:09 -040063 public StorageNotification(Context context) {
64 super(context);
65 }
66
Jeff Sharkey50a05452015-04-29 11:24:52 -070067 private static class MoveInfo {
68 public int moveId;
69 public Bundle extras;
70 public String packageName;
71 public String label;
72 public String volumeUuid;
73 }
74
75 private final SparseArray<MoveInfo> mMoves = new SparseArray<>();
76
Jeff Sharkey56bd3122015-04-14 10:30:34 -070077 private final StorageEventListener mListener = new StorageEventListener() {
78 @Override
79 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -070080 onVolumeStateChangedInternal(vol);
John Spurlock3e309b22013-06-25 11:01:29 -040081 }
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -070082
83 @Override
Jeff Sharkey50a05452015-04-29 11:24:52 -070084 public void onVolumeRecordChanged(VolumeRecord rec) {
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -070085 // Avoid kicking notifications when getting early metadata before
86 // mounted. If already mounted, we're being kicked because of a
87 // nickname or init'ed change.
Jeff Sharkey50a05452015-04-29 11:24:52 -070088 final VolumeInfo vol = mStorageManager.findVolumeByUuid(rec.getFsUuid());
Jeff Sharkeyb36586a2015-04-27 08:42:28 -070089 if (vol != null && vol.isMountedReadable()) {
90 onVolumeStateChangedInternal(vol);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -070091 }
Jeff Sharkey50a05452015-04-29 11:24:52 -070092 }
Jeff Sharkeyb36586a2015-04-27 08:42:28 -070093
Jeff Sharkey50a05452015-04-29 11:24:52 -070094 @Override
95 public void onVolumeForgotten(String fsUuid) {
96 // Stop annoying the user
Chris Wren5e6c0ff2017-01-05 12:57:06 -050097 mNotificationManager.cancelAsUser(fsUuid, SystemMessage.NOTE_STORAGE_PRIVATE,
98 UserHandle.ALL);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -070099 }
100
101 @Override
102 public void onDiskScanned(DiskInfo disk, int volumeCount) {
103 onDiskScannedInternal(disk, volumeCount);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700104 }
Philip P. Moltmann75b230b2016-04-11 15:27:58 -0700105
106 @Override
107 public void onDiskDestroyed(DiskInfo disk) {
108 onDiskDestroyedInternal(disk);
109 }
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700110 };
111
112 private final BroadcastReceiver mSnoozeReceiver = new BroadcastReceiver() {
113 @Override
114 public void onReceive(Context context, Intent intent) {
115 // TODO: kick this onto background thread
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700116 final String fsUuid = intent.getStringExtra(VolumeRecord.EXTRA_FS_UUID);
117 mStorageManager.setVolumeSnoozed(fsUuid, true);
118 }
119 };
120
Jeff Sharkeydf27d3b2015-06-16 13:51:48 -0700121 private final BroadcastReceiver mFinishReceiver = new BroadcastReceiver() {
122 @Override
123 public void onReceive(Context context, Intent intent) {
124 // When finishing the adoption wizard, clean up any notifications
125 // for moving primary storage
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500126 mNotificationManager.cancelAsUser(null, SystemMessage.NOTE_STORAGE_MOVE,
127 UserHandle.ALL);
Jeff Sharkeydf27d3b2015-06-16 13:51:48 -0700128 }
129 };
130
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700131 private final MoveCallback mMoveCallback = new MoveCallback() {
132 @Override
Jeff Sharkey50a05452015-04-29 11:24:52 -0700133 public void onCreated(int moveId, Bundle extras) {
134 final MoveInfo move = new MoveInfo();
135 move.moveId = moveId;
136 move.extras = extras;
137 if (extras != null) {
138 move.packageName = extras.getString(Intent.EXTRA_PACKAGE_NAME);
139 move.label = extras.getString(Intent.EXTRA_TITLE);
140 move.volumeUuid = extras.getString(VolumeRecord.EXTRA_FS_UUID);
141 }
142 mMoves.put(moveId, move);
143 }
144
145 @Override
146 public void onStatusChanged(int moveId, int status, long estMillis) {
147 final MoveInfo move = mMoves.get(moveId);
148 if (move == null) {
149 Log.w(TAG, "Ignoring unknown move " + moveId);
150 return;
151 }
152
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700153 if (PackageManager.isMoveStatusFinished(status)) {
Jeff Sharkey50a05452015-04-29 11:24:52 -0700154 onMoveFinished(move, status);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700155 } else {
Jeff Sharkey50a05452015-04-29 11:24:52 -0700156 onMoveProgress(move, status, estMillis);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700157 }
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700158 }
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700159 };
San Mehat64e6a452010-02-04 20:53:48 -0800160
John Spurlock3e309b22013-06-25 11:01:29 -0400161 @Override
162 public void start() {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700163 mNotificationManager = mContext.getSystemService(NotificationManager.class);
John Spurlock3e309b22013-06-25 11:01:29 -0400164
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700165 mStorageManager = mContext.getSystemService(StorageManager.class);
166 mStorageManager.registerListener(mListener);
Daniel Sandler5b8743f2010-11-03 09:43:46 -0400167
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700168 mContext.registerReceiver(mSnoozeReceiver, new IntentFilter(ACTION_SNOOZE_VOLUME),
169 android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
Jeff Sharkeydf27d3b2015-06-16 13:51:48 -0700170 mContext.registerReceiver(mFinishReceiver, new IntentFilter(ACTION_FINISH_WIZARD),
171 android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700172
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700173 // Kick current state into place
Jeff Sharkeyf5a6bd72015-05-19 14:42:38 -0700174 final List<DiskInfo> disks = mStorageManager.getDisks();
175 for (DiskInfo disk : disks) {
176 onDiskScannedInternal(disk, disk.volumeCount);
177 }
178
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700179 final List<VolumeInfo> vols = mStorageManager.getVolumes();
180 for (VolumeInfo vol : vols) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700181 onVolumeStateChangedInternal(vol);
182 }
183
184 mContext.getPackageManager().registerMoveCallback(mMoveCallback, new Handler());
185
186 updateMissingPrivateVolumes();
187 }
188
189 private void updateMissingPrivateVolumes() {
Agatha Man3f287f22020-03-26 09:53:56 -0700190 if (isTv() || isAutomotive()) {
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800191 // On TV, TvSettings displays a modal full-screen activity in this case.
Agatha Man3f287f22020-03-26 09:53:56 -0700192 // Not applicable for automotive.
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800193 return;
194 }
195
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700196 final List<VolumeRecord> recs = mStorageManager.getVolumeRecords();
197 for (VolumeRecord rec : recs) {
198 if (rec.getType() != VolumeInfo.TYPE_PRIVATE) continue;
199
200 final String fsUuid = rec.getFsUuid();
201 final VolumeInfo info = mStorageManager.findVolumeByUuid(fsUuid);
Jeff Sharkey52fc3c0f2015-06-14 20:58:54 -0700202 if ((info != null && info.isMountedWritable()) || rec.isSnoozed()) {
203 // Yay, private volume is here, or user snoozed
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500204 mNotificationManager.cancelAsUser(fsUuid, SystemMessage.NOTE_STORAGE_PRIVATE,
205 UserHandle.ALL);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700206
207 } else {
208 // Boo, annoy the user to reinsert the private volume
209 final CharSequence title = mContext.getString(R.string.ext_media_missing_title,
210 rec.getNickname());
211 final CharSequence text = mContext.getString(R.string.ext_media_missing_message);
212
Geoffrey Pitsch1dc93bc2017-01-31 16:38:11 -0500213 Notification.Builder builder =
214 new Notification.Builder(mContext, NotificationChannels.STORAGE)
215 .setSmallIcon(R.drawable.ic_sd_card_48dp)
216 .setColor(mContext.getColor(
217 R.color.system_notification_accent_color))
218 .setContentTitle(title)
219 .setContentText(text)
220 .setContentIntent(buildForgetPendingIntent(rec))
221 .setStyle(new Notification.BigTextStyle().bigText(text))
222 .setVisibility(Notification.VISIBILITY_PUBLIC)
223 .setLocalOnly(true)
224 .setCategory(Notification.CATEGORY_SYSTEM)
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800225 .setDeleteIntent(buildSnoozeIntent(fsUuid))
226 .extend(new Notification.TvExtender());
Julia Reynolds037d8082018-03-18 15:25:19 -0400227 SystemUI.overrideNotificationAppName(mContext, builder, false);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700228
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500229 mNotificationManager.notifyAsUser(fsUuid, SystemMessage.NOTE_STORAGE_PRIVATE,
230 builder.build(), UserHandle.ALL);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700231 }
San Mehat64e6a452010-02-04 20:53:48 -0800232 }
233 }
234
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700235 private void onDiskScannedInternal(DiskInfo disk, int volumeCount) {
Jeff Sharkeyf5a6bd72015-05-19 14:42:38 -0700236 if (volumeCount == 0 && disk.size > 0) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700237 // No supported volumes found, give user option to format
238 final CharSequence title = mContext.getString(
Jeff Sharkey52fc3c0f2015-06-14 20:58:54 -0700239 R.string.ext_media_unsupported_notification_title, disk.getDescription());
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700240 final CharSequence text = mContext.getString(
Jeff Sharkey52fc3c0f2015-06-14 20:58:54 -0700241 R.string.ext_media_unsupported_notification_message, disk.getDescription());
San Mehat64e6a452010-02-04 20:53:48 -0800242
Geoffrey Pitsch1dc93bc2017-01-31 16:38:11 -0500243 Notification.Builder builder =
244 new Notification.Builder(mContext, NotificationChannels.STORAGE)
245 .setSmallIcon(getSmallIcon(disk, VolumeInfo.STATE_UNMOUNTABLE))
246 .setColor(mContext.getColor(R.color.system_notification_accent_color))
247 .setContentTitle(title)
248 .setContentText(text)
249 .setContentIntent(buildInitPendingIntent(disk))
250 .setStyle(new Notification.BigTextStyle().bigText(text))
251 .setVisibility(Notification.VISIBILITY_PUBLIC)
252 .setLocalOnly(true)
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800253 .setCategory(Notification.CATEGORY_ERROR)
254 .extend(new Notification.TvExtender());
Julia Reynolds037d8082018-03-18 15:25:19 -0400255 SystemUI.overrideNotificationAppName(mContext, builder, false);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700256
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500257 mNotificationManager.notifyAsUser(disk.getId(), SystemMessage.NOTE_STORAGE_DISK,
258 builder.build(), UserHandle.ALL);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700259
260 } else {
261 // Yay, we have volumes!
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500262 mNotificationManager.cancelAsUser(disk.getId(), SystemMessage.NOTE_STORAGE_DISK,
263 UserHandle.ALL);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700264 }
265 }
266
Philip P. Moltmann75b230b2016-04-11 15:27:58 -0700267 /**
268 * Remove all notifications for a disk when it goes away.
269 *
270 * @param disk The disk that went away.
271 */
272 private void onDiskDestroyedInternal(@NonNull DiskInfo disk) {
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500273 mNotificationManager.cancelAsUser(disk.getId(), SystemMessage.NOTE_STORAGE_DISK,
274 UserHandle.ALL);
Philip P. Moltmann75b230b2016-04-11 15:27:58 -0700275 }
276
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700277 private void onVolumeStateChangedInternal(VolumeInfo vol) {
278 switch (vol.getType()) {
279 case VolumeInfo.TYPE_PRIVATE:
280 onPrivateVolumeStateChangedInternal(vol);
281 break;
282 case VolumeInfo.TYPE_PUBLIC:
283 onPublicVolumeStateChangedInternal(vol);
284 break;
285 }
286 }
287
288 private void onPrivateVolumeStateChangedInternal(VolumeInfo vol) {
289 Log.d(TAG, "Notifying about private volume: " + vol.toString());
290
291 updateMissingPrivateVolumes();
292 }
293
294 private void onPublicVolumeStateChangedInternal(VolumeInfo vol) {
295 Log.d(TAG, "Notifying about public volume: " + vol.toString());
San Mehat64e6a452010-02-04 20:53:48 -0800296
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700297 final Notification notif;
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700298 switch (vol.getState()) {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700299 case VolumeInfo.STATE_UNMOUNTED:
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700300 notif = onVolumeUnmounted(vol);
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700301 break;
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700302 case VolumeInfo.STATE_CHECKING:
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700303 notif = onVolumeChecking(vol);
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700304 break;
305 case VolumeInfo.STATE_MOUNTED:
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700306 case VolumeInfo.STATE_MOUNTED_READ_ONLY:
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700307 notif = onVolumeMounted(vol);
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700308 break;
309 case VolumeInfo.STATE_FORMATTING:
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700310 notif = onVolumeFormatting(vol);
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700311 break;
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700312 case VolumeInfo.STATE_EJECTING:
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700313 notif = onVolumeEjecting(vol);
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700314 break;
315 case VolumeInfo.STATE_UNMOUNTABLE:
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700316 notif = onVolumeUnmountable(vol);
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700317 break;
318 case VolumeInfo.STATE_REMOVED:
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700319 notif = onVolumeRemoved(vol);
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700320 break;
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700321 case VolumeInfo.STATE_BAD_REMOVAL:
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700322 notif = onVolumeBadRemoval(vol);
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700323 break;
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700324 default:
325 notif = null;
326 break;
327 }
328
329 if (notif != null) {
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500330 mNotificationManager.notifyAsUser(vol.getId(), SystemMessage.NOTE_STORAGE_PUBLIC,
Jeff Sharkeyf8543802018-03-28 10:31:55 -0600331 notif, UserHandle.of(vol.getMountUserId()));
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700332 } else {
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500333 mNotificationManager.cancelAsUser(vol.getId(), SystemMessage.NOTE_STORAGE_PUBLIC,
Jeff Sharkeyf8543802018-03-28 10:31:55 -0600334 UserHandle.of(vol.getMountUserId()));
San Mehat64e6a452010-02-04 20:53:48 -0800335 }
336 }
337
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700338 private Notification onVolumeUnmounted(VolumeInfo vol) {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700339 // Ignored
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700340 return null;
San Mehat64e6a452010-02-04 20:53:48 -0800341 }
342
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700343 private Notification onVolumeChecking(VolumeInfo vol) {
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700344 final DiskInfo disk = vol.getDisk();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700345 final CharSequence title = mContext.getString(
346 R.string.ext_media_checking_notification_title, disk.getDescription());
347 final CharSequence text = mContext.getString(
348 R.string.ext_media_checking_notification_message, disk.getDescription());
San Mehat64e6a452010-02-04 20:53:48 -0800349
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700350 return buildNotificationBuilder(vol, title, text)
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700351 .setCategory(Notification.CATEGORY_PROGRESS)
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700352 .setOngoing(true)
353 .build();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700354 }
San Mehat64e6a452010-02-04 20:53:48 -0800355
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700356 private Notification onVolumeMounted(VolumeInfo vol) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700357 final VolumeRecord rec = mStorageManager.findRecordByUuid(vol.getFsUuid());
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700358 final DiskInfo disk = vol.getDisk();
Makoto Onukib138cb22015-06-23 17:32:02 -0700359
360 // Don't annoy when user dismissed in past. (But make sure the disk is adoptable; we
361 // used to allow snoozing non-adoptable disks too.)
362 if (rec.isSnoozed() && disk.isAdoptable()) {
363 return null;
364 }
365
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700366 if (disk.isAdoptable() && !rec.isInited()) {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700367 final CharSequence title = disk.getDescription();
368 final CharSequence text = mContext.getString(
369 R.string.ext_media_new_notification_message, disk.getDescription());
San Mehat64e6a452010-02-04 20:53:48 -0800370
Jeff Sharkey50a05452015-04-29 11:24:52 -0700371 final PendingIntent initIntent = buildInitPendingIntent(vol);
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700372 return buildNotificationBuilder(vol, title, text)
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700373 .addAction(new Action(R.drawable.ic_settings_24dp,
374 mContext.getString(R.string.ext_media_init_action), initIntent))
375 .addAction(new Action(R.drawable.ic_eject_24dp,
376 mContext.getString(R.string.ext_media_unmount_action),
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700377 buildUnmountPendingIntent(vol)))
Jeff Sharkey50a05452015-04-29 11:24:52 -0700378 .setContentIntent(initIntent)
Jeff Sharkey52fc3c0f2015-06-14 20:58:54 -0700379 .setDeleteIntent(buildSnoozeIntent(vol.getFsUuid()))
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700380 .build();
John Spurlock209bede2013-07-17 12:23:27 -0400381
San Mehat64e6a452010-02-04 20:53:48 -0800382 } else {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700383 final CharSequence title = disk.getDescription();
384 final CharSequence text = mContext.getString(
385 R.string.ext_media_ready_notification_message, disk.getDescription());
386
Jeff Sharkey50a05452015-04-29 11:24:52 -0700387 final PendingIntent browseIntent = buildBrowsePendingIntent(vol);
Makoto Onukib138cb22015-06-23 17:32:02 -0700388 final Notification.Builder builder = buildNotificationBuilder(vol, title, text)
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700389 .addAction(new Action(R.drawable.ic_folder_24dp,
390 mContext.getString(R.string.ext_media_browse_action),
Jeff Sharkey50a05452015-04-29 11:24:52 -0700391 browseIntent))
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700392 .addAction(new Action(R.drawable.ic_eject_24dp,
393 mContext.getString(R.string.ext_media_unmount_action),
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700394 buildUnmountPendingIntent(vol)))
Dmitri Plotnikovb2653e62017-04-11 11:45:00 -0700395 .setContentIntent(browseIntent)
Dan Sandler8e032e12017-01-25 13:41:38 -0500396 .setCategory(Notification.CATEGORY_SYSTEM);
Makoto Onukib138cb22015-06-23 17:32:02 -0700397 // Non-adoptable disks can't be snoozed.
398 if (disk.isAdoptable()) {
399 builder.setDeleteIntent(buildSnoozeIntent(vol.getFsUuid()));
400 }
401
402 return builder.build();
San Mehat64e6a452010-02-04 20:53:48 -0800403 }
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700404 }
405
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700406 private Notification onVolumeFormatting(VolumeInfo vol) {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700407 // Ignored
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700408 return null;
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700409 }
410
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700411 private Notification onVolumeEjecting(VolumeInfo vol) {
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700412 final DiskInfo disk = vol.getDisk();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700413 final CharSequence title = mContext.getString(
414 R.string.ext_media_unmounting_notification_title, disk.getDescription());
415 final CharSequence text = mContext.getString(
416 R.string.ext_media_unmounting_notification_message, disk.getDescription());
417
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700418 return buildNotificationBuilder(vol, title, text)
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700419 .setCategory(Notification.CATEGORY_PROGRESS)
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700420 .setOngoing(true)
421 .build();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700422 }
423
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700424 private Notification onVolumeUnmountable(VolumeInfo vol) {
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700425 final DiskInfo disk = vol.getDisk();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700426 final CharSequence title = mContext.getString(
427 R.string.ext_media_unmountable_notification_title, disk.getDescription());
428 final CharSequence text = mContext.getString(
429 R.string.ext_media_unmountable_notification_message, disk.getDescription());
430
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700431 return buildNotificationBuilder(vol, title, text)
Jeff Sharkey52fc3c0f2015-06-14 20:58:54 -0700432 .setContentIntent(buildInitPendingIntent(vol))
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700433 .setCategory(Notification.CATEGORY_ERROR)
434 .build();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700435 }
436
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700437 private Notification onVolumeRemoved(VolumeInfo vol) {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700438 if (!vol.isPrimary()) {
439 // Ignore non-primary media
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700440 return null;
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700441 }
442
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700443 final DiskInfo disk = vol.getDisk();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700444 final CharSequence title = mContext.getString(
445 R.string.ext_media_nomedia_notification_title, disk.getDescription());
446 final CharSequence text = mContext.getString(
447 R.string.ext_media_nomedia_notification_message, disk.getDescription());
448
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700449 return buildNotificationBuilder(vol, title, text)
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700450 .setCategory(Notification.CATEGORY_ERROR)
451 .build();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700452 }
453
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700454 private Notification onVolumeBadRemoval(VolumeInfo vol) {
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700455 if (!vol.isPrimary()) {
456 // Ignore non-primary media
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700457 return null;
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700458 }
459
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700460 final DiskInfo disk = vol.getDisk();
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700461 final CharSequence title = mContext.getString(
462 R.string.ext_media_badremoval_notification_title, disk.getDescription());
463 final CharSequence text = mContext.getString(
464 R.string.ext_media_badremoval_notification_message, disk.getDescription());
465
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700466 return buildNotificationBuilder(vol, title, text)
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700467 .setCategory(Notification.CATEGORY_ERROR)
468 .build();
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700469 }
470
Jeff Sharkey50a05452015-04-29 11:24:52 -0700471 private void onMoveProgress(MoveInfo move, int status, long estMillis) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700472 final CharSequence title;
Jeff Sharkey50a05452015-04-29 11:24:52 -0700473 if (!TextUtils.isEmpty(move.label)) {
474 title = mContext.getString(R.string.ext_media_move_specific_title, move.label);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700475 } else {
476 title = mContext.getString(R.string.ext_media_move_title);
477 }
478
479 final CharSequence text;
480 if (estMillis < 0) {
481 text = null;
482 } else {
483 text = DateUtils.formatDuration(estMillis);
484 }
485
Jeff Sharkey50a05452015-04-29 11:24:52 -0700486 final PendingIntent intent;
487 if (move.packageName != null) {
488 intent = buildWizardMovePendingIntent(move);
489 } else {
490 intent = buildWizardMigratePendingIntent(move);
491 }
492
Geoffrey Pitsch1dc93bc2017-01-31 16:38:11 -0500493 Notification.Builder builder =
494 new Notification.Builder(mContext, NotificationChannels.STORAGE)
495 .setSmallIcon(R.drawable.ic_sd_card_48dp)
496 .setColor(mContext.getColor(R.color.system_notification_accent_color))
497 .setContentTitle(title)
498 .setContentText(text)
499 .setContentIntent(intent)
500 .setStyle(new Notification.BigTextStyle().bigText(text))
501 .setVisibility(Notification.VISIBILITY_PUBLIC)
502 .setLocalOnly(true)
503 .setCategory(Notification.CATEGORY_PROGRESS)
504 .setProgress(100, status, false)
505 .setOngoing(true);
Julia Reynolds037d8082018-03-18 15:25:19 -0400506 SystemUI.overrideNotificationAppName(mContext, builder, false);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700507
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500508 mNotificationManager.notifyAsUser(move.packageName, SystemMessage.NOTE_STORAGE_MOVE,
Adrian Roose25c18d2016-06-17 15:59:49 -0700509 builder.build(), UserHandle.ALL);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700510 }
511
Jeff Sharkey50a05452015-04-29 11:24:52 -0700512 private void onMoveFinished(MoveInfo move, int status) {
513 if (move.packageName != null) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700514 // We currently ignore finished app moves; just clear the last
515 // published progress
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500516 mNotificationManager.cancelAsUser(move.packageName, SystemMessage.NOTE_STORAGE_MOVE,
517 UserHandle.ALL);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700518 return;
519 }
520
Jeff Sharkey50a05452015-04-29 11:24:52 -0700521 final VolumeInfo privateVol = mContext.getPackageManager().getPrimaryStorageCurrentVolume();
522 final String descrip = mStorageManager.getBestVolumeDescription(privateVol);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700523
524 final CharSequence title;
525 final CharSequence text;
526 if (status == PackageManager.MOVE_SUCCEEDED) {
527 title = mContext.getString(R.string.ext_media_move_success_title);
528 text = mContext.getString(R.string.ext_media_move_success_message, descrip);
529 } else {
530 title = mContext.getString(R.string.ext_media_move_failure_title);
531 text = mContext.getString(R.string.ext_media_move_failure_message);
532 }
533
Jeff Sharkey50a05452015-04-29 11:24:52 -0700534 // Jump back into the wizard flow if we moved to a real disk
535 final PendingIntent intent;
536 if (privateVol != null && privateVol.getDisk() != null) {
537 intent = buildWizardReadyPendingIntent(privateVol.getDisk());
Jeff Sharkeyef10ee02015-07-05 14:17:27 -0700538 } else if (privateVol != null) {
Jeff Sharkey50a05452015-04-29 11:24:52 -0700539 intent = buildVolumeSettingsPendingIntent(privateVol);
Jeff Sharkeyef10ee02015-07-05 14:17:27 -0700540 } else {
541 intent = null;
Jeff Sharkey50a05452015-04-29 11:24:52 -0700542 }
543
Geoffrey Pitsch1dc93bc2017-01-31 16:38:11 -0500544 Notification.Builder builder =
545 new Notification.Builder(mContext, NotificationChannels.STORAGE)
546 .setSmallIcon(R.drawable.ic_sd_card_48dp)
547 .setColor(mContext.getColor(R.color.system_notification_accent_color))
548 .setContentTitle(title)
549 .setContentText(text)
550 .setContentIntent(intent)
551 .setStyle(new Notification.BigTextStyle().bigText(text))
552 .setVisibility(Notification.VISIBILITY_PUBLIC)
553 .setLocalOnly(true)
554 .setCategory(Notification.CATEGORY_SYSTEM)
555 .setAutoCancel(true);
Julia Reynolds037d8082018-03-18 15:25:19 -0400556 SystemUI.overrideNotificationAppName(mContext, builder, false);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700557
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500558 mNotificationManager.notifyAsUser(move.packageName, SystemMessage.NOTE_STORAGE_MOVE,
559 builder.build(), UserHandle.ALL);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700560 }
561
562 private int getSmallIcon(DiskInfo disk, int state) {
563 if (disk.isSd()) {
564 switch (state) {
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700565 case VolumeInfo.STATE_CHECKING:
566 case VolumeInfo.STATE_EJECTING:
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700567 return R.drawable.ic_sd_card_48dp;
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700568 default:
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700569 return R.drawable.ic_sd_card_48dp;
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700570 }
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700571 } else if (disk.isUsb()) {
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700572 return R.drawable.ic_usb_48dp;
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700573 } else {
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700574 return R.drawable.ic_sd_card_48dp;
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700575 }
576 }
577
578 private Notification.Builder buildNotificationBuilder(VolumeInfo vol, CharSequence title,
579 CharSequence text) {
Geoffrey Pitsch1dc93bc2017-01-31 16:38:11 -0500580 Notification.Builder builder =
581 new Notification.Builder(mContext, NotificationChannels.STORAGE)
582 .setSmallIcon(getSmallIcon(vol.getDisk(), vol.getState()))
583 .setColor(mContext.getColor(R.color.system_notification_accent_color))
584 .setContentTitle(title)
585 .setContentText(text)
586 .setStyle(new Notification.BigTextStyle().bigText(text))
587 .setVisibility(Notification.VISIBILITY_PUBLIC)
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800588 .setLocalOnly(true)
589 .extend(new Notification.TvExtender());
Julia Reynolds037d8082018-03-18 15:25:19 -0400590 overrideNotificationAppName(mContext, builder, false);
Adrian Roose25c18d2016-06-17 15:59:49 -0700591 return builder;
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700592 }
593
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700594 private PendingIntent buildInitPendingIntent(DiskInfo disk) {
595 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800596 if (isTv()) {
597 intent.setPackage("com.android.tv.settings");
598 intent.setAction("com.android.tv.settings.action.NEW_STORAGE");
Agatha Man3f287f22020-03-26 09:53:56 -0700599 } else if (isAutomotive()) {
600 // TODO(b/151671685): add intent to handle unsupported usb
601 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800602 } else {
603 intent.setClassName("com.android.settings",
604 "com.android.settings.deviceinfo.StorageWizardInit");
605 }
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700606 intent.putExtra(DiskInfo.EXTRA_DISK_ID, disk.getId());
607
608 final int requestKey = disk.getId().hashCode();
609 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
610 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
611 }
612
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700613 private PendingIntent buildInitPendingIntent(VolumeInfo vol) {
614 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800615 if (isTv()) {
616 intent.setPackage("com.android.tv.settings");
617 intent.setAction("com.android.tv.settings.action.NEW_STORAGE");
Agatha Man3f287f22020-03-26 09:53:56 -0700618 } else if (isAutomotive()) {
619 // TODO(b/151671685): add intent to handle unmountable usb
620 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800621 } else {
622 intent.setClassName("com.android.settings",
623 "com.android.settings.deviceinfo.StorageWizardInit");
624 }
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700625 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
626
627 final int requestKey = vol.getId().hashCode();
628 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
629 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700630 }
631
632 private PendingIntent buildUnmountPendingIntent(VolumeInfo vol) {
633 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800634 if (isTv()) {
635 intent.setPackage("com.android.tv.settings");
636 intent.setAction("com.android.tv.settings.action.UNMOUNT_STORAGE");
637 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700638
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800639 final int requestKey = vol.getId().hashCode();
640 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
641 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
Heemin Seog91fab5c2019-06-17 15:11:27 -0700642 } else if (isAutomotive()) {
643 intent.setClassName("com.android.car.settings",
644 "com.android.car.settings.storage.StorageUnmountReceiver");
645 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
646
647 final int requestKey = vol.getId().hashCode();
648 return PendingIntent.getBroadcastAsUser(mContext, requestKey, intent,
649 PendingIntent.FLAG_CANCEL_CURRENT, UserHandle.CURRENT);
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800650 } else {
651 intent.setClassName("com.android.settings",
652 "com.android.settings.deviceinfo.StorageUnmountReceiver");
653 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
654
655 final int requestKey = vol.getId().hashCode();
656 return PendingIntent.getBroadcastAsUser(mContext, requestKey, intent,
657 PendingIntent.FLAG_CANCEL_CURRENT, UserHandle.CURRENT);
658 }
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700659 }
660
661 private PendingIntent buildBrowsePendingIntent(VolumeInfo vol) {
Jeff Sharkeye3644412019-04-27 17:13:57 -0600662 final StrictMode.VmPolicy oldPolicy = StrictMode.allowVmViolations();
663 try {
664 final Intent intent = vol.buildBrowseIntentForUser(vol.getMountUserId());
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700665
Jeff Sharkeye3644412019-04-27 17:13:57 -0600666 final int requestKey = vol.getId().hashCode();
667 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
668 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
669 } finally {
670 StrictMode.setVmPolicy(oldPolicy);
671 }
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700672 }
673
Jeff Sharkey50a05452015-04-29 11:24:52 -0700674 private PendingIntent buildVolumeSettingsPendingIntent(VolumeInfo vol) {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700675 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800676 if (isTv()) {
677 intent.setPackage("com.android.tv.settings");
678 intent.setAction(Settings.ACTION_INTERNAL_STORAGE_SETTINGS);
Agatha Man3f287f22020-03-26 09:53:56 -0700679 } else if (isAutomotive()) {
680 // TODO(b/151671685): add volume settings intent for automotive
681 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800682 } else {
683 switch (vol.getType()) {
684 case VolumeInfo.TYPE_PRIVATE:
685 intent.setClassName("com.android.settings",
686 "com.android.settings.Settings$PrivateVolumeSettingsActivity");
687 break;
688 case VolumeInfo.TYPE_PUBLIC:
689 intent.setClassName("com.android.settings",
690 "com.android.settings.Settings$PublicVolumeSettingsActivity");
691 break;
692 default:
693 return null;
694 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700695 }
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700696 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
697
698 final int requestKey = vol.getId().hashCode();
699 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
700 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
701 }
702
Jeff Sharkey52fc3c0f2015-06-14 20:58:54 -0700703 private PendingIntent buildSnoozeIntent(String fsUuid) {
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700704 final Intent intent = new Intent(ACTION_SNOOZE_VOLUME);
Jeff Sharkey52fc3c0f2015-06-14 20:58:54 -0700705 intent.putExtra(VolumeRecord.EXTRA_FS_UUID, fsUuid);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700706
Jeff Sharkey52fc3c0f2015-06-14 20:58:54 -0700707 final int requestKey = fsUuid.hashCode();
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700708 return PendingIntent.getBroadcastAsUser(mContext, requestKey, intent,
709 PendingIntent.FLAG_CANCEL_CURRENT, UserHandle.CURRENT);
San Mehat64e6a452010-02-04 20:53:48 -0800710 }
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700711
712 private PendingIntent buildForgetPendingIntent(VolumeRecord rec) {
Agatha Man3f287f22020-03-26 09:53:56 -0700713 // Not used on TV and Automotive
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700714 final Intent intent = new Intent();
715 intent.setClassName("com.android.settings",
716 "com.android.settings.Settings$PrivateVolumeForgetActivity");
717 intent.putExtra(VolumeRecord.EXTRA_FS_UUID, rec.getFsUuid());
718
719 final int requestKey = rec.getFsUuid().hashCode();
720 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
721 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
722 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700723
724 private PendingIntent buildWizardMigratePendingIntent(MoveInfo move) {
725 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800726 if (isTv()) {
727 intent.setPackage("com.android.tv.settings");
728 intent.setAction("com.android.tv.settings.action.MIGRATE_STORAGE");
Agatha Man3f287f22020-03-26 09:53:56 -0700729 } else if (isAutomotive()) {
730 // TODO(b/151671685): add storage migrate intent for automotive
731 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800732 } else {
733 intent.setClassName("com.android.settings",
734 "com.android.settings.deviceinfo.StorageWizardMigrateProgress");
735 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700736 intent.putExtra(PackageManager.EXTRA_MOVE_ID, move.moveId);
737
738 final VolumeInfo vol = mStorageManager.findVolumeByQualifiedUuid(move.volumeUuid);
Suprabh Shuklaaf6c4192016-04-27 14:05:54 -0700739 if (vol != null) {
740 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
741 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700742 return PendingIntent.getActivityAsUser(mContext, move.moveId, intent,
743 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
744 }
745
746 private PendingIntent buildWizardMovePendingIntent(MoveInfo move) {
747 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800748 if (isTv()) {
749 intent.setPackage("com.android.tv.settings");
750 intent.setAction("com.android.tv.settings.action.MOVE_APP");
Agatha Man3f287f22020-03-26 09:53:56 -0700751 } else if (isAutomotive()) {
752 // TODO(b/151671685): add storage move intent for automotive
753 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800754 } else {
755 intent.setClassName("com.android.settings",
756 "com.android.settings.deviceinfo.StorageWizardMoveProgress");
757 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700758 intent.putExtra(PackageManager.EXTRA_MOVE_ID, move.moveId);
759
760 return PendingIntent.getActivityAsUser(mContext, move.moveId, intent,
761 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
762 }
763
764 private PendingIntent buildWizardReadyPendingIntent(DiskInfo disk) {
765 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800766 if (isTv()) {
767 intent.setPackage("com.android.tv.settings");
768 intent.setAction(Settings.ACTION_INTERNAL_STORAGE_SETTINGS);
Agatha Man3f287f22020-03-26 09:53:56 -0700769 } else if (isAutomotive()) {
770 // TODO(b/151671685): add storage ready intent for automotive
771 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800772 } else {
773 intent.setClassName("com.android.settings",
774 "com.android.settings.deviceinfo.StorageWizardReady");
775 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700776 intent.putExtra(DiskInfo.EXTRA_DISK_ID, disk.getId());
777
778 final int requestKey = disk.getId().hashCode();
779 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
780 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
781 }
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800782
Heemin Seog91fab5c2019-06-17 15:11:27 -0700783 private boolean isAutomotive() {
784 PackageManager packageManager = mContext.getPackageManager();
785 return packageManager.hasSystemFeature(PackageManager.FEATURE_AUTOMOTIVE);
786 }
787
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800788 private boolean isTv() {
789 PackageManager packageManager = mContext.getPackageManager();
790 return packageManager.hasSystemFeature(PackageManager.FEATURE_LEANBACK);
791 }
San Mehat64e6a452010-02-04 20:53:48 -0800792}