| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file |
| 5 | * except in compliance with the License. You may obtain a copy of the License at |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software distributed under the |
| 10 | * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 11 | * KIND, either express or implied. See the License for the specific language governing |
| 12 | * permissions and limitations under the License. |
| 13 | */ |
| 14 | package com.android.settings.location; |
| 15 | |
| Philip P. Moltmann | e3f7211 | 2018-08-28 15:01:43 -0700 | [diff] [blame] | 16 | import static com.android.settingslib.RestrictedLockUtilsInternal.checkIfRestrictionEnforced; |
| Fan Zhang | c7162cd | 2018-06-18 15:21:41 -0700 | [diff] [blame] | 17 | import static com.android.settingslib.Utils.updateLocationEnabled; |
| Fan Zhang | c7162cd | 2018-06-18 15:21:41 -0700 | [diff] [blame] | 18 | |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 19 | import android.content.BroadcastReceiver; |
| 20 | import android.content.Context; |
| 21 | import android.content.Intent; |
| 22 | import android.content.IntentFilter; |
| 23 | import android.location.LocationManager; |
| 24 | import android.os.UserHandle; |
| 25 | import android.os.UserManager; |
| 26 | import android.provider.Settings; |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 27 | import android.util.Log; |
| 28 | |
| Fan Zhang | 23f8d59 | 2018-08-28 15:11:40 -0700 | [diff] [blame] | 29 | import androidx.annotation.VisibleForTesting; |
| 30 | |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 31 | import com.android.settings.Utils; |
| 32 | import com.android.settingslib.RestrictedLockUtils; |
| Philip P. Moltmann | e3f7211 | 2018-08-28 15:01:43 -0700 | [diff] [blame] | 33 | import com.android.settingslib.RestrictedLockUtilsInternal; |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 34 | import com.android.settingslib.core.lifecycle.Lifecycle; |
| 35 | import com.android.settingslib.core.lifecycle.LifecycleObserver; |
| Lifu Tang | 3da8f8d | 2018-12-11 13:50:34 -0800 | [diff] [blame] | 36 | import com.android.settingslib.core.lifecycle.events.OnStart; |
| 37 | import com.android.settingslib.core.lifecycle.events.OnStop; |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 38 | |
| Maggie | 85e2f61 | 2018-01-04 15:35:49 -0800 | [diff] [blame] | 39 | |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 40 | /** |
| 41 | * A class that listens to location settings change and modifies location settings |
| 42 | * settings. |
| 43 | */ |
| Lifu Tang | 3da8f8d | 2018-12-11 13:50:34 -0800 | [diff] [blame] | 44 | public class LocationEnabler implements LifecycleObserver, OnStart, OnStop { |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 45 | |
| 46 | private static final String TAG = "LocationEnabler"; |
| 47 | @VisibleForTesting |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 48 | static final IntentFilter INTENT_FILTER_LOCATION_MODE_CHANGED = |
| 49 | new IntentFilter(LocationManager.MODE_CHANGED_ACTION); |
| 50 | |
| 51 | private final Context mContext; |
| 52 | private final UserManager mUserManager; |
| 53 | private final LocationModeChangeListener mListener; |
| 54 | |
| 55 | @VisibleForTesting |
| 56 | BroadcastReceiver mReceiver; |
| 57 | |
| 58 | public interface LocationModeChangeListener { |
| 59 | /** Called when location mode has changed. */ |
| 60 | void onLocationModeChanged(int mode, boolean restricted); |
| 61 | } |
| 62 | |
| 63 | public LocationEnabler(Context context, LocationModeChangeListener listener, |
| 64 | Lifecycle lifecycle) { |
| 65 | mContext = context; |
| 66 | mListener = listener; |
| 67 | mUserManager = (UserManager) context.getSystemService(Context.USER_SERVICE); |
| 68 | if (lifecycle != null) { |
| 69 | lifecycle.addObserver(this); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | @Override |
| Lifu Tang | 3da8f8d | 2018-12-11 13:50:34 -0800 | [diff] [blame] | 74 | public void onStart() { |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 75 | if (mReceiver == null) { |
| 76 | mReceiver = new BroadcastReceiver() { |
| 77 | @Override |
| 78 | public void onReceive(Context context, Intent intent) { |
| 79 | if (Log.isLoggable(TAG, Log.DEBUG)) { |
| 80 | Log.d(TAG, "Received location mode change intent: " + intent); |
| 81 | } |
| 82 | refreshLocationMode(); |
| 83 | } |
| 84 | }; |
| 85 | } |
| 86 | mContext.registerReceiver(mReceiver, INTENT_FILTER_LOCATION_MODE_CHANGED); |
| 87 | refreshLocationMode(); |
| 88 | } |
| 89 | |
| 90 | @Override |
| Lifu Tang | 3da8f8d | 2018-12-11 13:50:34 -0800 | [diff] [blame] | 91 | public void onStop() { |
| 92 | mContext.unregisterReceiver(mReceiver); |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 93 | } |
| 94 | |
| Nate Myren | 232962c | 2022-01-13 12:03:39 -0800 | [diff] [blame] | 95 | /** |
| 96 | * Get the current location enable state, and update listeners |
| 97 | */ |
| 98 | public void refreshLocationMode() { |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 99 | final int mode = Settings.Secure.getInt(mContext.getContentResolver(), |
| 100 | Settings.Secure.LOCATION_MODE, Settings.Secure.LOCATION_MODE_OFF); |
| 101 | if (Log.isLoggable(TAG, Log.INFO)) { |
| 102 | Log.i(TAG, "Location mode has been changed"); |
| 103 | } |
| 104 | if (mListener != null) { |
| 105 | mListener.onLocationModeChanged(mode, isRestricted()); |
| 106 | } |
| 107 | } |
| 108 | |
| Nate Myren | 232962c | 2022-01-13 12:03:39 -0800 | [diff] [blame] | 109 | /** |
| 110 | * Set the device's location enable state |
| 111 | */ |
| 112 | public void setLocationEnabled(boolean enabled) { |
| Maggie | 85e2f61 | 2018-01-04 15:35:49 -0800 | [diff] [blame] | 113 | final int currentMode = Settings.Secure.getInt(mContext.getContentResolver(), |
| 114 | Settings.Secure.LOCATION_MODE, Settings.Secure.LOCATION_MODE_OFF); |
| 115 | |
| 116 | if (isRestricted()) { |
| 117 | // Location toggling disabled by user restriction. Read the current location mode to |
| Edgar Wang | 4e02ceb | 2020-07-29 12:47:42 +0800 | [diff] [blame] | 118 | // update the location primary switch. |
| Maggie | 85e2f61 | 2018-01-04 15:35:49 -0800 | [diff] [blame] | 119 | if (Log.isLoggable(TAG, Log.INFO)) { |
| 120 | Log.i(TAG, "Restricted user, not setting location mode"); |
| 121 | } |
| 122 | if (mListener != null) { |
| 123 | mListener.onLocationModeChanged(currentMode, true); |
| 124 | } |
| 125 | return; |
| 126 | } |
| Lifu Tang | e6032be | 2018-01-23 21:12:14 -0800 | [diff] [blame] | 127 | updateLocationEnabled(mContext, enabled, UserHandle.myUserId(), |
| 128 | Settings.Secure.LOCATION_CHANGER_SYSTEM_SETTINGS); |
| Maggie | 85e2f61 | 2018-01-04 15:35:49 -0800 | [diff] [blame] | 129 | refreshLocationMode(); |
| 130 | } |
| 131 | |
| Nate Myren | 232962c | 2022-01-13 12:03:39 -0800 | [diff] [blame] | 132 | /** |
| 133 | * Checks if location is enabled, based on mode and restrictions. |
| 134 | */ |
| 135 | public boolean isEnabled(int mode) { |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 136 | return mode != Settings.Secure.LOCATION_MODE_OFF && !isRestricted(); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Checking if device policy has put a location access lock-down on the managed profile. |
| 141 | * |
| 142 | * @return true if device policy has put a location access lock-down on the managed profile |
| 143 | */ |
| Nate Myren | 232962c | 2022-01-13 12:03:39 -0800 | [diff] [blame] | 144 | public boolean isManagedProfileRestrictedByBase() { |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 145 | final UserHandle managedProfile = Utils.getManagedProfile(mUserManager); |
| 146 | return managedProfile != null |
| 147 | && hasShareLocationRestriction(managedProfile.getIdentifier()); |
| 148 | } |
| 149 | |
| Nate Myren | 232962c | 2022-01-13 12:03:39 -0800 | [diff] [blame] | 150 | /** |
| 151 | * Gets the admin enforcement for location for the current user |
| 152 | */ |
| 153 | public RestrictedLockUtils.EnforcedAdmin getShareLocationEnforcedAdmin(int userId) { |
| yuemingw | 754ca51 | 2018-01-03 18:09:31 +0000 | [diff] [blame] | 154 | RestrictedLockUtils.EnforcedAdmin admin = checkIfRestrictionEnforced( |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 155 | mContext, UserManager.DISALLOW_SHARE_LOCATION, userId); |
| yuemingw | 754ca51 | 2018-01-03 18:09:31 +0000 | [diff] [blame] | 156 | |
| 157 | if (admin == null) { |
| Philip P. Moltmann | e3f7211 | 2018-08-28 15:01:43 -0700 | [diff] [blame] | 158 | admin = RestrictedLockUtilsInternal.checkIfRestrictionEnforced( |
| yuemingw | a1416d2 | 2018-02-01 17:52:50 +0000 | [diff] [blame] | 159 | mContext, UserManager.DISALLOW_CONFIG_LOCATION, userId); |
| yuemingw | 754ca51 | 2018-01-03 18:09:31 +0000 | [diff] [blame] | 160 | } |
| 161 | return admin; |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 162 | } |
| 163 | |
| Nate Myren | 232962c | 2022-01-13 12:03:39 -0800 | [diff] [blame] | 164 | /** |
| 165 | * Check if the current user has a location restriction |
| 166 | */ |
| 167 | public boolean hasShareLocationRestriction(int userId) { |
| Philip P. Moltmann | e3f7211 | 2018-08-28 15:01:43 -0700 | [diff] [blame] | 168 | return RestrictedLockUtilsInternal.hasBaseUserRestriction( |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 169 | mContext, UserManager.DISALLOW_SHARE_LOCATION, userId); |
| 170 | } |
| 171 | |
| 172 | private boolean isRestricted() { |
| 173 | return mUserManager.hasUserRestriction(UserManager.DISALLOW_SHARE_LOCATION); |
| 174 | } |
| Doris Ling | 9ed29a2 | 2017-11-02 16:42:45 -0700 | [diff] [blame] | 175 | } |