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
|
// Copyright 2024 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/ash/floating_sso/floating_sso_service_factory.h"
#include <memory>
#include "base/functional/callback.h"
#include "chrome/browser/ash/floating_sso/floating_sso_service.h"
#include "chrome/browser/ash/floating_sso/floating_sso_sync_bridge.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/data_type_store_service_factory.h"
#include "chrome/common/channel_info.h"
#include "chromeos/ash/components/browser_context_helper/browser_context_helper.h"
#include "components/prefs/pref_service.h"
#include "components/sync/base/data_type.h"
#include "components/sync/base/report_unrecoverable_error.h"
#include "components/sync/model/client_tag_based_data_type_processor.h"
#include "components/sync/model/data_type_store.h"
#include "components/sync/model/data_type_store_service.h"
#include "components/user_manager/user.h"
#include "components/user_manager/user_manager.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/storage_partition.h"
#include "services/network/public/mojom/cookie_manager.mojom.h"
namespace ash::floating_sso {
namespace {
network::mojom::CookieManager* GetCookieManager(Profile* profile) {
return profile->GetDefaultStoragePartition()
->GetCookieManagerForBrowserProcess();
}
} // namespace
// static
FloatingSsoService* FloatingSsoServiceFactory::GetForProfile(Profile* profile) {
return static_cast<FloatingSsoService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
// static
FloatingSsoServiceFactory* FloatingSsoServiceFactory::GetInstance() {
static base::NoDestructor<FloatingSsoServiceFactory> instance;
return instance.get();
}
FloatingSsoServiceFactory::FloatingSsoServiceFactory()
: ProfileKeyedServiceFactory(
"FloatingSsoService",
ProfileSelections::Builder()
// Floating SSO is about syncing cookies between ChromeOS devices
// which only makes sense for regular user profiles.
.WithRegular(ProfileSelection::kOriginalOnly)
.WithGuest(ProfileSelection::kNone)
.WithSystem(ProfileSelection::kNone)
.WithAshInternals(ProfileSelection::kNone)
.Build()) {
DependsOn(DataTypeStoreServiceFactory::GetInstance());
}
FloatingSsoServiceFactory::~FloatingSsoServiceFactory() = default;
void FloatingSsoServiceFactory::AllowNonPrimaryProfileForTests() {
allow_non_primary_profile_for_tests_ = true;
}
std::unique_ptr<KeyedService>
FloatingSsoServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const {
bool is_primary = user_manager::UserManager::Get()->IsPrimaryUser(
BrowserContextHelper::Get()->GetUserByBrowserContext(context));
if (!(is_primary || allow_non_primary_profile_for_tests_)) {
// Floating SSO is not supported for non-primary browser profiles.
return nullptr;
}
Profile* profile = Profile::FromBrowserContext(context);
PrefService* prefs = profile->GetPrefs();
// Callback will be used from the KeyedService, so profile will outlive it.
auto cookie_manager_callback =
base::BindRepeating(&GetCookieManager, profile);
return std::make_unique<FloatingSsoService>(
prefs,
std::make_unique<FloatingSsoSyncBridge>(
std::make_unique<syncer::ClientTagBasedDataTypeProcessor>(
syncer::COOKIES,
base::BindRepeating(&syncer::ReportUnrecoverableError,
chrome::GetChannel())),
DataTypeStoreServiceFactory::GetForProfile(profile)
->GetStoreFactory()),
cookie_manager_callback);
}
bool FloatingSsoServiceFactory::ServiceIsCreatedWithBrowserContext() const {
return true;
}
} // namespace ash::floating_sso
|