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
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/nearby_sharing/nearby_sharing_service_factory.h"
#include <memory>
#include <utility>
#include "ash/constants/ash_features.h"
#include "base/check.h"
#include "base/no_destructor.h"
#include "chrome/browser/ash/nearby/nearby_process_manager_factory.h"
#include "chrome/browser/nearby_sharing/common/nearby_share_prefs.h"
#include "chrome/browser/nearby_sharing/nearby_sharing_service_impl.h"
#include "chrome/browser/nearby_sharing/power_client_chromeos.h"
#include "chrome/browser/nearby_sharing/wifi_network_configuration/wifi_network_configuration_handler.h"
#include "chrome/browser/notifications/notification_display_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chromeos/ash/components/browser_context_helper/browser_context_helper.h"
#include "chromeos/ash/components/nearby/common/connections_manager/nearby_connections_manager.h"
#include "chromeos/ash/components/nearby/common/connections_manager/nearby_connections_manager_impl.h"
#include "components/cross_device/logging/logging.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
#include "components/user_manager/user_manager.h"
#include "content/public/browser/browser_context.h"
namespace {
constexpr char kServiceName[] = "NearbySharingService";
constexpr char kServiceId[] = "NearbySharing";
std::optional<bool>& IsSupportedTesting() {
static std::optional<bool> is_supported;
return is_supported;
}
} // namespace
// static
NearbySharingServiceFactory* NearbySharingServiceFactory::GetInstance() {
static base::NoDestructor<NearbySharingServiceFactory> instance;
return instance.get();
}
// static
bool NearbySharingServiceFactory::IsNearbyShareSupportedForBrowserContext(
content::BrowserContext* context) {
if (IsSupportedTesting().has_value()) {
return *IsSupportedTesting();
}
if (!ash::features::IsCrossDeviceFeatureSuiteAllowed()) {
return false;
}
// Nearby Share is supported only for the primary user.
const auto* user =
ash::BrowserContextHelper::Get()->GetUserByBrowserContext(context);
auto* user_manager = user_manager::UserManager::Get();
if (!user || !user_manager->IsPrimaryUser(user)) {
return false;
}
// Guest/kiosk users cannot use Nearby Share.
if (!user->HasGaiaAccount()) {
return false;
}
return true;
}
// static
NearbySharingService* NearbySharingServiceFactory::GetForBrowserContext(
content::BrowserContext* context) {
return static_cast<NearbySharingService*>(
GetInstance()->GetServiceForBrowserContext(context, true /* create */));
}
// static
void NearbySharingServiceFactory::
SetIsNearbyShareSupportedForBrowserContextForTesting(bool is_supported) {
IsSupportedTesting() = is_supported;
}
NearbySharingServiceFactory::NearbySharingServiceFactory()
// Nearby Sharing features are disabled in incognito.
: ProfileKeyedServiceFactory(
kServiceName,
ProfileSelections::Builder()
.WithRegular(ProfileSelection::kOriginalOnly)
// TODO(crbug.com/41488885): Check if this service is needed for
// Ash Internals.
.WithAshInternals(ProfileSelection::kOriginalOnly)
.Build()) {
DependsOn(IdentityManagerFactory::GetInstance());
DependsOn(ash::nearby::NearbyProcessManagerFactory::GetInstance());
DependsOn(NotificationDisplayServiceFactory::GetInstance());
}
NearbySharingServiceFactory::~NearbySharingServiceFactory() = default;
std::unique_ptr<KeyedService>
NearbySharingServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const {
if (!IsNearbyShareSupportedForBrowserContext(context)) {
return nullptr;
}
// GetForBrowserContext() must be called after the initialization of
// Profile initialization, because the service depends on its preferences.
auto* user =
ash::BrowserContextHelper::Get()->GetUserByBrowserContext(context);
CHECK(user->is_profile_created());
Profile* profile = Profile::FromBrowserContext(context);
ash::nearby::NearbyProcessManager* process_manager =
ash::nearby::NearbyProcessManagerFactory::GetForProfile(profile);
NotificationDisplayService* notification_display_service =
NotificationDisplayServiceFactory::GetForProfile(profile);
auto nearby_connections_manager =
std::make_unique<NearbyConnectionsManagerImpl>(process_manager,
kServiceId);
CD_LOG(VERBOSE, Feature::NS)
<< __func__ << ": creating NearbySharingService for primary profile";
return std::make_unique<NearbySharingServiceImpl>(
*user, profile, notification_display_service,
std::move(nearby_connections_manager), process_manager,
std::make_unique<PowerClientChromeos>(),
std::make_unique<WifiNetworkConfigurationHandler>());
}
void NearbySharingServiceFactory::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) {
RegisterNearbySharingPrefs(registry);
}
|