Is there a way to display an action-specific authorisation message for when an [Authorize] or [Authorize(Roles="Administrator")] attribute redirects the user to the sign-in page?

Ideally,

[Authorize(Roles="Administrator", Message="I'm sorry Dave. I'm afraid I can't let you do that.")]
public ActionResult SomeAdminFunction()
{
    // do admin stuff
    return View();
}

As I understand it, attributes are not meant to add functionality, but this seems purely informational. One could do this inside the action, but it seems inelegant compared to the use of an attribute.

Alternatively,

if (!Request.IsAuthenticated)
{
    if (!User.IsInRole("Administrator"))
        SetMessage("You need to be an administrator to destroy worlds."); // write message to session stack
    return RedirectToAction("SignIn", "Account");
}

Is there an existing way to do this or do I need to override the [Authorize] attribute?

link|improve this question

72% accept rate
possible duplicate of stackoverflow.com/questions/1679881/… – George Stocker Apr 13 '10 at 16:54
Different question, similar answer, IMO. I could not find that question based on my requirements. – FreshCode Apr 14 '10 at 8:03
feedback

1 Answer

up vote 1 down vote accepted

I would override the attribute to add my specific message.

link|improve this answer
1  
I gave an answer to something similar some time ago. Look at my answer in stackoverflow.com/questions/1679881/… – uvita Apr 13 '10 at 16:03
feedback

Your Answer

 
or
required, but never shown

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