roadie/Roadie.Api.Services/HttpContext.cs
2019-06-30 17:14:36 -05:00

25 lines
No EOL
868 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";
}
}
}