blob: 374afefbb17bce16abe04f98638b19e1b4c35326 [file] [log] [blame]
/*
* Copyright (C) 2019 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.car.settings.applications.defaultapps;
import android.car.drivingstate.CarUxRestrictions;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.service.voice.VoiceInteractionService;
import android.service.voice.VoiceInteractionServiceInfo;
import androidx.annotation.Nullable;
import androidx.annotation.VisibleForTesting;
import com.android.car.settings.common.FragmentController;
import com.android.internal.app.AssistUtils;
import com.android.settingslib.applications.DefaultAppInfo;
import com.android.settingslib.wrapper.PackageManagerWrapper;
import java.util.List;
/**
* Business logic to show the currently selected default assistant and also show the assistant
* settings, if it exists.
*/
public class DefaultAssistantPickerEntryPreferenceController extends
DefaultAppsPickerEntryBasePreferenceController {
@VisibleForTesting
static final Intent ASSISTANT_SERVICE = new Intent(
VoiceInteractionService.SERVICE_INTERFACE);
private final AssistUtils mAssistUtils;
private final PackageManagerWrapper mPm;
public DefaultAssistantPickerEntryPreferenceController(Context context, String preferenceKey,
FragmentController fragmentController, CarUxRestrictions uxRestrictions) {
super(context, preferenceKey, fragmentController, uxRestrictions);
mAssistUtils = new AssistUtils(context);
mPm = new PackageManagerWrapper(context.getPackageManager());
}
@Nullable
@Override
protected DefaultAppInfo getCurrentDefaultAppInfo() {
ComponentName cn = mAssistUtils.getAssistComponentForUser(getCurrentProcessUserId());
if (cn == null) {
return null;
}
return new DefaultAppInfo(getContext(), mPm, getCurrentProcessUserId(), cn);
}
@Nullable
@Override
protected Intent getSettingIntent(@Nullable DefaultAppInfo info) {
ComponentName cn = mAssistUtils.getAssistComponentForUser(getCurrentProcessUserId());
if (cn == null) {
return null;
}
Intent probe = ASSISTANT_SERVICE.setPackage(cn.getPackageName());
PackageManager pm = mPm.getPackageManager();
List<ResolveInfo> services = pm.queryIntentServices(probe, PackageManager.GET_META_DATA);
if (services == null || services.isEmpty()) {
return null;
}
String activity = getAssistSettingsActivity(pm, services.get(0));
if (activity == null) {
return null;
}
return new Intent(Intent.ACTION_MAIN).setComponent(
new ComponentName(cn.getPackageName(), activity));
}
private String getAssistSettingsActivity(PackageManager pm, ResolveInfo resolveInfo) {
VoiceInteractionServiceInfo voiceInfo = new VoiceInteractionServiceInfo(pm,
resolveInfo.serviceInfo);
if (!voiceInfo.getSupportsAssist()) {
return null;
}
return voiceInfo.getSettingsActivity();
}
}