asp.net-mvc – 使用MVC的AuthorizeAttribute和多组角色?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 使用MVC的AuthorizeAttribute和多组角色?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要做的是对动作处理程序进行两级角色检查.例如,要求用户至少属于以下组之一:SysAdmins,Managers AND至少在以下一个组中:HR,Payroll,Executive.

最初的猜测是,这可能是这样做的方法,但我认为不是:

[Authorize(Role="SysAdmins,Managers")]
[Authorize(Role="HR,Executive")]
public ActionResult SomeAction()
{
    [...]
}

我是否需要将自己的自定义属性作为角色来接受Role1和Role2或类似的东西?或者有更简单/更好的方法吗?

解决方法

你需要自己的属性.这是我的:
public class AuthorizationAttribute : ActionFilterAttribute
{
    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        var portalModel = ContextCache<PortalModel>.Get(ContextCache.PortalModelSessionCache);

        var requestedController = filterContext.RouteData.GetrequiredString("controller");
        var requestedAction = filterContext.RouteData.GetrequiredString("action");

        var operation = string.Format("/{0}/{1}",requestedController,requestedAction);

        var authorizationService = IoC.Container.Resolve<IAuthorizationService>();

        if (!authorizationService.IsAllowed(AccountController.GetUserFromSession(),operation))
        {
            filterContext.Controller.ViewData["Message"] = string.Format("You are not authorized to perform operation: {0}",operation);
            filterContext.HttpContext.Response.Redirect("/Error/NoAccess");
        }
        else
        {
        }

    }

}
原文链接:https://www.f2er.com/aspnet/251846.html

猜你在找的asp.Net相关文章