blob: f3a59c2b6973eb9bf6cb3d858cfaf359592caa3f [file]
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.server.telecom;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.admin.DevicePolicyManager;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.UserHandle;
import android.os.UserManager;
import android.telecom.Log;
import android.telecom.PhoneAccount;
import android.telecom.PhoneAccountHandle;
import com.android.server.telecom.ui.UiConstants;
public final class UserUtil {
// TODO(b/469208831): This is a direct copy from `UserHandle`; we need to formalize this as an
// API.
public static final int USER_NULL = -10000;
private UserUtil() {
}
private static final String LOG_TAG = "UserUtil";
public static int getUserIdFromContext(Context context){
return context.getUser().getIdentifier();
}
private static UserManager getUserManagerFromUserHandle(Context context,
UserHandle userHandle) {
UserManager userManager = null;
try {
userManager = context.createContextAsUser(userHandle, 0)
.getSystemService(UserManager.class);
} catch (IllegalStateException e) {
Log.e(LOG_TAG, e, "Error while creating context as user = " + userHandle);
}
return userManager;
}
public static PackageManager getPackageManagerFromUserHandler(Context nonUserContext,
UserHandle userHandle) {
Context userContext = nonUserContext.createContextAsUser(userHandle, 0);
return userContext.getPackageManager();
}
public static boolean isManagedProfile(Context context, UserHandle userHandle) {
UserManager userManager = getUserManagerFromUserHandle(context, userHandle);
return userManager != null && userManager.isManagedProfile();
}
public static boolean isPrivateProfile(UserHandle userHandle, Context context) {
UserManager um = getUserManagerFromUserHandle(context, userHandle);
return um != null && um.isPrivateProfile();
}
public static boolean isProfile(Context context, UserHandle userHandle) {
UserManager userManager = getUserManagerFromUserHandle(context, userHandle);
return userManager != null && userManager.isProfile();
}
public static void showErrorDialogForRestrictedOutgoingCall(Context context,
String telecomUiPackage, CharSequence message, String tag, String reason) {
final Intent intent = new Intent();
intent.setClassName(telecomUiPackage, UiConstants.COMPONENT_ERROR_DIALOG);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(UiConstants.ERROR_MESSAGE_STRING_EXTRA, message);
context.startActivityAsUser(intent, UserHandle.CURRENT);
Log.w(tag, "Rejecting non-emergency phone call because "
+ reason);
}
public static void startCallConfirmation(Context context,
String telecomUiPackage, CharSequence ongoingAppName, String tag,
String reason, String callId) {
Log.d("UserUtil", "startCallConfirmation: callId=%s, ongoingApp=%s", callId,
ongoingAppName);
final Intent intent = new Intent();
intent.setClassName(telecomUiPackage, UiConstants.COMPONENT_CONFIRM_CALL_DIALOG);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(UiConstants.EXTRA_OUTGOING_CALL_ID, callId);
intent.putExtra(UiConstants.EXTRA_ONGOING_APP_NAME, ongoingAppName);
context.startActivityAsUser(intent, UserHandle.CURRENT);
Log.w(tag, "Showing call confirmation UI because "
+ reason);
}
public static boolean hasOutgoingCallsUserRestriction(Context context,
UserHandle userHandle, Uri handle, boolean isSelfManaged, String telecomUiPackage,
String tag) {
// Set handle for conference calls. Refer to {@link Connection#ADHOC_CONFERENCE_ADDRESS}.
if (handle == null) {
handle = Uri.parse("tel:conf-factory");
}
if(!isSelfManaged) {
// Check DISALLOW_OUTGOING_CALLS restriction. Note: We are skipping this
// check in a managed profile user because this check can always be bypassed
// by copying and pasting the phone number into the personal dialer.
if (!UserUtil.isManagedProfile(context, userHandle)) {
final UserManager userManager = context.getSystemService(UserManager.class);
boolean hasUserRestriction = userManager.hasUserRestrictionForUser(
UserManager.DISALLOW_OUTGOING_CALLS, userHandle);
// Only emergency calls are allowed for users with the DISALLOW_OUTGOING_CALLS
// restriction.
if (!TelephonyUtil.shouldProcessAsEmergency(context, handle)) {
if (hasDisallowOutgoingCalls(context, userManager, userHandle)) {
String reason = "of DISALLOW_OUTGOING_CALLS restriction";
showErrorDialogForRestrictedOutgoingCall(context, telecomUiPackage,
TelecomResourceId.getString(context,
"outgoing_call_not_allowed_user_restriction"), tag, reason);
return true;
} else if (hasUserRestriction) {
final DevicePolicyManager dpm =
context.getSystemService(DevicePolicyManager.class);
if (dpm == null) {
return true;
}
final Intent adminSupportIntent = dpm.createAdminSupportIntent(
UserManager.DISALLOW_OUTGOING_CALLS);
if (adminSupportIntent != null) {
context.startActivityAsUser(adminSupportIntent, userHandle);
}
return true;
}
}
}
}
return false;
}
/**
* Checks if the {@link UserManager#DISALLOW_OUTGOING_CALLS} restriction is active for the given
* user, correctly handling managed profiles by checking the restriction on the parent user.
*
* <p>This function determines the "base" user, which is the parent user for a profile or the
* user itself otherwise. It then checks if the restriction is applied to that base user.
*
* @return {@code true} if outgoing calls are disallowed for the user, {@code false} otherwise.
* Returns {@code false} if an error occurs during the check (e.g., missing permissions).
*/
private static boolean hasDisallowOutgoingCalls(Context context, UserManager userManager,
UserHandle user) {
UserHandle parent = userManager.getProfileParent(user);
UserHandle baseUser = (parent != null) ? parent : user;
try {
Context baseUserContext = context.createContextAsUser(baseUser, 0);
UserManager baseUserManager = baseUserContext.getSystemService(UserManager.class);
if (baseUserManager != null) {
return baseUserManager.hasUserRestriction(UserManager.DISALLOW_OUTGOING_CALLS);
}
return false;
} catch (Exception e) {
Log.e("UserUtil", e, "hasDisallowOutgoingCalls: caught exception");
return false;
}
}
/**
* Gets the associated user for the given call. Note: this is applicable to all calls except
* outgoing calls as the associated user is already based off of the user placing the
* call.
*
* @param phoneAccountRegistrar
* @param currentUser Current user profile (this can either be the admin or a secondary/guest
* user). Note that work profile users fall under the admin user.
* @param targetPhoneAccount The phone account to retrieve the {@link UserHandle} from.
* @return current user if it isn't the admin or if the work profile is paused for the target
* phone account handle user, otherwise return the target phone account handle user. If the
* flag is disabled, return the legacy {@link UserHandle}.
*/
public static UserHandle getAssociatedUserForCall(PhoneAccountRegistrar phoneAccountRegistrar,
UserHandle currentUser, PhoneAccountHandle targetPhoneAccount) {
// For multi-user phone accounts, associate the call with the profile receiving/placing
// the call. For SIM accounts (that are assigned to specific users), the user association
// will be placed on the target phone account handle user.
PhoneAccount account = phoneAccountRegistrar.getPhoneAccountUnchecked(targetPhoneAccount);
if (account != null) {
return account.hasCapabilities(PhoneAccount.CAPABILITY_MULTI_USER)
? currentUser
: targetPhoneAccount.getUserHandle();
}
// If target phone account handle is null or account cannot be found,
// return the current user.
return currentUser;
}
public static void processNotification(Context context, UserHandle userHandle, String tag,
int id, Notification notification) {
Context userContext = context.createContextAsUser(userHandle, 0);
NotificationManager userNotificationMgr = userContext.getSystemService(
NotificationManager.class);
if (userNotificationMgr != null) {
if (notification != null) {
userNotificationMgr.notify(tag, id, notification);
} else {
userNotificationMgr.cancel(tag, id);
}
}
}
}