123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395 |
- #pragma warning disable CS1591
- using System;
- 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.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.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.Security;
- using Emby.Server.Implementations.Serialization;
- using Emby.Server.Implementations.Session;
- using Emby.Server.Implementations.SyncPlay;
- using Emby.Server.Implementations.TV;
- using Emby.Server.Implementations.Udp;
- using Emby.Server.Implementations.Updates;
- using Jellyfin.Api.Helpers;
- 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.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.QuickConnect;
- using MediaBrowser.Controller.Resolvers;
- using MediaBrowser.Controller.Security;
- 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 OperatingSystem = MediaBrowser.Common.System.OperatingSystem;
- using WebSocketManager = Emby.Server.Implementations.HttpServer.WebSocketManager;
- namespace Emby.Server.Implementations
- {
- /// <summary>
- /// Class CompositionRoot.
- /// </summary>
- public abstract class ApplicationHost : IServerApplicationHost, IDisposable
- {
- /// <summary>
- /// The environment variable prefixes to log at server startup.
- /// </summary>
- private static readonly string[] _relevantEnvVarPrefixes = { "JELLYFIN_", "DOTNET_", "ASPNETCORE_" };
- private readonly IFileSystem _fileSystemManager;
- private readonly IConfiguration _startupConfig;
- private readonly IXmlSerializer _xmlSerializer;
- private readonly IJsonSerializer _jsonSerializer;
- private readonly IStartupOptions _startupOptions;
- private readonly IPluginManager _pluginManager;
- private List<Type> _creatingInstances;
- private IMediaEncoder _mediaEncoder;
- private ISessionManager _sessionManager;
- private string[] _urlPrefixes;
- /// <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;
- }
- if (OperatingSystem.Id == OperatingSystemId.Windows
- || OperatingSystem.Id == OperatingSystemId.Darwin)
- {
- return true;
- }
- return false;
- }
- }
- /// <summary>
- /// Gets the <see cref="INetworkManager"/> singleton instance.
- /// </summary>
- public INetworkManager NetManager { get; internal set; }
- /// <summary>
- /// Occurs when [has pending restart changed].
- /// </summary>
- public event EventHandler HasPendingRestartChanged;
- /// <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; }
- protected IServiceCollection ServiceCollection { get; }
- /// <summary>
- /// Gets the logger factory.
- /// </summary>
- protected ILoggerFactory LoggerFactory { get; }
- /// <summary>
- /// Gets or sets the application paths.
- /// </summary>
- /// <value>The application paths.</value>
- protected IServerApplicationPaths ApplicationPaths { get; set; }
- /// <summary>
- /// Gets or sets all concrete types.
- /// </summary>
- /// <value>All concrete types.</value>
- private Type[] _allConcreteTypes;
- /// <summary>
- /// The disposable parts.
- /// </summary>
- private readonly List<IDisposable> _disposableParts = new List<IDisposable>();
- /// <summary>
- /// Gets or sets the configuration manager.
- /// </summary>
- /// <value>The configuration manager.</value>
- protected IConfigurationManager ConfigurationManager { get; set; }
- /// <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; }
- /// <summary>
- /// Gets the value of the PublishedServerUrl setting.
- /// </summary>
- public string PublishedServerUrl => _startupOptions.PublishedServerUrl ?? _startupConfig[UdpServer.AddressOverrideConfigKey];
- /// <summary>
- /// Gets the server configuration manager.
- /// </summary>
- /// <value>The server configuration manager.</value>
- public IServerConfigurationManager ServerConfigurationManager => (IServerConfigurationManager)ConfigurationManager;
- /// <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>
- /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
- /// <param name="serviceCollection">Instance of the <see cref="IServiceCollection"/> interface.</param>
- public ApplicationHost(
- IServerApplicationPaths applicationPaths,
- ILoggerFactory loggerFactory,
- IStartupOptions options,
- IConfiguration startupConfig,
- IFileSystem fileSystem,
- IServiceCollection serviceCollection)
- {
- _xmlSerializer = new MyXmlSerializer();
- _jsonSerializer = new JsonSerializer();
- ServiceCollection = serviceCollection;
- ApplicationPaths = applicationPaths;
- LoggerFactory = loggerFactory;
- _fileSystemManager = fileSystem;
- ConfigurationManager = new ServerConfigurationManager(ApplicationPaths, LoggerFactory, _xmlSerializer, _fileSystemManager);
- // Have to migrate settings here as migration subsystem not yet initialised.
- MigrateNetworkConfiguration();
- // Have to pre-register the NetworkConfigurationFactory, as the configuration sub-system is not yet initialised.
- ConfigurationManager.RegisterConfiguration<NetworkConfigurationFactory>();
- NetManager = new NetworkManager((IServerConfigurationManager)ConfigurationManager, LoggerFactory.CreateLogger<NetworkManager>());
- Logger = LoggerFactory.CreateLogger<ApplicationHost>();
- _startupOptions = options;
- _startupConfig = startupConfig;
- // Initialize runtime stat collection
- if (ServerConfigurationManager.Configuration.EnableMetrics)
- {
- DotNetRuntimeStatsBuilder.Default().StartCollecting();
- }
- fileSystem.AddShortcutHandler(new MbLinkShortcutHandler(fileSystem));
- ApplicationVersion = typeof(ApplicationHost).Assembly.GetName().Version;
- ApplicationVersionString = ApplicationVersion.ToString(3);
- ApplicationUserAgent = Name.Replace(' ', '-') + "/" + ApplicationVersionString;
- _pluginManager = new PluginManager(
- LoggerFactory.CreateLogger<PluginManager>(),
- this,
- ServerConfigurationManager.Configuration,
- ApplicationPaths.PluginsPath,
- ApplicationVersion);
- }
- /// <summary>
- /// Temporary function to migration network settings out of system.xml and into network.xml.
- /// TODO: remove at the point when a fixed migration path has been decided upon.
- /// </summary>
- private void MigrateNetworkConfiguration()
- {
- string path = Path.Combine(ConfigurationManager.CommonApplicationPaths.ConfigurationDirectoryPath, "network.xml");
- if (!File.Exists(path))
- {
- var networkSettings = new NetworkConfiguration();
- ClassMigrationHelper.CopyProperties(ServerConfigurationManager.Configuration, networkSettings);
- _xmlSerializer.SerializeToFile(networkSettings, path);
- Logger?.LogDebug("Successfully migrated network settings.");
- }
- }
- 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);
- }
- /// <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;
- private DeviceId _deviceId;
- public string SystemId
- {
- get
- {
- if (_deviceId == null)
- {
- _deviceId = new DeviceId(ApplicationPaths, LoggerFactory);
- }
- return _deviceId.Value;
- }
- }
- /// <inheritdoc/>
- public string Name => ApplicationProductName;
- /// <summary>
- /// Creates an instance of type and resolves all constructor dependencies.
- /// </summary>
- /// <param name="type">The type.</param>
- /// <returns>System.Object.</returns>
- public object CreateInstance(Type type)
- => ActivatorUtilities.CreateInstance(ServiceProvider, type);
- /// <summary>
- /// Creates an instance of type and resolves all constructor dependencies.
- /// </summary>
- /// /// <typeparam name="T">The type.</typeparam>
- /// <returns>T.</returns>
- public T CreateInstance<T>()
- => ActivatorUtilities.CreateInstance<T>(ServiceProvider);
- /// <summary>
- /// Creates the instance safe.
- /// </summary>
- /// <param name="type">The type.</param>
- /// <returns>System.Object.</returns>
- protected object CreateInstanceSafe(Type type)
- {
- if (_creatingInstances == null)
- {
- _creatingInstances = new List<Type>();
- }
- if (_creatingInstances.IndexOf(type) != -1)
- {
- 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 ExternalException("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);
- return _allConcreteTypes.Where(i => currentType.IsAssignableFrom(i));
- }
- /// <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)
- {
- lock (_disposableParts)
- {
- _disposableParts.AddRange(parts.OfType<IDisposable>());
- }
- }
- return parts;
- }
- /// <inheritdoc />
- public IReadOnlyCollection<T> GetExports<T>(CreationDelegate 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)
- {
- lock (_disposableParts)
- {
- _disposableParts.AddRange(parts.OfType<IDisposable>());
- }
- }
- return parts;
- }
- /// <summary>
- /// Runs the startup tasks.
- /// </summary>
- /// <returns><see cref="Task" />.</returns>
- public async Task RunStartupTasksAsync()
- {
- Logger.LogInformation("Running startup tasks");
- Resolve<ITaskManager>().AddTasks(GetExports<IScheduledTask>(false));
- ConfigurationManager.ConfigurationUpdated += OnConfigurationUpdated;
- ConfigurationManager.NamedConfigurationUpdated += OnConfigurationUpdated;
- _mediaEncoder.SetFFmpegPath();
- Logger.LogInformation("ServerId: {0}", SystemId);
- var entryPoints = GetExports<IServerEntryPoint>();
- 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;
- 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()
- {
- var networkConfiguration = ServerConfigurationManager.GetNetworkConfiguration();
- HttpPort = networkConfiguration.HttpServerPortNumber;
- HttpsPort = networkConfiguration.HttpsPortNumber;
- // Safeguard against invalid configuration
- if (HttpPort == HttpsPort)
- {
- HttpPort = NetworkConfiguration.DefaultHttpPort;
- HttpsPort = NetworkConfiguration.DefaultHttpsPort;
- }
- CertificateInfo = new CertificateInfo
- {
- Path = networkConfiguration.CertificatePath,
- Password = networkConfiguration.CertificatePassword
- };
- Certificate = GetCertificate(CertificateInfo);
- DiscoverTypes();
- RegisterServices();
- _pluginManager.RegisterServices(ServiceCollection);
- }
- /// <summary>
- /// Registers services/resources with the service collection that will be available via DI.
- /// </summary>
- protected virtual void RegisterServices()
- {
- ServiceCollection.AddSingleton(_startupOptions);
- ServiceCollection.AddMemoryCache();
- ServiceCollection.AddSingleton(ConfigurationManager);
- ServiceCollection.AddSingleton<IApplicationHost>(this);
- ServiceCollection.AddSingleton<IPluginManager>(_pluginManager);
- ServiceCollection.AddSingleton<IApplicationPaths>(ApplicationPaths);
- ServiceCollection.AddSingleton<IJsonSerializer, JsonSerializer>();
- 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<IServerApplicationPaths>(ApplicationPaths);
- ServiceCollection.AddSingleton(ServerConfigurationManager);
- ServiceCollection.AddSingleton<ILocalizationManager, LocalizationManager>();
- ServiceCollection.AddSingleton<IBlurayExaminer, BdInfoExaminer>();
- ServiceCollection.AddSingleton<IUserDataRepository, SqliteUserDataRepository>();
- ServiceCollection.AddSingleton<IUserDataManager, UserDataManager>();
- ServiceCollection.AddSingleton<IItemRepository, SqliteItemRepository>();
- ServiceCollection.AddSingleton<IAuthenticationRepository, AuthenticationRepository>();
- // TODO: Refactor to eliminate the circular dependency here so that Lazy<T> isn't required
- ServiceCollection.AddTransient(provider => new Lazy<IDtoService>(provider.GetRequiredService<IDtoService>));
- // TODO: Refactor to eliminate the circular dependency here so that Lazy<T> isn't required
- ServiceCollection.AddTransient(provider => new Lazy<EncodingHelper>(provider.GetRequiredService<EncodingHelper>));
- ServiceCollection.AddSingleton<IMediaEncoder, MediaBrowser.MediaEncoding.Encoder.MediaEncoder>();
- // 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<IMusicManager, MusicManager>();
- ServiceCollection.AddSingleton<ILibraryMonitor, LibraryMonitor>();
- ServiceCollection.AddSingleton<ISearchEngine, SearchEngine>();
- ServiceCollection.AddSingleton<IWebSocketManager, WebSocketManager>();
- ServiceCollection.AddSingleton<IImageProcessor, ImageProcessor>();
- ServiceCollection.AddSingleton<ITVSeriesManager, TVSeriesManager>();
- ServiceCollection.AddSingleton<IDeviceManager, DeviceManager>();
- 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.AddSingleton<IAuthorizationContext, AuthorizationContext>();
- ServiceCollection.AddSingleton<ISessionContext, SessionContext>();
- ServiceCollection.AddSingleton<IAuthService, AuthService>();
- ServiceCollection.AddSingleton<IQuickConnect, QuickConnectManager>();
- ServiceCollection.AddSingleton<ISubtitleEncoder, MediaBrowser.MediaEncoding.Subtitles.SubtitleEncoder>();
- ServiceCollection.AddSingleton<EncodingHelper>();
- ServiceCollection.AddSingleton<IAttachmentExtractor, MediaBrowser.MediaEncoding.Attachments.AttachmentExtractor>();
- ServiceCollection.AddSingleton<TranscodingJobHelper>();
- ServiceCollection.AddScoped<MediaInfoHelper>();
- ServiceCollection.AddScoped<AudioHelper>();
- ServiceCollection.AddScoped<DynamicHlsHelper>();
- }
- /// <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>();
- ((AuthenticationRepository)Resolve<IAuthenticationRepository>()).Initialize();
- 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}", 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(CertificateInfo info)
- {
- var certificateLocation = info?.Path;
- if (string.IsNullOrWhiteSpace(certificateLocation))
- {
- return null;
- }
- try
- {
- if (!File.Exists(certificateLocation))
- {
- return null;
- }
- // Don't use an empty string password
- var password = string.IsNullOrWhiteSpace(info.Password) ? null : info.Password;
- var localCert = new X509Certificate2(certificateLocation, password, X509KeyStorageFlags.UserKeySet);
- // localCert.PrivateKey = PrivateKey.CreateFromFile(pvk_file).RSA;
- if (!localCert.HasPrivateKey)
- {
- Logger.LogError("No private key included in SSL cert {CertificateLocation}.", certificateLocation);
- return null;
- }
- return localCert;
- }
- catch (Exception ex)
- {
- Logger.LogError(ex, "Error loading cert from {CertificateLocation}", certificateLocation);
- 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 = ServerConfigurationManager;
- 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.JsonSerializer = Resolve<IJsonSerializer>();
- CollectionFolder.ApplicationHost = this;
- }
- /// <summary>
- /// Finds plugin components and register them with the appropriate services.
- /// </summary>
- private void FindParts()
- {
- if (!ServerConfigurationManager.Configuration.IsPortAuthorized)
- {
- ServerConfigurationManager.Configuration.IsPortAuthorized = true;
- ConfigurationManager.SaveConfiguration();
- }
- ConfigurationManager.AddParts(GetExports<IConfigurationFactory>());
- _pluginManager.CreatePlugins();
- _urlPrefixes = GetUrlPrefixes().ToArray();
- 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;
- }
- }
- }
- }
- private CertificateInfo CertificateInfo { get; set; }
- public X509Certificate2 Certificate { get; private set; }
- private IEnumerable<string> GetUrlPrefixes()
- {
- var hosts = new[] { "+" };
- return hosts.SelectMany(i =>
- {
- var prefixes = new List<string>
- {
- "http://" + i + ":" + HttpPort + "/"
- };
- if (CertificateInfo != null)
- {
- prefixes.Add("https://" + i + ":" + HttpsPort + "/");
- }
- return prefixes;
- });
- }
- /// <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>
- protected void OnConfigurationUpdated(object sender, EventArgs e)
- {
- var requiresRestart = false;
- var networkConfiguration = ServerConfigurationManager.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 (ServerConfigurationManager.Configuration.IsPortAuthorized)
- {
- ServerConfigurationManager.Configuration.IsPortAuthorized = false;
- ServerConfigurationManager.SaveConfiguration();
- requiresRestart = true;
- }
- }
- }
- if (!_urlPrefixes.SequenceEqual(GetUrlPrefixes(), StringComparer.OrdinalIgnoreCase))
- {
- 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(CertificateInfo?.Path, 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 that 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(ProviderUtils).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;
- foreach (var i in GetAssembliesWithPartsInternal())
- {
- yield return i;
- }
- }
- protected abstract IEnumerable<Assembly> GetAssembliesWithPartsInternal();
- /// <summary>
- /// Gets the system status.
- /// </summary>
- /// <param name="source">Where this request originated.</param>
- /// <returns>SystemInfo.</returns>
- public SystemInfo GetSystemInfo(IPAddress source)
- {
- 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 = OperatingSystem.Id.ToString(),
- OperatingSystemDisplayName = OperatingSystem.Name,
- CanSelfRestart = CanSelfRestart,
- CanLaunchWebBrowser = CanLaunchWebBrowser,
- HasUpdateAvailable = HasUpdateAvailable,
- TranscodingTempPath = ConfigurationManager.GetTranscodePath(),
- ServerName = FriendlyName,
- LocalAddress = GetSmartApiUrl(source),
- SupportsLibraryMonitor = true,
- EncoderLocation = _mediaEncoder.EncoderLocation,
- SystemArchitecture = RuntimeInformation.OSArchitecture,
- PackageName = _startupOptions.PackageName
- };
- }
- public IEnumerable<WakeOnLanInfo> GetWakeOnLanInfo()
- => NetManager.GetMacAddresses()
- .Select(i => new WakeOnLanInfo(i))
- .ToList();
- public PublicSystemInfo GetPublicSystemInfo(IPAddress source)
- {
- return new PublicSystemInfo
- {
- Version = ApplicationVersionString,
- ProductName = ApplicationProductName,
- Id = SystemId,
- OperatingSystem = OperatingSystem.Id.ToString(),
- ServerName = FriendlyName,
- LocalAddress = GetSmartApiUrl(source),
- StartupWizardCompleted = ConfigurationManager.CommonConfiguration.IsStartupWizardCompleted
- };
- }
- /// <inheritdoc/>
- public bool ListenWithHttps => Certificate != null && ServerConfigurationManager.GetNetworkConfiguration().EnableHttps;
- /// <inheritdoc/>
- public string GetSmartApiUrl(IPAddress ipAddress, int? port = null)
- {
- // 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(ipAddress, out port);
- // If the smartAPI doesn't start with http then treat it as a host or ip.
- if (smart.StartsWith("http", StringComparison.OrdinalIgnoreCase))
- {
- return smart.Trim('/');
- }
- return GetLocalApiUrl(smart.Trim('/'), null, port);
- }
- /// <inheritdoc/>
- public string GetSmartApiUrl(HttpRequest request, int? port = null)
- {
- // 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 port);
- // If the smartAPI doesn't start with http then treat it as a host or ip.
- if (smart.StartsWith("http", StringComparison.OrdinalIgnoreCase))
- {
- return smart.Trim('/');
- }
- return GetLocalApiUrl(smart.Trim('/'), request.Scheme, port);
- }
- /// <inheritdoc/>
- public string GetSmartApiUrl(string hostname, int? port = null)
- {
- // 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 port);
- // If the smartAPI doesn't start with http then treat it as a host or ip.
- if (smart.StartsWith("http", StringComparison.OrdinalIgnoreCase))
- {
- return smart.Trim('/');
- }
- return GetLocalApiUrl(smart.Trim('/'), null, port);
- }
- /// <inheritdoc/>
- public string GetLoopbackHttpApiUrl()
- {
- if (NetManager.IsIP6Enabled)
- {
- return GetLocalApiUrl("::1", Uri.UriSchemeHttp, HttpPort);
- }
- return GetLocalApiUrl("127.0.0.1", Uri.UriSchemeHttp, HttpPort);
- }
- /// <inheritdoc/>
- public string GetLocalApiUrl(string host, string scheme = null, int? port = null)
- {
- // 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.
- return new UriBuilder
- {
- Scheme = scheme ?? (ListenWithHttps ? Uri.UriSchemeHttps : Uri.UriSchemeHttp),
- Host = host,
- Port = port ?? (ListenWithHttps ? HttpsPort : HttpPort),
- Path = ServerConfigurationManager.GetNetworkConfiguration().BaseUrl
- }.ToString().TrimEnd('/');
- }
- public string FriendlyName =>
- string.IsNullOrEmpty(ServerConfigurationManager.Configuration.ServerName)
- ? Environment.MachineName
- : ServerConfigurationManager.Configuration.ServerName;
- /// <summary>
- /// Shuts down.
- /// </summary>
- 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 event EventHandler HasUpdateAvailableChanged;
- private bool _hasUpdateAvailable;
- public bool HasUpdateAvailable
- {
- get => _hasUpdateAvailable;
- set
- {
- var fireEvent = value && !_hasUpdateAvailable;
- _hasUpdateAvailable = value;
- if (fireEvent)
- {
- HasUpdateAvailableChanged?.Invoke(this, EventArgs.Empty);
- }
- }
- }
- 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;
- }
- }
- public virtual void LaunchUrl(string url)
- {
- if (!CanLaunchWebBrowser)
- {
- throw new NotSupportedException();
- }
- var process = new Process
- {
- StartInfo = new ProcessStartInfo
- {
- FileName = url,
- UseShellExecute = true,
- ErrorDialog = false
- },
- EnableRaisingEvents = true
- };
- process.Exited += (sender, args) => ((Process)sender).Dispose();
- try
- {
- process.Start();
- }
- catch (Exception ex)
- {
- Logger.LogError(ex, "Error launching url: {url}", url);
- throw;
- }
- }
- private bool _disposed = false;
- /// <summary>
- /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
- /// </summary>
- 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);
- var parts = _disposableParts.Distinct().Where(i => i.GetType() != type).ToList();
- _disposableParts.Clear();
- foreach (var part in parts)
- {
- Logger.LogInformation("Disposing {Type}", part.GetType().Name);
- try
- {
- part.Dispose();
- }
- catch (Exception ex)
- {
- Logger.LogError(ex, "Error disposing {Type}", part.GetType().Name);
- }
- }
- }
- _disposed = true;
- }
- }
- internal class CertificateInfo
- {
- public string Path { get; set; }
- public string Password { get; set; }
- }
- }
|