将身份验证和标识迁移到 ASP.NET CoreMigrate Authentication and Identity to ASP.NET Core

本文内容

作者:Steve Smith

在前面的文章中,我们已将配置从 ASP.NET mvc 项目迁移到 ASP.NET CORE mvc本文将迁移注册、登录和用户管理功能。

配置标识和成员身份Configure Identity and Membership

在 ASP.NET MVC 中,身份验证和标识功能是使用Startup.Auth.csIdentityConfig.cs中的 ASP.NET Identity 配置的,位于App_Start文件夹中。在 ASP.NET Core MVC 中,这些功能在Startup.cs中进行配置。

安装以下 NuGet 包:

  • Microsoft.AspNetCore.Identity.EntityFrameworkCore
  • Microsoft.AspNetCore.Authentication.Cookies
  • Microsoft.EntityFrameworkCore.SqlServer

Startup.cs中,更新 Startup.ConfigureServices 方法以使用实体框架和标识服务:

  1. public void ConfigureServices(IServiceCollection services)
  2. {
  3. // Add EF services to the services container.
  4. services.AddDbContext<ApplicationDbContext>(options =>
  5. options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
  6. services.AddIdentity<ApplicationUser, IdentityRole>()
  7. .AddEntityFrameworkStores<ApplicationDbContext>()
  8. .AddDefaultTokenProviders();
  9. services.AddMvc();
  10. }

此时,在上面的代码中引用了两种类型,但尚未从 ASP.NET MVC 项目迁移 ApplicationDbContextApplicationUser在 ASP.NET Core 项目中创建新的 "模型" 文件夹,并将两个与这些类型对应的类添加到其中。你将在 /Models/IdentityModels.cs中找到这些类的 ASP.NET MVC 版本,但我们会在迁移的项目中对每个类使用一个文件,因为这样做更为清晰。

ApplicationUser.cs

  1. using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
  2. namespace NewMvcProject.Models
  3. {
  4. public class ApplicationUser : IdentityUser
  5. {
  6. }
  7. }

ApplicationDbContext.cs

  1. using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
  2. using Microsoft.Data.Entity;
  3. namespace NewMvcProject.Models
  4. {
  5. public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
  6. {
  7. public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
  8. : base(options)
  9. {
  10. }
  11. protected override void OnModelCreating(ModelBuilder builder)
  12. {
  13. base.OnModelCreating(builder);
  14. // Customize the ASP.NET Core Identity model and override the defaults if needed.
  15. // For example, you can rename the ASP.NET Core Identity table names and more.
  16. // Add your customizations after calling base.OnModelCreating(builder);
  17. }
  18. }
  19. }

ASP.NET Core MVC 初学者 Web 项目不包括很多自定义用户或 ApplicationDbContext迁移实际应用时,还需要迁移应用的用户和 DbContext 类的所有自定义属性和方法,以及应用所使用的任何其他模型类。例如,如果 DbContext 具有 DbSet<Album>,则需要迁移 Album 类。

在这些文件准备就绪后,可以通过更新 using 语句来编译Startup.cs文件:

  1. using Microsoft.AspNetCore.Builder;
  2. using Microsoft.AspNetCore.Identity;
  3. using Microsoft.AspNetCore.Hosting;
  4. using Microsoft.EntityFrameworkCore;
  5. using Microsoft.Extensions.Configuration;
  6. using Microsoft.Extensions.DependencyInjection;

现在,我们的应用程序已准备好支持身份验证和标识服务。只需将这些功能公开给用户。

迁移注册和登录逻辑Migrate registration and login logic

对于使用实体框架和 SQL Server 配置的应用和数据访问配置的标识服务,我们已准备好添加注册和登录到应用的支持。请记住,在迁移过程中,我们已注释掉对 Layout_中 LoginPartial_的引用。现在可以返回到该代码,取消注释,并添加必要的控制器和视图以支持登录功能。

取消注释 _Layout中的 @Html.Partial 行:

  1. <li>@Html.ActionLink("Contact", "Contact", "Home")</li>
  2. </ul>
  3. @*@Html.Partial("_LoginPartial")*@
  4. </div>
  5. </div>

现在,将名为 _LoginPartial的新 Razor 视图添加到Views/Shared文件夹:

用以下代码更新 _LoginPartial. # (替换其所有内容):

  1. @inject SignInManager<ApplicationUser> SignInManager
  2. @inject UserManager<ApplicationUser> UserManager
  3. @if (SignInManager.IsSignedIn(User))
  4. {
  5. <form asp-area="" asp-controller="Account" asp-action="Logout" method="post" id="logoutForm" class="navbar-right">
  6. <ul class="nav navbar-nav navbar-right">
  7. <li>
  8. <a asp-area="" asp-controller="Manage" asp-action="Index" title="Manage">Hello @UserManager.GetUserName(User)!</a>
  9. </li>
  10. <li>
  11. <button type="submit" class="btn btn-link navbar-btn navbar-link">Log out</button>
  12. </li>
  13. </ul>
  14. </form>
  15. }
  16. else
  17. {
  18. <ul class="nav navbar-nav navbar-right">
  19. <li><a asp-area="" asp-controller="Account" asp-action="Register">Register</a></li>
  20. <li><a asp-area="" asp-controller="Account" asp-action="Login">Log in</a></li>
  21. </ul>
  22. }

此时,您应该能够在浏览器中刷新站点。

总结Summary

ASP.NET Core 引入 ASP.NET 标识功能更改。在本文中,你看到了如何将 ASP.NET 标识的身份验证和用户管理功能迁移到 ASP.NET Core。