| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280 | 
							- #nullable disable
 
- #pragma warning disable CS1591
 
- using System;
 
- using System.Collections.Concurrent;
 
- using System.Collections.Generic;
 
- using System.Diagnostics;
 
- using System.Globalization;
 
- using System.IO;
 
- using System.Linq;
 
- using System.Net;
 
- using System.Reflection;
 
- using System.Runtime.InteropServices;
 
- using System.Security.Cryptography.X509Certificates;
 
- using System.Threading;
 
- using System.Threading.Tasks;
 
- using Emby.Dlna;
 
- using Emby.Dlna.Main;
 
- using Emby.Dlna.Ssdp;
 
- using Emby.Drawing;
 
- using Emby.Naming.Common;
 
- using Emby.Notifications;
 
- using Emby.Photos;
 
- using Emby.Server.Implementations.Archiving;
 
- using Emby.Server.Implementations.Channels;
 
- using Emby.Server.Implementations.Collections;
 
- using Emby.Server.Implementations.Configuration;
 
- using Emby.Server.Implementations.Cryptography;
 
- using Emby.Server.Implementations.Data;
 
- using Emby.Server.Implementations.Devices;
 
- using Emby.Server.Implementations.Dto;
 
- using Emby.Server.Implementations.HttpServer.Security;
 
- using Emby.Server.Implementations.IO;
 
- using Emby.Server.Implementations.Library;
 
- using Emby.Server.Implementations.LiveTv;
 
- using Emby.Server.Implementations.Localization;
 
- using Emby.Server.Implementations.Net;
 
- using Emby.Server.Implementations.Playlists;
 
- using Emby.Server.Implementations.Plugins;
 
- using Emby.Server.Implementations.QuickConnect;
 
- using Emby.Server.Implementations.ScheduledTasks;
 
- using Emby.Server.Implementations.Serialization;
 
- using Emby.Server.Implementations.Session;
 
- using Emby.Server.Implementations.SyncPlay;
 
- using Emby.Server.Implementations.TV;
 
- using Emby.Server.Implementations.Updates;
 
- using Jellyfin.Api.Helpers;
 
- using Jellyfin.MediaEncoding.Hls.Playlist;
 
- using Jellyfin.Networking.Configuration;
 
- using Jellyfin.Networking.Manager;
 
- using MediaBrowser.Common;
 
- using MediaBrowser.Common.Configuration;
 
- using MediaBrowser.Common.Events;
 
- using MediaBrowser.Common.Net;
 
- using MediaBrowser.Common.Plugins;
 
- using MediaBrowser.Common.Updates;
 
- using MediaBrowser.Controller;
 
- using MediaBrowser.Controller.Channels;
 
- using MediaBrowser.Controller.Chapters;
 
- using MediaBrowser.Controller.ClientEvent;
 
- using MediaBrowser.Controller.Collections;
 
- using MediaBrowser.Controller.Configuration;
 
- using MediaBrowser.Controller.Dlna;
 
- using MediaBrowser.Controller.Drawing;
 
- using MediaBrowser.Controller.Dto;
 
- using MediaBrowser.Controller.Entities;
 
- using MediaBrowser.Controller.Library;
 
- using MediaBrowser.Controller.LiveTv;
 
- using MediaBrowser.Controller.MediaEncoding;
 
- using MediaBrowser.Controller.Net;
 
- using MediaBrowser.Controller.Notifications;
 
- using MediaBrowser.Controller.Persistence;
 
- using MediaBrowser.Controller.Playlists;
 
- using MediaBrowser.Controller.Plugins;
 
- using MediaBrowser.Controller.Providers;
 
- using MediaBrowser.Controller.QuickConnect;
 
- using MediaBrowser.Controller.Resolvers;
 
- using MediaBrowser.Controller.Session;
 
- using MediaBrowser.Controller.Sorting;
 
- using MediaBrowser.Controller.Subtitles;
 
- using MediaBrowser.Controller.SyncPlay;
 
- using MediaBrowser.Controller.TV;
 
- using MediaBrowser.LocalMetadata.Savers;
 
- using MediaBrowser.MediaEncoding.BdInfo;
 
- using MediaBrowser.Model.Cryptography;
 
- using MediaBrowser.Model.Dlna;
 
- using MediaBrowser.Model.Globalization;
 
- using MediaBrowser.Model.IO;
 
- using MediaBrowser.Model.MediaInfo;
 
- using MediaBrowser.Model.Net;
 
- using MediaBrowser.Model.Serialization;
 
- using MediaBrowser.Model.System;
 
- using MediaBrowser.Model.Tasks;
 
- using MediaBrowser.Providers.Chapters;
 
- using MediaBrowser.Providers.Manager;
 
- using MediaBrowser.Providers.Plugins.Tmdb;
 
- using MediaBrowser.Providers.Subtitles;
 
- using MediaBrowser.XbmcMetadata.Providers;
 
- using Microsoft.AspNetCore.Http;
 
- using Microsoft.AspNetCore.Mvc;
 
- using Microsoft.Extensions.Configuration;
 
- using Microsoft.Extensions.DependencyInjection;
 
- using Microsoft.Extensions.Logging;
 
- using Prometheus.DotNetRuntime;
 
- using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
 
- using WebSocketManager = Emby.Server.Implementations.HttpServer.WebSocketManager;
 
- namespace Emby.Server.Implementations
 
- {
 
-     /// <summary>
 
-     /// Class CompositionRoot.
 
-     /// </summary>
 
-     public abstract class ApplicationHost : IServerApplicationHost, IAsyncDisposable, IDisposable
 
-     {
 
-         /// <summary>
 
-         /// The environment variable prefixes to log at server startup.
 
-         /// </summary>
 
-         private static readonly string[] _relevantEnvVarPrefixes = { "JELLYFIN_", "DOTNET_", "ASPNETCORE_" };
 
-         /// <summary>
 
-         /// The disposable parts.
 
-         /// </summary>
 
-         private readonly ConcurrentDictionary<IDisposable, byte> _disposableParts = new();
 
-         private readonly IFileSystem _fileSystemManager;
 
-         private readonly IConfiguration _startupConfig;
 
-         private readonly IXmlSerializer _xmlSerializer;
 
-         private readonly IStartupOptions _startupOptions;
 
-         private readonly IPluginManager _pluginManager;
 
-         private List<Type> _creatingInstances;
 
-         private IMediaEncoder _mediaEncoder;
 
-         private ISessionManager _sessionManager;
 
-         /// <summary>
 
-         /// Gets or sets all concrete types.
 
-         /// </summary>
 
-         /// <value>All concrete types.</value>
 
-         private Type[] _allConcreteTypes;
 
-         private DeviceId _deviceId;
 
-         private bool _disposed = false;
 
-         /// <summary>
 
-         /// Initializes a new instance of the <see cref="ApplicationHost"/> class.
 
-         /// </summary>
 
-         /// <param name="applicationPaths">Instance of the <see cref="IServerApplicationPaths"/> interface.</param>
 
-         /// <param name="loggerFactory">Instance of the <see cref="ILoggerFactory"/> interface.</param>
 
-         /// <param name="options">Instance of the <see cref="IStartupOptions"/> interface.</param>
 
-         /// <param name="startupConfig">The <see cref="IConfiguration" /> interface.</param>
 
-         protected ApplicationHost(
 
-             IServerApplicationPaths applicationPaths,
 
-             ILoggerFactory loggerFactory,
 
-             IStartupOptions options,
 
-             IConfiguration startupConfig)
 
-         {
 
-             ApplicationPaths = applicationPaths;
 
-             LoggerFactory = loggerFactory;
 
-             _startupOptions = options;
 
-             _startupConfig = startupConfig;
 
-             _fileSystemManager = new ManagedFileSystem(LoggerFactory.CreateLogger<ManagedFileSystem>(), applicationPaths);
 
-             Logger = LoggerFactory.CreateLogger<ApplicationHost>();
 
-             _fileSystemManager.AddShortcutHandler(new MbLinkShortcutHandler(_fileSystemManager));
 
-             ApplicationVersion = typeof(ApplicationHost).Assembly.GetName().Version;
 
-             ApplicationVersionString = ApplicationVersion.ToString(3);
 
-             ApplicationUserAgent = Name.Replace(' ', '-') + "/" + ApplicationVersionString;
 
-             _xmlSerializer = new MyXmlSerializer();
 
-             ConfigurationManager = new ServerConfigurationManager(ApplicationPaths, LoggerFactory, _xmlSerializer, _fileSystemManager);
 
-             _pluginManager = new PluginManager(
 
-                 LoggerFactory.CreateLogger<PluginManager>(),
 
-                 this,
 
-                 ConfigurationManager.Configuration,
 
-                 ApplicationPaths.PluginsPath,
 
-                 ApplicationVersion);
 
-         }
 
-         /// <summary>
 
-         /// Occurs when [has pending restart changed].
 
-         /// </summary>
 
-         public event EventHandler HasPendingRestartChanged;
 
-         /// <summary>
 
-         /// Gets the value of the PublishedServerUrl setting.
 
-         /// </summary>
 
-         private string PublishedServerUrl => _startupConfig[AddressOverrideKey];
 
-         /// <summary>
 
-         /// Gets a value indicating whether this instance can self restart.
 
-         /// </summary>
 
-         public bool CanSelfRestart => _startupOptions.RestartPath != null;
 
-         public bool CoreStartupHasCompleted { get; private set; }
 
-         public virtual bool CanLaunchWebBrowser
 
-         {
 
-             get
 
-             {
 
-                 if (!Environment.UserInteractive)
 
-                 {
 
-                     return false;
 
-                 }
 
-                 if (_startupOptions.IsService)
 
-                 {
 
-                     return false;
 
-                 }
 
-                 return OperatingSystem.IsWindows() || OperatingSystem.IsMacOS();
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Gets the <see cref="INetworkManager"/> singleton instance.
 
-         /// </summary>
 
-         public INetworkManager NetManager { get; private set; }
 
-         /// <summary>
 
-         /// Gets a value indicating whether this instance has changes that require the entire application to restart.
 
-         /// </summary>
 
-         /// <value><c>true</c> if this instance has pending application restart; otherwise, <c>false</c>.</value>
 
-         public bool HasPendingRestart { get; private set; }
 
-         /// <inheritdoc />
 
-         public bool IsShuttingDown { get; private set; }
 
-         /// <summary>
 
-         /// Gets the logger.
 
-         /// </summary>
 
-         protected ILogger<ApplicationHost> Logger { get; }
 
-         /// <summary>
 
-         /// Gets the logger factory.
 
-         /// </summary>
 
-         protected ILoggerFactory LoggerFactory { get; }
 
-         /// <summary>
 
-         /// Gets the application paths.
 
-         /// </summary>
 
-         /// <value>The application paths.</value>
 
-         protected IServerApplicationPaths ApplicationPaths { get; }
 
-         /// <summary>
 
-         /// Gets the configuration manager.
 
-         /// </summary>
 
-         /// <value>The configuration manager.</value>
 
-         public ServerConfigurationManager ConfigurationManager { get; }
 
-         /// <summary>
 
-         /// Gets or sets the service provider.
 
-         /// </summary>
 
-         public IServiceProvider ServiceProvider { get; set; }
 
-         /// <summary>
 
-         /// Gets the http port for the webhost.
 
-         /// </summary>
 
-         public int HttpPort { get; private set; }
 
-         /// <summary>
 
-         /// Gets the https port for the webhost.
 
-         /// </summary>
 
-         public int HttpsPort { get; private set; }
 
-         /// <inheritdoc />
 
-         public Version ApplicationVersion { get; }
 
-         /// <inheritdoc />
 
-         public string ApplicationVersionString { get; }
 
-         /// <summary>
 
-         /// Gets the current application user agent.
 
-         /// </summary>
 
-         /// <value>The application user agent.</value>
 
-         public string ApplicationUserAgent { get; }
 
-         /// <summary>
 
-         /// Gets the email address for use within a comment section of a user agent field.
 
-         /// Presently used to provide contact information to MusicBrainz service.
 
-         /// </summary>
 
-         public string ApplicationUserAgentAddress => "team@jellyfin.org";
 
-         /// <summary>
 
-         /// Gets the current application name.
 
-         /// </summary>
 
-         /// <value>The application name.</value>
 
-         public string ApplicationProductName { get; } = FileVersionInfo.GetVersionInfo(Assembly.GetEntryAssembly().Location).ProductName;
 
-         public string SystemId
 
-         {
 
-             get
 
-             {
 
-                 _deviceId ??= new DeviceId(ApplicationPaths, LoggerFactory);
 
-                 return _deviceId.Value;
 
-             }
 
-         }
 
-         /// <inheritdoc/>
 
-         public string Name => ApplicationProductName;
 
-         private string CertificatePath { get; set; }
 
-         public X509Certificate2 Certificate { get; private set; }
 
-         /// <inheritdoc/>
 
-         public bool ListenWithHttps => Certificate != null && ConfigurationManager.GetNetworkConfiguration().EnableHttps;
 
-         public string FriendlyName =>
 
-             string.IsNullOrEmpty(ConfigurationManager.Configuration.ServerName)
 
-                 ? Environment.MachineName
 
-                 : ConfigurationManager.Configuration.ServerName;
 
-         public string ExpandVirtualPath(string path)
 
-         {
 
-             var appPaths = ApplicationPaths;
 
-             return path.Replace(appPaths.VirtualDataPath, appPaths.DataPath, StringComparison.OrdinalIgnoreCase)
 
-                 .Replace(appPaths.VirtualInternalMetadataPath, appPaths.InternalMetadataPath, StringComparison.OrdinalIgnoreCase);
 
-         }
 
-         public string ReverseVirtualPath(string path)
 
-         {
 
-             var appPaths = ApplicationPaths;
 
-             return path.Replace(appPaths.DataPath, appPaths.VirtualDataPath, StringComparison.OrdinalIgnoreCase)
 
-                 .Replace(appPaths.InternalMetadataPath, appPaths.VirtualInternalMetadataPath, StringComparison.OrdinalIgnoreCase);
 
-         }
 
-         /// <summary>
 
-         /// Creates the instance safe.
 
-         /// </summary>
 
-         /// <param name="type">The type.</param>
 
-         /// <returns>System.Object.</returns>
 
-         protected object CreateInstanceSafe(Type type)
 
-         {
 
-             _creatingInstances ??= new List<Type>();
 
-             if (_creatingInstances.Contains(type))
 
-             {
 
-                 Logger.LogError("DI Loop detected in the attempted creation of {Type}", type.FullName);
 
-                 foreach (var entry in _creatingInstances)
 
-                 {
 
-                     Logger.LogError("Called from: {TypeName}", entry.FullName);
 
-                 }
 
-                 _pluginManager.FailPlugin(type.Assembly);
 
-                 throw new TypeLoadException("DI Loop detected");
 
-             }
 
-             try
 
-             {
 
-                 _creatingInstances.Add(type);
 
-                 Logger.LogDebug("Creating instance of {Type}", type);
 
-                 return ActivatorUtilities.CreateInstance(ServiceProvider, type);
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 Logger.LogError(ex, "Error creating {Type}", type);
 
-                 // If this is a plugin fail it.
 
-                 _pluginManager.FailPlugin(type.Assembly);
 
-                 return null;
 
-             }
 
-             finally
 
-             {
 
-                 _creatingInstances.Remove(type);
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Resolves this instance.
 
-         /// </summary>
 
-         /// <typeparam name="T">The type.</typeparam>
 
-         /// <returns>``0.</returns>
 
-         public T Resolve<T>() => ServiceProvider.GetService<T>();
 
-         /// <inheritdoc/>
 
-         public IEnumerable<Type> GetExportTypes<T>()
 
-         {
 
-             var currentType = typeof(T);
 
-             var numberOfConcreteTypes = _allConcreteTypes.Length;
 
-             for (var i = 0; i < numberOfConcreteTypes; i++)
 
-             {
 
-                 var type = _allConcreteTypes[i];
 
-                 if (currentType.IsAssignableFrom(type))
 
-                 {
 
-                     yield return type;
 
-                 }
 
-             }
 
-         }
 
-         /// <inheritdoc />
 
-         public IReadOnlyCollection<T> GetExports<T>(bool manageLifetime = true)
 
-         {
 
-             // Convert to list so this isn't executed for each iteration
 
-             var parts = GetExportTypes<T>()
 
-                 .Select(CreateInstanceSafe)
 
-                 .Where(i => i != null)
 
-                 .Cast<T>()
 
-                 .ToList();
 
-             if (manageLifetime)
 
-             {
 
-                 foreach (var part in parts.OfType<IDisposable>())
 
-                 {
 
-                     _disposableParts.TryAdd(part, byte.MinValue);
 
-                 }
 
-             }
 
-             return parts;
 
-         }
 
-         /// <inheritdoc />
 
-         public IReadOnlyCollection<T> GetExports<T>(CreationDelegateFactory defaultFunc, bool manageLifetime = true)
 
-         {
 
-             // Convert to list so this isn't executed for each iteration
 
-             var parts = GetExportTypes<T>()
 
-                 .Select(i => defaultFunc(i))
 
-                 .Where(i => i != null)
 
-                 .Cast<T>()
 
-                 .ToList();
 
-             if (manageLifetime)
 
-             {
 
-                 foreach (var part in parts.OfType<IDisposable>())
 
-                 {
 
-                     _disposableParts.TryAdd(part, byte.MinValue);
 
-                 }
 
-             }
 
-             return parts;
 
-         }
 
-         /// <summary>
 
-         /// Runs the startup tasks.
 
-         /// </summary>
 
-         /// <param name="cancellationToken">The cancellation token.</param>
 
-         /// <returns><see cref="Task" />.</returns>
 
-         public async Task RunStartupTasksAsync(CancellationToken cancellationToken)
 
-         {
 
-             cancellationToken.ThrowIfCancellationRequested();
 
-             Logger.LogInformation("Running startup tasks");
 
-             Resolve<ITaskManager>().AddTasks(GetExports<IScheduledTask>(false));
 
-             ConfigurationManager.ConfigurationUpdated += OnConfigurationUpdated;
 
-             ConfigurationManager.NamedConfigurationUpdated += OnConfigurationUpdated;
 
-             _mediaEncoder.SetFFmpegPath();
 
-             Logger.LogInformation("ServerId: {ServerId}", SystemId);
 
-             var entryPoints = GetExports<IServerEntryPoint>();
 
-             cancellationToken.ThrowIfCancellationRequested();
 
-             var stopWatch = new Stopwatch();
 
-             stopWatch.Start();
 
-             await Task.WhenAll(StartEntryPoints(entryPoints, true)).ConfigureAwait(false);
 
-             Logger.LogInformation("Executed all pre-startup entry points in {Elapsed:g}", stopWatch.Elapsed);
 
-             Logger.LogInformation("Core startup complete");
 
-             CoreStartupHasCompleted = true;
 
-             cancellationToken.ThrowIfCancellationRequested();
 
-             stopWatch.Restart();
 
-             await Task.WhenAll(StartEntryPoints(entryPoints, false)).ConfigureAwait(false);
 
-             Logger.LogInformation("Executed all post-startup entry points in {Elapsed:g}", stopWatch.Elapsed);
 
-             stopWatch.Stop();
 
-         }
 
-         private IEnumerable<Task> StartEntryPoints(IEnumerable<IServerEntryPoint> entryPoints, bool isBeforeStartup)
 
-         {
 
-             foreach (var entryPoint in entryPoints)
 
-             {
 
-                 if (isBeforeStartup != (entryPoint is IRunBeforeStartup))
 
-                 {
 
-                     continue;
 
-                 }
 
-                 Logger.LogDebug("Starting entry point {Type}", entryPoint.GetType());
 
-                 yield return entryPoint.RunAsync();
 
-             }
 
-         }
 
-         /// <inheritdoc/>
 
-         public void Init(IServiceCollection serviceCollection)
 
-         {
 
-             DiscoverTypes();
 
-             ConfigurationManager.AddParts(GetExports<IConfigurationFactory>());
 
-             NetManager = new NetworkManager(ConfigurationManager, LoggerFactory.CreateLogger<NetworkManager>());
 
-             // Initialize runtime stat collection
 
-             if (ConfigurationManager.Configuration.EnableMetrics)
 
-             {
 
-                 DotNetRuntimeStatsBuilder.Default().StartCollecting();
 
-             }
 
-             var networkConfiguration = ConfigurationManager.GetNetworkConfiguration();
 
-             HttpPort = networkConfiguration.HttpServerPortNumber;
 
-             HttpsPort = networkConfiguration.HttpsPortNumber;
 
-             // Safeguard against invalid configuration
 
-             if (HttpPort == HttpsPort)
 
-             {
 
-                 HttpPort = NetworkConfiguration.DefaultHttpPort;
 
-                 HttpsPort = NetworkConfiguration.DefaultHttpsPort;
 
-             }
 
-             CertificatePath = networkConfiguration.CertificatePath;
 
-             Certificate = GetCertificate(CertificatePath, networkConfiguration.CertificatePassword);
 
-             RegisterServices(serviceCollection);
 
-             _pluginManager.RegisterServices(serviceCollection);
 
-         }
 
-         /// <summary>
 
-         /// Registers services/resources with the service collection that will be available via DI.
 
-         /// </summary>
 
-         /// <param name="serviceCollection">Instance of the <see cref="IServiceCollection"/> interface.</param>
 
-         protected virtual void RegisterServices(IServiceCollection serviceCollection)
 
-         {
 
-             serviceCollection.AddSingleton(_startupOptions);
 
-             serviceCollection.AddMemoryCache();
 
-             serviceCollection.AddSingleton<IServerConfigurationManager>(ConfigurationManager);
 
-             serviceCollection.AddSingleton<IConfigurationManager>(ConfigurationManager);
 
-             serviceCollection.AddSingleton<IApplicationHost>(this);
 
-             serviceCollection.AddSingleton(_pluginManager);
 
-             serviceCollection.AddSingleton<IApplicationPaths>(ApplicationPaths);
 
-             serviceCollection.AddSingleton(_fileSystemManager);
 
-             serviceCollection.AddSingleton<TmdbClientManager>();
 
-             serviceCollection.AddSingleton(NetManager);
 
-             serviceCollection.AddSingleton<ITaskManager, TaskManager>();
 
-             serviceCollection.AddSingleton(_xmlSerializer);
 
-             serviceCollection.AddSingleton<IStreamHelper, StreamHelper>();
 
-             serviceCollection.AddSingleton<ICryptoProvider, CryptographyProvider>();
 
-             serviceCollection.AddSingleton<ISocketFactory, SocketFactory>();
 
-             serviceCollection.AddSingleton<IInstallationManager, InstallationManager>();
 
-             serviceCollection.AddSingleton<IZipClient, ZipClient>();
 
-             serviceCollection.AddSingleton<IServerApplicationHost>(this);
 
-             serviceCollection.AddSingleton(ApplicationPaths);
 
-             serviceCollection.AddSingleton<ILocalizationManager, LocalizationManager>();
 
-             serviceCollection.AddSingleton<IBlurayExaminer, BdInfoExaminer>();
 
-             serviceCollection.AddSingleton<IUserDataRepository, SqliteUserDataRepository>();
 
-             serviceCollection.AddSingleton<IUserDataManager, UserDataManager>();
 
-             serviceCollection.AddSingleton<IItemRepository, SqliteItemRepository>();
 
-             serviceCollection.AddSingleton<IMediaEncoder, MediaBrowser.MediaEncoding.Encoder.MediaEncoder>();
 
-             serviceCollection.AddSingleton<EncodingHelper>();
 
-             // TODO: Refactor to eliminate the circular dependencies here so that Lazy<T> isn't required
 
-             serviceCollection.AddTransient(provider => new Lazy<ILibraryMonitor>(provider.GetRequiredService<ILibraryMonitor>));
 
-             serviceCollection.AddTransient(provider => new Lazy<IProviderManager>(provider.GetRequiredService<IProviderManager>));
 
-             serviceCollection.AddTransient(provider => new Lazy<IUserViewManager>(provider.GetRequiredService<IUserViewManager>));
 
-             serviceCollection.AddSingleton<ILibraryManager, LibraryManager>();
 
-             serviceCollection.AddSingleton<NamingOptions>();
 
-             serviceCollection.AddSingleton<IMusicManager, MusicManager>();
 
-             serviceCollection.AddSingleton<ILibraryMonitor, LibraryMonitor>();
 
-             serviceCollection.AddSingleton<ISearchEngine, SearchEngine>();
 
-             serviceCollection.AddSingleton<IWebSocketManager, WebSocketManager>();
 
-             serviceCollection.AddSingleton<IImageProcessor, ImageProcessor>();
 
-             serviceCollection.AddSingleton<ITVSeriesManager, TVSeriesManager>();
 
-             serviceCollection.AddSingleton<IMediaSourceManager, MediaSourceManager>();
 
-             serviceCollection.AddSingleton<ISubtitleManager, SubtitleManager>();
 
-             serviceCollection.AddSingleton<IProviderManager, ProviderManager>();
 
-             // TODO: Refactor to eliminate the circular dependency here so that Lazy<T> isn't required
 
-             serviceCollection.AddTransient(provider => new Lazy<ILiveTvManager>(provider.GetRequiredService<ILiveTvManager>));
 
-             serviceCollection.AddSingleton<IDtoService, DtoService>();
 
-             serviceCollection.AddSingleton<IChannelManager, ChannelManager>();
 
-             serviceCollection.AddSingleton<ISessionManager, SessionManager>();
 
-             serviceCollection.AddSingleton<IDlnaManager, DlnaManager>();
 
-             serviceCollection.AddSingleton<ICollectionManager, CollectionManager>();
 
-             serviceCollection.AddSingleton<IPlaylistManager, PlaylistManager>();
 
-             serviceCollection.AddSingleton<ISyncPlayManager, SyncPlayManager>();
 
-             serviceCollection.AddSingleton<LiveTvDtoService>();
 
-             serviceCollection.AddSingleton<ILiveTvManager, LiveTvManager>();
 
-             serviceCollection.AddSingleton<IUserViewManager, UserViewManager>();
 
-             serviceCollection.AddSingleton<INotificationManager, NotificationManager>();
 
-             serviceCollection.AddSingleton<IDeviceDiscovery, DeviceDiscovery>();
 
-             serviceCollection.AddSingleton<IChapterManager, ChapterManager>();
 
-             serviceCollection.AddSingleton<IEncodingManager, MediaEncoder.EncodingManager>();
 
-             serviceCollection.AddScoped<ISessionContext, SessionContext>();
 
-             serviceCollection.AddSingleton<IAuthService, AuthService>();
 
-             serviceCollection.AddSingleton<IQuickConnect, QuickConnectManager>();
 
-             serviceCollection.AddSingleton<ISubtitleEncoder, MediaBrowser.MediaEncoding.Subtitles.SubtitleEncoder>();
 
-             serviceCollection.AddSingleton<IAttachmentExtractor, MediaBrowser.MediaEncoding.Attachments.AttachmentExtractor>();
 
-             serviceCollection.AddSingleton<TranscodingJobHelper>();
 
-             serviceCollection.AddScoped<MediaInfoHelper>();
 
-             serviceCollection.AddScoped<AudioHelper>();
 
-             serviceCollection.AddScoped<DynamicHlsHelper>();
 
-             serviceCollection.AddScoped<IClientEventLogger, ClientEventLogger>();
 
-             serviceCollection.AddSingleton<IDirectoryService, DirectoryService>();
 
-         }
 
-         /// <summary>
 
-         /// Create services registered with the service container that need to be initialized at application startup.
 
-         /// </summary>
 
-         /// <returns>A task representing the service initialization operation.</returns>
 
-         public async Task InitializeServices()
 
-         {
 
-             var localizationManager = (LocalizationManager)Resolve<ILocalizationManager>();
 
-             await localizationManager.LoadAll().ConfigureAwait(false);
 
-             _mediaEncoder = Resolve<IMediaEncoder>();
 
-             _sessionManager = Resolve<ISessionManager>();
 
-             SetStaticProperties();
 
-             var userDataRepo = (SqliteUserDataRepository)Resolve<IUserDataRepository>();
 
-             ((SqliteItemRepository)Resolve<IItemRepository>()).Initialize(userDataRepo, Resolve<IUserManager>());
 
-             FindParts();
 
-         }
 
-         public static void LogEnvironmentInfo(ILogger logger, IApplicationPaths appPaths)
 
-         {
 
-             // Distinct these to prevent users from reporting problems that aren't actually problems
 
-             var commandLineArgs = Environment
 
-                 .GetCommandLineArgs()
 
-                 .Distinct();
 
-             // Get all relevant environment variables
 
-             var allEnvVars = Environment.GetEnvironmentVariables();
 
-             var relevantEnvVars = new Dictionary<object, object>();
 
-             foreach (var key in allEnvVars.Keys)
 
-             {
 
-                 if (_relevantEnvVarPrefixes.Any(prefix => key.ToString().StartsWith(prefix, StringComparison.OrdinalIgnoreCase)))
 
-                 {
 
-                     relevantEnvVars.Add(key, allEnvVars[key]);
 
-                 }
 
-             }
 
-             logger.LogInformation("Environment Variables: {EnvVars}", relevantEnvVars);
 
-             logger.LogInformation("Arguments: {Args}", commandLineArgs);
 
-             logger.LogInformation("Operating system: {OS}", MediaBrowser.Common.System.OperatingSystem.Name);
 
-             logger.LogInformation("Architecture: {Architecture}", RuntimeInformation.OSArchitecture);
 
-             logger.LogInformation("64-Bit Process: {Is64Bit}", Environment.Is64BitProcess);
 
-             logger.LogInformation("User Interactive: {IsUserInteractive}", Environment.UserInteractive);
 
-             logger.LogInformation("Processor count: {ProcessorCount}", Environment.ProcessorCount);
 
-             logger.LogInformation("Program data path: {ProgramDataPath}", appPaths.ProgramDataPath);
 
-             logger.LogInformation("Web resources path: {WebPath}", appPaths.WebPath);
 
-             logger.LogInformation("Application directory: {ApplicationPath}", appPaths.ProgramSystemPath);
 
-         }
 
-         private X509Certificate2 GetCertificate(string path, string password)
 
-         {
 
-             if (string.IsNullOrWhiteSpace(path))
 
-             {
 
-                 return null;
 
-             }
 
-             try
 
-             {
 
-                 if (!File.Exists(path))
 
-                 {
 
-                     return null;
 
-                 }
 
-                 // Don't use an empty string password
 
-                 password = string.IsNullOrWhiteSpace(password) ? null : password;
 
-                 var localCert = new X509Certificate2(path, password, X509KeyStorageFlags.UserKeySet);
 
-                 if (!localCert.HasPrivateKey)
 
-                 {
 
-                     Logger.LogError("No private key included in SSL cert {CertificateLocation}.", path);
 
-                     return null;
 
-                 }
 
-                 return localCert;
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 Logger.LogError(ex, "Error loading cert from {CertificateLocation}", path);
 
-                 return null;
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Dirty hacks.
 
-         /// </summary>
 
-         private void SetStaticProperties()
 
-         {
 
-             // For now there's no real way to inject these properly
 
-             BaseItem.Logger = Resolve<ILogger<BaseItem>>();
 
-             BaseItem.ConfigurationManager = ConfigurationManager;
 
-             BaseItem.LibraryManager = Resolve<ILibraryManager>();
 
-             BaseItem.ProviderManager = Resolve<IProviderManager>();
 
-             BaseItem.LocalizationManager = Resolve<ILocalizationManager>();
 
-             BaseItem.ItemRepository = Resolve<IItemRepository>();
 
-             BaseItem.FileSystem = _fileSystemManager;
 
-             BaseItem.UserDataManager = Resolve<IUserDataManager>();
 
-             BaseItem.ChannelManager = Resolve<IChannelManager>();
 
-             Video.LiveTvManager = Resolve<ILiveTvManager>();
 
-             Folder.UserViewManager = Resolve<IUserViewManager>();
 
-             UserView.TVSeriesManager = Resolve<ITVSeriesManager>();
 
-             UserView.CollectionManager = Resolve<ICollectionManager>();
 
-             BaseItem.MediaSourceManager = Resolve<IMediaSourceManager>();
 
-             CollectionFolder.XmlSerializer = _xmlSerializer;
 
-             CollectionFolder.ApplicationHost = this;
 
-         }
 
-         /// <summary>
 
-         /// Finds plugin components and register them with the appropriate services.
 
-         /// </summary>
 
-         private void FindParts()
 
-         {
 
-             if (!ConfigurationManager.Configuration.IsPortAuthorized)
 
-             {
 
-                 ConfigurationManager.Configuration.IsPortAuthorized = true;
 
-                 ConfigurationManager.SaveConfiguration();
 
-             }
 
-             _pluginManager.CreatePlugins();
 
-             Resolve<ILibraryManager>().AddParts(
 
-                 GetExports<IResolverIgnoreRule>(),
 
-                 GetExports<IItemResolver>(),
 
-                 GetExports<IIntroProvider>(),
 
-                 GetExports<IBaseItemComparer>(),
 
-                 GetExports<ILibraryPostScanTask>());
 
-             Resolve<IProviderManager>().AddParts(
 
-                 GetExports<IImageProvider>(),
 
-                 GetExports<IMetadataService>(),
 
-                 GetExports<IMetadataProvider>(),
 
-                 GetExports<IMetadataSaver>(),
 
-                 GetExports<IExternalId>());
 
-             Resolve<ILiveTvManager>().AddParts(GetExports<ILiveTvService>(), GetExports<ITunerHost>(), GetExports<IListingsProvider>());
 
-             Resolve<ISubtitleManager>().AddParts(GetExports<ISubtitleProvider>());
 
-             Resolve<IChannelManager>().AddParts(GetExports<IChannel>());
 
-             Resolve<IMediaSourceManager>().AddParts(GetExports<IMediaSourceProvider>());
 
-             Resolve<INotificationManager>().AddParts(GetExports<INotificationService>(), GetExports<INotificationTypeFactory>());
 
-         }
 
-         /// <summary>
 
-         /// Discovers the types.
 
-         /// </summary>
 
-         protected void DiscoverTypes()
 
-         {
 
-             Logger.LogInformation("Loading assemblies");
 
-             _allConcreteTypes = GetTypes(GetComposablePartAssemblies()).ToArray();
 
-         }
 
-         private IEnumerable<Type> GetTypes(IEnumerable<Assembly> assemblies)
 
-         {
 
-             foreach (var ass in assemblies)
 
-             {
 
-                 Type[] exportedTypes;
 
-                 try
 
-                 {
 
-                     exportedTypes = ass.GetExportedTypes();
 
-                 }
 
-                 catch (FileNotFoundException ex)
 
-                 {
 
-                     Logger.LogError(ex, "Error getting exported types from {Assembly}", ass.FullName);
 
-                     _pluginManager.FailPlugin(ass);
 
-                     continue;
 
-                 }
 
-                 catch (TypeLoadException ex)
 
-                 {
 
-                     Logger.LogError(ex, "Error loading types from {Assembly}.", ass.FullName);
 
-                     _pluginManager.FailPlugin(ass);
 
-                     continue;
 
-                 }
 
-                 foreach (Type type in exportedTypes)
 
-                 {
 
-                     if (type.IsClass && !type.IsAbstract && !type.IsInterface && !type.IsGenericType)
 
-                     {
 
-                         yield return type;
 
-                     }
 
-                 }
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Called when [configuration updated].
 
-         /// </summary>
 
-         /// <param name="sender">The sender.</param>
 
-         /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
 
-         private void OnConfigurationUpdated(object sender, EventArgs e)
 
-         {
 
-             var requiresRestart = false;
 
-             var networkConfiguration = ConfigurationManager.GetNetworkConfiguration();
 
-             // Don't do anything if these haven't been set yet
 
-             if (HttpPort != 0 && HttpsPort != 0)
 
-             {
 
-                 // Need to restart if ports have changed
 
-                 if (networkConfiguration.HttpServerPortNumber != HttpPort
 
-                     || networkConfiguration.HttpsPortNumber != HttpsPort)
 
-                 {
 
-                     if (ConfigurationManager.Configuration.IsPortAuthorized)
 
-                     {
 
-                         ConfigurationManager.Configuration.IsPortAuthorized = false;
 
-                         ConfigurationManager.SaveConfiguration();
 
-                         requiresRestart = true;
 
-                     }
 
-                 }
 
-             }
 
-             if (ValidateSslCertificate(networkConfiguration))
 
-             {
 
-                 requiresRestart = true;
 
-             }
 
-             if (requiresRestart)
 
-             {
 
-                 Logger.LogInformation("App needs to be restarted due to configuration change.");
 
-                 NotifyPendingRestart();
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Validates the SSL certificate.
 
-         /// </summary>
 
-         /// <param name="networkConfig">The new configuration.</param>
 
-         /// <exception cref="FileNotFoundException">The certificate path doesn't exist.</exception>
 
-         private bool ValidateSslCertificate(NetworkConfiguration networkConfig)
 
-         {
 
-             var newPath = networkConfig.CertificatePath;
 
-             if (!string.IsNullOrWhiteSpace(newPath)
 
-                 && !string.Equals(CertificatePath, newPath, StringComparison.Ordinal))
 
-             {
 
-                 if (File.Exists(newPath))
 
-                 {
 
-                     return true;
 
-                 }
 
-                 throw new FileNotFoundException(
 
-                     string.Format(
 
-                         CultureInfo.InvariantCulture,
 
-                         "Certificate file '{0}' does not exist.",
 
-                         newPath));
 
-             }
 
-             return false;
 
-         }
 
-         /// <summary>
 
-         /// Notifies the kernel that a change has been made that requires a restart.
 
-         /// </summary>
 
-         public void NotifyPendingRestart()
 
-         {
 
-             Logger.LogInformation("App needs to be restarted.");
 
-             var changed = !HasPendingRestart;
 
-             HasPendingRestart = true;
 
-             if (changed)
 
-             {
 
-                 EventHelper.QueueEventIfNotNull(HasPendingRestartChanged, this, EventArgs.Empty, Logger);
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Restarts this instance.
 
-         /// </summary>
 
-         public void Restart()
 
-         {
 
-             if (!CanSelfRestart)
 
-             {
 
-                 throw new PlatformNotSupportedException("The server is unable to self-restart. Please restart manually.");
 
-             }
 
-             if (IsShuttingDown)
 
-             {
 
-                 return;
 
-             }
 
-             IsShuttingDown = true;
 
-             Task.Run(async () =>
 
-             {
 
-                 try
 
-                 {
 
-                     await _sessionManager.SendServerRestartNotification(CancellationToken.None).ConfigureAwait(false);
 
-                 }
 
-                 catch (Exception ex)
 
-                 {
 
-                     Logger.LogError(ex, "Error sending server restart notification");
 
-                 }
 
-                 Logger.LogInformation("Calling RestartInternal");
 
-                 RestartInternal();
 
-             });
 
-         }
 
-         protected abstract void RestartInternal();
 
-         /// <summary>
 
-         /// Gets the composable part assemblies.
 
-         /// </summary>
 
-         /// <returns>IEnumerable{Assembly}.</returns>
 
-         protected IEnumerable<Assembly> GetComposablePartAssemblies()
 
-         {
 
-             foreach (var p in _pluginManager.LoadAssemblies())
 
-             {
 
-                 yield return p;
 
-             }
 
-             // Include composable parts in the Model assembly
 
-             yield return typeof(SystemInfo).Assembly;
 
-             // Include composable parts in the Common assembly
 
-             yield return typeof(IApplicationHost).Assembly;
 
-             // Include composable parts in the Controller assembly
 
-             yield return typeof(IServerApplicationHost).Assembly;
 
-             // Include composable parts in the Providers assembly
 
-             yield return typeof(ProviderManager).Assembly;
 
-             // Include composable parts in the Photos assembly
 
-             yield return typeof(PhotoProvider).Assembly;
 
-             // Emby.Server implementations
 
-             yield return typeof(InstallationManager).Assembly;
 
-             // MediaEncoding
 
-             yield return typeof(MediaBrowser.MediaEncoding.Encoder.MediaEncoder).Assembly;
 
-             // Dlna
 
-             yield return typeof(DlnaEntryPoint).Assembly;
 
-             // Local metadata
 
-             yield return typeof(BoxSetXmlSaver).Assembly;
 
-             // Notifications
 
-             yield return typeof(NotificationManager).Assembly;
 
-             // Xbmc
 
-             yield return typeof(ArtistNfoProvider).Assembly;
 
-             // Network
 
-             yield return typeof(NetworkManager).Assembly;
 
-             // Hls
 
-             yield return typeof(DynamicHlsPlaylistGenerator).Assembly;
 
-             foreach (var i in GetAssembliesWithPartsInternal())
 
-             {
 
-                 yield return i;
 
-             }
 
-         }
 
-         protected abstract IEnumerable<Assembly> GetAssembliesWithPartsInternal();
 
-         /// <summary>
 
-         /// Gets the system status.
 
-         /// </summary>
 
-         /// <param name="request">Where this request originated.</param>
 
-         /// <returns>SystemInfo.</returns>
 
-         public SystemInfo GetSystemInfo(HttpRequest request)
 
-         {
 
-             return new SystemInfo
 
-             {
 
-                 HasPendingRestart = HasPendingRestart,
 
-                 IsShuttingDown = IsShuttingDown,
 
-                 Version = ApplicationVersionString,
 
-                 WebSocketPortNumber = HttpPort,
 
-                 CompletedInstallations = Resolve<IInstallationManager>().CompletedInstallations.ToArray(),
 
-                 Id = SystemId,
 
-                 ProgramDataPath = ApplicationPaths.ProgramDataPath,
 
-                 WebPath = ApplicationPaths.WebPath,
 
-                 LogPath = ApplicationPaths.LogDirectoryPath,
 
-                 ItemsByNamePath = ApplicationPaths.InternalMetadataPath,
 
-                 InternalMetadataPath = ApplicationPaths.InternalMetadataPath,
 
-                 CachePath = ApplicationPaths.CachePath,
 
-                 OperatingSystem = MediaBrowser.Common.System.OperatingSystem.Id.ToString(),
 
-                 OperatingSystemDisplayName = MediaBrowser.Common.System.OperatingSystem.Name,
 
-                 CanSelfRestart = CanSelfRestart,
 
-                 CanLaunchWebBrowser = CanLaunchWebBrowser,
 
-                 TranscodingTempPath = ConfigurationManager.GetTranscodePath(),
 
-                 ServerName = FriendlyName,
 
-                 LocalAddress = GetSmartApiUrl(request),
 
-                 SupportsLibraryMonitor = true,
 
-                 SystemArchitecture = RuntimeInformation.OSArchitecture,
 
-                 PackageName = _startupOptions.PackageName
 
-             };
 
-         }
 
-         public PublicSystemInfo GetPublicSystemInfo(HttpRequest request)
 
-         {
 
-             return new PublicSystemInfo
 
-             {
 
-                 Version = ApplicationVersionString,
 
-                 ProductName = ApplicationProductName,
 
-                 Id = SystemId,
 
-                 OperatingSystem = MediaBrowser.Common.System.OperatingSystem.Id.ToString(),
 
-                 ServerName = FriendlyName,
 
-                 LocalAddress = GetSmartApiUrl(request),
 
-                 StartupWizardCompleted = ConfigurationManager.CommonConfiguration.IsStartupWizardCompleted
 
-             };
 
-         }
 
-         /// <inheritdoc/>
 
-         public string GetSmartApiUrl(IPAddress remoteAddr)
 
-         {
 
-             // Published server ends with a /
 
-             if (!string.IsNullOrEmpty(PublishedServerUrl))
 
-             {
 
-                 // Published server ends with a '/', so we need to remove it.
 
-                 return PublishedServerUrl.Trim('/');
 
-             }
 
-             string smart = NetManager.GetBindInterface(remoteAddr, out var port);
 
-             return GetLocalApiUrl(smart.Trim('/'), null, port);
 
-         }
 
-         /// <inheritdoc/>
 
-         public string GetSmartApiUrl(HttpRequest request)
 
-         {
 
-             // Return the host in the HTTP request as the API url
 
-             if (ConfigurationManager.GetNetworkConfiguration().EnablePublishedServerUriByRequest)
 
-             {
 
-                 int? requestPort = request.Host.Port;
 
-                 if ((requestPort == 80 && string.Equals(request.Scheme, "http", StringComparison.OrdinalIgnoreCase)) || (requestPort == 443 && string.Equals(request.Scheme, "https", StringComparison.OrdinalIgnoreCase)))
 
-                 {
 
-                     requestPort = -1;
 
-                 }
 
-                 return GetLocalApiUrl(request.Host.Host, request.Scheme, requestPort);
 
-             }
 
-             // Published server ends with a /
 
-             if (!string.IsNullOrEmpty(PublishedServerUrl))
 
-             {
 
-                 // Published server ends with a '/', so we need to remove it.
 
-                 return PublishedServerUrl.Trim('/');
 
-             }
 
-             string smart = NetManager.GetBindInterface(request, out var port);
 
-             return GetLocalApiUrl(smart.Trim('/'), request.Scheme, port);
 
-         }
 
-         /// <inheritdoc/>
 
-         public string GetSmartApiUrl(string hostname)
 
-         {
 
-             // Published server ends with a /
 
-             if (!string.IsNullOrEmpty(PublishedServerUrl))
 
-             {
 
-                 // Published server ends with a '/', so we need to remove it.
 
-                 return PublishedServerUrl.Trim('/');
 
-             }
 
-             string smart = NetManager.GetBindInterface(hostname, out var port);
 
-             return GetLocalApiUrl(smart.Trim('/'), null, port);
 
-         }
 
-         /// <inheritdoc/>
 
-         public string GetApiUrlForLocalAccess(IPObject hostname = null, bool allowHttps = true)
 
-         {
 
-             // With an empty source, the port will be null
 
-             var smart = NetManager.GetBindInterface(hostname ?? IPHost.None, out _);
 
-             var scheme = !allowHttps ? Uri.UriSchemeHttp : null;
 
-             int? port = !allowHttps ? HttpPort : null;
 
-             return GetLocalApiUrl(smart, scheme, port);
 
-         }
 
-         /// <inheritdoc/>
 
-         public string GetLocalApiUrl(string hostname, string scheme = null, int? port = null)
 
-         {
 
-             // If the smartAPI doesn't start with http then treat it as a host or ip.
 
-             if (hostname.StartsWith("http", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 return hostname.TrimEnd('/');
 
-             }
 
-             // NOTE: If no BaseUrl is set then UriBuilder appends a trailing slash, but if there is no BaseUrl it does
 
-             // not. For consistency, always trim the trailing slash.
 
-             scheme ??= ListenWithHttps ? Uri.UriSchemeHttps : Uri.UriSchemeHttp;
 
-             var isHttps = string.Equals(scheme, Uri.UriSchemeHttps, StringComparison.OrdinalIgnoreCase);
 
-             return new UriBuilder
 
-             {
 
-                 Scheme = scheme,
 
-                 Host = hostname,
 
-                 Port = port ?? (isHttps ? HttpsPort : HttpPort),
 
-                 Path = ConfigurationManager.GetNetworkConfiguration().BaseUrl
 
-             }.ToString().TrimEnd('/');
 
-         }
 
-         /// <inheritdoc />
 
-         public async Task Shutdown()
 
-         {
 
-             if (IsShuttingDown)
 
-             {
 
-                 return;
 
-             }
 
-             IsShuttingDown = true;
 
-             try
 
-             {
 
-                 await _sessionManager.SendServerShutdownNotification(CancellationToken.None).ConfigureAwait(false);
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 Logger.LogError(ex, "Error sending server shutdown notification");
 
-             }
 
-             ShutdownInternal();
 
-         }
 
-         protected abstract void ShutdownInternal();
 
-         public IEnumerable<Assembly> GetApiPluginAssemblies()
 
-         {
 
-             var assemblies = _allConcreteTypes
 
-                 .Where(i => typeof(ControllerBase).IsAssignableFrom(i))
 
-                 .Select(i => i.Assembly)
 
-                 .Distinct();
 
-             foreach (var assembly in assemblies)
 
-             {
 
-                 Logger.LogDebug("Found API endpoints in plugin {Name}", assembly.FullName);
 
-                 yield return assembly;
 
-             }
 
-         }
 
-         /// <inheritdoc />
 
-         public void Dispose()
 
-         {
 
-             Dispose(true);
 
-             GC.SuppressFinalize(this);
 
-         }
 
-         /// <summary>
 
-         /// Releases unmanaged and - optionally - managed resources.
 
-         /// </summary>
 
-         /// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
 
-         protected virtual void Dispose(bool dispose)
 
-         {
 
-             if (_disposed)
 
-             {
 
-                 return;
 
-             }
 
-             if (dispose)
 
-             {
 
-                 var type = GetType();
 
-                 Logger.LogInformation("Disposing {Type}", type.Name);
 
-                 foreach (var (part, _) in _disposableParts)
 
-                 {
 
-                     var partType = part.GetType();
 
-                     if (partType == type)
 
-                     {
 
-                         continue;
 
-                     }
 
-                     Logger.LogInformation("Disposing {Type}", partType.Name);
 
-                     try
 
-                     {
 
-                         part.Dispose();
 
-                     }
 
-                     catch (Exception ex)
 
-                     {
 
-                         Logger.LogError(ex, "Error disposing {Type}", partType.Name);
 
-                     }
 
-                 }
 
-                 _disposableParts.Clear();
 
-             }
 
-             _disposed = true;
 
-         }
 
-         public async ValueTask DisposeAsync()
 
-         {
 
-             await DisposeAsyncCore().ConfigureAwait(false);
 
-             Dispose(false);
 
-             GC.SuppressFinalize(this);
 
-         }
 
-         /// <summary>
 
-         /// Used to perform asynchronous cleanup of managed resources or for cascading calls to <see cref="DisposeAsync"/>.
 
-         /// </summary>
 
-         /// <returns>A ValueTask.</returns>
 
-         protected virtual async ValueTask DisposeAsyncCore()
 
-         {
 
-             var type = GetType();
 
-             Logger.LogInformation("Disposing {Type}", type.Name);
 
-             foreach (var (part, _) in _disposableParts)
 
-             {
 
-                 var partType = part.GetType();
 
-                 if (partType == type)
 
-                 {
 
-                     continue;
 
-                 }
 
-                 Logger.LogInformation("Disposing {Type}", partType.Name);
 
-                 try
 
-                 {
 
-                     part.Dispose();
 
-                 }
 
-                 catch (Exception ex)
 
-                 {
 
-                     Logger.LogError(ex, "Error disposing {Type}", partType.Name);
 
-                 }
 
-             }
 
-             // used for closing websockets
 
-             foreach (var session in _sessionManager.Sessions)
 
-             {
 
-                 await session.DisposeAsync().ConfigureAwait(false);
 
-             }
 
-         }
 
-     }
 
- }
 
 
  |