You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
4.1 KiB
85 lines
4.1 KiB
/*
|
|
* 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 System;
|
|
using Microsoft.Extensions.DependencyInjection.Extensions;
|
|
using OpenIddict.MongoDb;
|
|
using OpenIddict.MongoDb.Models;
|
|
|
|
namespace Microsoft.Extensions.DependencyInjection
|
|
{
|
|
/// <summary>
|
|
/// Exposes extensions allowing to register the OpenIddict MongoDB services.
|
|
/// </summary>
|
|
public static class OpenIddictMongoDbExtensions
|
|
{
|
|
/// <summary>
|
|
/// Registers the MongoDB stores services in the DI container and
|
|
/// configures OpenIddict to use the MongoDB entities by default.
|
|
/// </summary>
|
|
/// <param name="builder">The services builder used by OpenIddict to register new services.</param>
|
|
/// <remarks>This extension can be safely called multiple times.</remarks>
|
|
/// <returns>The <see cref="OpenIddictMongoDbBuilder"/>.</returns>
|
|
public static OpenIddictMongoDbBuilder UseMongoDb(this OpenIddictCoreBuilder builder)
|
|
{
|
|
if (builder is null)
|
|
{
|
|
throw new ArgumentNullException(nameof(builder));
|
|
}
|
|
|
|
// Note: Mongo uses simple binary comparison checks by default so the additional
|
|
// query filtering applied by the default OpenIddict managers can be safely disabled.
|
|
builder.DisableAdditionalFiltering();
|
|
|
|
builder.SetDefaultApplicationEntity<OpenIddictMongoDbApplication>()
|
|
.SetDefaultAuthorizationEntity<OpenIddictMongoDbAuthorization>()
|
|
.SetDefaultScopeEntity<OpenIddictMongoDbScope>()
|
|
.SetDefaultTokenEntity<OpenIddictMongoDbToken>();
|
|
|
|
// Note: the Mongo stores/resolvers don't depend on scoped/transient services and thus
|
|
// can be safely registered as singleton services and shared/reused across requests.
|
|
builder.ReplaceApplicationStoreResolver<OpenIddictMongoDbApplicationStoreResolver>(ServiceLifetime.Singleton)
|
|
.ReplaceAuthorizationStoreResolver<OpenIddictMongoDbAuthorizationStoreResolver>(ServiceLifetime.Singleton)
|
|
.ReplaceScopeStoreResolver<OpenIddictMongoDbScopeStoreResolver>(ServiceLifetime.Singleton)
|
|
.ReplaceTokenStoreResolver<OpenIddictMongoDbTokenStoreResolver>(ServiceLifetime.Singleton);
|
|
|
|
builder.Services.TryAddSingleton(typeof(OpenIddictMongoDbApplicationStore<>));
|
|
builder.Services.TryAddSingleton(typeof(OpenIddictMongoDbAuthorizationStore<>));
|
|
builder.Services.TryAddSingleton(typeof(OpenIddictMongoDbScopeStore<>));
|
|
builder.Services.TryAddSingleton(typeof(OpenIddictMongoDbTokenStore<>));
|
|
|
|
builder.Services.TryAddSingleton<IOpenIddictMongoDbContext, OpenIddictMongoDbContext>();
|
|
|
|
return new OpenIddictMongoDbBuilder(builder.Services);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Registers the MongoDB stores services in the DI container and
|
|
/// configures OpenIddict to use the MongoDB entities by default.
|
|
/// </summary>
|
|
/// <param name="builder">The services builder used by OpenIddict to register new services.</param>
|
|
/// <param name="configuration">The configuration delegate used to configure the MongoDB services.</param>
|
|
/// <remarks>This extension can be safely called multiple times.</remarks>
|
|
/// <returns>The <see cref="OpenIddictCoreBuilder"/>.</returns>
|
|
public static OpenIddictCoreBuilder UseMongoDb(
|
|
this OpenIddictCoreBuilder builder, Action<OpenIddictMongoDbBuilder> configuration)
|
|
{
|
|
if (builder is null)
|
|
{
|
|
throw new ArgumentNullException(nameof(builder));
|
|
}
|
|
|
|
if (configuration is null)
|
|
{
|
|
throw new ArgumentNullException(nameof(configuration));
|
|
}
|
|
|
|
configuration(builder.UseMongoDb());
|
|
|
|
return builder;
|
|
}
|
|
}
|
|
}
|
|
|