mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
25 lines
No EOL
868 B
C#
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";
|
|
}
|
|
}
|
|
} |