blob: b6e722266bd6da6f72b52dc4ccb767f2ba6438ce [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);
Heemin Seog1791d982020-05-07 16:38:40 -0700372 final PendingIntent unmountIntent = buildUnmountPendingIntent(vol);
John Spurlock209bede2013-07-17 12:23:27 -0400373
Heemin Seog1791d982020-05-07 16:38:40 -0700374 if (isAutomotive()) {
375 return buildNotificationBuilder(vol, title, text)
376 .setContentIntent(unmountIntent)
377 .setDeleteIntent(buildSnoozeIntent(vol.getFsUuid()))
378 .build();
379 } else {
380 return buildNotificationBuilder(vol, title, text)
381 .addAction(new Action(R.drawable.ic_settings_24dp,
382 mContext.getString(R.string.ext_media_init_action), initIntent))
383 .addAction(new Action(R.drawable.ic_eject_24dp,
384 mContext.getString(R.string.ext_media_unmount_action),
385 unmountIntent))
386 .setContentIntent(initIntent)
387 .setDeleteIntent(buildSnoozeIntent(vol.getFsUuid()))
388 .build();
389 }
San Mehat64e6a452010-02-04 20:53:48 -0800390 } else {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700391 final CharSequence title = disk.getDescription();
392 final CharSequence text = mContext.getString(
393 R.string.ext_media_ready_notification_message, disk.getDescription());
394
Jeff Sharkey50a05452015-04-29 11:24:52 -0700395 final PendingIntent browseIntent = buildBrowsePendingIntent(vol);
Makoto Onukib138cb22015-06-23 17:32:02 -0700396 final Notification.Builder builder = buildNotificationBuilder(vol, title, text)
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700397 .addAction(new Action(R.drawable.ic_folder_24dp,
398 mContext.getString(R.string.ext_media_browse_action),
Jeff Sharkey50a05452015-04-29 11:24:52 -0700399 browseIntent))
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700400 .addAction(new Action(R.drawable.ic_eject_24dp,
401 mContext.getString(R.string.ext_media_unmount_action),
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700402 buildUnmountPendingIntent(vol)))
Dmitri Plotnikovb2653e62017-04-11 11:45:00 -0700403 .setContentIntent(browseIntent)
Dan Sandler8e032e12017-01-25 13:41:38 -0500404 .setCategory(Notification.CATEGORY_SYSTEM);
Makoto Onukib138cb22015-06-23 17:32:02 -0700405 // Non-adoptable disks can't be snoozed.
406 if (disk.isAdoptable()) {
407 builder.setDeleteIntent(buildSnoozeIntent(vol.getFsUuid()));
408 }
409
410 return builder.build();
San Mehat64e6a452010-02-04 20:53:48 -0800411 }
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700412 }
413
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700414 private Notification onVolumeFormatting(VolumeInfo vol) {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700415 // Ignored
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700416 return null;
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700417 }
418
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700419 private Notification onVolumeEjecting(VolumeInfo vol) {
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700420 final DiskInfo disk = vol.getDisk();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700421 final CharSequence title = mContext.getString(
422 R.string.ext_media_unmounting_notification_title, disk.getDescription());
423 final CharSequence text = mContext.getString(
424 R.string.ext_media_unmounting_notification_message, disk.getDescription());
425
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700426 return buildNotificationBuilder(vol, title, text)
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700427 .setCategory(Notification.CATEGORY_PROGRESS)
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700428 .setOngoing(true)
429 .build();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700430 }
431
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700432 private Notification onVolumeUnmountable(VolumeInfo vol) {
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700433 final DiskInfo disk = vol.getDisk();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700434 final CharSequence title = mContext.getString(
435 R.string.ext_media_unmountable_notification_title, disk.getDescription());
436 final CharSequence text = mContext.getString(
437 R.string.ext_media_unmountable_notification_message, disk.getDescription());
Heemin Seog1791d982020-05-07 16:38:40 -0700438 PendingIntent action;
439 if (isAutomotive()) {
440 action = buildUnmountPendingIntent(vol);
441 } else {
442 action = buildInitPendingIntent(vol);
443 }
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700444
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700445 return buildNotificationBuilder(vol, title, text)
Heemin Seog1791d982020-05-07 16:38:40 -0700446 .setContentIntent(action)
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700447 .setCategory(Notification.CATEGORY_ERROR)
448 .build();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700449 }
450
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700451 private Notification onVolumeRemoved(VolumeInfo vol) {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700452 if (!vol.isPrimary()) {
453 // Ignore non-primary media
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700454 return null;
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700455 }
456
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700457 final DiskInfo disk = vol.getDisk();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700458 final CharSequence title = mContext.getString(
459 R.string.ext_media_nomedia_notification_title, disk.getDescription());
460 final CharSequence text = mContext.getString(
461 R.string.ext_media_nomedia_notification_message, disk.getDescription());
462
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700463 return buildNotificationBuilder(vol, title, text)
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700464 .setCategory(Notification.CATEGORY_ERROR)
465 .build();
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700466 }
467
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700468 private Notification onVolumeBadRemoval(VolumeInfo vol) {
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700469 if (!vol.isPrimary()) {
470 // Ignore non-primary media
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700471 return null;
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700472 }
473
Jeff Sharkey27de30d2015-04-18 16:20:27 -0700474 final DiskInfo disk = vol.getDisk();
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700475 final CharSequence title = mContext.getString(
476 R.string.ext_media_badremoval_notification_title, disk.getDescription());
477 final CharSequence text = mContext.getString(
478 R.string.ext_media_badremoval_notification_message, disk.getDescription());
479
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700480 return buildNotificationBuilder(vol, title, text)
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700481 .setCategory(Notification.CATEGORY_ERROR)
482 .build();
Jeff Sharkey7e92ef32015-04-17 17:35:07 -0700483 }
484
Jeff Sharkey50a05452015-04-29 11:24:52 -0700485 private void onMoveProgress(MoveInfo move, int status, long estMillis) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700486 final CharSequence title;
Jeff Sharkey50a05452015-04-29 11:24:52 -0700487 if (!TextUtils.isEmpty(move.label)) {
488 title = mContext.getString(R.string.ext_media_move_specific_title, move.label);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700489 } else {
490 title = mContext.getString(R.string.ext_media_move_title);
491 }
492
493 final CharSequence text;
494 if (estMillis < 0) {
495 text = null;
496 } else {
497 text = DateUtils.formatDuration(estMillis);
498 }
499
Jeff Sharkey50a05452015-04-29 11:24:52 -0700500 final PendingIntent intent;
501 if (move.packageName != null) {
502 intent = buildWizardMovePendingIntent(move);
503 } else {
504 intent = buildWizardMigratePendingIntent(move);
505 }
506
Geoffrey Pitsch1dc93bc2017-01-31 16:38:11 -0500507 Notification.Builder builder =
508 new Notification.Builder(mContext, NotificationChannels.STORAGE)
509 .setSmallIcon(R.drawable.ic_sd_card_48dp)
510 .setColor(mContext.getColor(R.color.system_notification_accent_color))
511 .setContentTitle(title)
512 .setContentText(text)
513 .setContentIntent(intent)
514 .setStyle(new Notification.BigTextStyle().bigText(text))
515 .setVisibility(Notification.VISIBILITY_PUBLIC)
516 .setLocalOnly(true)
517 .setCategory(Notification.CATEGORY_PROGRESS)
518 .setProgress(100, status, false)
519 .setOngoing(true);
Julia Reynolds037d8082018-03-18 15:25:19 -0400520 SystemUI.overrideNotificationAppName(mContext, builder, false);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700521
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500522 mNotificationManager.notifyAsUser(move.packageName, SystemMessage.NOTE_STORAGE_MOVE,
Adrian Roose25c18d2016-06-17 15:59:49 -0700523 builder.build(), UserHandle.ALL);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700524 }
525
Jeff Sharkey50a05452015-04-29 11:24:52 -0700526 private void onMoveFinished(MoveInfo move, int status) {
527 if (move.packageName != null) {
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700528 // We currently ignore finished app moves; just clear the last
529 // published progress
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500530 mNotificationManager.cancelAsUser(move.packageName, SystemMessage.NOTE_STORAGE_MOVE,
531 UserHandle.ALL);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700532 return;
533 }
534
Jeff Sharkey50a05452015-04-29 11:24:52 -0700535 final VolumeInfo privateVol = mContext.getPackageManager().getPrimaryStorageCurrentVolume();
536 final String descrip = mStorageManager.getBestVolumeDescription(privateVol);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700537
538 final CharSequence title;
539 final CharSequence text;
540 if (status == PackageManager.MOVE_SUCCEEDED) {
541 title = mContext.getString(R.string.ext_media_move_success_title);
542 text = mContext.getString(R.string.ext_media_move_success_message, descrip);
543 } else {
544 title = mContext.getString(R.string.ext_media_move_failure_title);
545 text = mContext.getString(R.string.ext_media_move_failure_message);
546 }
547
Jeff Sharkey50a05452015-04-29 11:24:52 -0700548 // Jump back into the wizard flow if we moved to a real disk
549 final PendingIntent intent;
550 if (privateVol != null && privateVol.getDisk() != null) {
551 intent = buildWizardReadyPendingIntent(privateVol.getDisk());
Jeff Sharkeyef10ee02015-07-05 14:17:27 -0700552 } else if (privateVol != null) {
Jeff Sharkey50a05452015-04-29 11:24:52 -0700553 intent = buildVolumeSettingsPendingIntent(privateVol);
Jeff Sharkeyef10ee02015-07-05 14:17:27 -0700554 } else {
555 intent = null;
Jeff Sharkey50a05452015-04-29 11:24:52 -0700556 }
557
Geoffrey Pitsch1dc93bc2017-01-31 16:38:11 -0500558 Notification.Builder builder =
559 new Notification.Builder(mContext, NotificationChannels.STORAGE)
560 .setSmallIcon(R.drawable.ic_sd_card_48dp)
561 .setColor(mContext.getColor(R.color.system_notification_accent_color))
562 .setContentTitle(title)
563 .setContentText(text)
564 .setContentIntent(intent)
565 .setStyle(new Notification.BigTextStyle().bigText(text))
566 .setVisibility(Notification.VISIBILITY_PUBLIC)
567 .setLocalOnly(true)
568 .setCategory(Notification.CATEGORY_SYSTEM)
569 .setAutoCancel(true);
Julia Reynolds037d8082018-03-18 15:25:19 -0400570 SystemUI.overrideNotificationAppName(mContext, builder, false);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700571
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500572 mNotificationManager.notifyAsUser(move.packageName, SystemMessage.NOTE_STORAGE_MOVE,
573 builder.build(), UserHandle.ALL);
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700574 }
575
576 private int getSmallIcon(DiskInfo disk, int state) {
577 if (disk.isSd()) {
578 switch (state) {
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700579 case VolumeInfo.STATE_CHECKING:
580 case VolumeInfo.STATE_EJECTING:
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700581 return R.drawable.ic_sd_card_48dp;
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700582 default:
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700583 return R.drawable.ic_sd_card_48dp;
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700584 }
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700585 } else if (disk.isUsb()) {
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700586 return R.drawable.ic_usb_48dp;
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700587 } else {
Jeff Sharkeya49d5fc2015-05-13 11:40:30 -0700588 return R.drawable.ic_sd_card_48dp;
Jeff Sharkeye6c04f92015-04-18 21:38:05 -0700589 }
590 }
591
592 private Notification.Builder buildNotificationBuilder(VolumeInfo vol, CharSequence title,
593 CharSequence text) {
Geoffrey Pitsch1dc93bc2017-01-31 16:38:11 -0500594 Notification.Builder builder =
595 new Notification.Builder(mContext, NotificationChannels.STORAGE)
596 .setSmallIcon(getSmallIcon(vol.getDisk(), vol.getState()))
597 .setColor(mContext.getColor(R.color.system_notification_accent_color))
598 .setContentTitle(title)
599 .setContentText(text)
600 .setStyle(new Notification.BigTextStyle().bigText(text))
601 .setVisibility(Notification.VISIBILITY_PUBLIC)
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800602 .setLocalOnly(true)
603 .extend(new Notification.TvExtender());
Julia Reynolds037d8082018-03-18 15:25:19 -0400604 overrideNotificationAppName(mContext, builder, false);
Adrian Roose25c18d2016-06-17 15:59:49 -0700605 return builder;
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700606 }
607
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700608 private PendingIntent buildInitPendingIntent(DiskInfo disk) {
609 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800610 if (isTv()) {
611 intent.setPackage("com.android.tv.settings");
612 intent.setAction("com.android.tv.settings.action.NEW_STORAGE");
Agatha Man3f287f22020-03-26 09:53:56 -0700613 } else if (isAutomotive()) {
614 // TODO(b/151671685): add intent to handle unsupported usb
615 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800616 } else {
617 intent.setClassName("com.android.settings",
618 "com.android.settings.deviceinfo.StorageWizardInit");
619 }
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700620 intent.putExtra(DiskInfo.EXTRA_DISK_ID, disk.getId());
621
622 final int requestKey = disk.getId().hashCode();
623 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
624 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
625 }
626
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700627 private PendingIntent buildInitPendingIntent(VolumeInfo vol) {
628 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800629 if (isTv()) {
630 intent.setPackage("com.android.tv.settings");
631 intent.setAction("com.android.tv.settings.action.NEW_STORAGE");
Agatha Man3f287f22020-03-26 09:53:56 -0700632 } else if (isAutomotive()) {
633 // TODO(b/151671685): add intent to handle unmountable usb
634 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800635 } else {
636 intent.setClassName("com.android.settings",
637 "com.android.settings.deviceinfo.StorageWizardInit");
638 }
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700639 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
640
641 final int requestKey = vol.getId().hashCode();
642 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
643 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700644 }
645
646 private PendingIntent buildUnmountPendingIntent(VolumeInfo vol) {
647 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800648 if (isTv()) {
649 intent.setPackage("com.android.tv.settings");
650 intent.setAction("com.android.tv.settings.action.UNMOUNT_STORAGE");
651 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700652
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800653 final int requestKey = vol.getId().hashCode();
654 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
655 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
Heemin Seog91fab5c2019-06-17 15:11:27 -0700656 } else if (isAutomotive()) {
657 intent.setClassName("com.android.car.settings",
658 "com.android.car.settings.storage.StorageUnmountReceiver");
659 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
660
661 final int requestKey = vol.getId().hashCode();
662 return PendingIntent.getBroadcastAsUser(mContext, requestKey, intent,
663 PendingIntent.FLAG_CANCEL_CURRENT, UserHandle.CURRENT);
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800664 } else {
665 intent.setClassName("com.android.settings",
666 "com.android.settings.deviceinfo.StorageUnmountReceiver");
667 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
668
669 final int requestKey = vol.getId().hashCode();
670 return PendingIntent.getBroadcastAsUser(mContext, requestKey, intent,
671 PendingIntent.FLAG_CANCEL_CURRENT, UserHandle.CURRENT);
672 }
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700673 }
674
675 private PendingIntent buildBrowsePendingIntent(VolumeInfo vol) {
Jeff Sharkeye3644412019-04-27 17:13:57 -0600676 final StrictMode.VmPolicy oldPolicy = StrictMode.allowVmViolations();
677 try {
678 final Intent intent = vol.buildBrowseIntentForUser(vol.getMountUserId());
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700679
Jeff Sharkeye3644412019-04-27 17:13:57 -0600680 final int requestKey = vol.getId().hashCode();
681 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
682 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
683 } finally {
684 StrictMode.setVmPolicy(oldPolicy);
685 }
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700686 }
687
Jeff Sharkey50a05452015-04-29 11:24:52 -0700688 private PendingIntent buildVolumeSettingsPendingIntent(VolumeInfo vol) {
Jeff Sharkey56bd3122015-04-14 10:30:34 -0700689 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800690 if (isTv()) {
691 intent.setPackage("com.android.tv.settings");
692 intent.setAction(Settings.ACTION_INTERNAL_STORAGE_SETTINGS);
Agatha Man3f287f22020-03-26 09:53:56 -0700693 } else if (isAutomotive()) {
694 // TODO(b/151671685): add volume settings intent for automotive
695 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800696 } else {
697 switch (vol.getType()) {
698 case VolumeInfo.TYPE_PRIVATE:
699 intent.setClassName("com.android.settings",
700 "com.android.settings.Settings$PrivateVolumeSettingsActivity");
701 break;
702 case VolumeInfo.TYPE_PUBLIC:
703 intent.setClassName("com.android.settings",
704 "com.android.settings.Settings$PublicVolumeSettingsActivity");
705 break;
706 default:
707 return null;
708 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700709 }
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700710 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
711
712 final int requestKey = vol.getId().hashCode();
713 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
714 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
715 }
716
Jeff Sharkey52fc3c0f2015-06-14 20:58:54 -0700717 private PendingIntent buildSnoozeIntent(String fsUuid) {
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700718 final Intent intent = new Intent(ACTION_SNOOZE_VOLUME);
Jeff Sharkey52fc3c0f2015-06-14 20:58:54 -0700719 intent.putExtra(VolumeRecord.EXTRA_FS_UUID, fsUuid);
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700720
Jeff Sharkey52fc3c0f2015-06-14 20:58:54 -0700721 final int requestKey = fsUuid.hashCode();
Jeff Sharkeyd95d3bf2015-04-14 21:39:44 -0700722 return PendingIntent.getBroadcastAsUser(mContext, requestKey, intent,
723 PendingIntent.FLAG_CANCEL_CURRENT, UserHandle.CURRENT);
San Mehat64e6a452010-02-04 20:53:48 -0800724 }
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700725
726 private PendingIntent buildForgetPendingIntent(VolumeRecord rec) {
Agatha Man3f287f22020-03-26 09:53:56 -0700727 // Not used on TV and Automotive
Jeff Sharkeyb36586a2015-04-27 08:42:28 -0700728 final Intent intent = new Intent();
729 intent.setClassName("com.android.settings",
730 "com.android.settings.Settings$PrivateVolumeForgetActivity");
731 intent.putExtra(VolumeRecord.EXTRA_FS_UUID, rec.getFsUuid());
732
733 final int requestKey = rec.getFsUuid().hashCode();
734 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
735 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
736 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700737
738 private PendingIntent buildWizardMigratePendingIntent(MoveInfo move) {
739 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800740 if (isTv()) {
741 intent.setPackage("com.android.tv.settings");
742 intent.setAction("com.android.tv.settings.action.MIGRATE_STORAGE");
Agatha Man3f287f22020-03-26 09:53:56 -0700743 } else if (isAutomotive()) {
744 // TODO(b/151671685): add storage migrate intent for automotive
745 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800746 } else {
747 intent.setClassName("com.android.settings",
748 "com.android.settings.deviceinfo.StorageWizardMigrateProgress");
749 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700750 intent.putExtra(PackageManager.EXTRA_MOVE_ID, move.moveId);
751
752 final VolumeInfo vol = mStorageManager.findVolumeByQualifiedUuid(move.volumeUuid);
Suprabh Shuklaaf6c4192016-04-27 14:05:54 -0700753 if (vol != null) {
754 intent.putExtra(VolumeInfo.EXTRA_VOLUME_ID, vol.getId());
755 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700756 return PendingIntent.getActivityAsUser(mContext, move.moveId, intent,
757 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
758 }
759
760 private PendingIntent buildWizardMovePendingIntent(MoveInfo move) {
761 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800762 if (isTv()) {
763 intent.setPackage("com.android.tv.settings");
764 intent.setAction("com.android.tv.settings.action.MOVE_APP");
Agatha Man3f287f22020-03-26 09:53:56 -0700765 } else if (isAutomotive()) {
766 // TODO(b/151671685): add storage move intent for automotive
767 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800768 } else {
769 intent.setClassName("com.android.settings",
770 "com.android.settings.deviceinfo.StorageWizardMoveProgress");
771 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700772 intent.putExtra(PackageManager.EXTRA_MOVE_ID, move.moveId);
773
774 return PendingIntent.getActivityAsUser(mContext, move.moveId, intent,
775 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
776 }
777
778 private PendingIntent buildWizardReadyPendingIntent(DiskInfo disk) {
779 final Intent intent = new Intent();
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800780 if (isTv()) {
781 intent.setPackage("com.android.tv.settings");
782 intent.setAction(Settings.ACTION_INTERNAL_STORAGE_SETTINGS);
Agatha Man3f287f22020-03-26 09:53:56 -0700783 } else if (isAutomotive()) {
784 // TODO(b/151671685): add storage ready intent for automotive
785 return null;
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800786 } else {
787 intent.setClassName("com.android.settings",
788 "com.android.settings.deviceinfo.StorageWizardReady");
789 }
Jeff Sharkey50a05452015-04-29 11:24:52 -0700790 intent.putExtra(DiskInfo.EXTRA_DISK_ID, disk.getId());
791
792 final int requestKey = disk.getId().hashCode();
793 return PendingIntent.getActivityAsUser(mContext, requestKey, intent,
794 PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
795 }
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800796
Heemin Seog91fab5c2019-06-17 15:11:27 -0700797 private boolean isAutomotive() {
798 PackageManager packageManager = mContext.getPackageManager();
799 return packageManager.hasSystemFeature(PackageManager.FEATURE_AUTOMOTIVE);
800 }
801
Dmitri Plotnikov519c0882017-02-13 14:37:05 -0800802 private boolean isTv() {
803 PackageManager packageManager = mContext.getPackageManager();
804 return packageManager.hasSystemFeature(PackageManager.FEATURE_LEANBACK);
805 }
San Mehat64e6a452010-02-04 20:53:48 -0800806}