• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2008 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.launcher3;
18 
19 import android.annotation.TargetApi;
20 import android.content.BroadcastReceiver;
21 import android.content.Context;
22 import android.content.Intent;
23 import android.content.SharedPreferences;
24 import android.content.pm.LauncherActivityInfo;
25 import android.content.pm.PackageInstaller;
26 import android.content.pm.PackageInstaller.SessionInfo;
27 import android.content.pm.PackageManager;
28 import android.content.pm.ResolveInfo;
29 import android.database.Cursor;
30 import android.net.Uri;
31 import android.os.AsyncTask;
32 import android.os.Build;
33 import android.os.Process;
34 import android.os.UserHandle;
35 import android.provider.Settings;
36 import android.text.TextUtils;
37 import android.util.Log;
38 
39 import com.android.launcher3.compat.LauncherAppsCompat;
40 
41 import java.util.List;
42 
43 /**
44  * BroadcastReceiver to handle session commit intent.
45  */
46 @TargetApi(Build.VERSION_CODES.O)
47 public class SessionCommitReceiver extends BroadcastReceiver {
48 
49     private static final String TAG = "SessionCommitReceiver";
50 
51     // The content provider for the add to home screen setting. It should be of the format:
52     // <package name>.addtohomescreen
53     private static final String MARKER_PROVIDER_PREFIX = ".addtohomescreen";
54 
55     // Preference key for automatically adding icon to homescreen.
56     public static final String ADD_ICON_PREFERENCE_KEY = "pref_add_icon_to_home";
57     public static final String ADD_ICON_PREFERENCE_INITIALIZED_KEY =
58             "pref_add_icon_to_home_initialized";
59 
60     @Override
onReceive(Context context, Intent intent)61     public void onReceive(Context context, Intent intent) {
62         if (!isEnabled(context) || !Utilities.isAtLeastO()) {
63             // User has decided to not add icons on homescreen.
64             return;
65         }
66 
67         SessionInfo info = intent.getParcelableExtra(PackageInstaller.EXTRA_SESSION);
68         UserHandle user = intent.getParcelableExtra(Intent.EXTRA_USER);
69 
70         if (TextUtils.isEmpty(info.getAppPackageName()) ||
71                 info.getInstallReason() != PackageManager.INSTALL_REASON_USER) {
72             return;
73         }
74 
75         if (!Process.myUserHandle().equals(user)) {
76             // Managed profile is handled using ManagedProfileHeuristic
77             return;
78         }
79 
80         List<LauncherActivityInfo> activities = LauncherAppsCompat.getInstance(context)
81                 .getActivityList(info.getAppPackageName(), user);
82         if (activities == null || activities.isEmpty()) {
83             // no activity found
84             return;
85         }
86         InstallShortcutReceiver.queueActivityInfo(activities.get(0), context);
87     }
88 
isEnabled(Context context)89     public static boolean isEnabled(Context context) {
90         return Utilities.getPrefs(context).getBoolean(ADD_ICON_PREFERENCE_KEY, true);
91     }
92 
applyDefaultUserPrefs(final Context context)93     public static void applyDefaultUserPrefs(final Context context) {
94         if (!Utilities.isAtLeastO()) {
95             return;
96         }
97         SharedPreferences prefs = Utilities.getPrefs(context);
98         if (prefs.getAll().isEmpty()) {
99             // This logic assumes that the code is the first thing that is executed (before any
100             // shared preference is written).
101             // TODO: Move this logic to DB upgrade once we have proper support for db downgrade
102             // If it is a fresh start, just apply the default value. We use prefs.isEmpty() to infer
103             // a fresh start as put preferences always contain some values corresponding to current
104             // grid.
105             prefs.edit().putBoolean(ADD_ICON_PREFERENCE_KEY, true).apply();
106         } else if (!prefs.contains(ADD_ICON_PREFERENCE_INITIALIZED_KEY)) {
107             new PrefInitTask(context).executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
108         }
109     }
110 
111     private static class PrefInitTask extends AsyncTask<Void, Void, Void> {
112         private final Context mContext;
113 
PrefInitTask(Context context)114         PrefInitTask(Context context) {
115             mContext = context;
116         }
117 
118         @Override
doInBackground(Void... voids)119         protected Void doInBackground(Void... voids) {
120             boolean addIconToHomeScreenEnabled = readValueFromMarketApp();
121             Utilities.getPrefs(mContext).edit()
122                     .putBoolean(ADD_ICON_PREFERENCE_KEY, addIconToHomeScreenEnabled)
123                     .putBoolean(ADD_ICON_PREFERENCE_INITIALIZED_KEY, true)
124                     .apply();
125             return null;
126         }
127 
readValueFromMarketApp()128         public boolean readValueFromMarketApp() {
129             // Get the marget package
130             ResolveInfo ri = mContext.getPackageManager().resolveActivity(
131                     new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET),
132                     PackageManager.MATCH_DEFAULT_ONLY | PackageManager.MATCH_SYSTEM_ONLY);
133             if (ri == null) {
134                 return true;
135             }
136 
137             Cursor c = null;
138             try {
139                 c = mContext.getContentResolver().query(
140                         Uri.parse("content://" + ri.activityInfo.packageName
141                                 + MARKER_PROVIDER_PREFIX),
142                         null, null, null, null);
143                 if (c.moveToNext()) {
144                     return c.getInt(c.getColumnIndexOrThrow(Settings.NameValueTable.VALUE)) != 0;
145                 }
146             } catch (Exception e) {
147                 Log.d(TAG, "Error reading add to homescreen preference", e);
148             } finally {
149                 if (c != null) {
150                     c.close();
151                 }
152             }
153             return true;
154         }
155     }
156 }
157