#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.Net.Http;
using System.Net.Sockets;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Emby.Dlna;
using Emby.Dlna.Main;
using Emby.Dlna.Ssdp;
using Emby.Drawing;
using Emby.Notifications;
using Emby.Photos;
using Emby.Server.Implementations.Activity;
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;
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.ScheduledTasks;
using Emby.Server.Implementations.Security;
using Emby.Server.Implementations.Serialization;
using Emby.Server.Implementations.Services;
using Emby.Server.Implementations.Session;
using Emby.Server.Implementations.SocketSharp;
using Emby.Server.Implementations.TV;
using Emby.Server.Implementations.Updates;
using MediaBrowser.Api;
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.Authentication;
using MediaBrowser.Controller.Channels;
using MediaBrowser.Controller.Chapters;
using MediaBrowser.Controller.Collections;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Devices;
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.Resolvers;
using MediaBrowser.Controller.Security;
using MediaBrowser.Controller.Session;
using MediaBrowser.Controller.Sorting;
using MediaBrowser.Controller.Subtitles;
using MediaBrowser.Controller.TV;
using MediaBrowser.LocalMetadata.Savers;
using MediaBrowser.MediaEncoding.BdInfo;
using MediaBrowser.Model.Activity;
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Cryptography;
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Events;
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.Net;
using MediaBrowser.Model.Serialization;
using MediaBrowser.Model.Services;
using MediaBrowser.Model.System;
using MediaBrowser.Model.Tasks;
using MediaBrowser.Model.Updates;
using MediaBrowser.Providers.Chapters;
using MediaBrowser.Providers.Manager;
using MediaBrowser.Providers.Plugins.TheTvdb;
using MediaBrowser.Providers.Subtitles;
using MediaBrowser.WebDashboard.Api;
using MediaBrowser.XbmcMetadata.Providers;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Extensions;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using OperatingSystem = MediaBrowser.Common.System.OperatingSystem;
namespace Emby.Server.Implementations
{
    /// 
    /// Class CompositionRoot.
    /// 
    public abstract class ApplicationHost : IServerApplicationHost, IDisposable
    {
        /// 
        /// The environment variable prefixes to log at server startup.
        /// 
        private static readonly string[] _relevantEnvVarPrefixes = { "JELLYFIN_", "DOTNET_", "ASPNETCORE_" };
        private SqliteUserRepository _userRepository;
        private SqliteDisplayPreferencesRepository _displayPreferencesRepository;
        /// 
        /// Gets a value indicating whether this instance can self restart.
        /// 
        /// true if this instance can self restart; otherwise, false.
        public abstract bool CanSelfRestart { get; }
        public virtual bool CanLaunchWebBrowser
        {
            get
            {
                if (!Environment.UserInteractive)
                {
                    return false;
                }
                if (StartupOptions.IsService)
                {
                    return false;
                }
                if (OperatingSystem.Id == OperatingSystemId.Windows
                    || OperatingSystem.Id == OperatingSystemId.Darwin)
                {
                    return true;
                }
                return false;
            }
        }
        /// 
        /// Occurs when [has pending restart changed].
        /// 
        public event EventHandler HasPendingRestartChanged;
        /// 
        /// Gets a value indicating whether this instance has changes that require the entire application to restart.
        /// 
        /// true if this instance has pending application restart; otherwise, false.
        public bool HasPendingRestart { get; private set; }
        /// 
        public bool IsShuttingDown { get; private set; }
        /// 
        /// Gets the logger.
        /// 
        protected ILogger Logger { get; }
        private IPlugin[] _plugins;
        /// 
        /// Gets the plugins.
        /// 
        /// The plugins.
        public IReadOnlyList Plugins => _plugins;
        /// 
        /// Gets the logger factory.
        /// 
        protected ILoggerFactory LoggerFactory { get; }
        /// 
        /// Gets or sets the application paths.
        /// 
        /// The application paths.
        protected ServerApplicationPaths ApplicationPaths { get; set; }
        /// 
        /// Gets or sets all concrete types.
        /// 
        /// All concrete types.
        private Type[] _allConcreteTypes;
        /// 
        /// The disposable parts.
        /// 
        private readonly List _disposableParts = new List();
        /// 
        /// Gets the configuration manager.
        /// 
        /// The configuration manager.
        protected IConfigurationManager ConfigurationManager { get; set; }
        public IFileSystem FileSystemManager { get; set; }
        /// 
        public PackageVersionClass SystemUpdateLevel
        {
            get
            {
#if BETA
                return PackageVersionClass.Beta;
#else
                return PackageVersionClass.Release;
#endif
            }
        }
        /// 
        /// Gets or sets the service provider.
        /// 
        public IServiceProvider ServiceProvider { get; set; }
        /// 
        /// Gets the http port for the webhost.
        /// 
        public int HttpPort { get; private set; }
        /// 
        /// Gets the https port for the webhost.
        /// 
        public int HttpsPort { get; private set; }
        /// 
        /// Gets the server configuration manager.
        /// 
        /// The server configuration manager.
        public IServerConfigurationManager ServerConfigurationManager => (IServerConfigurationManager)ConfigurationManager;
        /// 
        /// Gets or sets the user manager.
        /// 
        /// The user manager.
        public IUserManager UserManager { get; set; }
        /// 
        /// Gets or sets the library manager.
        /// 
        /// The library manager.
        internal ILibraryManager LibraryManager { get; set; }
        /// 
        /// Gets or sets the directory watchers.
        /// 
        /// The directory watchers.
        private ILibraryMonitor LibraryMonitor { get; set; }
        /// 
        /// Gets or sets the provider manager.
        /// 
        /// The provider manager.
        private IProviderManager ProviderManager { get; set; }
        /// 
        /// Gets or sets the HTTP server.
        /// 
        /// The HTTP server.
        private IHttpServer HttpServer { get; set; }
        private IDtoService DtoService { get; set; }
        public IImageProcessor ImageProcessor { get; set; }
        /// 
        /// Gets or sets the media encoder.
        /// 
        /// The media encoder.
        private IMediaEncoder MediaEncoder { get; set; }
        private ISubtitleEncoder SubtitleEncoder { get; set; }
        private ISessionManager SessionManager { get; set; }
        private ILiveTvManager LiveTvManager { get; set; }
        public LocalizationManager LocalizationManager { get; set; }
        private IEncodingManager EncodingManager { get; set; }
        private IChannelManager ChannelManager { get; set; }
        /// 
        /// Gets or sets the user data repository.
        /// 
        /// The user data repository.
        private IUserDataManager UserDataManager { get; set; }
        internal SqliteItemRepository ItemRepository { get; set; }
        private INotificationManager NotificationManager { get; set; }
        private ISubtitleManager SubtitleManager { get; set; }
        private IChapterManager ChapterManager { get; set; }
        private IDeviceManager DeviceManager { get; set; }
        internal IUserViewManager UserViewManager { get; set; }
        private IAuthenticationRepository AuthenticationRepository { get; set; }
        private ITVSeriesManager TVSeriesManager { get; set; }
        private ICollectionManager CollectionManager { get; set; }
        private IMediaSourceManager MediaSourceManager { get; set; }
        /// 
        /// Gets the installation manager.
        /// 
        /// The installation manager.
        protected IInstallationManager InstallationManager { get; private set; }
        protected IAuthService AuthService { get; private set; }
        public IStartupOptions StartupOptions { get; }
        internal IImageEncoder ImageEncoder { get; private set; }
        protected readonly IXmlSerializer XmlSerializer;
        protected ISocketFactory SocketFactory { get; private set; }
        protected ITaskManager TaskManager { get; private set; }
        public IHttpClient HttpClient { get; private set; }
        protected INetworkManager NetworkManager { get; set; }
        public IJsonSerializer JsonSerializer { get; private set; }
        protected IIsoManager IsoManager { get; private set; }
        /// 
        /// Initializes a new instance of the  class.
        /// 
        public ApplicationHost(
            ServerApplicationPaths applicationPaths,
            ILoggerFactory loggerFactory,
            IStartupOptions options,
            IFileSystem fileSystem,
            IImageEncoder imageEncoder,
            INetworkManager networkManager)
        {
            XmlSerializer = new MyXmlSerializer();
            NetworkManager = networkManager;
            networkManager.LocalSubnetsFn = GetConfiguredLocalSubnets;
            ApplicationPaths = applicationPaths;
            LoggerFactory = loggerFactory;
            FileSystemManager = fileSystem;
            ConfigurationManager = new ServerConfigurationManager(ApplicationPaths, LoggerFactory, XmlSerializer, FileSystemManager);
            Logger = LoggerFactory.CreateLogger("App");
            StartupOptions = options;
            ImageEncoder = imageEncoder;
            fileSystem.AddShortcutHandler(new MbLinkShortcutHandler(fileSystem));
            NetworkManager.NetworkChanged += OnNetworkChanged;
        }
        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);
        }
        private string[] GetConfiguredLocalSubnets()
        {
            return ServerConfigurationManager.Configuration.LocalNetworkSubnets;
        }
        private void OnNetworkChanged(object sender, EventArgs e)
        {
            _validAddressResults.Clear();
        }
        /// 
        public Version ApplicationVersion { get; } = typeof(ApplicationHost).Assembly.GetName().Version;
        /// 
        public string ApplicationVersionString { get; } = typeof(ApplicationHost).Assembly.GetName().Version.ToString(3);
        /// 
        /// Gets the current application user agent.
        /// 
        /// The application user agent.
        public string ApplicationUserAgent => Name.Replace(' ', '-') + "/" + ApplicationVersionString;
        /// 
        /// Gets the email address for use within a comment section of a user agent field.
        /// Presently used to provide contact information to MusicBrainz service.
        /// 
        public string ApplicationUserAgentAddress { get; } = "team@jellyfin.org";
        /// 
        /// Gets the current application name.
        /// 
        /// The application name.
        public string ApplicationProductName { get; } = FileVersionInfo.GetVersionInfo(Assembly.GetEntryAssembly().Location).ProductName;
        private DeviceId _deviceId;
        public string SystemId
        {
            get
            {
                if (_deviceId == null)
                {
                    _deviceId = new DeviceId(ApplicationPaths, LoggerFactory);
                }
                return _deviceId.Value;
            }
        }
        /// 
        /// Gets the name.
        /// 
        /// The name.
        public string Name => ApplicationProductName;
        /// 
        /// Creates an instance of type and resolves all constructor dependencies.
        /// 
        /// The type.
        /// System.Object.
        public object CreateInstance(Type type)
            => ActivatorUtilities.CreateInstance(ServiceProvider, type);
        /// 
        /// Creates an instance of type and resolves all constructor dependencies.
        /// 
        /// /// The type.
        /// T.
        public T CreateInstance()
            => ActivatorUtilities.CreateInstance(ServiceProvider);
        /// 
        /// Creates the instance safe.
        /// 
        /// The type.
        /// System.Object.
        protected object CreateInstanceSafe(Type type)
        {
            try
            {
                Logger.LogDebug("Creating instance of {Type}", type);
                return ActivatorUtilities.CreateInstance(ServiceProvider, type);
            }
            catch (Exception ex)
            {
                Logger.LogError(ex, "Error creating {Type}", type);
                return null;
            }
        }
        /// 
        /// Resolves this instance.
        /// 
        /// The type
        /// ``0.
        public T Resolve() => ServiceProvider.GetService();
        /// 
        /// Gets the export types.
        /// 
        /// The type.
        /// IEnumerable{Type}.
        public IEnumerable GetExportTypes()
        {
            var currentType = typeof(T);
            return _allConcreteTypes.Where(i => currentType.IsAssignableFrom(i));
        }
        /// 
        public IReadOnlyCollection GetExports(bool manageLifetime = true)
        {
            // Convert to list so this isn't executed for each iteration
            var parts = GetExportTypes()
                .Select(CreateInstanceSafe)
                .Where(i => i != null)
                .Cast()
                .ToList();
            if (manageLifetime)
            {
                lock (_disposableParts)
                {
                    _disposableParts.AddRange(parts.OfType());
                }
            }
            return parts;
        }
        /// 
        /// Runs the startup tasks.
        /// 
        /// .
        public async Task RunStartupTasksAsync()
        {
            Logger.LogInformation("Running startup tasks");
            Resolve().AddTasks(GetExports(false));
            ConfigurationManager.ConfigurationUpdated += OnConfigurationUpdated;
            MediaEncoder.SetFFmpegPath();
            Logger.LogInformation("ServerId: {0}", SystemId);
            var entryPoints = GetExports();
            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");
            HttpServer.GlobalResponse = null;
            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 StartEntryPoints(IEnumerable 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();
            }
        }
        /// 
        public async Task InitAsync(IServiceCollection serviceCollection, IConfiguration startupConfig)
        {
            HttpPort = ServerConfigurationManager.Configuration.HttpServerPortNumber;
            HttpsPort = ServerConfigurationManager.Configuration.HttpsPortNumber;
            // Safeguard against invalid configuration
            if (HttpPort == HttpsPort)
            {
                HttpPort = ServerConfiguration.DefaultHttpPort;
                HttpsPort = ServerConfiguration.DefaultHttpsPort;
            }
            JsonSerializer = new JsonSerializer();
            if (Plugins != null)
            {
                var pluginBuilder = new StringBuilder();
                foreach (var plugin in Plugins)
                {
                    pluginBuilder.AppendLine(
                        string.Format(
                            CultureInfo.InvariantCulture,
                            "{0} {1}",
                            plugin.Name,
                            plugin.Version));
                }
                Logger.LogInformation("Plugins: {Plugins}", pluginBuilder.ToString());
            }
            DiscoverTypes();
            await RegisterServices(serviceCollection, startupConfig).ConfigureAwait(false);
        }
        public async Task ExecuteWebsocketHandlerAsync(HttpContext context, Func next)
        {
            if (!context.WebSockets.IsWebSocketRequest)
            {
                await next().ConfigureAwait(false);
                return;
            }
            await HttpServer.ProcessWebSocketRequest(context).ConfigureAwait(false);
        }
        public async Task ExecuteHttpHandlerAsync(HttpContext context, Func next)
        {
            if (context.WebSockets.IsWebSocketRequest)
            {
                await next().ConfigureAwait(false);
                return;
            }
            var request = context.Request;
            var response = context.Response;
            var localPath = context.Request.Path.ToString();
            var req = new WebSocketSharpRequest(request, response, request.Path, LoggerFactory.CreateLogger());
            await HttpServer.RequestHandler(req, request.GetDisplayUrl(), request.Host.ToString(), localPath, context.RequestAborted).ConfigureAwait(false);
        }
        /// 
        /// Registers services/resources with the service collection that will be available via DI.
        /// 
        protected async Task RegisterServices(IServiceCollection serviceCollection, IConfiguration startupConfig)
        {
            serviceCollection.AddMemoryCache();
            serviceCollection.AddSingleton(ConfigurationManager);
            serviceCollection.AddSingleton(this);
            serviceCollection.AddSingleton(ApplicationPaths);
            serviceCollection.AddSingleton(JsonSerializer);
            // TODO: Support for injecting ILogger should be deprecated in favour of ILogger and this removed
            serviceCollection.AddSingleton(Logger);
            serviceCollection.AddSingleton(FileSystemManager);
            serviceCollection.AddSingleton();
            HttpClient = new HttpClientManager.HttpClientManager(
                ApplicationPaths,
                LoggerFactory.CreateLogger(),
                FileSystemManager,
                () => ApplicationUserAgent);
            serviceCollection.AddSingleton(HttpClient);
            serviceCollection.AddSingleton(NetworkManager);
            IsoManager = new IsoManager();
            serviceCollection.AddSingleton(IsoManager);
            TaskManager = new TaskManager(ApplicationPaths, JsonSerializer, LoggerFactory, FileSystemManager);
            serviceCollection.AddSingleton(TaskManager);
            serviceCollection.AddSingleton(XmlSerializer);
            serviceCollection.AddSingleton(typeof(IStreamHelper), typeof(StreamHelper));
            var cryptoProvider = new CryptographyProvider();
            serviceCollection.AddSingleton(cryptoProvider);
            SocketFactory = new SocketFactory();
            serviceCollection.AddSingleton(SocketFactory);
            serviceCollection.AddSingleton(typeof(IInstallationManager), typeof(InstallationManager));
            serviceCollection.AddSingleton(typeof(IZipClient), typeof(ZipClient));
            serviceCollection.AddSingleton(typeof(IHttpResultFactory), typeof(HttpResultFactory));
            serviceCollection.AddSingleton(this);
            serviceCollection.AddSingleton(ApplicationPaths);
            serviceCollection.AddSingleton(ServerConfigurationManager);
            LocalizationManager = new LocalizationManager(ServerConfigurationManager, JsonSerializer, LoggerFactory.CreateLogger());
            await LocalizationManager.LoadAll().ConfigureAwait(false);
            serviceCollection.AddSingleton(LocalizationManager);
            serviceCollection.AddSingleton(new BdInfoExaminer(FileSystemManager));
            UserDataManager = new UserDataManager(LoggerFactory, ServerConfigurationManager, () => UserManager);
            serviceCollection.AddSingleton(UserDataManager);
            _displayPreferencesRepository = new SqliteDisplayPreferencesRepository(
                LoggerFactory.CreateLogger(),
                ApplicationPaths,
                FileSystemManager);
            serviceCollection.AddSingleton(_displayPreferencesRepository);
            ItemRepository = new SqliteItemRepository(ServerConfigurationManager, this, LoggerFactory.CreateLogger(), LocalizationManager);
            serviceCollection.AddSingleton(ItemRepository);
            AuthenticationRepository = GetAuthenticationRepository();
            serviceCollection.AddSingleton(AuthenticationRepository);
            _userRepository = GetUserRepository();
            UserManager = new UserManager(
                LoggerFactory.CreateLogger(),
                _userRepository,
                XmlSerializer,
                NetworkManager,
                () => ImageProcessor,
                () => DtoService,
                this,
                JsonSerializer,
                FileSystemManager,
                cryptoProvider);
            serviceCollection.AddSingleton(UserManager);
            MediaEncoder = new MediaBrowser.MediaEncoding.Encoder.MediaEncoder(
                LoggerFactory.CreateLogger(),
                ServerConfigurationManager,
                FileSystemManager,
                LocalizationManager,
                () => SubtitleEncoder,
                startupConfig,
                StartupOptions.FFmpegPath);
            serviceCollection.AddSingleton(MediaEncoder);
            LibraryManager = new LibraryManager(this, LoggerFactory, TaskManager, UserManager, ServerConfigurationManager, UserDataManager, () => LibraryMonitor, FileSystemManager, () => ProviderManager, () => UserViewManager, MediaEncoder);
            serviceCollection.AddSingleton(LibraryManager);
            var musicManager = new MusicManager(LibraryManager);
            serviceCollection.AddSingleton(musicManager);
            LibraryMonitor = new LibraryMonitor(LoggerFactory, LibraryManager, ServerConfigurationManager, FileSystemManager);
            serviceCollection.AddSingleton(LibraryMonitor);
            serviceCollection.AddSingleton(new SearchEngine(LoggerFactory, LibraryManager, UserManager));
            CertificateInfo = GetCertificateInfo(true);
            Certificate = GetCertificate(CertificateInfo);
            serviceCollection.AddSingleton();
            serviceCollection.AddSingleton();
            serviceCollection.AddSingleton();
            ImageProcessor = new ImageProcessor(LoggerFactory.CreateLogger(), ServerConfigurationManager.ApplicationPaths, FileSystemManager, ImageEncoder, () => LibraryManager, () => MediaEncoder);
            serviceCollection.AddSingleton(ImageProcessor);
            TVSeriesManager = new TVSeriesManager(UserManager, UserDataManager, LibraryManager, ServerConfigurationManager);
            serviceCollection.AddSingleton(TVSeriesManager);
            DeviceManager = new DeviceManager(AuthenticationRepository, JsonSerializer, LibraryManager, LocalizationManager, UserManager, FileSystemManager, LibraryMonitor, ServerConfigurationManager);
            serviceCollection.AddSingleton(DeviceManager);
            MediaSourceManager = new MediaSourceManager(ItemRepository, ApplicationPaths, LocalizationManager, UserManager, LibraryManager, LoggerFactory, JsonSerializer, FileSystemManager, UserDataManager, () => MediaEncoder);
            serviceCollection.AddSingleton(MediaSourceManager);
            SubtitleManager = new SubtitleManager(LoggerFactory, FileSystemManager, LibraryMonitor, MediaSourceManager, LocalizationManager);
            serviceCollection.AddSingleton(SubtitleManager);
            ProviderManager = new ProviderManager(HttpClient, SubtitleManager, ServerConfigurationManager, LibraryMonitor, LoggerFactory, FileSystemManager, ApplicationPaths, () => LibraryManager, JsonSerializer);
            serviceCollection.AddSingleton(ProviderManager);
            DtoService = new DtoService(LoggerFactory, LibraryManager, UserDataManager, ItemRepository, ImageProcessor, ProviderManager, this, () => MediaSourceManager, () => LiveTvManager);
            serviceCollection.AddSingleton(DtoService);
            ChannelManager = new ChannelManager(
                UserManager,
                DtoService,
                LibraryManager,
                LoggerFactory.CreateLogger(),
                ServerConfigurationManager,
                FileSystemManager,
                UserDataManager,
                JsonSerializer,
                ProviderManager);
            serviceCollection.AddSingleton(ChannelManager);
            SessionManager = new SessionManager(
                LoggerFactory.CreateLogger(),
                UserDataManager,
                LibraryManager,
                UserManager,
                musicManager,
                DtoService,
                ImageProcessor,
                this,
                AuthenticationRepository,
                DeviceManager,
                MediaSourceManager);
            serviceCollection.AddSingleton(SessionManager);
            serviceCollection.AddSingleton(
                new DlnaManager(XmlSerializer, FileSystemManager, ApplicationPaths, LoggerFactory, JsonSerializer, this));
            CollectionManager = new CollectionManager(LibraryManager, ApplicationPaths, LocalizationManager, FileSystemManager, LibraryMonitor, LoggerFactory, ProviderManager);
            serviceCollection.AddSingleton(CollectionManager);
            serviceCollection.AddSingleton(typeof(IPlaylistManager), typeof(PlaylistManager));
            LiveTvManager = new LiveTvManager(this, ServerConfigurationManager, LoggerFactory, ItemRepository, ImageProcessor, UserDataManager, DtoService, UserManager, LibraryManager, TaskManager, LocalizationManager, JsonSerializer, FileSystemManager, () => ChannelManager);
            serviceCollection.AddSingleton(LiveTvManager);
            UserViewManager = new UserViewManager(LibraryManager, LocalizationManager, UserManager, ChannelManager, LiveTvManager, ServerConfigurationManager);
            serviceCollection.AddSingleton(UserViewManager);
            NotificationManager = new NotificationManager(
                LoggerFactory.CreateLogger(),
                UserManager,
                ServerConfigurationManager);
            serviceCollection.AddSingleton(NotificationManager);
            serviceCollection.AddSingleton(new DeviceDiscovery(ServerConfigurationManager));
            ChapterManager = new ChapterManager(ItemRepository);
            serviceCollection.AddSingleton(ChapterManager);
            EncodingManager = new MediaEncoder.EncodingManager(
                LoggerFactory.CreateLogger(),
                FileSystemManager,
                MediaEncoder,
                ChapterManager,
                LibraryManager);
            serviceCollection.AddSingleton(EncodingManager);
            var activityLogRepo = GetActivityLogRepository();
            serviceCollection.AddSingleton(activityLogRepo);
            serviceCollection.AddSingleton(new ActivityManager(activityLogRepo, UserManager));
            var authContext = new AuthorizationContext(AuthenticationRepository, UserManager);
            serviceCollection.AddSingleton(authContext);
            serviceCollection.AddSingleton(new SessionContext(UserManager, authContext, SessionManager));
            AuthService = new AuthService(LoggerFactory.CreateLogger(), authContext, ServerConfigurationManager, SessionManager, NetworkManager);
            serviceCollection.AddSingleton(AuthService);
            SubtitleEncoder = new MediaBrowser.MediaEncoding.Subtitles.SubtitleEncoder(
                LibraryManager,
                LoggerFactory.CreateLogger(),
                ApplicationPaths,
                FileSystemManager,
                MediaEncoder,
                HttpClient,
                MediaSourceManager);
            serviceCollection.AddSingleton(SubtitleEncoder);
            serviceCollection.AddSingleton(typeof(IResourceFileManager), typeof(ResourceFileManager));
            serviceCollection.AddSingleton();
            serviceCollection.AddSingleton(typeof(IAttachmentExtractor), typeof(MediaBrowser.MediaEncoding.Attachments.AttachmentExtractor));
            _displayPreferencesRepository.Initialize();
            var userDataRepo = new SqliteUserDataRepository(LoggerFactory.CreateLogger(), ApplicationPaths);
            SetStaticProperties();
            ((UserManager)UserManager).Initialize();
            ((UserDataManager)UserDataManager).Repository = userDataRepo;
            ItemRepository.Initialize(userDataRepo, UserManager);
            ((LibraryManager)LibraryManager).ItemRepository = ItemRepository;
        }
        /// 
        /// Create services registered with the service container that need to be initialized at application startup.
        /// 
        public void InitializeServices()
        {
            HttpServer = Resolve();
        }
        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