blob: 61bcc178cff59e699efc8768ee523a51f51cdc67 [file] [log] [blame]
Sunny Goyal4179e9b2017-03-08 14:25:09 -08001/*
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
17package com.android.launcher3;
18
Sunny Goyal3e443a22017-04-10 10:49:01 -070019import android.annotation.TargetApi;
Sunny Goyal4179e9b2017-03-08 14:25:09 -080020import android.content.BroadcastReceiver;
21import android.content.Context;
22import android.content.Intent;
Sunny Goyal0d7f19a2017-03-24 09:07:05 -070023import android.content.SharedPreferences;
Sunny Goyal4179e9b2017-03-08 14:25:09 -080024import android.content.pm.LauncherActivityInfo;
25import android.content.pm.PackageInstaller;
26import android.content.pm.PackageInstaller.SessionInfo;
Sunny Goyal3e443a22017-04-10 10:49:01 -070027import android.content.pm.PackageManager;
28import android.content.pm.ResolveInfo;
29import android.database.Cursor;
30import android.net.Uri;
31import android.os.AsyncTask;
32import android.os.Build;
Sunny Goyal4179e9b2017-03-08 14:25:09 -080033import android.os.Process;
34import android.os.UserHandle;
Sunny Goyal3e443a22017-04-10 10:49:01 -070035import android.provider.Settings;
Sunny Goyal4179e9b2017-03-08 14:25:09 -080036import android.text.TextUtils;
Sunny Goyal0d7f19a2017-03-24 09:07:05 -070037import android.util.Log;
Sunny Goyal4179e9b2017-03-08 14:25:09 -080038
39import com.android.launcher3.compat.LauncherAppsCompat;
40
41import java.util.List;
42
43/**
44 * BroadcastReceiver to handle session commit intent.
45 */
Sunny Goyal3e443a22017-04-10 10:49:01 -070046@TargetApi(Build.VERSION_CODES.O)
Sunny Goyal4179e9b2017-03-08 14:25:09 -080047public class SessionCommitReceiver extends BroadcastReceiver {
48
Sunny Goyal3e443a22017-04-10 10:49:01 -070049 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";
Sunny Goyal0d7f19a2017-03-24 09:07:05 -070054
Sunny Goyal4179e9b2017-03-08 14:25:09 -080055 // Preference key for automatically adding icon to homescreen.
56 public static final String ADD_ICON_PREFERENCE_KEY = "pref_add_icon_to_home";
Sunny Goyal3e443a22017-04-10 10:49:01 -070057 public static final String ADD_ICON_PREFERENCE_INITIALIZED_KEY =
58 "pref_add_icon_to_home_initialized";
Sunny Goyal0d7f19a2017-03-24 09:07:05 -070059
Sunny Goyal4179e9b2017-03-08 14:25:09 -080060 @Override
61 public void onReceive(Context context, Intent intent) {
Sunny Goyal3e443a22017-04-10 10:49:01 -070062 if (!isEnabled(context) || !Utilities.isAtLeastO()) {
Sunny Goyal4179e9b2017-03-08 14:25:09 -080063 // 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);
Sunny Goyal3e443a22017-04-10 10:49:01 -070069
70 if (TextUtils.isEmpty(info.getAppPackageName()) ||
71 info.getInstallReason() != PackageManager.INSTALL_REASON_USER) {
Sunny Goyal4179e9b2017-03-08 14:25:09 -080072 return;
73 }
74
75 if (!Process.myUserHandle().equals(user)) {
76 // Managed profile is handled using ManagedProfileHeuristic
77 return;
78 }
79
Sunny Goyal4179e9b2017-03-08 14:25:09 -080080 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
89 public static boolean isEnabled(Context context) {
90 return Utilities.getPrefs(context).getBoolean(ADD_ICON_PREFERENCE_KEY, true);
91 }
Sunny Goyal3e443a22017-04-10 10:49:01 -070092
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
114 PrefInitTask(Context context) {
115 mContext = context;
116 }
117
118 @Override
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
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 }
Sunny Goyal4179e9b2017-03-08 14:25:09 -0800156}