Created
April 12, 2011 16:40
-
-
Save runesoerensen/915869 to your computer and use it in GitHub Desktop.
RequireHttpsAttribute using X-Forwarded-Proto header
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Web.Mvc; | |
using RequireHttpsAttributeBase = System.Web.Mvc.RequireHttpsAttribute; | |
namespace AppHarbor.Web | |
{ | |
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = true, | |
AllowMultiple = false)] | |
public class RequireHttpsAttribute : RequireHttpsAttributeBase | |
{ | |
public override void OnAuthorization(AuthorizationContext filterContext) | |
{ | |
if (filterContext == null) | |
{ | |
throw new ArgumentNullException("filterContext"); | |
} | |
if (filterContext.HttpContext.Request.IsSecureConnection) | |
{ | |
return; | |
} | |
if (string.Equals(filterContext.HttpContext.Request.Headers["X-Forwarded-Proto"], | |
"https", | |
StringComparison.InvariantCultureIgnoreCase)) | |
{ | |
return; | |
} | |
if (filterContext.HttpContext.Request.IsLocal) | |
{ | |
return; | |
} | |
HandleNonHttpsRequest(filterContext); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also,
StringComparison.OrdinalIgnoreCase
would be more correct for the header check.