using System;
using System.Net;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Rewrite;
namespace StardewModdingAPI.Web.Framework.RedirectRules
{
/// Redirect requests to HTTPS.
internal class RedirectToHttpsRule : RedirectMatchRule
{
/*********
** Fields
*********/
/// Matches requests which should be ignored.
private readonly Func Except;
/*********
** Public methods
*********/
/// Construct an instance.
/// Matches requests which should be ignored.
public RedirectToHttpsRule(Func? except = null)
{
this.Except = except ?? (_ => false);
this.StatusCode = HttpStatusCode.RedirectKeepVerb;
}
/*********
** Protected methods
*********/
/// Get the new redirect URL.
/// The rewrite context.
/// Returns the redirect URL, or null if the redirect doesn't apply.
protected override string? GetNewUrl(RewriteContext context)
{
HttpRequest request = context.HttpContext.Request;
if (request.IsHttps || this.Except(request))
return null;
UriBuilder uri = this.GetUrl(request);
uri.Scheme = "https";
return uri.ToString();
}
}
}