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
|
// 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 "chrome/browser/plus_addresses/plus_address_service_factory.h"
#include <memory>
#include <utility>
#include "base/no_destructor.h"
#include "chrome/browser/affiliations/affiliation_service_factory.h"
#include "chrome/browser/metrics/variations/google_groups_manager_factory.h"
#include "chrome/browser/plus_addresses/plus_address_setting_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_selections.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/webdata_services/web_data_service_factory.h"
#include "components/affiliations/core/browser/affiliation_service.h"
#include "components/autofill/core/common/autofill_features.h"
#include "components/plus_addresses/affiliations/plus_address_affiliation_source_adapter.h"
#include "components/plus_addresses/features.h"
#include "components/plus_addresses/plus_address_hats_utils.h"
#include "components/plus_addresses/plus_address_http_client_impl.h"
#include "components/plus_addresses/plus_address_service_impl.h"
#include "components/signin/public/identity_manager/identity_manager.h"
#include "components/variations/service/google_groups_manager.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
// static
plus_addresses::PlusAddressService*
PlusAddressServiceFactory::GetForBrowserContext(
content::BrowserContext* context) {
// Feature not enabled? Don't create any service instances.
if (!base::FeatureList::IsEnabled(
plus_addresses::features::kPlusAddressesEnabled)) {
return nullptr;
}
return static_cast<plus_addresses::PlusAddressService*>(
GetInstance()->GetServiceForBrowserContext(context, /*create=*/true));
}
PlusAddressServiceFactory* PlusAddressServiceFactory::GetInstance() {
static base::NoDestructor<PlusAddressServiceFactory> instance;
return instance.get();
}
/* static */
ProfileSelections PlusAddressServiceFactory::CreateProfileSelections() {
// Otherwise, exclude system accounts and guest accounts, otherwise use one
// instance.
return ProfileSelections::Builder()
.WithRegular(ProfileSelection::kRedirectedToOriginal)
.WithGuest(ProfileSelection::kNone)
.WithSystem(ProfileSelection::kNone)
.WithAshInternals(ProfileSelection::kNone)
.Build();
}
PlusAddressServiceFactory::PlusAddressServiceFactory()
: ProfileKeyedServiceFactory("PlusAddressService",
CreateProfileSelections()) {
DependsOn(IdentityManagerFactory::GetInstance());
DependsOn(WebDataServiceFactory::GetInstance());
DependsOn(AffiliationServiceFactory::GetInstance());
DependsOn(PlusAddressSettingServiceFactory::GetInstance());
DependsOn(GoogleGroupsManagerFactory::GetInstance());
}
PlusAddressServiceFactory::~PlusAddressServiceFactory() = default;
std::unique_ptr<KeyedService>
PlusAddressServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const {
CHECK(base::FeatureList::IsEnabled(
plus_addresses::features::kPlusAddressesEnabled));
Profile* profile = Profile::FromBrowserContext(context);
// In Ash, GuestSession uses Regular Profile, for which we will try to create
// the service. Do not create the service for Guest Session.
if (profile->IsGuestSession()) {
return nullptr;
}
signin::IdentityManager* identity_manager =
IdentityManagerFactory::GetForProfile(profile);
affiliations::AffiliationService* affiliation_service =
AffiliationServiceFactory::GetForProfile(profile);
// `groups_manager` can be null in tests.
GoogleGroupsManager* groups_manager =
GoogleGroupsManagerFactory::GetForBrowserContext(context);
plus_addresses::PlusAddressServiceImpl::FeatureEnabledForProfileCheck
feature_check =
groups_manager ? base::BindRepeating(
&GoogleGroupsManager::IsFeatureEnabledForProfile,
base::Unretained(groups_manager))
: base::BindRepeating(&base::FeatureList::IsEnabled);
std::unique_ptr<plus_addresses::PlusAddressServiceImpl> plus_address_service =
std::make_unique<plus_addresses::PlusAddressServiceImpl>(
profile->GetPrefs(), identity_manager,
PlusAddressSettingServiceFactory::GetForBrowserContext(context),
std::make_unique<plus_addresses::PlusAddressHttpClientImpl>(
identity_manager, profile->GetURLLoaderFactory()),
WebDataServiceFactory::GetPlusAddressWebDataForProfile(
profile, ServiceAccessType::EXPLICIT_ACCESS),
affiliation_service, std::move(feature_check));
affiliation_service->RegisterSource(
std::make_unique<plus_addresses::PlusAddressAffiliationSourceAdapter>(
plus_address_service.get()));
return plus_address_service;
}
// Create this service when the profile is created to support populating the
// local map of plus addresses before the user interacts with the feature.
bool PlusAddressServiceFactory::ServiceIsCreatedWithBrowserContext() const {
return base::FeatureList::IsEnabled(
plus_addresses::features::kPlusAddressesEnabled);
}
|