This commit is contained in:
Hao Kung 2018-03-20 09:53:34 -07:00
Родитель 910da89882
Коммит 56666e349c
3 изменённых файлов: 69 добавлений и 22 удалений

Просмотреть файл

@ -34,18 +34,9 @@ namespace IdentitySample.DefaultUI
services.AddMvc();
services.AddIdentityCore<ApplicationUser>(o => o.Stores.MaxLengthForKeys = 128)
services.AddDefaultIdentity<ApplicationUser>()
.AddRoles<IdentityRole>()
.AddEntityFrameworkStores<ApplicationDbContext>()
.AddDefaultUI()
.AddDefaultTokenProviders();
services.AddAuthentication(o =>
{
o.DefaultScheme = IdentityConstants.ApplicationScheme;
o.DefaultSignInScheme = IdentityConstants.ExternalScheme;
})
.AddIdentityCookies(o => { });
.AddEntityFrameworkStores<ApplicationDbContext>();
}

Просмотреть файл

@ -0,0 +1,65 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using Microsoft.AspNetCore.Identity.UI;
using Microsoft.AspNetCore.Identity.UI.Services;
using Microsoft.AspNetCore.Mvc.ApplicationParts;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
namespace Microsoft.AspNetCore.Identity
{
/// <summary>
/// Default UI extensions to <see cref="IServiceCollection"/>.
/// </summary>
public static class IdentityServiceCollectionUIExtensions
{
/// <summary>
/// Adds a set of common identity services to the application, including a default UI, token providers,
/// and configures authentication to use identity cookies.
/// </summary>
/// <remarks>
/// In order to use the default UI, the application must be using <see cref="Microsoft.AspNetCore.Mvc"/>,
/// <see cref="Microsoft.AspNetCore.StaticFiles"/> and contain a <c>_LoginPartial</c> partial view that
/// can be found by the application.
/// </remarks>
/// <param name="services">The <see cref="IServiceCollection"/>.</param>
/// <returns>The <see cref="IServiceCollection"/>.</returns>
public static IdentityBuilder AddDefaultIdentity<TUser>(this IServiceCollection services) where TUser : class
=> services.AddDefaultIdentity<TUser>(_ => { });
/// <summary>
/// Adds a set of common identity services to the application, including a default UI, token providers,
/// and configures authentication to use identity cookies.
/// </summary>
/// <remarks>
/// In order to use the default UI, the application must be using <see cref="Microsoft.AspNetCore.Mvc"/>,
/// <see cref="Microsoft.AspNetCore.StaticFiles"/> and contain a <c>_LoginPartial</c> partial view that
/// can be found by the application.
/// </remarks>
/// <param name="services">The <see cref="IServiceCollection"/>.</param>
/// <param name="configureOptions">Configures the <see cref="IdentityOptions"/>.</param>
/// <returns>The <see cref="IServiceCollection"/>.</returns>
public static IdentityBuilder AddDefaultIdentity<TUser>(this IServiceCollection services, Action<IdentityOptions> configureOptions) where TUser : class
{
services.AddAuthentication(o =>
{
o.DefaultScheme = IdentityConstants.ApplicationScheme;
o.DefaultSignInScheme = IdentityConstants.ExternalScheme;
})
.AddIdentityCookies(o => { });
return services.AddIdentityCore<TUser>(o =>
{
o.Stores.MaxLengthForKeys = 128;
configureOptions?.Invoke(o);
})
.AddDefaultUI()
.AddDefaultTokenProviders();
}
}
}

Просмотреть файл

@ -35,18 +35,9 @@ namespace Identity.DefaultUI.WebSite
sqlOptions => sqlOptions.MigrationsAssembly("Identity.DefaultUI.WebSite")
));
services.AddIdentityCore<IdentityUser>()
services.AddDefaultIdentity<IdentityUser>()
.AddRoles<IdentityRole>()
.AddEntityFrameworkStores<IdentityDbContext>()
.AddDefaultUI()
.AddDefaultTokenProviders();
services.AddAuthentication(o =>
{
o.DefaultScheme = IdentityConstants.ApplicationScheme;
o.DefaultSignInScheme = IdentityConstants.ExternalScheme;
})
.AddIdentityCookies(o => {});
.AddEntityFrameworkStores<IdentityDbContext>();
services.AddMvc()
.AddRazorPagesOptions(options =>