Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to do the following (Pseudo Code):

[InternalOnly]
public ActionResult InternalMethod()
{ //magic }

The "InternalOnly" attribute is for methods that should check the HttpContext request IP for a known value before doing anything else.

How would I go about creating this "InternalOnly" attribute?

share|improve this question

3 Answers

up vote 4 down vote accepted

You could create a custom filter attribute:

public class InternalOnly : FilterAttribute
{
    public void OnAuthorization (AuthorizationContext filterContext)
    {
    	if (!IsIntranet (filterContext.HttpContext.Request.UserHostAddress))
    	{
    		throw new HttpException ((int)HttpStatusCode.Forbidden, "Access forbidden.");
    	}
    }

    private bool IsIntranet (string userIP)
    {
    	// match an internal IP (ex: 127.0.0.1)
    	return !string.IsNullOrEmpty (userIP) && Regex.IsMatch (userIP, "^127");
    }
}
share|improve this answer
I can't get this to work.. I've written my code exactly as you have, but the attribute doesn't fire/has no effect.... Any idea? – Alex Jun 9 '09 at 0:42
Got this to work with an ActionFilterAttribute. – Alex Jun 9 '09 at 1:06

This is an example of a problem that can be solved with an AOP (Aspect-Oriented Programming) solution. For this type of thing I usually recommend PostSharp.

Basically what PostSharp allows you to do is create attributes that you can use as markers for places in your code that you wish to insert boilerplate code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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