2

我正在用 MVC4 开发一个网站。我开发了用户角色和权限。

我想问我应该在哪里检查用户权限访问:在自定义操作过滤器中,还是在自定义授权过滤器中?

如果用户无权访问该模块,那么我必须显示一条烤面包机错误消息。如何在操作过滤器中显示此消息?

4

2 回答 2

4

我用来编写自定义操作过滤器属性,以便在操作调用时调用此方法,如果用户角色允许他调用此操作,我会检查它。

您必须以相同的方式编写自定义操作过滤器属性,但您必须在 CheckAccessRight 方法中编写自己的业务逻辑:

public class AuthorizationAttribute : ActionFilterAttribute
{
    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        string actionName = filterContext.ActionDescriptor.ActionName;
        string controllerName = filterContext.ActionDescriptor.ControllerDescriptor.ControllerName;



        if (!CheckAccessRight(actionName, controllerName))
        {
            string redirectUrl = string.Format("?returnUrl={0}", filterContext.HttpContext.Request.Url.PathAndQuery);

            filterContext.HttpContext.Response.Redirect(FormsAuthentication.LoginUrl + redirectUrl, true);
        }
        else
        {
            base.OnActionExecuting(filterContext);
        }
    }


    private bool CheckAccessRight(string Action, string Controller)
    {
        if (HttpContext.Current.Session["userId"] != null)
        {
            string userID = HttpContext.Current.Session["userId"].ToString();
            using (var db = new cloud_clinicEntities())
            {
                assignment objAss = null;
                if (HttpContext.Current.Session["AccountType"].ToString() == "lab")
                {
                    objAss = db.assignments.SingleOrDefault(model => model.userid == userID);
                }
                else
                {
                    objAss = db.assignments.SingleOrDefault(model => model.employeeId == userID);
                }

                String UserRole = objAss.itemname;

                itemchildren objChild = db.itemchildrens.SingleOrDefault(model => model.parent == UserRole && model.child == Controller + " " + Action);

                if (objChild != null)
                {
                    return true;
                }
                else
                {
                    return false;
                }


            }
        }
        else
        {
            return false;
        }
    }
}

然后在这样的操作上使用这个属性:

[AuthorizationAttribute]
        public ActionResult MyAction()
        {
        }
于 2014-03-20T14:28:29.330 回答
0

这是一篇好文章。您可以为多个角色(如管理员)设置自己的属性。

于 2014-03-20T13:00:51.333 回答