了解Asp.Net Identity关键点

时间:2015-06-03 21:29:17

标签: asp.net-mvc-5 entity-framework-6 asp.net-identity-2

我是Asp.net开发人员,但对Asp.net Identity框架非常陌生。我一直在研究示例应用程序,并且在Identity上也遵循了一些教程,但我仍然无法完全掌握这个概念。我非常坚定地掌握Asp.net会员资格,但身份似乎与会员资格无关。我将解释到目前为止我所做的事情。

我正在创建一个简单的应用程序,其中我遵循代码第一种方法。我为User创建了实体模型,它继承自IdentityUser并且有一些额外的字段。以下是User的实体模型。

public class User : IdentityUser
{
    public int? CompanyID { get; set; }

    public bool? CanWork { get; set; }

    public bool? CanSearch { get; set; }

    public Company Company { get; set; }
}

现在在示例中,人们使用名称ApplicationUser,但出于我自己的目的,我使用了名称User。 User或ApplicationUser模型中还有一个方法,

public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<User> manager)
    {
        CookieAuthenticationOptions.AuthenticationType
        var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
        // Add custom user claims here
        return userIdentity;
    }

我无法理解这种方法的目的。同样从一个例子中我使用了以下模型作为Role,

public class Role : IdentityRole
{
    public Role()
    {

    }

    public Role(string roleName, string description)
        : base(roleName)
    {
        this.Description = description;
    }

    public string Description { get; set; }
}

我知道添加了一个额外的字段,但我无法理解重载构造函数的用途。

上述混淆是次要的。我的主要困惑是,我熟悉当我创建实体模型时,我使用DbSet和DbContext,当我调用任何实体框架方法来访问数据库时,无论我遵循哪种方案,都会创建/删除数据库。

在Identity中哪个方法负责在数据库中创建Identity表?我有一个IdentityConfig文件,我在其中声明ApplicationUserManager和ApplicationSignInManager。我还有一个启动文件。以前我在App_Start文件夹中只有一个Startup文件,当我运行应用程序并尝试访问任何Identity方法时,它给了我错误,并没有创建数据库。然后我将该类设置为partial,并在根处创建了另一个具有相同名称的部分类,然后异常消失并创建了表。那么Startup类负责创建Identity表?在AspNetUsers中自动创建了额外的列,如PhoneNumber,PhoneNumberConfirmed,TwoFactorEnabled。我不需要这些额外的列。我可以删除这些吗?我可以更改创建的标识表的名称吗?

我知道这些是非常基本的问题而不是一个问题,但如果我无法为初学者找到一些基本的教程或示例,那么这将是非常有益的。我发现的是描述那些我不需要或让我迷惑的东西。我想了解并控制Identity应该如何在我的应用程序中工作,但到目前为止,在我看来,我既不能完全掌握它,也不能根据我的需要调整。它像教程和示例教我如何制作句子,但我无法理解字母表。 :(

1 个答案:

答案 0 :(得分:8)

首先,您必须定义模型 - 正如您所做的那样 - 实现正确的接口 假设您要为应用程序创建用户:

public class MyUser : IdentityUser<string, MyUserLogin, MyUserRole, MyUserClaim>
{
    public string CompanyName { get; set; }
}

如您所见,我已实现了IdentityUser界面(名称空间 Microsoft.AspNet.Identity.EntityFramework )。

我已经指定了我想要用于我的主键(字符串)的标识符类型,并包含我的自定义对象来管理登录,角色和声明。

现在我们可以定义角色对象:

public class MyRole : IdentityRole<string, MyUserRole>
{
}

同样,我为管理属于某个角色的用户定义了一种类型和类。

public class MyUserRole : IdentityUserRole<string>
{
}

MyUserLogin即将实施IdentityUserLogin<string> MyUserClaim即将实施IdentityUserClaim<string>

正如您所看到的,每个接口都需要主键的类型。

第二步是创建用户存储:

public class MyUserStore:  UserStore<MyUser, MyRole, string, MyUserLogin, MyUserRole, MyUserClaim>
{
    public MyUserStore(MyContext context)
        : base(context)
    {
    }
}

我们再次定义了我们想要使用的用户,角色,登录等等 我们需要UserStore因为我们的UserManager需要一个。

如果您计划管理角色并将角色与每个用户相关联,则必须创建RoleStore定义。

public class MyRoleStore : RoleStore<MyRole, string, MyUserRole>
{
    public DaufRoleStore(ApplicationDatabaseContext context) : base(context)
    {
    }
}

现在您可以创建UserManager。 UserManager是UserStore保存更改的真实responsible

public class ApplicationUserManager : UserManager<MyUser, string>
{
    public ApplicationUserManager(IUserStore<MyUser, string> store)
        : base(store)
    {

    }

    public static ApplicationUserManager Create(IdentityFactoryOptions<ApplicationUserManager> options, IOwinContext context)
    {
        var manager = new ApplicationUserManager(new MyUserStore(context.Get<MyContext>()));

        manager.UserValidator = new UserValidator<MyUser, string>(manager)
        {
        AllowOnlyAlphanumericUserNames = false,
        RequireUniqueEmail = true
        };

        manager.PasswordValidator = new PasswordValidator()
        {
        RequiredLength = 5,
        RequireNonLetterOrDigit = false,     // true
        // RequireDigit = true,
        RequireLowercase = false,
        RequireUppercase = false,
        };

        return (manager);
    }
}

这个类有一个静态方法,可以为你创建一个新的UserManager 有趣的是,您可以包含一些验证密码等可能需要的验证规则。

最后一件事是创建或数据库上下文。

public class MyContext : IdentityDbContext<MyUser, MyRole, string, MyUserLogin, MyUserRole, MyUserClaim>
{
    public MyContext(): base("<your connection string here>")
    {

    }

    public static MyContext Create()
    {
        return new MyContext();
    }

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        base.OnModelCreating(modelBuilder);

        modelBuilder.Entity<MyUser>()
            .ToTable("Users");

        modelBuilder.Entity<MyRole>()
            .ToTable("Roles");

        modelBuilder.Entity<MyUserRole>()
            .ToTable("UserRoles");

        modelBuilder.Entity<MyUserClaim>()
            .ToTable("UserClaims");

        modelBuilder.Entity<MyUserLogin>()
            .ToTable("UserLogins");
    }
}

正如您所看到的,我已经使用模型构建器来更改所有表的名称。 您可以在此处定义键或字段类型或表关系。

这是您要在上下文中附加要管理的自定义类的位置:

public DbSet<MyCustomer> Customers{ get; set; }

再次MyContext有一个Create方法,它返回一个新的上下文:

public static MyContext Create()
{
    return new MyContext();
}

现在你应该有一个启动课,你要引导你的东西:

[assembly: OwinStartup(typeof(ASPNETIdentity2.Startup))]

namespace ASPNETIdentity2
{
    public class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            app.CreatePerOwinContext(MyContext.Create);
            app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);
        }
    }
}

在这里,您将创建可在应用程序中使用的数据库上下文和用户管理器。

注意第一行:

[assembly: OwinStartup(typeof(ASPNETIdentity2.Startup))]

这是必要的,因为你告诉你的环境是需要在...启动时调用的启动类。

现在,在您的控制器中,您可以简单地引用UserManager做类似的事情:

HttpContext.GetOwinContext().GetUserManager<ApplicationUserManager>();

如何创建表格?

在Visual Studio中,转到TOOLS - &gt; NuGet Packager Manager - &gt;包管理器控制台。

在窗口中有一个组合框“默认项目”。选择您的ASP.NET MVC项目 运行此命令:

Enable-Migrations

它会在名为Configuration.cs的新文件夹中创建文件Migrations 如果要创建数据库,则需要打开该文件并将AutomaticMigrationsEnabled更改为true:

public Configuration()
{
    AutomaticMigrationsEnabled = true;
}

再次,从Package Manager Console开始,您可以运行:

Update-Database

并且所有表格都将出现在您的数据库中。不要忘记你的连接字符串。

您可以下载此github project以查看一切是如何运作的 您可以使用其他一些信息查看这些two answers

两者中的first有一些链接到博客,你可以在那里学习所有这些东西。

注意:

如果要自定义环境的每一个位,就必须完成所有这些操作。