You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
218 lines
7.8 KiB
218 lines
7.8 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Security.Cryptography;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Text;
|
|
using DryIoc;
|
|
using DryIoc.Microsoft.DependencyInjection;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Hosting.WindowsServices;
|
|
using NLog;
|
|
using NzbDrone.Common.Composition.Extensions;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
using NzbDrone.Common.Exceptions;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Common.Instrumentation;
|
|
using NzbDrone.Common.Instrumentation.Extensions;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.Datastore.Extensions;
|
|
|
|
namespace NzbDrone.Host
|
|
{
|
|
public static class Bootstrap
|
|
{
|
|
private static readonly Logger Logger = NzbDroneLogger.GetLogger(typeof(Bootstrap));
|
|
|
|
public static readonly List<string> ASSEMBLIES = new List<string>
|
|
{
|
|
"Prowlarr.Host",
|
|
"Prowlarr.Core",
|
|
"Prowlarr.SignalR",
|
|
"Prowlarr.Api.V1",
|
|
"Prowlarr.Http"
|
|
};
|
|
|
|
public static void Start(string[] args, Action<IHostBuilder> trayCallback = null)
|
|
{
|
|
try
|
|
{
|
|
Logger.Info("Starting Prowlarr - {0} - Version {1}",
|
|
Process.GetCurrentProcess().MainModule.FileName,
|
|
Assembly.GetExecutingAssembly().GetName().Version);
|
|
|
|
var startupContext = new StartupContext(args);
|
|
|
|
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
|
|
|
|
var appMode = GetApplicationMode(startupContext);
|
|
|
|
switch (appMode)
|
|
{
|
|
case ApplicationModes.Service:
|
|
{
|
|
Logger.Debug("Service selected");
|
|
|
|
CreateConsoleHostBuilder(args, startupContext).UseWindowsService().Build().Run();
|
|
break;
|
|
}
|
|
|
|
case ApplicationModes.Interactive:
|
|
{
|
|
Logger.Debug(trayCallback != null ? "Tray selected" : "Console selected");
|
|
var builder = CreateConsoleHostBuilder(args, startupContext);
|
|
|
|
if (trayCallback != null)
|
|
{
|
|
trayCallback(builder);
|
|
}
|
|
|
|
builder.Build().Run();
|
|
break;
|
|
}
|
|
|
|
// Utility mode
|
|
default:
|
|
{
|
|
new Container(rules => rules.WithNzbDroneRules())
|
|
.AutoAddServices(ASSEMBLIES)
|
|
.AddNzbDroneLogger()
|
|
.AddStartupContext(startupContext)
|
|
.Resolve<UtilityModeRouter>()
|
|
.Route(appMode);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
catch (InvalidConfigFileException ex)
|
|
{
|
|
throw new ProwlarrStartupException(ex);
|
|
}
|
|
catch (TerminateApplicationException e)
|
|
{
|
|
Logger.Info(e.Message);
|
|
LogManager.Configuration = null;
|
|
}
|
|
}
|
|
|
|
public static IHostBuilder CreateConsoleHostBuilder(string[] args, StartupContext context)
|
|
{
|
|
var config = GetConfiguration(context);
|
|
|
|
var bindAddress = config.GetValue(nameof(ConfigFileProvider.BindAddress), "*");
|
|
var port = config.GetValue(nameof(ConfigFileProvider.Port), ConfigFileProvider.DEFAULT_PORT);
|
|
var sslPort = config.GetValue(nameof(ConfigFileProvider.SslPort), ConfigFileProvider.DEFAULT_SSL_PORT);
|
|
var enableSsl = config.GetValue(nameof(ConfigFileProvider.EnableSsl), false);
|
|
var sslCertPath = config.GetValue<string>(nameof(ConfigFileProvider.SslCertPath));
|
|
var sslCertPassword = config.GetValue<string>(nameof(ConfigFileProvider.SslCertPassword));
|
|
|
|
var urls = new List<string> { BuildUrl("http", bindAddress, port) };
|
|
|
|
if (enableSsl && sslCertPath.IsNotNullOrWhiteSpace())
|
|
{
|
|
urls.Add(BuildUrl("https", bindAddress, sslPort));
|
|
}
|
|
|
|
return new HostBuilder()
|
|
.UseContentRoot(Directory.GetCurrentDirectory())
|
|
.UseServiceProviderFactory(new DryIocServiceProviderFactory(new Container(rules => rules.WithNzbDroneRules())))
|
|
.ConfigureContainer<IContainer>(c =>
|
|
{
|
|
c.AutoAddServices(Bootstrap.ASSEMBLIES)
|
|
.AddNzbDroneLogger()
|
|
.AddDatabase()
|
|
.AddStartupContext(context);
|
|
})
|
|
.ConfigureWebHost(builder =>
|
|
{
|
|
builder.UseUrls(urls.ToArray());
|
|
builder.UseKestrel(options =>
|
|
{
|
|
if (enableSsl && sslCertPath.IsNotNullOrWhiteSpace())
|
|
{
|
|
options.ConfigureHttpsDefaults(configureOptions =>
|
|
{
|
|
configureOptions.ServerCertificate = ValidateSslCertificate(sslCertPath, sslCertPassword);
|
|
});
|
|
}
|
|
});
|
|
builder.ConfigureKestrel(serverOptions =>
|
|
{
|
|
serverOptions.AllowSynchronousIO = true;
|
|
serverOptions.Limits.MaxRequestBodySize = null;
|
|
});
|
|
builder.UseStartup<Startup>();
|
|
});
|
|
}
|
|
|
|
public static ApplicationModes GetApplicationMode(IStartupContext startupContext)
|
|
{
|
|
if (startupContext.Help)
|
|
{
|
|
return ApplicationModes.Help;
|
|
}
|
|
|
|
if (OsInfo.IsWindows && startupContext.RegisterUrl)
|
|
{
|
|
return ApplicationModes.RegisterUrl;
|
|
}
|
|
|
|
if (OsInfo.IsWindows && startupContext.InstallService)
|
|
{
|
|
return ApplicationModes.InstallService;
|
|
}
|
|
|
|
if (OsInfo.IsWindows && startupContext.UninstallService)
|
|
{
|
|
return ApplicationModes.UninstallService;
|
|
}
|
|
|
|
if (OsInfo.IsWindows && WindowsServiceHelpers.IsWindowsService())
|
|
{
|
|
return ApplicationModes.Service;
|
|
}
|
|
|
|
return ApplicationModes.Interactive;
|
|
}
|
|
|
|
private static IConfiguration GetConfiguration(StartupContext context)
|
|
{
|
|
var appFolder = new AppFolderInfo(context);
|
|
return new ConfigurationBuilder()
|
|
.AddXmlFile(appFolder.GetConfigPath(), optional: true, reloadOnChange: false)
|
|
.Build();
|
|
}
|
|
|
|
private static string BuildUrl(string scheme, string bindAddress, int port)
|
|
{
|
|
return $"{scheme}://{bindAddress}:{port}";
|
|
}
|
|
|
|
private static X509Certificate2 ValidateSslCertificate(string cert, string password)
|
|
{
|
|
X509Certificate2 certificate;
|
|
|
|
try
|
|
{
|
|
certificate = new X509Certificate2(cert, password, X509KeyStorageFlags.DefaultKeySet);
|
|
}
|
|
catch (CryptographicException ex)
|
|
{
|
|
if (ex.HResult == 0x2 || ex.HResult == 0x2006D080)
|
|
{
|
|
throw new ProwlarrStartupException(ex,
|
|
$"The SSL certificate file {cert} does not exist");
|
|
}
|
|
|
|
throw new ProwlarrStartupException(ex);
|
|
}
|
|
|
|
return certificate;
|
|
}
|
|
}
|
|
}
|