/* * Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) * See https://github.com/openiddict/openiddict-core for more information concerning * the license and the contributors participating to this project. */ using Microsoft.Extensions.DependencyInjection.Extensions; using Microsoft.Extensions.Options; using OpenIddict.Client; using OpenIddict.Client.DataProtection; namespace Microsoft.Extensions.DependencyInjection; /// /// Exposes extensions allowing to register the OpenIddict ASP.NET Core Data Protection client services. /// public static class OpenIddictClientDataProtectionExtensions { /// /// Registers the OpenIddict ASP.NET Core Data Protection client services in the DI container /// and configures OpenIddict to validate and issue ASP.NET Data Protection-based tokens. /// /// The services builder used by OpenIddict to register new services. /// This extension can be safely called multiple times. /// The instance. public static OpenIddictClientDataProtectionBuilder UseDataProtection(this OpenIddictClientBuilder builder) { if (builder is null) { throw new ArgumentNullException(nameof(builder)); } builder.Services.AddDataProtection(); // Register the built-in server event handlers used by the OpenIddict Data Protection components. // Note: the order used here is not important, as the actual order is set in the options. builder.Services.TryAdd(OpenIddictClientDataProtectionHandlers.DefaultHandlers.Select(descriptor => descriptor.ServiceDescriptor)); // Register the built-in filters used by the default OpenIddict Data Protection event handlers. builder.Services.TryAddSingleton(); // Note: TryAddEnumerable() is used here to ensure the initializers are registered only once. builder.Services.TryAddEnumerable(new[] { ServiceDescriptor.Singleton, OpenIddictClientDataProtectionConfiguration>(), ServiceDescriptor.Singleton, OpenIddictClientDataProtectionConfiguration>() }); return new OpenIddictClientDataProtectionBuilder(builder.Services); } /// /// Registers the OpenIddict ASP.NET Core Data Protection client services in the DI container /// and configures OpenIddict to validate and issue ASP.NET Data Protection-based tokens. /// /// The services builder used by OpenIddict to register new services. /// The configuration delegate used to configure the client services. /// This extension can be safely called multiple times. /// The instance. public static OpenIddictClientBuilder UseDataProtection( this OpenIddictClientBuilder builder, Action configuration) { if (builder is null) { throw new ArgumentNullException(nameof(builder)); } if (configuration is null) { throw new ArgumentNullException(nameof(configuration)); } configuration(builder.UseDataProtection()); return builder; } }