I have created a custom AuthorizeAttribute which verifies some OAuth credentials that are sent inside the HTTP header. I am using some of these credentials to identify who is making the request. Once I parse this information in the AuthorizeAttribute is there any way to pass it over so that the data can be assigned to an instance variable of the Controller? Then anywhere in my Controller I will have the ID of the requesting party.

link|improve this question

79% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Original answer

You should be able to do this in your filter

filterContext.HttpContext.Items["test"] = "foo";

And then this in your action

_yourVariable = HttpContext.Items["test"];

You'd probably want to use a more unique key than "test", but that's the idea.

EDIT There are two reasons we do this in the action rather than the constructor:

  1. A Controller's constructor fires before OnAuthorization, so the item will not yet be set.
  2. The HttpContext is not yet set in the Controller's constructor.

Alternative solution

  1. Create a new OAuthController : Controller
  2. Override OnAuthorization
  3. Move the logic from your filter into OAuthController.OnAuthorization
  4. Set a protected field (i.e., protected object myAuthData) in OAuthController
  5. Have your other controllers inherit from OAuthController instead of Controller
  6. Your other controllers can access myAuthData.
link|improve this answer
Hmm... when I added a Constructor to my Controller to set this variable it broke all of my Model Binding (throws an error). Any other ideas? – Ryan Jul 13 '11 at 18:40
@Ryan I originally had this noted in my answer but removed it. Perhaps I should put it back in. Anyway, a Controller's constructor fires before OnAuthorization, so the item won't be set yet. Furthermore, the Controller doesn't even have an HttpContext yet at that point. You need to do this in your Action. – David Ruttka Jul 13 '11 at 18:42
@Ryan An alternative would be to create OAuthController : Controller, have it override OnAuthorization as mentioned in the post I linked to, have it set a protected member, and have your other controllers inherit from it. – David Ruttka Jul 13 '11 at 18:51
thank you I forgot about that, in fact couldn't I roll my own OnActionExecuting for the Controller as well? – Ryan Jul 13 '11 at 19:11
@Ryan No problem, and absolutely. – David Ruttka Jul 13 '11 at 19:16
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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