roadie/Roadie.Api.Services/HttpContext.cs

32 lines
No EOL
942 B
C#

using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Roadie.Library.Configuration;
using Roadie.Library.Utility;
namespace Roadie.Api.Services
{
public class HttpContext : IHttpContext
{
public string BaseUrl { get; set; }
public string ImageBaseUrl { get; set; }
public HttpContext(IRoadieSettings configuration, IUrlHelper urlHelper)
{
var scheme = urlHelper.ActionContext.HttpContext.Request.Scheme;
if (configuration.UseSSLBehindProxy)
{
scheme = "https";
}
var host = urlHelper.ActionContext.HttpContext.Request.Host;
if (!string.IsNullOrEmpty(configuration.BehindProxyHost))
{
host = new HostString(configuration.BehindProxyHost);
}
BaseUrl = $"{scheme}://{host}";
ImageBaseUrl = $"{BaseUrl}/images";
}
}
}