Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 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 | |
| 17 | package com.android.settings; |
| 18 | |
| 19 | import android.content.BroadcastReceiver; |
| 20 | import android.content.ComponentName; |
| 21 | import android.content.Context; |
| 22 | import android.content.Intent; |
| 23 | import android.content.pm.PackageManager; |
| 24 | import android.content.pm.ResolveInfo; |
Doris Ling | f2d7680 | 2018-04-02 14:51:36 -0700 | [diff] [blame^] | 25 | import android.content.pm.ShortcutInfo; |
| 26 | import android.content.pm.ShortcutManager; |
Xiaohui Chen | 762104e | 2015-09-01 10:26:53 -0700 | [diff] [blame] | 27 | import android.content.pm.UserInfo; |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 28 | import android.os.UserHandle; |
| 29 | import android.os.UserManager; |
Doris Ling | f2d7680 | 2018-04-02 14:51:36 -0700 | [diff] [blame^] | 30 | import android.support.annotation.VisibleForTesting; |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame] | 31 | import android.util.Log; |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 32 | |
Doris Ling | f2d7680 | 2018-04-02 14:51:36 -0700 | [diff] [blame^] | 33 | import java.util.ArrayList; |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 34 | import java.util.List; |
| 35 | |
| 36 | import static android.content.pm.PackageManager.GET_ACTIVITIES; |
| 37 | import static android.content.pm.PackageManager.GET_META_DATA; |
| 38 | import static android.content.pm.PackageManager.GET_RESOLVED_FILTER; |
Tony Mak | 82d9096 | 2016-05-04 13:51:41 +0100 | [diff] [blame] | 39 | import static android.content.pm.PackageManager.MATCH_DISABLED_COMPONENTS; |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 40 | |
Fan Zhang | 409eab1 | 2018-01-29 11:23:52 -0800 | [diff] [blame] | 41 | import com.android.settings.shortcut.CreateShortcut; |
| 42 | |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 43 | /** |
Kenny Guy | 4761da3 | 2017-05-16 18:54:21 +0100 | [diff] [blame] | 44 | * Listens to {@link Intent.ACTION_PRE_BOOT_COMPLETED} and {@link Intent.ACTION_USER_INITIALIZED} |
Gustav Sennton | 66313bb | 2016-05-11 12:31:40 +0100 | [diff] [blame] | 45 | * performs setup steps for a managed profile (disables the launcher icon of the Settings app, |
Doris Ling | f2d7680 | 2018-04-02 14:51:36 -0700 | [diff] [blame^] | 46 | * adds cross-profile intent filters for the appropriate Settings activities), disables the |
| 47 | * webview setting for non-admin users, and updates the intent flags for any existing shortcuts. |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 48 | */ |
Gustav Sennton | 66313bb | 2016-05-11 12:31:40 +0100 | [diff] [blame] | 49 | public class SettingsInitialize extends BroadcastReceiver { |
Alexandra Gherghina | f2e39f2 | 2014-08-18 13:16:17 +0100 | [diff] [blame] | 50 | private static final String TAG = "Settings"; |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 51 | private static final String PRIMARY_PROFILE_SETTING = |
| 52 | "com.android.settings.PRIMARY_PROFILE_CONTROLLED"; |
Gustav Sennton | 4d3334c | 2016-12-13 19:16:48 +0000 | [diff] [blame] | 53 | private static final String SETTINGS_PACKAGE = "com.android.settings"; |
| 54 | private static final String WEBVIEW_IMPLEMENTATION_ACTIVITY = ".WebViewImplementation"; |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 55 | |
| 56 | @Override |
| 57 | public void onReceive(Context context, Intent broadcast) { |
| 58 | final UserManager um = (UserManager) context.getSystemService(Context.USER_SERVICE); |
Xiaohui Chen | 762104e | 2015-09-01 10:26:53 -0700 | [diff] [blame] | 59 | UserInfo userInfo = um.getUserInfo(UserHandle.myUserId()); |
Gustav Sennton | 66313bb | 2016-05-11 12:31:40 +0100 | [diff] [blame] | 60 | final PackageManager pm = context.getPackageManager(); |
| 61 | managedProfileSetup(context, pm, broadcast, userInfo); |
| 62 | webviewSettingSetup(context, pm, userInfo); |
Doris Ling | f2d7680 | 2018-04-02 14:51:36 -0700 | [diff] [blame^] | 63 | refreshExistingShortcuts(context); |
Gustav Sennton | 66313bb | 2016-05-11 12:31:40 +0100 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | private void managedProfileSetup(Context context, final PackageManager pm, Intent broadcast, |
| 67 | UserInfo userInfo) { |
Xiaohui Chen | 762104e | 2015-09-01 10:26:53 -0700 | [diff] [blame] | 68 | if (userInfo == null || !userInfo.isManagedProfile()) { |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 69 | return; |
| 70 | } |
Alexandra Gherghina | f2e39f2 | 2014-08-18 13:16:17 +0100 | [diff] [blame] | 71 | Log.i(TAG, "Received broadcast: " + broadcast.getAction() |
| 72 | + ". Setting up intent forwarding for managed profile."); |
Alexandra Gherghina | 5667a68 | 2014-07-29 14:55:56 +0100 | [diff] [blame] | 73 | // Clear any previous intent forwarding we set up |
Xiaohui Chen | 762104e | 2015-09-01 10:26:53 -0700 | [diff] [blame] | 74 | pm.clearCrossProfileIntentFilters(userInfo.id); |
Alexandra Gherghina | 5667a68 | 2014-07-29 14:55:56 +0100 | [diff] [blame] | 75 | |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 76 | // Set up intent forwarding for implicit intents |
| 77 | Intent intent = new Intent(); |
| 78 | intent.addCategory(Intent.CATEGORY_DEFAULT); |
| 79 | intent.setPackage(context.getPackageName()); |
| 80 | |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 81 | // Resolves activities for the managed profile (which we're running as) |
| 82 | List<ResolveInfo> resolvedIntents = pm.queryIntentActivities(intent, |
Tony Mak | 82d9096 | 2016-05-04 13:51:41 +0100 | [diff] [blame] | 83 | GET_ACTIVITIES | GET_META_DATA | GET_RESOLVED_FILTER | MATCH_DISABLED_COMPONENTS); |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 84 | final int count = resolvedIntents.size(); |
| 85 | for (int i = 0; i < count; i++) { |
| 86 | ResolveInfo info = resolvedIntents.get(i); |
| 87 | if (info.filter != null && info.activityInfo != null |
| 88 | && info.activityInfo.metaData != null) { |
| 89 | boolean shouldForward = info.activityInfo.metaData.getBoolean( |
| 90 | PRIMARY_PROFILE_SETTING); |
| 91 | if (shouldForward) { |
Xiaohui Chen | 762104e | 2015-09-01 10:26:53 -0700 | [diff] [blame] | 92 | pm.addCrossProfileIntentFilter(info.filter, userInfo.id, |
| 93 | userInfo.profileGroupId, PackageManager.SKIP_CURRENT_PROFILE); |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 94 | } |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | // Disable launcher icon |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 99 | ComponentName settingsComponentName = new ComponentName(context, Settings.class); |
| 100 | pm.setComponentEnabledSetting(settingsComponentName, |
| 101 | PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP); |
Kenny Guy | 4761da3 | 2017-05-16 18:54:21 +0100 | [diff] [blame] | 102 | // Disable shortcut picker. |
| 103 | ComponentName shortcutComponentName = new ComponentName(context, CreateShortcut.class); |
| 104 | pm.setComponentEnabledSetting(shortcutComponentName, |
| 105 | PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP); |
Amith Yamasani | 2d578ce | 2014-07-25 09:37:33 -0700 | [diff] [blame] | 106 | } |
Gustav Sennton | 66313bb | 2016-05-11 12:31:40 +0100 | [diff] [blame] | 107 | |
| 108 | // Disable WebView Setting if the current user is not an admin |
| 109 | private void webviewSettingSetup(Context context, PackageManager pm, UserInfo userInfo) { |
| 110 | if (userInfo == null) { |
| 111 | return; |
| 112 | } |
| 113 | ComponentName settingsComponentName = |
Gustav Sennton | 4d3334c | 2016-12-13 19:16:48 +0000 | [diff] [blame] | 114 | new ComponentName(SETTINGS_PACKAGE, SETTINGS_PACKAGE + WEBVIEW_IMPLEMENTATION_ACTIVITY); |
Gustav Sennton | 66313bb | 2016-05-11 12:31:40 +0100 | [diff] [blame] | 115 | pm.setComponentEnabledSetting(settingsComponentName, |
| 116 | userInfo.isAdmin() ? |
| 117 | PackageManager.COMPONENT_ENABLED_STATE_ENABLED : |
| 118 | PackageManager.COMPONENT_ENABLED_STATE_DISABLED, |
| 119 | PackageManager.DONT_KILL_APP); |
| 120 | } |
Doris Ling | f2d7680 | 2018-04-02 14:51:36 -0700 | [diff] [blame^] | 121 | |
| 122 | // Refresh settings shortcuts to have correct intent flags |
| 123 | @VisibleForTesting |
| 124 | void refreshExistingShortcuts(Context context) { |
| 125 | final ShortcutManager shortcutManager = context.getSystemService(ShortcutManager.class); |
| 126 | final List<ShortcutInfo> pinnedShortcuts = shortcutManager.getPinnedShortcuts(); |
| 127 | final List<ShortcutInfo> updates = new ArrayList<>(); |
| 128 | for (ShortcutInfo info : pinnedShortcuts) { |
| 129 | final Intent shortcutIntent = info.getIntent(); |
| 130 | shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); |
| 131 | final ShortcutInfo updatedInfo = new ShortcutInfo.Builder(context, info.getId()) |
| 132 | .setIntent(shortcutIntent) |
| 133 | .build(); |
| 134 | updates.add(updatedInfo); |
| 135 | } |
| 136 | shortcutManager.updateShortcuts(updates); |
| 137 | } |
| 138 | |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 139 | } |