DocSpace-client/web/ASC.Web.Api/Program.cs

92 lines
3.6 KiB
C#
Raw Normal View History

using System;
2019-11-15 08:47:56 +00:00
using System.Collections.Generic;
2019-08-15 12:04:42 +00:00
using System.IO;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
2020-07-03 15:57:59 +00:00
2022-03-14 10:35:29 +00:00
using ASC.ActiveDirectory.Base;
2021-08-08 13:19:54 +00:00
using ASC.Api.Core;
using ASC.Common.Utils;
2020-11-02 16:27:08 +00:00
using Autofac.Extensions.DependencyInjection;
2019-05-15 14:56:09 +00:00
using Microsoft.AspNetCore.Hosting;
2019-05-28 15:05:20 +00:00
using Microsoft.Extensions.Configuration;
2022-03-14 10:35:29 +00:00
using Microsoft.Extensions.DependencyInjection;
2020-07-03 11:47:27 +00:00
using Microsoft.Extensions.Hosting;
2019-05-28 15:05:20 +00:00
2019-05-15 14:56:09 +00:00
namespace ASC.Web.Api
{
2022-01-21 10:47:56 +00:00
public static class Program
{
public async static Task Main(string[] args)
{
var host = CreateHostBuilder(args).Build();
2022-03-14 10:35:29 +00:00
using (var scope = host.Services.CreateScope())
{
var ldapNotifyHelper = scope.ServiceProvider.GetRequiredService<LdapNotifyHelper>();
ldapNotifyHelper.RegisterAll();
}
await host.RunAsync();
2019-05-15 14:56:09 +00:00
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.UseSystemd()
.UseWindowsService()
2020-11-02 16:27:08 +00:00
.UseServiceProviderFactory(new AutofacServiceProviderFactory())
2020-09-30 14:47:42 +00:00
.ConfigureWebHostDefaults(webBuilder =>
{
var builder = webBuilder.UseStartup<Startup>();
builder.ConfigureKestrel((hostingContext, serverOptions) =>
{
var kestrelConfig = hostingContext.Configuration.GetSection("Kestrel");
if (!kestrelConfig.Exists()) return;
var unixSocket = kestrelConfig.GetValue<string>("ListenUnixSocket");
if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
if (!String.IsNullOrWhiteSpace(unixSocket))
{
unixSocket = String.Format(unixSocket, hostingContext.HostingEnvironment.ApplicationName.Replace("ASC.", "").Replace(".", ""));
serverOptions.ListenUnixSocket(unixSocket);
}
}
});
2019-05-28 15:05:20 +00:00
})
2020-09-30 14:47:42 +00:00
.ConfigureAppConfiguration((hostingContext, config) =>
{
2020-10-12 16:23:15 +00:00
var buided = config.Build();
var path = buided["pathToConf"];
if (!Path.IsPathRooted(path))
{
path = Path.GetFullPath(CrossPlatform.PathCombine(hostingContext.HostingEnvironment.ContentRootPath, path));
2020-10-12 16:23:15 +00:00
}
2019-06-21 08:03:42 +00:00
2020-10-12 19:39:23 +00:00
config.SetBasePath(path);
config
2020-10-12 16:23:15 +00:00
.AddJsonFile("appsettings.json")
.AddJsonFile($"appsettings.{hostingContext.HostingEnvironment.EnvironmentName}.json", true)
.AddJsonFile("storage.json")
.AddJsonFile("kafka.json")
.AddJsonFile($"kafka.{hostingContext.HostingEnvironment.EnvironmentName}.json", true)
.AddJsonFile("redis.json")
.AddJsonFile($"redis.{hostingContext.HostingEnvironment.EnvironmentName}.json", true)
2020-10-12 16:23:15 +00:00
.AddEnvironmentVariables()
2020-11-26 17:30:57 +00:00
.AddCommandLine(args)
.AddInMemoryCollection(new Dictionary<string, string>
{
{"pathToConf", path }
}
);
2021-08-08 13:19:54 +00:00
})
.ConfigureNLogLogging();
2019-05-15 14:56:09 +00:00
}
}