blob: 1b3c83876cd019bc250876f6cbe421d19736f482 [file] [log] [blame]
Alexandra Gherghina25138512014-07-21 22:42:21 +01001/*
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
17package com.android.settings;
18
19import android.content.BroadcastReceiver;
20import android.content.ComponentName;
21import android.content.Context;
22import android.content.Intent;
23import android.content.pm.PackageManager;
24import android.content.pm.ResolveInfo;
25import android.os.UserHandle;
26import android.os.UserManager;
27
28import java.util.List;
29
30import static android.content.pm.PackageManager.GET_ACTIVITIES;
31import static android.content.pm.PackageManager.GET_META_DATA;
32import static android.content.pm.PackageManager.GET_RESOLVED_FILTER;
33
34/**
35 * Listens to {@link Intent.ACTION_BOOT_COMPLETED} and {@link Intent.ACTION_PRE_BOOT_COMPLETED}
36 * performs setup steps for a managed profile (disables the launcher icon of the Settings app and
37 * adds cross-profile intent filters for the appropriate Settings activities).
38 */
39public class ManagedProfileSetup extends BroadcastReceiver {
40 private static final String PRIMARY_PROFILE_SETTING =
41 "com.android.settings.PRIMARY_PROFILE_CONTROLLED";
42
43 @Override
44 public void onReceive(Context context, Intent broadcast) {
45 final UserManager um = (UserManager) context.getSystemService(Context.USER_SERVICE);
46 if (!Utils.isManagedProfile(um)) {
47 return;
48 }
49
Alexandra Gherghina5667a682014-07-29 14:55:56 +010050 final PackageManager pm = context.getPackageManager();
51 // Clear any previous intent forwarding we set up
52 pm.clearCrossProfileIntentFilters(UserHandle.myUserId());
53
Alexandra Gherghina25138512014-07-21 22:42:21 +010054 // Set up intent forwarding for implicit intents
55 Intent intent = new Intent();
56 intent.addCategory(Intent.CATEGORY_DEFAULT);
57 intent.setPackage(context.getPackageName());
58
Alexandra Gherghina25138512014-07-21 22:42:21 +010059 // Resolves activities for the managed profile (which we're running as)
60 List<ResolveInfo> resolvedIntents = pm.queryIntentActivities(intent,
61 GET_ACTIVITIES | GET_META_DATA | GET_RESOLVED_FILTER);
62 final int count = resolvedIntents.size();
63 for (int i = 0; i < count; i++) {
64 ResolveInfo info = resolvedIntents.get(i);
65 if (info.filter != null && info.activityInfo != null
66 && info.activityInfo.metaData != null) {
67 boolean shouldForward = info.activityInfo.metaData.getBoolean(
68 PRIMARY_PROFILE_SETTING);
69 if (shouldForward) {
70 pm.addCrossProfileIntentFilter(info.filter, UserHandle.myUserId(),
71 UserHandle.USER_OWNER, PackageManager.SKIP_CURRENT_PROFILE);
72 }
73 }
74 }
75
76 // Disable launcher icon
77 // Note: This needs to happen after forwarding intents, otherwise the main Settings
78 // intent gets lost
79 ComponentName settingsComponentName = new ComponentName(context, Settings.class);
80 pm.setComponentEnabledSetting(settingsComponentName,
81 PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
Amith Yamasani2d578ce2014-07-25 09:37:33 -070082 }
Alexandra Gherghina25138512014-07-21 22:42:21 +010083}