How to create a CustomPrincipal globally (with and without AuthorizeAttribute)

后端 未结 2 1039
抹茶落季
抹茶落季 2020-12-13 11:24

I have a custom Principal/Identity for my ASP.NET MVC4 web app. I have also created a AuthorizeAttribute to instantiate my custom principal, assigning it to httpContext.User

相关标签:
2条回答
  • 2020-12-13 12:13

    You could use a global action filter. Let's suppose that you have a custom principal:

    public class MyPrincipal : GenericPrincipal
    {
        public MyPrincipal(IIdentity identity, string[] roles): base(identity, roles)
        {
        }
    
        ... some custom properties and stuff
    }
    

    then you could write a global authorization action filter (but which doesn't derive from the base AuthorizeAttribute to avoid global authentication, it just implements the IAuthorizationFilter interface to ensure that it runs before any other filters):

    public class GlobalIdentityInjector : ActionFilterAttribute, IAuthorizationFilter
    {
        public void OnAuthorization(AuthorizationContext filterContext)
        {
            var identity = filterContext.HttpContext.User.Identity;
    
            // do some stuff here and assign a custom principal:
            var principal = new MyPrincipal(identity, null);
            // here you can assign some custom property that every user 
            // (even the non-authenticated have)
    
            // set the custom principal
            filterContext.HttpContext.User = principal;
        }
    }
    

    The global filter will be registered in ~/App_Start/FilterConfig.cs so that it is guaranteed that it will apply to all actions:

    public class FilterConfig
    {
        public static void RegisterGlobalFilters(GlobalFilterCollection filters)
        {
            filters.Add(new GlobalIdentityInjector());
        }
    }
    

    And now you could have a custom authorization attribute which will be applied only to certain controller actions that require authentication:

    public class MyAuthorizeAttribute : AuthorizeAttribute
    {
        protected override bool AuthorizeCore(HttpContextBase httpContext)
        {
            var authorized = base.AuthorizeCore(httpContext);
            if (!authorized)
            {
                return false;
            }
    
            // we know that at this stage we have our custom
            // principal injected by the global action filter
            var myPrincipal = (MyPrincipal)httpContext.User;
    
            // do some additional work here to enrich this custom principal
            // by setting some other properties that apply only to
            // authenticated users
    
            return true;
    
        }
    }
    

    and then you could have 2 types of actions:

    public ActionResult Foo()
    {
        var user = (MyPrincipal)User;
    
        // work with the custom properties that apply only
        // to anonymous users
    
        ...
    }
    
    [MyAuthorize]
    public ActionResult Bar()
    {
        var user = (MyPrincipal)User;
    
        // here you can work with all the properties
        // because we know that the custom authorization
        // attribute set them and the global filter set the other properties
    
        ...
    }
    
    0 讨论(0)
  • 2020-12-13 12:22

    Overridding Principal in:

    protected void Application_PostAuthenticateRequest(object sender, EventArgs e)
    

    Instead of

    protected void Application_AuthenticateRequest(object sender, EventArgs e)
    

    In Global.asax.cs worked for me in an ASP web application

    0 讨论(0)
提交回复
热议问题