技术开发 频道

ASP.NET MVC实践:实现身份验证权限管理

  方式二

  此方式将用户的角色保存至用户 Cookie,使用到了 FormsAuthenticationTicket。

  修改 AccountController:

public class AccountController : Controller
{
    
private UserRepository repository = new UserRepository();
    
    
public ActionResult LogOn()
    {
        return View();
    }

    [HttpPost]
    
public ActionResult LogOn(LogOnModel model, string returnUrl)
    {
        
if (ModelState.IsValid)
        {
            User user
= repository.GetByNameAndPassword(model.UserName, model.Password);
            
if (user != null)
            {
                FormsAuthenticationTicket ticket
= new FormsAuthenticationTicket(
                    
1,
                    user.Name,
                    DateTime.Now,
                    DateTime.Now.Add(FormsAuthentication.Timeout),
                    model.RememberMe,
                    user.Roles.Aggregate((i,j)
=>i+","+j)
                    );                    
                HttpCookie cookie
= new HttpCookie(
                    FormsAuthentication.FormsCookieName,
                    FormsAuthentication.Encrypt(ticket));
                Response.Cookies.Add(cookie);

                
if (!String.IsNullOrEmpty(returnUrl)) return Redirect(returnUrl);
                
else return RedirectToAction("Index", "Home");
            }
            
else
                ModelState.AddModelError(
"", "用户名或密码不正确!");
        }
        return View(model);
    }

    
public ActionResult LogOff()
    {
        FormsAuthentication.SignOut();
        return RedirectToAction(
"Index", "Home");
    }
}

 

  修改 Global.asax:

public class MvcApplication : System.Web.HttpApplication
{
    
public MvcApplication()
    {
        AuthorizeRequest
+= new EventHandler(MvcApplication_AuthorizeRequest);
    }

    void MvcApplication_AuthorizeRequest(
object sender, EventArgs e)
    {
        var id
= Context.User.Identity as FormsIdentity;
        
if (id != null && id.IsAuthenticated)
        {
            var roles
= id.Ticket.UserData.Split(',');
            Context.User = new GenericPrincipal(id, roles);
        }
    }
    
//...
}

 

  代码下载:Mvc-FormsAuthentication-RolesAuthorization-2.rar (244KB)

  三、角色权限

  使用任一种方式后,我们就可以在 Controller 中使用 AuthorizeAttribute 实现基于角色的权限管理了:

[Authorize(Roles = "employee,manager")]
public ActionResult Index1()
{
    return View();
}
[Authorize(Roles
= "manager")]
public ActionResult Index2()
{
    return View();
}
[Authorize(Users
="admin", Roles = "admin")]
public ActionResult Index3()
{
    return View();
}

 

  四、简要说明

  MVC 使用 HttpContext.User 属性进行来进行实现身份验证及角色管理,同样 AuthorizeAttribute 也根据 HttpContext.User 进行角色权限验证。

  因些不要在用户登录后,将相关用户信息保存在 Session 中(网上经常看到这种做法),将用户保存在 Session 中是一种非常不好的做法。

  也不要在 Action 中进行角色权限判断,应该使用 AuthorizeAttribute 或它的子类,以下的方式都是错误的:

public ActionResult Action1()
{
    
if (Session["User"] == null) { /**/}
    
/**/
}
public ActionResult Action2()
{
    
if (User.Identity == null) { /**/}
    
if (User.Identity.IsAuthenticated == false) { /**/}
    
if (User.IsInRole("admin") == false) { /**/}
    
/**/
}
0
相关文章