首页 > 代码库 > asp.net identity 2.2.0 在WebForm下的角色启用和基本使用(一)

asp.net identity 2.2.0 在WebForm下的角色启用和基本使用(一)

基本环境:asp.net 4.5.2 

第一步:在App_Start文件夹中的IdentityConfig.cs中添加角色控制器。

在namespace xxx内(即最后一个“}”前面)添加 角色控制类

代码如下:

//配置此应用程序中使用的应用程序角色管理器。RoleManager 在 ASP.NET Identity 中定义,并由此应用程序使用。public class ApplicationRoleManager : RoleManager<IdentityRole>    {        public ApplicationRoleManager(IRoleStore<IdentityRole,string> roleStore)            : base(roleStore)        {        }        public static ApplicationRoleManager Create(IdentityFactoryOptions<ApplicationRoleManager> options, IOwinContext context)        {            return new ApplicationRoleManager(new RoleStore<IdentityRole>(context.Get<ApplicationDbContext>()));        }    }

 第二步: 修改startup.auth.cs

在  public void ConfigureAuth(IAppBuilder app) 方法(约为18行左右)中加入  app.CreatePerOwinContext<ApplicationRoleManager>(ApplicationRoleManager.Create);

修改完成后的代码如下:

            app.CreatePerOwinContext(ApplicationDbContext.Create);            app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);            app.CreatePerOwinContext<ApplicationRoleManager>(ApplicationRoleManager.Create);   //添加的角色管理器            app.CreatePerOwinContext<ApplicationSignInManager>(ApplicationSignInManager.Create);


这里最基本的角色功能启用就完成了。

这和原来在网站根目录下配置Web.config完全不同了。 

可选操作:

这个可选操作用于在创建网站的时候,像网站数据库中添加一个管理用户。如果直接发布给别人用的话 还是挺不错的,自己用的话可以省略掉。

第一步:在identityconfig.cs可以配置添加一个用户(用户名为:“admin@123.com”,密码为“Admin@123456”)并把该用户添加到角色("Admin")中。

代码如下:

public class ApplicationDbInitializer : DropCreateDatabaseIfModelChanges<ApplicationDbContext>    {        internal void InitializeIdentityForEF()        {            Models.ApplicationDbContext context = new ApplicationDbContext();            var roleStore = new RoleStore<IdentityRole>(context);            var roleManager = new RoleManager<IdentityRole>(roleStore);            var userManager = new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(context));            const string name = "admin@123.com";//用户名            const string password = "Admin@123456";//密码            const string roleName = "Admin";//用户要添加到的角色组            //如果没有Admin用户组则创建该组            if (!roleManager.RoleExists(roleName))            {                var IdRoleResult = roleManager.Create(new IdentityRole { Name = roleName });            }           //如果没有admin@123.com用户则创建该用户           var appUser = new ApplicationUser {UserName = name, Email = name };           var IdUserResult = userManager.Create(appUser, password);            // 把用户admin@123.com添加到用户组Admin中           if (!userManager.IsInRole(userManager.FindByEmail(name).Id, roleName))            {                IdUserResult = userManager.AddToRole(userManager.FindByEmail(name).Id, roleName);            }        }    }

  

第二步:修改项目目录下的Global.asax.cs文件。          

            在void Application_Start(object sender, EventArgs e)   类方法中添加如下代码

// 在第一次启动网站时初始化数据库添加管理员用户凭据和admin 角色到数据库            Database.SetInitializer(new ApplicationDbInitializer());            ApplicationDbInitializer neizhi = new ApplicationDbInitializer();            neizhi.InitializeIdentityForEF();

这两步再添加的过程中要记得在各自的文件内添加对用的引用空间。

温馨提示:

可选操作可以改良下,把第一步独立出来作为一个类,步骤:你新建个目录》添加一个“网站初始化”类》添加一个“初始化方法”,把第一步里的代码复制进去,保存。再对应修改Global.asax.cs文件的最后两句,也能完成该功能。

个人觉得改良方法比较好。

asp.net identity 2.2.0 在WebForm下的角色启用和基本使用(一)