// 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/ash/platform_keys/key_permissions/key_permissions_service_factory.h"
#include "base/no_destructor.h"
#include "chrome/browser/ash/platform_keys/key_permissions/key_permissions_manager_impl.h"
#include "chrome/browser/ash/platform_keys/key_permissions/key_permissions_service.h"
#include "chrome/browser/ash/platform_keys/key_permissions/key_permissions_service_impl.h"
#include "chrome/browser/ash/platform_keys/key_permissions/user_private_token_kpm_service_factory.h"
#include "chrome/browser/ash/platform_keys/platform_keys_service_factory.h"
#include "chrome/browser/ash/profiles/profile_helper.h"
#include "chrome/browser/policy/profile_policy_connector.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/pref_names.h"
#include "components/pref_registry/pref_registry_syncable.h"
namespace ash {
namespace platform_keys {
// static
KeyPermissionsService* KeyPermissionsServiceFactory::GetForBrowserContext(
content::BrowserContext* context) {
return static_cast<KeyPermissionsService*>(
GetInstance()->GetServiceForBrowserContext(context, /*create=*/true));
}
// static
KeyPermissionsServiceFactory* KeyPermissionsServiceFactory::GetInstance() {
static base::NoDestructor<KeyPermissionsServiceFactory> factory;
return factory.get();
}
KeyPermissionsServiceFactory::KeyPermissionsServiceFactory()
: ProfileKeyedServiceFactory(
"KeyPermissionsService",
ProfileSelections::Builder()
.WithRegular(ProfileSelection::kOriginalOnly)
// TODO(crbug.com/40257657): Check if this service is needed in
// Guest mode.
.WithGuest(ProfileSelection::kOriginalOnly)
// TODO(crbug.com/41488885): Check if this service is needed for
// Ash Internals.
.WithAshInternals(ProfileSelection::kOriginalOnly)
.Build()) {
DependsOn(PlatformKeysServiceFactory::GetInstance());
DependsOn(UserPrivateTokenKeyPermissionsManagerServiceFactory::GetInstance());
}
std::unique_ptr<KeyedService>
KeyPermissionsServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const {
Profile* profile = Profile::FromBrowserContext(context);
if (!profile) {
return nullptr;
}
return std::make_unique<KeyPermissionsServiceImpl>(
ProfileHelper::IsUserProfile(profile),
profile->GetProfilePolicyConnector()->IsManaged(),
PlatformKeysServiceFactory::GetForBrowserContext(profile),
KeyPermissionsManagerImpl::GetUserPrivateTokenKeyPermissionsManager(
profile));
}
void KeyPermissionsServiceFactory::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) {
// For the format of the dictionary see prefs::kPlatformKeys documentation in
// key_permissions_service.cc
registry->RegisterDictionaryPref(prefs::kPlatformKeys);
}
} // namespace platform_keys
} // namespace ash