2020-01-31 21:15:07 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
2019-05-08 21:34:17 -04:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
2018-04-09 23:33:42 -04:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
2018-04-08 14:48:40 -04:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2019-07-27 09:18:49 -04:00
|
|
|
|
using WebfrontCore.Middleware;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
|
|
|
|
namespace WebfrontCore
|
|
|
|
|
{
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
2018-04-08 14:48:40 -04:00
|
|
|
|
public static IManager Manager;
|
2020-01-31 21:15:07 -05:00
|
|
|
|
public static IServiceProvider ApplicationServiceProvider;
|
2018-04-08 14:48:40 -04:00
|
|
|
|
|
2019-05-08 21:34:17 -04:00
|
|
|
|
static void Main()
|
2018-04-09 15:17:10 -04:00
|
|
|
|
{
|
2020-01-31 21:15:07 -05:00
|
|
|
|
throw new Exception("Webfront core cannot be run as a standalone application");
|
2018-04-09 15:17:10 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-31 21:15:07 -05:00
|
|
|
|
public static Task Init(IManager mgr, IServiceProvider existingServiceProvider, CancellationToken cancellationToken)
|
2018-02-21 20:29:23 -05:00
|
|
|
|
{
|
2018-04-08 14:48:40 -04:00
|
|
|
|
Manager = mgr;
|
2020-01-31 21:15:07 -05:00
|
|
|
|
ApplicationServiceProvider = existingServiceProvider;
|
2019-07-27 09:18:49 -04:00
|
|
|
|
var config = Manager.GetApplicationSettings().Configuration();
|
|
|
|
|
Manager.MiddlewareActionHandler.Register(null, new CustomCssAccentMiddlewareAction("#007ACC", "#fd7e14", config.WebfrontPrimaryColor, config.WebfrontSecondaryColor), "custom_css_accent");
|
2019-05-08 21:34:17 -04:00
|
|
|
|
return BuildWebHost().RunAsync(cancellationToken);
|
2018-04-08 02:44:42 -04:00
|
|
|
|
}
|
2018-03-09 03:01:12 -05:00
|
|
|
|
|
2019-05-08 21:34:17 -04:00
|
|
|
|
private static IWebHost BuildWebHost()
|
2018-04-09 23:33:42 -04:00
|
|
|
|
{
|
|
|
|
|
var config = new ConfigurationBuilder()
|
|
|
|
|
.AddEnvironmentVariables()
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
return new WebHostBuilder()
|
2018-04-08 17:50:58 -04:00
|
|
|
|
#if DEBUG
|
|
|
|
|
.UseContentRoot(Path.GetFullPath(Path.Combine(Directory.GetCurrentDirectory(), @"..\..\..\..\", "WebfrontCore")))
|
|
|
|
|
#else
|
2018-10-06 16:31:05 -04:00
|
|
|
|
.UseContentRoot(SharedLibraryCore.Utilities.OperatingDirectory)
|
2018-04-08 17:50:58 -04:00
|
|
|
|
#endif
|
2018-04-19 01:48:14 -04:00
|
|
|
|
.UseUrls(Manager.GetApplicationSettings().Configuration().WebfrontBindUrl)
|
2018-04-08 02:44:42 -04:00
|
|
|
|
.UseKestrel()
|
2018-02-21 20:29:23 -05:00
|
|
|
|
.UseStartup<Startup>()
|
|
|
|
|
.Build();
|
2018-04-09 23:33:42 -04:00
|
|
|
|
}
|
2018-02-21 20:29:23 -05:00
|
|
|
|
}
|
|
|
|
|
}
|