1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/quick_pair/companion_app/companion_app_broker_impl.h"
#include <algorithm>
#include <set>
#include <string>
#include "ash/constants/ash_features.h"
#include "ash/login_status.h"
#include "ash/public/cpp/new_window_delegate.h"
#include "ash/quick_pair/common/quick_pair_browser_delegate.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shell.h"
#include "components/cross_device/logging/logging.h"
namespace {
bool IsLoggedIn(ash::LoginStatus status) {
switch (status) {
case ash::LoginStatus::NOT_LOGGED_IN:
case ash::LoginStatus::LOCKED:
case ash::LoginStatus::KIOSK_APP:
case ash::LoginStatus::GUEST:
case ash::LoginStatus::PUBLIC:
return false;
case ash::LoginStatus::USER:
case ash::LoginStatus::CHILD:
default:
return true;
}
}
} // namespace
namespace ash {
namespace quick_pair {
CompanionAppBrokerImpl::CompanionAppBrokerImpl() {}
CompanionAppBrokerImpl::~CompanionAppBrokerImpl() = default;
void CompanionAppBrokerImpl::AddObserver(Observer* observer) {
observers_.AddObserver(observer);
}
void CompanionAppBrokerImpl::RemoveObserver(Observer* observer) {
observers_.RemoveObserver(observer);
}
bool CompanionAppBrokerImpl::MaybeShowCompanionAppActions(
scoped_refptr<Device> device) {
CHECK(features::IsFastPairPwaCompanionEnabled());
// TODO(b/274973687): Make this logic more generalized once metadata
// includes companion app ID.
const auto metadata_id = device->metadata_id();
const std::string& device_ids =
ash::features::kFastPairPwaCompanionDeviceIds.Get();
std::set<std::string> target_ids{
"08A97F", "5A36A5", "6EDAF7", "9ADB11", "A7D7A0", "C8E228",
"D87A3E", "F2020E", "F58DE7", "30346C", "7862CE",
};
if (!target_ids.contains(metadata_id) &&
device_ids.find(metadata_id) == std::string::npos) {
return false;
}
bool has_browser_link =
GURL(ash::features::kFastPairPwaCompanionInstallUri.Get()).is_valid();
bool has_play_link =
GURL(ash::features::kFastPairPwaCompanionPlayStoreUri.Get()).is_valid();
bool companion_installed =
QuickPairBrowserDelegate::Get()->CompanionAppInstalled(
ash::features::kFastPairPwaCompanionAppId.Get());
signin::IdentityManager* identity_manager =
QuickPairBrowserDelegate::Get()->GetIdentityManager();
bool is_guest =
!identity_manager ||
!IsLoggedIn(Shell::Get()->session_controller()->login_status());
// Do not show notification if there is no way to install or open the app.
if (((!has_play_link && !companion_installed) || is_guest) &&
!has_browser_link) {
return false;
}
// Skip to opening the companion directly if no Play store link is available,
// the app is already installed, or we are in guest-mode (guests cannot
// install apps).
if (!has_play_link || companion_installed || is_guest) {
CD_LOG(VERBOSE, Feature::FP) << __func__
<< ": Showing \"Launch companion app\" "
"notification.";
for (auto& observer : observers_) {
observer.ShowLaunchCompanionApp(device);
}
} else {
for (auto& observer : observers_) {
observer.ShowInstallCompanionApp(device);
}
}
return true;
}
void CompanionAppBrokerImpl::InstallCompanionApp(scoped_refptr<Device> device) {
CHECK(features::IsFastPairPwaCompanionEnabled());
CD_LOG(VERBOSE, Feature::FP)
<< __func__ << ": Opening play store page for companion app.";
// TODO(b/274973687): Make more generalized once device metadata includes link
QuickPairBrowserDelegate::Get()->OpenPlayStorePage(
GURL(ash::features::kFastPairPwaCompanionPlayStoreUri.Get()));
}
void CompanionAppBrokerImpl::LaunchCompanionApp(scoped_refptr<Device> device) {
CHECK(features::IsFastPairPwaCompanionEnabled());
const std::string& app_id = ash::features::kFastPairPwaCompanionAppId.Get();
if (QuickPairBrowserDelegate::Get()->CompanionAppInstalled(app_id)) {
CD_LOG(VERBOSE, Feature::FP) << __func__
<< ": Found installed app. Launching "
"companion app.";
QuickPairBrowserDelegate::Get()->LaunchCompanionApp(app_id);
} else {
CD_LOG(VERBOSE, Feature::FP) << __func__
<< ": No Play store link or installed app. "
"Opening companion web page.";
NewWindowDelegate::GetPrimary()->OpenUrl(
GURL(ash::features::kFastPairPwaCompanionInstallUri.Get()),
NewWindowDelegate::OpenUrlFrom::kUserInteraction,
NewWindowDelegate::Disposition::kNewForegroundTab);
}
}
} // namespace quick_pair
} // namespace ash
|