I have a controller and I would like to require Authorization for all actions by default except a couple. So in the example below all actions should require authentication except the Index. I don't want to decorate every action with the Authorize, I just want to override the default authorization in certain circumstances probably with a custom filter such as NotAuthorize.

[Authorize]
public class HomeController : BaseController
{
    [NotAuthorize]
    public ActionResult Index()
    {
        // This one wont
        return View();
    }

    public ActionResult About()
    {
        // This action will require authorization
        return View();
    }
}
link|improve this question

56% accept rate
feedback

6 Answers

up vote 15 down vote accepted

Ok, this is what I did. If there is a better way let me know.

public class NotAuthorizeAttribute : FilterAttribute
{
    // Does nothing, just used for decoration
}

public class BaseController : Controller
{
    protected override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        // Check if this action has NotAuthorizeAttribute
        object[] attributes = filterContext.ActionDescriptor.GetCustomAttributes(true);
        if (attributes.Any(a => a is NotAuthorizeAttribute)) return;

        // Must login
        if (!filterContext.HttpContext.User.Identity.IsAuthenticated)
        {
            filterContext.Result = new HttpUnauthorizedResult();
        }
    }
}
link|improve this answer
feedback

Here's what I would do, similar to Craig's answer with a couple of changes:

1) Create an ordinary attribute deriving from System.Attribute (no need to derive from FilterAttribute since you aren't going to be using anything FilterAttribute provides).

Maybe create a class hierarchy of attributes so you can test based on the hierarchy, e.g.

Attribute
    AuthorizationAttribute
         AuthorizationNotRequiredAttribute
         AuthorizationAdminUserRequiredAttribute
             AuthorizationSuperUserRequiredAttribute

2) In your BaseController override the OnAuthorization method rather than the OnActionExecuting method:

protected override void OnAuthorization(AuthorizationContext filterContext)
{
    var authorizationAttributes = filterContext.ActionDescriptor.GetCustomAttributes(true).OfType<AuthorizationAttribute>();
    bool accountRequired = !authorizationAttributes.Any(aa => aa is AuthorizationNotRequiredAttribute);

I like the approach of being secure by default: even if you forget to put an attribute on the Action it will at least require a user to be logged in.

link|improve this answer
1  
if i override OnAuthorization(AuthorizationContext filterContext), filterContext has no ActionDescriptor property, so i have no idea how to find the custom attributes from filterContext? – spaceman Apr 13 '10 at 21:05
Can you confirm this is ASP.NET MVC 2? There's definitely an ActionDescriptor there in V2. – Ian Mercer Apr 13 '10 at 21:33
Sorry man, you're correct, I'm not running MVC 2 yet. – spaceman Apr 14 '10 at 8:33
installed mvc 2 and the code is running, i get inside my onAuthorisation overload, check for my attribute and if its found then return. it then still redirects to the login page after i return out of the onAuth method? EDIT : nvm its because i still had the authorise attribute on my controlelr – spaceman Apr 14 '10 at 18:36
feedback

Little late to the party, but I ended up creating a Controller-level auth attribute and an Action-level auth attribute and just skipping over the Controller auth if the Action had its own Auth attribute. See code here:

https://gist.github.com/948822

link|improve this answer
feedback

Use a custom filter as described in Securing your ASP.NET MVC 3 Application.

link|improve this answer
feedback

Was their a solution that works with MVC2

Like idea of being able to [Authorize] on the control And trun off at Method level with [NotAuthorize]

But when I try the code on MVC2, It always just sends to login page because of the [Authorize] on the controler

link|improve this answer
feedback

What about [AllowAnonymous] ? -E-

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.