vote up 2 vote down star
1

I would like to use [Authorize] for every action in my admin controller except the Login action.

[Authorize (Roles = "Administrator")]
public class AdminController : Controller
{
    // what can I place here to disable authorize?
    public ActionResult Login()
    {
        return View();
    }
}
flag

2 Answers

vote up 1 vote down check

I don't think you can do this with the standard Authorize attribute, but you could derive your own attribute from AuthorizeAttribute that takes a list of actions to allow and allows access to just those actions. You can look at the source for the AuthorizeAttribute at www.codeplex.com for ideas on how to do this. If you did, it might look like:

[AdminAuthorize (Roles = "Administrator", Exempt = "Login, Logout") ]
public class AdminController : Controller
{
    public ActionResult Login()
    {
        return View();
    }

    public ActionResult Login()
    {
        return View();
    }

    ... other, restricted actions ...
}
link|flag
Looks like you're correct according to codeplex.com/aspnet/SourceControl/… I'm guessing the attribute gets applied at the controller level and never gives the action an attempt to evaluate it. – Todd Smith Nov 30 '08 at 23:13
Hmm apparently you can't link directly to the source file on codeplex. – Todd Smith Nov 30 '08 at 23:16
vote up 1 vote down

You could override the OnAuthorization method of the controller

    protected override void OnAuthorization(AuthorizationContext filterContext)
    {
        if ((string)(filterContext.RouteData.Values["action"]) == "Login")
        {
            filterContext.Cancel = true;
            filterContext.Result = Login();
        }
    }

This works but it is a hack.

Full class code used for testing:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;

namespace MvcApplication2.Controllers
{
[HandleError]
[Authorize]
public class HomeController : Controller
{
    public ActionResult Index()
    {
        ViewData["Title"] = "Home Page";
        ViewData["Message"] = "Welcome to ASP.NET MVC!";

        return View();
    }


    public ActionResult About()
    {
        ViewData["Title"] = "About Page";

        return View();
    }


    protected override void OnAuthorization(AuthorizationContext filterContext)
    {
        if ((string)(filterContext.RouteData.Values["action"]) == "Index")
        {
            filterContext.Cancel = true;
            filterContext.Result = Index();
        }
    }
}
}
link|flag
Does this get called before or after the [Authorize] attribute? – Todd Smith Nov 30 '08 at 23:16
It looks like the [Authoirze] attribute is evaluated first and never gets to the OnAuthoirization method. – Todd Smith Nov 30 '08 at 23:20
Gets called every time for me. – MrJavaGuy Nov 30 '08 at 23:27
Looking again at your question, you should be able to use the line fliterContext.Result = View("Login"); as well – MrJavaGuy Nov 30 '08 at 23:31
OnAuthorization is getting called except when I have a [Authorize] attribute on the controller itself. – Todd Smith Nov 30 '08 at 23:48
show 6 more comments

Your Answer

Get an OpenID
or

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