jellyfin/Emby.Server.Implementations/ApplicationHost.cs

1400 lines
52 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.Diagnostics;
2020-12-11 16:49:35 +01:00
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.Text;
2020-12-24 10:31:51 +01:00
using System.Text.Json;
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;
2017-09-09 20:51:24 +02:00
using Emby.Server.Implementations.Archiving;
using Emby.Server.Implementations.Channels;
using Emby.Server.Implementations.Collections;
using Emby.Server.Implementations.Configuration;
2017-09-09 20:51:24 +02:00
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;
2017-09-09 20:51:24 +02:00
using Emby.Server.Implementations.Net;
using Emby.Server.Implementations.Playlists;
2020-12-18 10:04:40 +01:00
using Emby.Server.Implementations.Plugins;
2020-08-26 22:24:24 +02:00
using Emby.Server.Implementations.QuickConnect;
2017-09-09 20:51:24 +02:00
using Emby.Server.Implementations.ScheduledTasks;
using Emby.Server.Implementations.Security;
2017-09-09 20:51:24 +02:00
using Emby.Server.Implementations.Serialization;
using Emby.Server.Implementations.Session;
2020-07-04 22:06:27 +02:00
using Emby.Server.Implementations.SyncPlay;
using Emby.Server.Implementations.TV;
2021-03-08 12:43:59 +01:00
using Emby.Server.Implementations.Udp;
using Emby.Server.Implementations.Updates;
2020-07-12 11:14:38 +02:00
using Jellyfin.Api.Helpers;
using Jellyfin.Networking.Configuration;
2020-09-12 17:41:37 +02:00
using Jellyfin.Networking.Manager;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Common;
using MediaBrowser.Common.Configuration;
2014-04-26 04:55:07 +02:00
using MediaBrowser.Common.Events;
using MediaBrowser.Common.Json;
2013-03-07 06:34:00 +01:00
using MediaBrowser.Common.Net;
using MediaBrowser.Common.Plugins;
using MediaBrowser.Common.Updates;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Controller;
2014-03-18 02:45:41 +01:00
using MediaBrowser.Controller.Channels;
2014-06-09 21:16:14 +02:00
using MediaBrowser.Controller.Chapters;
using MediaBrowser.Controller.Collections;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Controller.Configuration;
2014-10-11 22:38:13 +02:00
using MediaBrowser.Controller.Devices;
2014-03-13 20:08:02 +01:00
using MediaBrowser.Controller.Dlna;
using MediaBrowser.Controller.Drawing;
2013-09-04 19:02:19 +02:00
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.LiveTv;
2014-02-20 17:37:41 +01:00
using MediaBrowser.Controller.MediaEncoding;
2013-12-07 16:52:38 +01:00
using MediaBrowser.Controller.Net;
2013-07-06 23:23:32 +02:00
using MediaBrowser.Controller.Notifications;
using MediaBrowser.Controller.Persistence;
2014-08-02 04:34:45 +02:00
using MediaBrowser.Controller.Playlists;
using MediaBrowser.Controller.Plugins;
using MediaBrowser.Controller.Providers;
2020-04-15 21:28:42 +02:00
using MediaBrowser.Controller.QuickConnect;
using MediaBrowser.Controller.Resolvers;
2014-05-07 20:38:50 +02:00
using MediaBrowser.Controller.Security;
using MediaBrowser.Controller.Session;
2013-03-10 05:22:36 +01:00
using MediaBrowser.Controller.Sorting;
2014-05-07 04:28:19 +02:00
using MediaBrowser.Controller.Subtitles;
2020-05-06 23:42:53 +02:00
using MediaBrowser.Controller.SyncPlay;
2020-07-04 22:06:27 +02:00
using MediaBrowser.Controller.TV;
2015-05-31 20:22:51 +02:00
using MediaBrowser.LocalMetadata.Savers;
2017-09-09 20:51:24 +02:00
using MediaBrowser.MediaEncoding.BdInfo;
using MediaBrowser.Model.Cryptography;
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.IO;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.Net;
using MediaBrowser.Model.Serialization;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Model.System;
2017-09-09 20:51:24 +02:00
using MediaBrowser.Model.Tasks;
2014-06-09 21:16:14 +02:00
using MediaBrowser.Providers.Chapters;
using MediaBrowser.Providers.Manager;
using MediaBrowser.Providers.Plugins.Tmdb;
2014-05-07 04:28:19 +02:00
using MediaBrowser.Providers.Subtitles;
using MediaBrowser.XbmcMetadata.Providers;
2020-09-12 17:41:37 +02:00
using Microsoft.AspNetCore.Http;
2020-08-11 17:04:11 +02:00
using Microsoft.AspNetCore.Mvc;
2021-02-27 21:12:55 +01:00
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
2019-08-09 23:16:24 +02:00
using Microsoft.Extensions.Logging;
using Prometheus.DotNetRuntime;
2020-05-02 01:30:04 +02:00
using OperatingSystem = MediaBrowser.Common.System.OperatingSystem;
2020-09-03 11:32:22 +02:00
using WebSocketManager = Emby.Server.Implementations.HttpServer.WebSocketManager;
2013-02-24 22:53:54 +01:00
namespace Emby.Server.Implementations
2013-02-24 22:53:54 +01:00
{
/// <summary>
/// Class CompositionRoot.
2013-02-24 22:53:54 +01:00
/// </summary>
2018-09-12 19:26:21 +02:00
public abstract class ApplicationHost : IServerApplicationHost, IDisposable
2013-02-24 22:53:54 +01:00
{
/// <summary>
/// The environment variable prefixes to log at server startup.
/// </summary>
private static readonly string[] _relevantEnvVarPrefixes = { "JELLYFIN_", "DOTNET_", "ASPNETCORE_" };
private readonly IFileSystem _fileSystemManager;
2021-02-27 21:12:55 +01:00
private readonly IConfiguration _startupConfig;
private readonly IXmlSerializer _xmlSerializer;
private readonly IStartupOptions _startupOptions;
2020-12-07 00:48:54 +01:00
private readonly IPluginManager _pluginManager;
2020-12-07 00:48:54 +01:00
private List<Type> _creatingInstances;
2020-04-05 01:01:21 +02:00
private IMediaEncoder _mediaEncoder;
private ISessionManager _sessionManager;
2020-09-03 11:32:22 +02:00
private string[] _urlPrefixes;
/// <summary>
/// Gets a value indicating whether this instance can self restart.
/// </summary>
public bool CanSelfRestart => _startupOptions.RestartPath != null;
2020-09-03 11:54:38 +02:00
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;
}
}
2020-09-14 16:46:38 +02:00
/// <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>
2019-03-13 22:32:52 +01:00
/// 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 />
2017-09-09 20:51:24 +02:00
public bool IsShuttingDown { get; private set; }
/// <summary>
/// Gets the logger.
/// </summary>
2020-06-06 02:15:56 +02:00
protected ILogger<ApplicationHost> Logger { get; }
2020-08-16 23:25:14 +02:00
protected IServiceCollection ServiceCollection { get; }
/// <summary>
/// Gets the logger factory.
/// </summary>
protected ILoggerFactory LoggerFactory { get; }
/// <summary>
2019-03-13 22:32:52 +01:00
/// Gets or sets the application paths.
/// </summary>
/// <value>The application paths.</value>
protected IServerApplicationPaths ApplicationPaths { get; set; }
/// <summary>
2019-03-13 22:32:52 +01:00
/// Gets or sets all concrete types.
/// </summary>
/// <value>All concrete types.</value>
2019-08-29 23:11:55 +02:00
private Type[] _allConcreteTypes;
/// <summary>
2019-08-29 23:11:55 +02:00
/// The disposable parts.
/// </summary>
private readonly List<IDisposable> _disposableParts = new List<IDisposable>();
/// <summary>
2020-09-12 17:41:37 +02:00
/// Gets or sets the configuration manager.
/// </summary>
/// <value>The configuration manager.</value>
protected IConfigurationManager ConfigurationManager { get; set; }
2019-11-24 18:25:43 +01:00
/// <summary>
/// Gets or sets the service provider.
/// </summary>
public IServiceProvider ServiceProvider { get; set; }
2019-11-24 19:25:46 +01:00
/// <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; }
2021-02-27 21:12:55 +01:00
/// <summary>
2021-02-28 11:11:37 +01:00
/// Gets the value of the PublishedServerUrl setting.
2021-02-27 21:12:55 +01:00
/// </summary>
2021-03-08 12:43:59 +01:00
public string PublishedServerUrl => _startupOptions.PublishedServerUrl ?? _startupConfig[UdpServer.AddressOverrideConfigKey];
2021-02-27 21:12:55 +01:00
2013-02-24 22:53:54 +01:00
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets the server configuration manager.
2013-02-24 22:53:54 +01:00
/// </summary>
2013-03-04 06:43:06 +01:00
/// <value>The server configuration manager.</value>
public IServerConfigurationManager ServerConfigurationManager => (IServerConfigurationManager)ConfigurationManager;
2013-09-21 03:04:14 +02:00
/// <summary>
2020-09-06 02:48:19 +02:00
/// Initializes a new instance of the <see cref="ApplicationHost"/> class.
2013-09-21 03:04:14 +02:00
/// </summary>
2020-09-06 02:48:19 +02:00
/// <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>
2021-02-27 21:12:55 +01:00
/// <param name="startupConfig">The <see cref="IConfiguration" /> interface.</param>
2020-09-06 02:48:19 +02:00
/// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
/// <param name="serviceCollection">Instance of the <see cref="IServiceCollection"/> interface.</param>
2019-03-13 22:32:52 +01:00
public ApplicationHost(
IServerApplicationPaths applicationPaths,
ILoggerFactory loggerFactory,
IStartupOptions options,
2021-02-27 21:12:55 +01:00
IConfiguration startupConfig,
2014-10-07 01:58:46 +02:00
IFileSystem fileSystem,
2020-09-07 22:21:30 +02:00
IServiceCollection serviceCollection)
{
_xmlSerializer = new MyXmlSerializer();
2020-08-16 23:25:14 +02:00
ServiceCollection = serviceCollection;
ApplicationPaths = applicationPaths;
LoggerFactory = loggerFactory;
_fileSystemManager = fileSystem;
ConfigurationManager = new ServerConfigurationManager(ApplicationPaths, LoggerFactory, _xmlSerializer, _fileSystemManager);
2020-11-21 14:27:27 +01:00
// Have to migrate settings here as migration subsystem not yet initialised.
2020-10-10 15:05:19 +02:00
MigrateNetworkConfiguration();
2020-11-21 14:27:27 +01:00
// Have to pre-register the NetworkConfigurationFactory, as the configuration sub-system is not yet initialised.
2020-10-10 15:05:19 +02:00
ConfigurationManager.RegisterConfiguration<NetworkConfigurationFactory>();
2020-09-14 16:46:38 +02:00
NetManager = new NetworkManager((IServerConfigurationManager)ConfigurationManager, LoggerFactory.CreateLogger<NetworkManager>());
Logger = LoggerFactory.CreateLogger<ApplicationHost>();
_startupOptions = options;
2021-02-27 21:12:55 +01:00
_startupConfig = startupConfig;
2014-12-17 23:39:17 +01:00
// Initialize runtime stat collection
if (ServerConfigurationManager.Configuration.EnableMetrics)
{
2020-04-27 14:42:46 +02:00
DotNetRuntimeStatsBuilder.Default().StartCollecting();
}
2017-03-10 20:51:29 +01:00
fileSystem.AddShortcutHandler(new MbLinkShortcutHandler(fileSystem));
2017-11-29 21:50:18 +01:00
2020-08-31 22:20:19 +02:00
ApplicationVersion = typeof(ApplicationHost).Assembly.GetName().Version;
ApplicationVersionString = ApplicationVersion.ToString(3);
ApplicationUserAgent = Name.Replace(' ', '-') + "/" + ApplicationVersionString;
2020-12-07 00:48:54 +01:00
_pluginManager = new PluginManager(
2020-12-18 10:04:40 +01:00
LoggerFactory.CreateLogger<PluginManager>(),
2020-12-07 00:48:54 +01:00
this,
ServerConfigurationManager.Configuration,
ApplicationPaths.PluginsPath,
ApplicationVersion);
2017-11-29 21:50:18 +01:00
}
2020-11-21 14:27:27 +01:00
/// <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>
2020-10-10 15:05:19 +02:00
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);
2020-10-10 15:08:26 +02:00
Logger?.LogDebug("Successfully migrated network settings.");
}
}
2018-09-12 19:26:21 +02:00
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);
}
2019-10-08 20:51:11 +02:00
/// <inheritdoc />
2020-08-31 22:20:19 +02:00
public Version ApplicationVersion { get; }
2019-10-08 20:51:11 +02:00
/// <inheritdoc />
2020-08-31 22:20:19 +02:00
public string ApplicationVersionString { get; }
/// <summary>
2019-08-09 23:50:40 +02:00
/// Gets the current application user agent.
/// </summary>
2019-01-20 03:41:48 +01:00
/// <value>The application user agent.</value>
2020-08-31 22:20:19 +02:00
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>
2020-10-17 16:01:36 +02:00
public string ApplicationUserAgentAddress => "team@jellyfin.org";
/// <summary>
2019-08-09 23:16:24 +02:00
/// Gets the current application name.
/// </summary>
/// <value>The application name.</value>
2019-08-09 23:16:24 +02:00
public string ApplicationProductName { get; } = FileVersionInfo.GetVersionInfo(Assembly.GetEntryAssembly().Location).ProductName;
2014-11-14 07:27:10 +01:00
private DeviceId _deviceId;
2019-03-13 22:32:52 +01:00
public string SystemId
{
get
{
if (_deviceId == null)
{
2019-02-06 20:38:42 +01:00
_deviceId = new DeviceId(ApplicationPaths, LoggerFactory);
}
return _deviceId.Value;
}
}
/// <inheritdoc/>
2019-01-20 05:52:40 +01:00
public string Name => ApplicationProductName;
2014-01-25 22:07:19 +01:00
/// <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>
2021-01-08 23:03:02 +01:00
/// <typeparam name="T">The type.</typeparam>
2019-08-09 23:50:40 +02:00
/// <returns>T.</returns>
public T CreateInstance<T>()
=> ActivatorUtilities.CreateInstance<T>(ServiceProvider);
/// <summary>
/// Creates the instance safe.
/// </summary>
2019-03-13 22:32:52 +01:00
/// <param name="type">The type.</param>
/// <returns>System.Object.</returns>
protected object CreateInstanceSafe(Type type)
{
2020-12-07 00:48:54 +01:00
if (_creatingInstances == null)
{
_creatingInstances = new List<Type>();
}
if (_creatingInstances.IndexOf(type) != -1)
{
2020-12-15 10:29:51 +01:00
Logger.LogError("DI Loop detected in the attempted creation of {Type}", type.FullName);
2020-12-07 00:48:54 +01:00
foreach (var entry in _creatingInstances)
{
2020-12-15 17:37:11 +01:00
Logger.LogError("Called from: {TypeName}", entry.FullName);
2020-12-07 00:48:54 +01:00
}
2020-12-15 01:42:59 +01:00
_pluginManager.FailPlugin(type.Assembly);
2020-12-15 00:39:47 +01:00
2020-12-07 00:48:54 +01:00
throw new ExternalException("DI Loop detected.");
}
try
{
2020-12-07 00:48:54 +01:00
_creatingInstances.Add(type);
2019-02-16 11:41:48 +01:00
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;
}
2020-12-07 00:48:54 +01:00
finally
{
_creatingInstances.Remove(type);
}
}
/// <summary>
/// Resolves this instance.
/// </summary>
2020-10-17 16:01:36 +02:00
/// <typeparam name="T">The type.</typeparam>
/// <returns>``0.</returns>
public T Resolve<T>() => ServiceProvider.GetService<T>();
2020-12-07 00:48:54 +01:00
/// <inheritdoc/>
public IEnumerable<Type> GetExportTypes<T>()
{
var currentType = typeof(T);
2019-08-29 23:11:55 +02:00
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>()
2019-03-13 22:32:52 +01:00
.Select(CreateInstanceSafe)
.Where(i => i != null)
.Cast<T>()
.ToList();
2018-12-20 13:11:26 +01:00
if (manageLifetime)
{
2019-03-13 22:32:52 +01:00
lock (_disposableParts)
{
2019-03-13 22:32:52 +01:00
_disposableParts.AddRange(parts.OfType<IDisposable>());
}
}
return parts;
}
2020-12-07 00:48:54 +01:00
/// <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>()
2020-12-23 17:28:50 +01:00
.Select(i => defaultFunc(i))
2020-12-07 00:48:54 +01:00
.Where(i => i != null)
.Cast<T>()
.ToList();
if (manageLifetime)
{
lock (_disposableParts)
{
_disposableParts.AddRange(parts.OfType<IDisposable>());
}
}
return parts;
}
/// <summary>
2013-03-10 07:45:16 +01:00
/// Runs the startup tasks.
/// </summary>
/// <returns><see cref="Task" />.</returns>
2021-02-23 17:30:24 +01:00
public async Task RunStartupTasksAsync(CancellationToken cancellationToken)
2013-03-07 06:34:00 +01:00
{
2021-02-23 17:30:24 +01:00
cancellationToken.ThrowIfCancellationRequested();
2019-01-27 15:40:37 +01:00
Logger.LogInformation("Running startup tasks");
Resolve<ITaskManager>().AddTasks(GetExports<IScheduledTask>(false));
ConfigurationManager.ConfigurationUpdated += OnConfigurationUpdated;
2020-12-11 16:49:35 +01:00
ConfigurationManager.NamedConfigurationUpdated += OnConfigurationUpdated;
2020-04-05 01:01:21 +02:00
_mediaEncoder.SetFFmpegPath();
2016-09-09 18:58:08 +02:00
Logger.LogInformation("ServerId: {0}", SystemId);
2018-09-12 19:26:21 +02:00
var entryPoints = GetExports<IServerEntryPoint>();
2019-01-27 15:40:37 +01:00
2021-02-24 22:18:59 +01:00
cancellationToken.ThrowIfCancellationRequested();
var stopWatch = new Stopwatch();
stopWatch.Start();
2021-02-24 22:18:59 +01:00
2019-03-13 22:32:52 +01:00
await Task.WhenAll(StartEntryPoints(entryPoints, true)).ConfigureAwait(false);
2019-02-26 19:37:39 +01:00
Logger.LogInformation("Executed all pre-startup entry points in {Elapsed:g}", stopWatch.Elapsed);
2018-09-12 19:26:21 +02:00
Logger.LogInformation("Core startup complete");
2020-09-03 11:54:38 +02:00
CoreStartupHasCompleted = true;
2021-02-24 22:18:59 +01:00
2021-02-23 17:30:24 +01:00
cancellationToken.ThrowIfCancellationRequested();
2021-02-24 22:18:59 +01:00
stopWatch.Restart();
2021-02-24 22:18:59 +01:00
2019-03-13 22:32:52 +01:00
await Task.WhenAll(StartEntryPoints(entryPoints, false)).ConfigureAwait(false);
2019-02-26 19:37:39 +01:00
Logger.LogInformation("Executed all post-startup entry points in {Elapsed:g}", stopWatch.Elapsed);
stopWatch.Stop();
2018-09-12 19:26:21 +02:00
}
2019-01-27 15:40:37 +01:00
private IEnumerable<Task> StartEntryPoints(IEnumerable<IServerEntryPoint> entryPoints, bool isBeforeStartup)
2018-09-12 19:26:21 +02:00
{
foreach (var entryPoint in entryPoints)
2013-06-22 01:38:19 +02:00
{
2018-09-12 19:26:21 +02:00
if (isBeforeStartup != (entryPoint is IRunBeforeStartup))
{
continue;
}
2019-01-27 15:40:37 +01:00
Logger.LogDebug("Starting entry point {Type}", entryPoint.GetType());
yield return entryPoint.RunAsync();
2016-06-30 00:01:35 +02:00
}
2013-03-07 06:34:00 +01:00
}
/// <inheritdoc/>
2020-08-16 23:25:14 +02:00
public void Init()
2014-02-13 06:11:54 +01:00
{
var networkConfiguration = ServerConfigurationManager.GetNetworkConfiguration();
HttpPort = networkConfiguration.HttpServerPortNumber;
HttpsPort = networkConfiguration.HttpsPortNumber;
2015-01-19 05:29:57 +01:00
2016-11-09 05:58:58 +01:00
// Safeguard against invalid configuration
if (HttpPort == HttpsPort)
{
HttpPort = NetworkConfiguration.DefaultHttpPort;
HttpsPort = NetworkConfiguration.DefaultHttpsPort;
2016-11-09 05:58:58 +01:00
}
2020-12-11 16:49:35 +01:00
CertificateInfo = new CertificateInfo
{
Path = networkConfiguration.CertificatePath,
Password = networkConfiguration.CertificatePassword
};
Certificate = GetCertificate(CertificateInfo);
2019-01-01 18:41:02 +01:00
DiscoverTypes();
2020-08-16 23:25:14 +02:00
RegisterServices();
2020-10-03 10:08:28 +02:00
2020-12-07 00:48:54 +01:00
_pluginManager.RegisterServices(ServiceCollection);
2019-02-25 23:34:32 +01:00
}
2013-02-24 22:53:54 +01:00
/// <summary>
/// Registers services/resources with the service collection that will be available via DI.
2013-02-24 22:53:54 +01:00
/// </summary>
2020-08-16 23:25:14 +02:00
protected virtual void RegisterServices()
2013-02-24 22:53:54 +01:00
{
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton(_startupOptions);
2020-08-16 23:25:14 +02:00
ServiceCollection.AddMemoryCache();
2019-02-15 20:11:27 +01:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton(ConfigurationManager);
ServiceCollection.AddSingleton<IApplicationHost>(this);
2020-12-07 00:48:54 +01:00
ServiceCollection.AddSingleton<IPluginManager>(_pluginManager);
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IApplicationPaths>(ApplicationPaths);
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton(_fileSystemManager);
ServiceCollection.AddSingleton<TmdbClientManager>();
2020-09-14 16:46:38 +02:00
ServiceCollection.AddSingleton(NetManager);
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ITaskManager, TaskManager>();
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton(_xmlSerializer);
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IStreamHelper, StreamHelper>();
2018-09-12 19:26:21 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ICryptoProvider, CryptographyProvider>();
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ISocketFactory, SocketFactory>();
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IInstallationManager, InstallationManager>();
2016-10-29 07:40:15 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IZipClient, ZipClient>();
2016-10-28 20:35:17 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IServerApplicationHost>(this);
ServiceCollection.AddSingleton<IServerApplicationPaths>(ApplicationPaths);
2013-03-07 06:34:00 +01:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton(ServerConfigurationManager);
2015-02-28 19:47:05 +01:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ILocalizationManager, LocalizationManager>();
2014-03-31 03:00:47 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IBlurayExaminer, BdInfoExaminer>();
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IUserDataRepository, SqliteUserDataRepository>();
ServiceCollection.AddSingleton<IUserDataManager, UserDataManager>();
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IItemRepository, SqliteItemRepository>();
2013-04-19 22:27:02 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IAuthenticationRepository, AuthenticationRepository>();
2014-07-08 03:41:03 +02:00
// TODO: Refactor to eliminate the circular dependency here so that Lazy<T> isn't required
2020-08-16 23:25:14 +02:00
ServiceCollection.AddTransient(provider => new Lazy<IDtoService>(provider.GetRequiredService<IDtoService>));
2013-04-14 05:05:19 +02:00
// TODO: Refactor to eliminate the circular dependency here so that Lazy<T> isn't required
2020-08-16 23:25:14 +02:00
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
2020-08-16 23:25:14 +02:00
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>();
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IMusicManager, MusicManager>();
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ILibraryMonitor, LibraryMonitor>();
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ISearchEngine, SearchEngine>();
2013-04-05 21:34:33 +02:00
2020-09-03 11:32:22 +02:00
ServiceCollection.AddSingleton<IWebSocketManager, WebSocketManager>();
2014-03-28 04:32:43 +01:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IImageProcessor, ImageProcessor>();
2013-09-18 20:49:06 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ITVSeriesManager, TVSeriesManager>();
2014-12-30 17:36:49 +01:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IDeviceManager, DeviceManager>();
2014-10-11 22:38:13 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IMediaSourceManager, MediaSourceManager>();
2018-09-12 19:26:21 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ISubtitleManager, SubtitleManager>();
2018-09-12 19:26:21 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IProviderManager, ProviderManager>();
2018-09-12 19:26:21 +02:00
// TODO: Refactor to eliminate the circular dependency here so that Lazy<T> isn't required
2020-08-16 23:25:14 +02:00
ServiceCollection.AddTransient(provider => new Lazy<ILiveTvManager>(provider.GetRequiredService<ILiveTvManager>));
ServiceCollection.AddSingleton<IDtoService, DtoService>();
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IChannelManager, ChannelManager>();
2014-03-18 02:45:41 +01:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ISessionManager, SessionManager>();
2015-03-08 19:11:53 +01:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IDlnaManager, DlnaManager>();
2014-03-13 20:08:02 +01:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ICollectionManager, CollectionManager>();
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IPlaylistManager, PlaylistManager>();
2014-08-02 04:34:45 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ISyncPlayManager, SyncPlayManager>();
2020-04-01 17:52:42 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<LiveTvDtoService>();
ServiceCollection.AddSingleton<ILiveTvManager, LiveTvManager>();
2014-01-12 07:31:21 +01:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IUserViewManager, UserViewManager>();
2014-06-07 21:46:24 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<INotificationManager, NotificationManager>();
2014-04-25 22:15:50 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IDeviceDiscovery, DeviceDiscovery>();
2015-07-23 18:32:34 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IChapterManager, ChapterManager>();
2014-06-09 21:16:14 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IEncodingManager, MediaEncoder.EncodingManager>();
2014-06-10 19:36:06 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IAuthorizationContext, AuthorizationContext>();
ServiceCollection.AddSingleton<ISessionContext, SessionContext>();
2016-11-08 19:44:23 +01:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IAuthService, AuthService>();
ServiceCollection.AddSingleton<IQuickConnect, QuickConnectManager>();
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<ISubtitleEncoder, MediaBrowser.MediaEncoding.Subtitles.SubtitleEncoder>();
2016-06-04 07:51:33 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<EncodingHelper>();
2018-09-12 19:26:21 +02:00
2020-08-16 23:25:14 +02:00
ServiceCollection.AddSingleton<IAttachmentExtractor, MediaBrowser.MediaEncoding.Attachments.AttachmentExtractor>();
2020-07-12 11:14:38 +02:00
2020-08-16 23:25:14 +02:00
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);
2020-04-05 01:01:21 +02:00
_mediaEncoder = Resolve<IMediaEncoder>();
_sessionManager = Resolve<ISessionManager>();
((AuthenticationRepository)Resolve<IAuthenticationRepository>()).Initialize();
2016-06-24 08:32:51 +02:00
2018-09-12 19:26:21 +02:00
SetStaticProperties();
var userDataRepo = (SqliteUserDataRepository)Resolve<IUserDataRepository>();
2020-05-13 04:25:45 +02:00
((SqliteItemRepository)Resolve<IItemRepository>()).Initialize(userDataRepo, Resolve<IUserManager>());
FindParts();
2018-09-12 19:26:21 +02:00
}
public static void LogEnvironmentInfo(ILogger logger, IApplicationPaths appPaths)
{
2018-09-12 19:26:21 +02:00
// Distinct these to prevent users from reporting problems that aren't actually problems
var commandLineArgs = Environment
.GetCommandLineArgs()
2019-01-01 18:41:02 +01:00
.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);
2019-01-01 18:41:02 +01:00
logger.LogInformation("Arguments: {Args}", commandLineArgs);
2019-03-26 19:20:40 +01:00
logger.LogInformation("Operating system: {OS}", OperatingSystem.Name);
logger.LogInformation("Architecture: {Architecture}", RuntimeInformation.OSArchitecture);
2019-01-01 18:51:55 +01:00
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);
2019-01-01 18:51:55 +01:00
logger.LogInformation("Application directory: {ApplicationPath}", appPaths.ProgramSystemPath);
}
private X509Certificate2 GetCertificate(CertificateInfo info)
2016-11-11 04:29:51 +01:00
{
var certificateLocation = info?.Path;
2017-05-01 04:22:13 +02:00
2016-11-11 04:29:51 +01:00
if (string.IsNullOrWhiteSpace(certificateLocation))
{
return null;
}
try
{
if (!File.Exists(certificateLocation))
2016-11-13 22:04:21 +01:00
{
return null;
}
2017-05-10 21:12:03 +02:00
// Don't use an empty string password
var password = string.IsNullOrWhiteSpace(info.Password) ? null : info.Password;
var localCert = new X509Certificate2(certificateLocation, password, X509KeyStorageFlags.UserKeySet);
2019-03-13 22:32:52 +01:00
// localCert.PrivateKey = PrivateKey.CreateFromFile(pvk_file).RSA;
2016-11-11 18:33:10 +01:00
if (!localCert.HasPrivateKey)
2016-11-11 04:29:51 +01:00
{
2019-01-01 18:51:55 +01:00
Logger.LogError("No private key included in SSL cert {CertificateLocation}.", certificateLocation);
2016-11-11 04:29:51 +01:00
return null;
}
2017-09-03 04:42:13 +02:00
return localCert;
2016-11-11 04:29:51 +01:00
}
catch (Exception ex)
{
2019-01-01 18:51:55 +01:00
Logger.LogError(ex, "Error loading cert from {CertificateLocation}", certificateLocation);
2016-11-11 04:29:51 +01:00
return null;
}
}
/// <summary>
2019-10-25 12:47:20 +02:00
/// Dirty hacks.
/// </summary>
private void SetStaticProperties()
{
// For now there's no real way to inject these properly
2020-04-05 03:33:57 +02:00
BaseItem.Logger = Resolve<ILogger<BaseItem>>();
BaseItem.ConfigurationManager = ServerConfigurationManager;
BaseItem.LibraryManager = Resolve<ILibraryManager>();
2020-04-04 20:56:50 +02:00
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>();
2020-04-04 19:10:39 +02:00
Folder.UserViewManager = Resolve<IUserViewManager>();
2020-04-04 21:44:44 +02:00
UserView.TVSeriesManager = Resolve<ITVSeriesManager>();
UserView.CollectionManager = Resolve<ICollectionManager>();
BaseItem.MediaSourceManager = Resolve<IMediaSourceManager>();
CollectionFolder.XmlSerializer = _xmlSerializer;
2018-09-12 19:26:21 +02:00
CollectionFolder.ApplicationHost = this;
2019-02-18 22:47:02 +01:00
}
/// <summary>
/// Finds plugin components and register them with the appropriate services.
/// </summary>
private void FindParts()
{
2016-10-10 20:18:28 +02:00
if (!ServerConfigurationManager.Configuration.IsPortAuthorized)
2013-03-27 23:13:46 +01:00
{
2015-01-12 06:07:19 +01:00
ServerConfigurationManager.Configuration.IsPortAuthorized = true;
ConfigurationManager.SaveConfiguration();
2013-03-27 23:13:46 +01:00
}
ConfigurationManager.AddParts(GetExports<IConfigurationFactory>());
2020-12-07 00:48:54 +01:00
_pluginManager.CreatePlugins();
2020-10-03 10:08:28 +02:00
2020-09-03 11:32:22 +02:00
_urlPrefixes = GetUrlPrefixes().ToArray();
Resolve<ILibraryManager>().AddParts(
2019-03-13 22:32:52 +01:00
GetExports<IResolverIgnoreRule>(),
2017-08-17 22:19:02 +02:00
GetExports<IItemResolver>(),
GetExports<IIntroProvider>(),
GetExports<IBaseItemComparer>(),
GetExports<ILibraryPostScanTask>());
2020-04-04 20:56:50 +02:00
Resolve<IProviderManager>().AddParts(
2019-03-13 22:32:52 +01:00
GetExports<IImageProvider>(),
2017-08-17 22:19:02 +02:00
GetExports<IMetadataService>(),
GetExports<IMetadataProvider>(),
GetExports<IMetadataSaver>(),
GetExports<IExternalId>());
2013-08-10 03:40:52 +02:00
Resolve<ILiveTvManager>().AddParts(GetExports<ILiveTvService>(), GetExports<ITunerHost>(), GetExports<IListingsProvider>());
2020-04-04 21:12:02 +02:00
Resolve<ISubtitleManager>().AddParts(GetExports<ISubtitleProvider>());
Resolve<IChannelManager>().AddParts(GetExports<IChannel>());
2014-04-25 22:15:50 +02:00
Resolve<IMediaSourceManager>().AddParts(GetExports<IMediaSourceProvider>());
2015-04-04 02:41:16 +02:00
Resolve<INotificationManager>().AddParts(GetExports<INotificationService>(), GetExports<INotificationTypeFactory>());
}
/// <summary>
/// Discovers the types.
/// </summary>
protected void DiscoverTypes()
{
Logger.LogInformation("Loading assemblies");
2019-08-29 23:11:55 +02:00
_allConcreteTypes = GetTypes(GetComposablePartAssemblies()).ToArray();
2019-04-20 14:02:00 +02:00
}
private IEnumerable<Type> GetTypes(IEnumerable<Assembly> assemblies)
{
foreach (var ass in assemblies)
{
Type[] exportedTypes;
try
{
exportedTypes = ass.GetExportedTypes();
}
catch (FileNotFoundException ex)
2019-04-20 14:02:00 +02:00
{
Logger.LogError(ex, "Error getting exported types from {Assembly}", ass.FullName);
2020-12-07 00:48:54 +01:00
_pluginManager.FailPlugin(ass);
2019-04-20 14:02:00 +02:00
continue;
}
catch (TypeLoadException ex)
{
Logger.LogError(ex, "Error loading types from {Assembly}.", ass.FullName);
2020-12-07 00:48:54 +01:00
_pluginManager.FailPlugin(ass);
continue;
}
2019-04-20 14:02:00 +02:00
foreach (Type type in exportedTypes)
{
if (type.IsClass && !type.IsAbstract && !type.IsInterface && !type.IsGenericType)
{
yield return type;
}
}
}
}
2017-05-01 04:22:13 +02:00
private CertificateInfo CertificateInfo { get; set; }
2019-03-13 22:32:52 +01:00
public X509Certificate2 Certificate { get; private set; }
2015-01-19 07:42:31 +01:00
2015-01-19 05:29:57 +01:00
private IEnumerable<string> GetUrlPrefixes()
{
2018-09-12 19:26:21 +02:00
var hosts = new[] { "+" };
2015-01-19 05:29:57 +01:00
2016-06-07 18:21:46 +02:00
return hosts.SelectMany(i =>
{
var prefixes = new List<string>
{
2019-03-13 22:32:52 +01:00
"http://" + i + ":" + HttpPort + "/"
2016-06-07 18:21:46 +02:00
};
2017-05-01 04:22:13 +02:00
if (CertificateInfo != null)
2016-06-07 18:21:46 +02:00
{
2016-09-21 20:28:33 +02:00
prefixes.Add("https://" + i + ":" + HttpsPort + "/");
2016-06-07 18:21:46 +02:00
}
return prefixes;
});
2015-01-19 05:29:57 +01:00
}
2013-05-07 21:07:51 +02:00
/// <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)
2013-05-07 21:07:51 +02:00
{
2015-01-19 05:29:57 +01:00
var requiresRestart = false;
2020-12-11 16:49:35 +01:00
var networkConfiguration = ServerConfigurationManager.GetNetworkConfiguration();
2015-01-19 05:29:57 +01:00
// 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)
2015-01-19 05:29:57 +01:00
{
2015-02-11 05:05:58 +01:00
if (ServerConfigurationManager.Configuration.IsPortAuthorized)
{
ServerConfigurationManager.Configuration.IsPortAuthorized = false;
ServerConfigurationManager.SaveConfiguration();
2015-01-19 05:29:57 +01:00
2015-02-11 05:05:58 +01:00
requiresRestart = true;
}
2015-01-19 05:29:57 +01:00
}
}
2020-09-03 11:32:22 +02:00
if (!_urlPrefixes.SequenceEqual(GetUrlPrefixes(), StringComparer.OrdinalIgnoreCase))
2013-05-07 21:07:51 +02:00
{
2015-01-19 05:29:57 +01:00
requiresRestart = true;
}
2020-12-11 16:49:35 +01:00
if (ValidateSslCertificate(networkConfiguration))
2015-01-19 07:42:31 +01:00
{
requiresRestart = true;
}
2015-01-19 05:29:57 +01:00
if (requiresRestart)
{
Logger.LogInformation("App needs to be restarted due to configuration change.");
2016-12-26 18:38:12 +01:00
2013-05-07 21:07:51 +02:00
NotifyPendingRestart();
}
}
2020-12-11 16:49:35 +01:00
/// <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));
2020-12-11 16:49:35 +01:00
}
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);
}
}
2013-02-24 22:53:54 +01:00
/// <summary>
/// Restarts this instance.
/// </summary>
2017-09-09 20:51:24 +02:00
public void Restart()
2013-02-24 22:53:54 +01:00
{
2013-10-07 16:38:31 +02:00
if (!CanSelfRestart)
{
2016-08-31 21:17:11 +02:00
throw new PlatformNotSupportedException("The server is unable to self-restart. Please restart manually.");
2013-10-07 16:38:31 +02:00
}
2017-09-09 20:51:24 +02:00
if (IsShuttingDown)
2013-09-05 19:26:03 +02:00
{
2017-09-09 20:51:24 +02:00
return;
2013-09-05 19:26:03 +02:00
}
2017-09-09 20:51:24 +02:00
IsShuttingDown = true;
Task.Run(async () =>
2013-09-05 19:26:03 +02:00
{
2017-09-09 20:51:24 +02:00
try
{
await _sessionManager.SendServerRestartNotification(CancellationToken.None).ConfigureAwait(false);
2017-09-09 20:51:24 +02:00
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
Logger.LogError(ex, "Error sending server restart notification");
2017-09-09 20:51:24 +02:00
}
2013-09-05 19:26:03 +02:00
Logger.LogInformation("Calling RestartInternal");
2014-06-04 18:15:44 +02:00
2017-09-09 20:51:24 +02:00
RestartInternal();
});
2013-02-24 22:53:54 +01:00
}
2016-11-13 05:33:51 +01:00
protected abstract void RestartInternal();
2013-02-24 22:53:54 +01:00
/// <summary>
/// Gets the composable part assemblies.
/// </summary>
/// <returns>IEnumerable{Assembly}.</returns>
protected IEnumerable<Assembly> GetComposablePartAssemblies()
2013-02-24 22:53:54 +01:00
{
2020-12-07 00:48:54 +01:00
foreach (var p in _pluginManager.LoadAssemblies())
{
2020-12-07 00:48:54 +01:00
yield return p;
}
2013-09-26 23:20:26 +02:00
// Include composable parts in the Model assembly
yield return typeof(SystemInfo).Assembly;
2013-02-24 22:53:54 +01:00
// Include composable parts in the Common assembly
yield return typeof(IApplicationHost).Assembly;
2013-02-24 22:53:54 +01:00
// Include composable parts in the Controller assembly
yield return typeof(IServerApplicationHost).Assembly;
2013-02-24 22:53:54 +01:00
// Include composable parts in the Providers assembly
yield return typeof(ProviderUtils).Assembly;
2013-06-20 18:44:24 +02:00
// Include composable parts in the Photos assembly
yield return typeof(PhotoProvider).Assembly;
// Emby.Server implementations
yield return typeof(InstallationManager).Assembly;
2014-03-27 20:30:21 +01:00
// MediaEncoding
yield return typeof(MediaBrowser.MediaEncoding.Encoder.MediaEncoder).Assembly;
2014-03-27 20:30:21 +01:00
// Dlna
yield return typeof(DlnaEntryPoint).Assembly;
2014-02-28 05:49:02 +01:00
// Local metadata
yield return typeof(BoxSetXmlSaver).Assembly;
2018-09-12 19:26:21 +02:00
// Notifications
yield return typeof(NotificationManager).Assembly;
2018-09-12 19:26:21 +02:00
// Xbmc
yield return typeof(ArtistNfoProvider).Assembly;
2013-09-05 19:26:03 +02:00
2020-10-10 16:27:02 +02:00
// Network
yield return typeof(NetworkManager).Assembly;
foreach (var i in GetAssembliesWithPartsInternal())
2013-12-29 15:12:29 +01:00
{
yield return i;
2013-12-29 15:12:29 +01:00
}
}
protected abstract IEnumerable<Assembly> GetAssembliesWithPartsInternal();
2016-10-28 05:16:38 +02:00
2013-03-07 06:34:00 +01:00
/// <summary>
/// Gets the system status.
/// </summary>
2020-09-12 17:41:37 +02:00
/// <param name="source">Where this request originated.</param>
2013-03-07 06:34:00 +01:00
/// <returns>SystemInfo.</returns>
2020-09-12 17:41:37 +02:00
public SystemInfo GetSystemInfo(IPAddress source)
2013-03-07 06:34:00 +01:00
{
return new SystemInfo
{
HasPendingRestart = HasPendingRestart,
2017-09-09 20:51:24 +02:00
IsShuttingDown = IsShuttingDown,
2019-10-08 20:51:11 +02:00
Version = ApplicationVersionString,
2015-01-19 05:29:57 +01:00
WebSocketPortNumber = HttpPort,
CompletedInstallations = Resolve<IInstallationManager>().CompletedInstallations.ToArray(),
2014-09-06 19:46:09 +02:00
Id = SystemId,
2013-08-16 16:18:09 +02:00
ProgramDataPath = ApplicationPaths.ProgramDataPath,
WebPath = ApplicationPaths.WebPath,
2013-11-30 19:32:39 +01:00
LogPath = ApplicationPaths.LogDirectoryPath,
2018-09-12 19:26:21 +02:00
ItemsByNamePath = ApplicationPaths.InternalMetadataPath,
2014-03-31 23:04:22 +02:00
InternalMetadataPath = ApplicationPaths.InternalMetadataPath,
2013-12-15 02:17:57 +01:00
CachePath = ApplicationPaths.CachePath,
OperatingSystem = OperatingSystem.Id.ToString(),
OperatingSystemDisplayName = OperatingSystem.Name,
CanSelfRestart = CanSelfRestart,
CanLaunchWebBrowser = CanLaunchWebBrowser,
2014-04-26 04:55:07 +02:00
HasUpdateAvailable = HasUpdateAvailable,
2020-09-12 17:41:37 +02:00
TranscodingTempPath = ConfigurationManager.GetTranscodePath(),
2014-08-20 00:28:35 +02:00
ServerName = FriendlyName,
2020-09-12 17:41:37 +02:00
LocalAddress = GetSmartApiUrl(source),
2016-11-11 09:13:11 +01:00
SupportsLibraryMonitor = true,
2020-04-05 01:01:21 +02:00
EncoderLocation = _mediaEncoder.EncoderLocation,
SystemArchitecture = RuntimeInformation.OSArchitecture,
PackageName = _startupOptions.PackageName
2013-03-07 06:34:00 +01:00
};
}
2019-08-09 23:16:24 +02:00
public IEnumerable<WakeOnLanInfo> GetWakeOnLanInfo()
2020-09-14 16:46:38 +02:00
=> NetManager.GetMacAddresses()
2019-08-09 23:16:24 +02:00
.Select(i => new WakeOnLanInfo(i))
.ToList();
2018-09-12 19:26:21 +02:00
2020-09-12 17:41:37 +02:00
public PublicSystemInfo GetPublicSystemInfo(IPAddress source)
{
return new PublicSystemInfo
{
2019-10-08 20:51:11 +02:00
Version = ApplicationVersionString,
ProductName = ApplicationProductName,
Id = SystemId,
OperatingSystem = OperatingSystem.Id.ToString(),
ServerName = FriendlyName,
2020-09-12 17:41:37 +02:00
LocalAddress = GetSmartApiUrl(source),
2020-09-07 22:21:30 +02:00
StartupWizardCompleted = ConfigurationManager.CommonConfiguration.IsStartupWizardCompleted
};
}
/// <inheritdoc/>
public bool ListenWithHttps => Certificate != null && ServerConfigurationManager.GetNetworkConfiguration().EnableHttps;
2015-01-19 05:29:57 +01:00
2020-04-06 05:30:57 +02:00
/// <inheritdoc/>
2020-09-14 16:46:38 +02:00
public string GetSmartApiUrl(IPAddress ipAddress, int? port = null)
2014-08-20 00:28:35 +02:00
{
2020-09-14 16:46:38 +02:00
// Published server ends with a /
2021-02-27 21:12:55 +01:00
if (!string.IsNullOrEmpty(PublishedServerUrl))
2014-08-20 00:28:35 +02:00
{
2020-09-14 16:46:38 +02:00
// Published server ends with a '/', so we need to remove it.
2021-02-27 21:12:55 +01:00
return PublishedServerUrl.Trim('/');
2014-08-20 00:28:35 +02:00
}
2020-09-14 16:46:38 +02:00
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))
2016-06-19 08:18:29 +02:00
{
2020-09-14 16:46:38 +02:00
return smart.Trim('/');
2016-06-19 08:18:29 +02:00
}
2020-09-14 16:46:38 +02:00
return GetLocalApiUrl(smart.Trim('/'), null, port);
2015-01-24 20:03:55 +01:00
}
2014-08-20 00:28:35 +02:00
2020-09-14 16:46:38 +02:00
/// <inheritdoc/>
public string GetSmartApiUrl(HttpRequest request, int? port = null)
{
2020-09-14 16:46:38 +02:00
// Published server ends with a /
2021-02-27 21:12:55 +01:00
if (!string.IsNullOrEmpty(PublishedServerUrl))
{
2020-09-14 16:46:38 +02:00
// Published server ends with a '/', so we need to remove it.
2021-02-27 21:12:55 +01:00
return PublishedServerUrl.Trim('/');
}
2020-09-14 16:46:38 +02:00
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))
2016-03-09 18:40:29 +01:00
{
2020-09-14 16:46:38 +02:00
return smart.Trim('/');
2016-03-09 18:40:29 +01:00
}
2020-09-14 16:46:38 +02:00
return GetLocalApiUrl(smart.Trim('/'), request.Scheme, port);
2016-03-09 18:40:29 +01:00
}
/// <inheritdoc/>
2020-09-14 16:46:38 +02:00
public string GetSmartApiUrl(string hostname, int? port = null)
2015-02-10 06:54:58 +01:00
{
2020-09-12 17:41:37 +02:00
// Published server ends with a /
2021-02-27 21:12:55 +01:00
if (!string.IsNullOrEmpty(PublishedServerUrl))
{
2020-09-12 17:41:37 +02:00
// Published server ends with a '/', so we need to remove it.
2021-02-27 21:12:55 +01:00
return PublishedServerUrl.Trim('/');
2017-11-29 21:50:18 +01:00
}
2016-12-07 21:02:34 +01:00
2020-09-14 16:46:38 +02:00
string smart = NetManager.GetBindInterface(hostname, out port);
2016-12-07 21:02:34 +01:00
2020-09-12 17:41:37 +02:00
// If the smartAPI doesn't start with http then treat it as a host or ip.
if (smart.StartsWith("http", StringComparison.OrdinalIgnoreCase))
2017-11-29 21:50:18 +01:00
{
2020-09-12 17:41:37 +02:00
return smart.Trim('/');
2016-09-12 21:38:38 +02:00
}
2020-09-14 16:46:38 +02:00
return GetLocalApiUrl(smart.Trim('/'), null, port);
2016-12-07 21:02:34 +01:00
}
2020-09-12 17:41:37 +02:00
/// <inheritdoc/>
public string GetLoopbackHttpApiUrl()
2016-12-07 21:02:34 +01:00
{
2020-09-30 19:02:36 +02:00
if (NetManager.IsIP6Enabled)
2016-12-07 21:02:34 +01:00
{
2020-09-12 17:41:37 +02:00
return GetLocalApiUrl("::1", Uri.UriSchemeHttp, HttpPort);
2016-12-07 21:02:34 +01:00
}
2019-03-13 22:32:52 +01:00
return GetLocalApiUrl("127.0.0.1", Uri.UriSchemeHttp, HttpPort);
2014-08-20 00:28:35 +02:00
}
/// <inheritdoc/>
2020-09-12 17:41:37 +02:00
public string GetLocalApiUrl(string host, string scheme = null, int? port = null)
2014-09-17 05:04:10 +02:00
{
// 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
2015-12-29 04:39:38 +01:00
{
Scheme = scheme ?? (ListenWithHttps ? Uri.UriSchemeHttps : Uri.UriSchemeHttp),
2020-09-12 17:41:37 +02:00
Host = host,
Port = port ?? (ListenWithHttps ? HttpsPort : HttpPort),
Path = ServerConfigurationManager.GetNetworkConfiguration().BaseUrl
}.ToString().TrimEnd('/');
2015-12-29 04:39:38 +01:00
}
public string FriendlyName =>
string.IsNullOrEmpty(ServerConfigurationManager.Configuration.ServerName)
? Environment.MachineName
: ServerConfigurationManager.Configuration.ServerName;
/// <summary>
/// Shuts down.
/// </summary>
public async Task Shutdown()
{
2017-09-09 20:51:24 +02:00
if (IsShuttingDown)
{
return;
}
IsShuttingDown = true;
2013-09-05 19:26:03 +02:00
try
{
await _sessionManager.SendServerShutdownNotification(CancellationToken.None).ConfigureAwait(false);
2013-09-05 19:26:03 +02:00
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
Logger.LogError(ex, "Error sending server shutdown notification");
2013-09-05 19:26:03 +02:00
}
2016-11-13 05:33:51 +01:00
ShutdownInternal();
2013-04-05 21:34:33 +02:00
}
2016-11-13 05:33:51 +01:00
protected abstract void ShutdownInternal();
2014-04-26 04:55:07 +02:00
public event EventHandler HasUpdateAvailableChanged;
2014-01-05 07:50:48 +01:00
private bool _hasUpdateAvailable;
2019-03-13 22:32:52 +01:00
2014-04-26 04:55:07 +02:00
public bool HasUpdateAvailable
{
get => _hasUpdateAvailable;
2014-04-26 04:55:07 +02:00
set
{
var fireEvent = value && !_hasUpdateAvailable;
_hasUpdateAvailable = value;
if (fireEvent)
{
HasUpdateAvailableChanged?.Invoke(this, EventArgs.Empty);
2014-04-26 04:55:07 +02:00
}
}
}
2020-08-11 17:04:11 +02:00
public IEnumerable<Assembly> GetApiPluginAssemblies()
{
2020-08-31 17:53:55 +02:00
var assemblies = _allConcreteTypes
.Where(i => typeof(ControllerBase).IsAssignableFrom(i))
2020-08-31 17:53:55 +02:00
.Select(i => i.Assembly)
.Distinct();
2020-08-11 17:04:11 +02:00
2020-08-31 17:53:55 +02:00
foreach (var assembly in assemblies)
2020-08-11 17:04:11 +02:00
{
2020-08-31 22:20:19 +02:00
Logger.LogDebug("Found API endpoints in plugin {Name}", assembly.FullName);
2020-08-31 18:03:13 +02:00
yield return assembly;
2020-08-11 17:04:11 +02:00
}
}
2017-11-21 23:14:56 +01:00
public virtual void LaunchUrl(string url)
2016-11-21 00:48:52 +01:00
{
if (!CanLaunchWebBrowser)
2017-11-21 23:14:56 +01:00
{
throw new NotSupportedException();
2016-11-21 00:48:52 +01:00
}
var process = new Process
2016-12-07 21:02:34 +01:00
{
StartInfo = new ProcessStartInfo
{
FileName = url,
UseShellExecute = true,
ErrorDialog = false
},
EnableRaisingEvents = true
};
process.Exited += (sender, args) => ((Process)sender).Dispose();
2016-11-21 00:48:52 +01:00
try
{
process.Start();
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
Logger.LogError(ex, "Error launching url: {url}", url);
2016-11-21 00:48:52 +01:00
throw;
}
}
2019-03-13 22:32:52 +01:00
private bool _disposed = false;
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
public void Dispose()
{
2019-03-13 22:32:52 +01:00
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)
{
2019-03-13 22:32:52 +01:00
if (_disposed)
{
return;
}
if (dispose)
{
var type = GetType();
2019-01-03 21:25:39 +01:00
Logger.LogInformation("Disposing {Type}", type.Name);
2019-03-13 22:32:52 +01:00
var parts = _disposableParts.Distinct().Where(i => i.GetType() != type).ToList();
_disposableParts.Clear();
foreach (var part in parts)
{
2019-01-03 21:25:39 +01:00
Logger.LogInformation("Disposing {Type}", part.GetType().Name);
try
{
part.Dispose();
}
catch (Exception ex)
{
2019-01-03 21:25:39 +01:00
Logger.LogError(ex, "Error disposing {Type}", part.GetType().Name);
}
}
}
2019-03-13 22:32:52 +01:00
_disposed = true;
}
2017-05-01 04:22:13 +02:00
}
2016-10-29 06:10:11 +02:00
2017-05-01 04:22:13 +02:00
internal class CertificateInfo
{
public string Path { get; set; }
2017-05-01 04:22:13 +02:00
public string Password { get; set; }
2013-02-24 22:53:54 +01:00
}
}