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

asp.net identity 2.2.0 中角色启用和基本使用(一)

基本环境: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);

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

 

可选操作:

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

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

代码如下:

public class ApplicationDbInitializer : DropCreateDatabaseIfModelChanges<ApplicationDbContext>     {        protected override void Seed(ApplicationDbContext context) {            InitializeIdentityForEF(context);            base.Seed(context);        }        //创建用户名为admin@123.com,密码为“Admin@123456”并把该用户添加到角色组"Admin"中        public static void InitializeIdentityForEF(ApplicationDbContext db) {            var userManager = HttpContext.Current.GetOwinContext().GetUserManager<ApplicationUserManager>();            var roleManager = HttpContext.Current.GetOwinContext().Get<ApplicationRoleManager>();            const string name = "admin@123.com";//用户名            const string password = "Admin@123456";//密码            const string roleName = "Admin";//用户要添加到的角色组            //如果没有Admin用户组则创建该组            var role = roleManager.FindByName(roleName);            if (role == null) {                role = new IdentityRole(roleName);                var roleresult = roleManager.Create(role);            }               //如果没有admin@123.com用户则创建该用户            var user = userManager.FindByName(name);            if (user == null) {                user = new ApplicationUser { UserName = name, Email = name };                var result = userManager.Create(user, password);                result = userManager.SetLockoutEnabled(user.Id, false);            }            // 把用户admin@123.com添加到用户组Admin中            var rolesForUser = userManager.GetRoles(user.Id);            if (!rolesForUser.Contains(role.Name)) {                var result = userManager.AddToRole(user.Id, role.Name);            }        }    }

 第二步:修改Models文件夹中IdentityModels.cs

            在public class ApplicationDbContext : IdentityDbContext<ApplicationUser>   类中添加如下代码

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

 

asp.net identity 2.2.0 中角色启用和基本使用(一)