jellyfin/Emby.Server.Implementations/ApplicationHost.cs

1616 lines
59 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Net;
2019-03-08 20:32:14 +01:00
using System.Net.Http;
using System.Net.Sockets;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Emby.Dlna;
using Emby.Dlna.Main;
using Emby.Dlna.Ssdp;
using Emby.Drawing;
using Emby.Notifications;
using Emby.Photos;
using Emby.Server.Implementations.Activity;
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;
2017-09-09 20:51:24 +02:00
using Emby.Server.Implementations.Diagnostics;
using Emby.Server.Implementations.Dto;
using Emby.Server.Implementations.HttpServer;
using Emby.Server.Implementations.HttpServer.Security;
using Emby.Server.Implementations.IO;
using Emby.Server.Implementations.Library;
using Emby.Server.Implementations.LiveTv;
using Emby.Server.Implementations.Localization;
2017-09-09 20:51:24 +02:00
using Emby.Server.Implementations.Net;
using Emby.Server.Implementations.Playlists;
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.Services;
using Emby.Server.Implementations.Session;
2019-02-25 23:34:32 +01:00
using Emby.Server.Implementations.SocketSharp;
using Emby.Server.Implementations.TV;
using Emby.Server.Implementations.Updates;
using Jellyfin.Drawing.Skia;
using MediaBrowser.Api;
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;
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;
using MediaBrowser.Controller.Authentication;
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;
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;
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.Activity;
using MediaBrowser.Model.Configuration;
2017-09-09 20:51:24 +02:00
using MediaBrowser.Model.Cryptography;
using MediaBrowser.Model.Diagnostics;
using MediaBrowser.Model.Dlna;
2017-09-09 20:51:24 +02:00
using MediaBrowser.Model.Events;
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;
using MediaBrowser.Model.Services;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Model.System;
2017-09-09 20:51:24 +02:00
using MediaBrowser.Model.Tasks;
2013-09-14 03:56:03 +02:00
using MediaBrowser.Model.Updates;
2014-06-09 21:16:14 +02:00
using MediaBrowser.Providers.Chapters;
using MediaBrowser.Providers.Manager;
using MediaBrowser.Providers.Plugins.TheTvdb;
2014-05-07 04:28:19 +02:00
using MediaBrowser.Providers.Subtitles;
using MediaBrowser.WebDashboard.Api;
using MediaBrowser.XbmcMetadata.Providers;
2019-02-25 23:34:32 +01:00
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Extensions;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
2019-08-09 23:16:24 +02:00
using Microsoft.Extensions.Logging;
using OperatingSystem = MediaBrowser.Common.System.OperatingSystem;
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
{
2019-08-14 20:24:44 +02:00
private SqliteUserRepository _userRepository;
2020-04-05 01:01:21 +02:00
private IMediaEncoder _mediaEncoder;
private ISessionManager _sessionManager;
private IHttpServer _httpServer;
private IHttpClient _httpClient;
/// <summary>
/// Gets a value indicating whether this instance can self restart.
/// </summary>
/// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value>
public abstract bool CanSelfRestart { get; }
public virtual bool CanLaunchWebBrowser
{
get
{
if (!Environment.UserInteractive)
{
return false;
}
if (StartupOptions.IsService)
{
return false;
}
if (OperatingSystem.Id == OperatingSystemId.Windows
|| OperatingSystem.Id == OperatingSystemId.Darwin)
{
return true;
}
return false;
}
}
/// <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>
protected ILogger Logger { get; }
2019-02-18 22:47:02 +01:00
private IPlugin[] _plugins;
/// <summary>
2019-03-13 22:32:52 +01:00
/// Gets the plugins.
/// </summary>
/// <value>The plugins.</value>
2019-12-11 00:13:57 +01:00
public IReadOnlyList<IPlugin> Plugins => _plugins;
/// <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 ServerApplicationPaths 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>
/// Gets the configuration manager.
/// </summary>
/// <value>The configuration manager.</value>
protected IConfigurationManager ConfigurationManager { get; set; }
public IFileSystem FileSystemManager { get; set; }
/// <inheritdoc />
public PackageVersionClass SystemUpdateLevel
{
get
{
#if BETA
return PackageVersionClass.Beta;
#else
return PackageVersionClass.Release;
#endif
}
}
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; }
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;
2016-10-29 07:40:15 +02:00
/// <summary>
2019-10-25 12:47:20 +02:00
/// Gets the installation manager.
2016-10-29 07:40:15 +02:00
/// </summary>
/// <value>The installation manager.</value>
protected IInstallationManager InstallationManager { get; private set; }
2019-03-13 22:32:52 +01:00
public IStartupOptions StartupOptions { get; }
2014-09-14 17:26:33 +02:00
protected readonly IXmlSerializer XmlSerializer;
protected INetworkManager NetworkManager { get; set; }
2019-03-13 22:32:52 +01:00
public IJsonSerializer JsonSerializer { get; private set; }
2019-03-13 22:32:52 +01:00
2013-09-21 03:04:14 +02:00
/// <summary>
2014-07-20 06:46:29 +02:00
/// Initializes a new instance of the <see cref="ApplicationHost" /> class.
2013-09-21 03:04:14 +02:00
/// </summary>
2019-03-13 22:32:52 +01:00
public ApplicationHost(
ServerApplicationPaths applicationPaths,
ILoggerFactory loggerFactory,
IStartupOptions options,
2014-10-07 01:58:46 +02:00
IFileSystem fileSystem,
INetworkManager networkManager)
{
2019-09-25 13:24:39 +02:00
XmlSerializer = new MyXmlSerializer();
NetworkManager = networkManager;
2018-09-12 19:26:21 +02:00
networkManager.LocalSubnetsFn = GetConfiguredLocalSubnets;
ApplicationPaths = applicationPaths;
LoggerFactory = loggerFactory;
FileSystemManager = fileSystem;
ConfigurationManager = new ServerConfigurationManager(ApplicationPaths, LoggerFactory, XmlSerializer, FileSystemManager);
Logger = LoggerFactory.CreateLogger("App");
2016-11-13 05:33:51 +01:00
StartupOptions = options;
2014-12-17 23:39:17 +01:00
2017-03-10 20:51:29 +01:00
fileSystem.AddShortcutHandler(new MbLinkShortcutHandler(fileSystem));
2017-11-29 21:50:18 +01:00
2019-08-09 23:16:24 +02:00
NetworkManager.NetworkChanged += OnNetworkChanged;
CertificateInfo = new CertificateInfo
{
Path = ServerConfigurationManager.Configuration.CertificatePath,
Password = ServerConfigurationManager.Configuration.CertificatePassword
};
Certificate = GetCertificate(CertificateInfo);
2017-11-29 21:50:18 +01:00
}
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);
}
private string[] GetConfiguredLocalSubnets()
{
return ServerConfigurationManager.Configuration.LocalNetworkSubnets;
}
2019-08-09 23:16:24 +02:00
private void OnNetworkChanged(object sender, EventArgs e)
2017-11-29 21:50:18 +01:00
{
_validAddressResults.Clear();
}
2013-09-21 03:04:14 +02:00
2019-10-08 20:51:11 +02:00
/// <inheritdoc />
public Version ApplicationVersion { get; } = typeof(ApplicationHost).Assembly.GetName().Version;
/// <inheritdoc />
public string ApplicationVersionString { get; } = typeof(ApplicationHost).Assembly.GetName().Version.ToString(3);
/// <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>
2019-10-08 20:51:11 +02:00
public string ApplicationUserAgent => Name.Replace(' ', '-') + "/" + ApplicationVersionString;
/// <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 { get; } = "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>
2019-08-09 23:50:40 +02:00
/// /// <typeparam name="T">The type.</typeparam>
/// <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)
{
try
{
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);
return null;
}
}
/// <summary>
/// Resolves this instance.
/// </summary>
2019-03-13 22:32:52 +01:00
/// <typeparam name="T">The type</typeparam>
/// <returns>``0.</returns>
public T Resolve<T>() => ServiceProvider.GetService<T>();
/// <summary>
/// Gets the export types.
/// </summary>
2019-10-25 12:47:20 +02:00
/// <typeparam name="T">The type.</typeparam>
/// <returns>IEnumerable{Type}.</returns>
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;
}
/// <summary>
2013-03-10 07:45:16 +01:00
/// Runs the startup tasks.
/// </summary>
/// <returns><see cref="Task" />.</returns>
public async Task RunStartupTasksAsync()
2013-03-07 06:34:00 +01:00
{
2019-01-27 15:40:37 +01:00
Logger.LogInformation("Running startup tasks");
Resolve<ITaskManager>().AddTasks(GetExports<IScheduledTask>(false));
ConfigurationManager.ConfigurationUpdated += 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
var stopWatch = new Stopwatch();
stopWatch.Start();
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");
_httpServer.GlobalResponse = null;
stopWatch.Restart();
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/>
public void Init(IServiceCollection serviceCollection)
2014-02-13 06:11:54 +01:00
{
2015-01-19 05:29:57 +01:00
HttpPort = ServerConfigurationManager.Configuration.HttpServerPortNumber;
HttpsPort = ServerConfigurationManager.Configuration.HttpsPortNumber;
2016-11-09 05:58:58 +01:00
// Safeguard against invalid configuration
if (HttpPort == HttpsPort)
{
HttpPort = ServerConfiguration.DefaultHttpPort;
HttpsPort = ServerConfiguration.DefaultHttpsPort;
}
2020-01-08 17:52:50 +01:00
JsonSerializer = new JsonSerializer();
if (Plugins != null)
{
var pluginBuilder = new StringBuilder();
foreach (var plugin in Plugins)
{
2019-08-09 23:16:24 +02:00
pluginBuilder.AppendLine(
string.Format(
CultureInfo.InvariantCulture,
"{0} {1}",
plugin.Name,
plugin.Version));
}
2019-08-09 23:16:24 +02:00
Logger.LogInformation("Plugins: {Plugins}", pluginBuilder.ToString());
}
2019-01-01 18:41:02 +01:00
DiscoverTypes();
RegisterServices(serviceCollection);
2019-02-25 23:34:32 +01:00
}
public async Task ExecuteWebsocketHandlerAsync(HttpContext context, Func<Task> next)
2019-02-25 23:34:32 +01:00
{
2019-02-26 10:23:58 +01:00
if (!context.WebSockets.IsWebSocketRequest)
2019-02-25 23:34:32 +01:00
{
await next().ConfigureAwait(false);
2019-02-26 10:23:58 +01:00
return;
2019-02-25 23:34:32 +01:00
}
await _httpServer.ProcessWebSocketRequest(context).ConfigureAwait(false);
2019-02-26 10:23:58 +01:00
}
2019-03-06 19:27:05 +01:00
public async Task ExecuteHttpHandlerAsync(HttpContext context, Func<Task> next)
2019-02-26 10:23:58 +01:00
{
if (context.WebSockets.IsWebSocketRequest)
{
await next().ConfigureAwait(false);
2019-02-26 10:23:58 +01:00
return;
}
var request = context.Request;
var response = context.Response;
2019-02-26 15:13:06 +01:00
var localPath = context.Request.Path.ToString();
2019-02-26 10:23:58 +01:00
var req = new WebSocketSharpRequest(request, response, request.Path, LoggerFactory.CreateLogger<WebSocketSharpRequest>());
await _httpServer.RequestHandler(req, request.GetDisplayUrl(), request.Host.ToString(), localPath, context.RequestAborted).ConfigureAwait(false);
2018-12-15 00:06:57 +01:00
}
2014-02-13 06:11:54 +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>
protected void RegisterServices(IServiceCollection serviceCollection)
2013-02-24 22:53:54 +01:00
{
var imageEncoderType = SkiaEncoder.IsNativeLibAvailable()
? typeof(SkiaEncoder)
: typeof(NullImageEncoder);
serviceCollection.AddSingleton(typeof(IImageEncoder), imageEncoderType);
2019-02-15 22:02:17 +01:00
serviceCollection.AddMemoryCache();
2019-02-15 20:11:27 +01:00
serviceCollection.AddSingleton(ConfigurationManager);
serviceCollection.AddSingleton<IApplicationHost>(this);
serviceCollection.AddSingleton<IApplicationPaths>(ApplicationPaths);
serviceCollection.AddSingleton(JsonSerializer);
// TODO: Remove support for injecting ILogger completely
serviceCollection.AddSingleton((provider) =>
{
Logger.LogWarning("Injecting ILogger directly is deprecated and should be replaced with ILogger<T>");
return Logger;
});
serviceCollection.AddSingleton(FileSystemManager);
serviceCollection.AddSingleton<TvdbClientManager>();
serviceCollection.AddSingleton<IHttpClient, HttpClientManager.HttpClientManager>();
serviceCollection.AddSingleton(NetworkManager);
serviceCollection.AddSingleton<IIsoManager, IsoManager>();
serviceCollection.AddSingleton<ITaskManager, TaskManager>();
serviceCollection.AddSingleton(XmlSerializer);
serviceCollection.AddSingleton<IProcessFactory, ProcessFactory>();
serviceCollection.AddSingleton<IStreamHelper, StreamHelper>();
2018-09-12 19:26:21 +02:00
serviceCollection.AddSingleton<ICryptoProvider, CryptographyProvider>();
serviceCollection.AddSingleton<ISocketFactory, SocketFactory>();
serviceCollection.AddSingleton<IInstallationManager, InstallationManager>();
2016-10-29 07:40:15 +02:00
serviceCollection.AddSingleton<IZipClient, ZipClient>();
2016-10-28 20:35:17 +02:00
serviceCollection.AddSingleton<IHttpResultFactory, HttpResultFactory>();
2013-03-15 05:23:07 +01:00
serviceCollection.AddSingleton<IServerApplicationHost>(this);
serviceCollection.AddSingleton<IServerApplicationPaths>(ApplicationPaths);
2013-03-07 06:34:00 +01:00
serviceCollection.AddSingleton(ServerConfigurationManager);
2015-02-28 19:47:05 +01:00
serviceCollection.AddSingleton<ILocalizationManager, LocalizationManager>();
2014-03-31 03:00:47 +02:00
serviceCollection.AddSingleton<IBlurayExaminer, BdInfoExaminer>();
serviceCollection.AddSingleton<IUserDataRepository, SqliteUserDataRepository>();
serviceCollection.AddSingleton<IUserDataManager, UserDataManager>();
serviceCollection.AddSingleton<IDisplayPreferencesRepository, SqliteDisplayPreferencesRepository>();
2013-04-19 22:27:02 +02:00
serviceCollection.AddSingleton<IItemRepository, SqliteItemRepository>();
2013-04-19 22:27:02 +02:00
serviceCollection.AddSingleton<IAuthenticationRepository, AuthenticationRepository>();
2014-07-08 03:41:03 +02:00
serviceCollection.AddSingleton<IUserRepository, SqliteUserRepository>();
2019-06-09 22:08:01 +02:00
// TODO: Refactor to eliminate the circular dependency here so that Lazy<T> isn't required
serviceCollection.AddTransient(provider => new Lazy<IDtoService>(provider.GetRequiredService<IDtoService>));
serviceCollection.AddSingleton<IUserManager, UserManager>();
2013-04-14 05:05:19 +02:00
2020-04-05 01:01:21 +02:00
// TODO: Add StartupOptions.FFmpegPath to IConfiguration so this doesn't need to be constructed manually
serviceCollection.AddSingleton<IMediaEncoder>(provider =>
new MediaBrowser.MediaEncoding.Encoder.MediaEncoder(
provider.GetRequiredService<ILogger<MediaBrowser.MediaEncoding.Encoder.MediaEncoder>>(),
provider.GetRequiredService<IServerConfigurationManager>(),
provider.GetRequiredService<IFileSystem>(),
provider.GetRequiredService<IProcessFactory>(),
provider.GetRequiredService<ILocalizationManager>(),
provider.GetRequiredService<ISubtitleEncoder>,
provider.GetRequiredService<IConfiguration>(),
StartupOptions.FFmpegPath));
// 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>();
2013-04-05 21:34:33 +02:00
serviceCollection.AddSingleton<ServiceController>();
serviceCollection.AddSingleton<IHttpListener, WebSocketSharpListener>();
serviceCollection.AddSingleton<IHttpServer, HttpListenerHost>();
2014-03-28 04:32:43 +01:00
serviceCollection.AddSingleton<IImageProcessor, ImageProcessor>();
2013-09-18 20:49:06 +02:00
2020-04-04 21:44:44 +02:00
serviceCollection.AddSingleton<ITVSeriesManager, TVSeriesManager>();
2014-12-30 17:36:49 +01:00
2020-04-04 21:40:06 +02:00
serviceCollection.AddSingleton<IDeviceManager, DeviceManager>();
2014-10-11 22:38:13 +02:00
serviceCollection.AddSingleton<IMediaSourceManager, MediaSourceManager>();
2018-09-12 19:26:21 +02:00
2020-04-04 21:12:02 +02:00
serviceCollection.AddSingleton<ISubtitleManager, SubtitleManager>();
2018-09-12 19:26:21 +02:00
2020-04-04 20:56:50 +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
serviceCollection.AddTransient(provider => new Lazy<ILiveTvManager>(provider.GetRequiredService<ILiveTvManager>));
serviceCollection.AddSingleton<IDtoService, DtoService>();
2020-04-04 20:32:35 +02:00
serviceCollection.AddSingleton<IChannelManager, ChannelManager>();
2014-03-18 02:45:41 +01:00
serviceCollection.AddSingleton<ISessionManager, SessionManager>();
2015-03-08 19:11:53 +01:00
serviceCollection.AddSingleton<IDlnaManager, DlnaManager>();
2014-03-13 20:08:02 +01:00
serviceCollection.AddSingleton<ICollectionManager, CollectionManager>();
serviceCollection.AddSingleton<IPlaylistManager, PlaylistManager>();
2014-08-02 04:34:45 +02:00
serviceCollection.AddSingleton<LiveTvDtoService>();
serviceCollection.AddSingleton<ILiveTvManager, LiveTvManager>();
2014-01-12 07:31:21 +01:00
2020-04-04 19:10:39 +02:00
serviceCollection.AddSingleton<IUserViewManager, UserViewManager>();
2014-06-07 21:46:24 +02:00
serviceCollection.AddSingleton<INotificationManager, NotificationManager>();
2014-04-25 22:15:50 +02:00
serviceCollection.AddSingleton<IDeviceDiscovery, DeviceDiscovery>();
2015-07-23 18:32:34 +02:00
serviceCollection.AddSingleton<IChapterManager, ChapterManager>();
2014-06-09 21:16:14 +02:00
serviceCollection.AddSingleton<IEncodingManager, MediaEncoder.EncodingManager>();
2014-06-10 19:36:06 +02:00
serviceCollection.AddSingleton<IActivityRepository, ActivityRepository>();
serviceCollection.AddSingleton<IActivityManager, ActivityManager>();
2014-08-11 00:13:17 +02:00
serviceCollection.AddSingleton<IAuthorizationContext, AuthorizationContext>();
2020-04-04 18:38:59 +02:00
serviceCollection.AddSingleton<ISessionContext, SessionContext>();
2016-11-08 19:44:23 +01:00
2020-04-04 18:34:01 +02:00
serviceCollection.AddSingleton<IAuthService, AuthService>();
2020-04-04 18:26:24 +02:00
serviceCollection.AddSingleton<ISubtitleEncoder, MediaBrowser.MediaEncoding.Subtitles.SubtitleEncoder>();
2016-06-04 07:51:33 +02:00
serviceCollection.AddSingleton<IResourceFileManager, ResourceFileManager>();
serviceCollection.AddSingleton<EncodingHelper>();
2018-09-12 19:26:21 +02:00
serviceCollection.AddSingleton<IAttachmentExtractor, MediaBrowser.MediaEncoding.Attachments.AttachmentExtractor>();
}
/// <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>();
_httpServer = Resolve<IHttpServer>();
_httpClient = Resolve<IHttpClient>();
((SqliteDisplayPreferencesRepository)Resolve<IDisplayPreferencesRepository>()).Initialize();
((AuthenticationRepository)Resolve<IAuthenticationRepository>()).Initialize();
((SqliteUserRepository)Resolve<IUserRepository>()).Initialize();
((ActivityRepository)Resolve<IActivityRepository>()).Initialize();
2016-06-24 08:32:51 +02:00
2018-09-12 19:26:21 +02:00
SetStaticProperties();
var userManager = (UserManager)Resolve<IUserManager>();
userManager.Initialize();
2018-09-12 19:26:21 +02:00
var userDataRepo = (SqliteUserDataRepository)Resolve<IUserDataRepository>();
((SqliteItemRepository)Resolve<IItemRepository>()).Initialize(userDataRepo, userManager);
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 'JELLYFIN_' prefixed environment variables
var allEnvVars = Environment.GetEnvironmentVariables();
var jellyfinEnvVars = new Dictionary<object, object>();
foreach (var key in allEnvVars.Keys)
{
if (key.ToString().StartsWith("JELLYFIN_", StringComparison.OrdinalIgnoreCase))
{
jellyfinEnvVars.Add(key, allEnvVars[key]);
}
}
logger.LogInformation("Environment Variables: {EnvVars}", jellyfinEnvVars);
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;
2019-01-13 21:37:13 +01:00
var localCert = new X509Certificate2(certificateLocation, password);
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
BaseItem.Logger = LoggerFactory.CreateLogger("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>();
User.UserManager = Resolve<IUserManager>();
2013-10-30 16:07:30 +01:00
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.JsonSerializer = JsonSerializer;
CollectionFolder.ApplicationHost = this;
AuthenticatedAttribute.AuthService = Resolve<IAuthService>();
2019-02-18 22:47:02 +01:00
}
private async void PluginInstalled(object sender, GenericEventArgs<PackageVersionInfo> args)
{
string dir = Path.Combine(ApplicationPaths.PluginsPath, args.Argument.name);
var types = Directory.EnumerateFiles(dir, "*.dll", SearchOption.AllDirectories)
2020-01-31 22:23:46 +01:00
.Select(Assembly.LoadFrom)
2019-02-18 22:47:02 +01:00
.SelectMany(x => x.ExportedTypes)
.Where(x => x.IsClass && !x.IsAbstract && !x.IsInterface && !x.IsGenericType)
2019-08-29 23:11:55 +02:00
.ToArray();
2019-02-18 22:47:02 +01:00
2019-08-29 23:11:55 +02:00
int oldLen = _allConcreteTypes.Length;
Array.Resize(ref _allConcreteTypes, oldLen + types.Length);
types.CopyTo(_allConcreteTypes, oldLen);
2019-02-18 22:47:02 +01:00
var plugins = types.Where(x => x.IsAssignableFrom(typeof(IPlugin)))
.Select(CreateInstanceSafe)
.Where(x => x != null)
.Cast<IPlugin>()
.Select(LoadPlugin)
.Where(x => x != null)
.ToArray();
2019-08-29 23:11:55 +02:00
oldLen = _plugins.Length;
Array.Resize(ref _plugins, oldLen + plugins.Length);
2019-02-18 22:47:02 +01:00
plugins.CopyTo(_plugins, oldLen);
var entries = types.Where(x => x.IsAssignableFrom(typeof(IServerEntryPoint)))
.Select(CreateInstanceSafe)
.Where(x => x != null)
.Cast<IServerEntryPoint>()
.ToList();
2019-08-09 23:16:24 +02:00
await Task.WhenAll(StartEntryPoints(entries, true)).ConfigureAwait(false);
await Task.WhenAll(StartEntryPoints(entries, false)).ConfigureAwait(false);
2013-02-24 22:53:54 +01:00
}
/// <summary>
/// Finds plugin components and register them with the appropriate services.
/// </summary>
private void FindParts()
{
InstallationManager = ServiceProvider.GetService<IInstallationManager>();
2019-03-28 19:11:05 +01:00
InstallationManager.PluginInstalled += PluginInstalled;
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>());
2019-12-11 00:13:57 +01:00
_plugins = GetExports<IPlugin>()
2019-02-06 14:04:32 +01:00
.Select(LoadPlugin)
.Where(i => i != null)
.ToArray();
2013-03-15 05:23:07 +01:00
_httpServer.Init(GetExportTypes<IService>(), GetExports<IWebSocketListener>(), GetUrlPrefixes());
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>());
Resolve<IUserManager>().AddParts(GetExports<IAuthenticationProvider>(), GetExports<IPasswordResetProvider>());
2018-09-12 19:26:21 +02:00
Resolve<IIsoManager>().AddParts(GetExports<IIsoMounter>());
}
2019-02-06 14:04:32 +01:00
private IPlugin LoadPlugin(IPlugin plugin)
{
try
{
2019-02-06 14:04:32 +01:00
if (plugin is IPluginAssembly assemblyPlugin)
{
var assembly = plugin.GetType().Assembly;
var assemblyName = assembly.GetName();
2019-02-06 14:04:32 +01:00
var assemblyFilePath = assembly.Location;
2018-09-12 19:26:21 +02:00
var dataFolderPath = Path.Combine(ApplicationPaths.PluginsPath, Path.GetFileNameWithoutExtension(assemblyFilePath));
2018-09-12 19:26:21 +02:00
assemblyPlugin.SetAttributes(assemblyFilePath, dataFolderPath, assemblyName.Version);
2017-08-28 18:41:32 +02:00
try
{
var idAttributes = assembly.GetCustomAttributes(typeof(GuidAttribute), true);
if (idAttributes.Length > 0)
{
var attribute = (GuidAttribute)idAttributes[0];
var assemblyId = new Guid(attribute.Value);
assemblyPlugin.SetId(assemblyId);
}
}
catch (Exception ex)
{
2019-01-03 21:25:39 +01:00
Logger.LogError(ex, "Error getting plugin Id from {PluginName}.", plugin.GetType().FullName);
2017-08-28 18:41:32 +02:00
}
}
2019-01-03 21:25:39 +01:00
if (plugin is IHasPluginConfiguration hasPluginConfiguration)
2018-09-12 19:26:21 +02:00
{
hasPluginConfiguration.SetStartupInfo(s => Directory.CreateDirectory(s));
}
}
catch (Exception ex)
{
Logger.LogError(ex, "Error loading plugin {PluginName}", plugin.GetType().FullName);
return null;
}
return plugin;
}
/// <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);
continue;
}
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;
// Don't do anything if these haven't been set yet
if (HttpPort != 0 && HttpsPort != 0)
{
// Need to restart if ports have changed
if (ServerConfigurationManager.Configuration.HttpServerPortNumber != HttpPort ||
ServerConfigurationManager.Configuration.HttpsPortNumber != HttpsPort)
{
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
}
}
if (!_httpServer.UrlPrefixes.SequenceEqual(GetUrlPrefixes(), StringComparer.OrdinalIgnoreCase))
2013-05-07 21:07:51 +02:00
{
2015-01-19 05:29:57 +01:00
requiresRestart = true;
}
2019-03-13 22:32:52 +01:00
var currentCertPath = CertificateInfo?.Path;
var newCertPath = ServerConfigurationManager.Configuration.CertificatePath;
2017-05-01 04:22:13 +02:00
if (!string.Equals(currentCertPath, newCertPath, StringComparison.OrdinalIgnoreCase))
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();
}
}
/// <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
{
if (Directory.Exists(ApplicationPaths.PluginsPath))
{
foreach (var file in Directory.EnumerateFiles(ApplicationPaths.PluginsPath, "*.dll", SearchOption.AllDirectories))
{
Assembly plugAss;
try
{
plugAss = Assembly.LoadFrom(file);
}
2019-04-20 14:02:00 +02:00
catch (FileLoadException ex)
{
Logger.LogError(ex, "Failed to load assembly {Path}", file);
continue;
}
Logger.LogInformation("Loaded assembly {Assembly} from {Path}", plugAss.FullName, file);
yield return plugAss;
}
}
2013-09-26 23:20:26 +02:00
// Include composable parts in the Api assembly
yield return typeof(ApiEntryPoint).Assembly;
2013-02-24 22:53:54 +01:00
// Include composable parts in the Dashboard assembly
yield return typeof(DashboardService).Assembly;
2013-02-24 22:53:54 +01: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
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>
/// <param name="cancellationToken">The cancellation token.</param>
2013-03-07 06:34:00 +01:00
/// <returns>SystemInfo.</returns>
2017-11-23 16:46:16 +01:00
public async Task<SystemInfo> GetSystemInfo(CancellationToken cancellationToken)
2013-03-07 06:34:00 +01:00
{
2017-11-23 16:46:16 +01:00
var localAddress = await GetLocalApiUrl(cancellationToken).ConfigureAwait(false);
var transcodingTempPath = ConfigurationManager.GetTranscodePath();
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,
2017-08-19 21:43:35 +02:00
CompletedInstallations = InstallationManager.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,
2015-01-19 05:29:57 +01:00
HttpServerPortNumber = HttpPort,
SupportsHttps = SupportsHttps,
2015-01-19 05:29:57 +01:00
HttpsPortNumber = HttpsPort,
OperatingSystem = OperatingSystem.Id.ToString(),
OperatingSystemDisplayName = OperatingSystem.Name,
CanSelfRestart = CanSelfRestart,
CanLaunchWebBrowser = CanLaunchWebBrowser,
2014-04-26 04:55:07 +02:00
HasUpdateAvailable = HasUpdateAvailable,
TranscodingTempPath = transcodingTempPath,
2014-08-20 00:28:35 +02:00
ServerName = FriendlyName,
2016-06-19 18:53:43 +02:00
LocalAddress = localAddress,
2016-11-11 09:13:11 +01:00
SupportsLibraryMonitor = true,
2020-04-05 01:01:21 +02:00
EncoderLocation = _mediaEncoder.EncoderLocation,
SystemArchitecture = RuntimeInformation.OSArchitecture,
2017-04-10 03:51:36 +02:00
SystemUpdateLevel = SystemUpdateLevel,
PackageName = StartupOptions.PackageName
2013-03-07 06:34:00 +01:00
};
}
2019-08-09 23:16:24 +02:00
public IEnumerable<WakeOnLanInfo> GetWakeOnLanInfo()
=> NetworkManager.GetMacAddresses()
.Select(i => new WakeOnLanInfo(i))
.ToList();
2018-09-12 19:26:21 +02:00
public async Task<PublicSystemInfo> GetPublicSystemInfo(CancellationToken cancellationToken)
{
var localAddress = await GetLocalApiUrl(cancellationToken).ConfigureAwait(false);
return new PublicSystemInfo
{
2019-10-08 20:51:11 +02:00
Version = ApplicationVersionString,
ProductName = ApplicationProductName,
Id = SystemId,
OperatingSystem = OperatingSystem.Id.ToString(),
ServerName = FriendlyName,
LocalAddress = localAddress
};
}
public bool EnableHttps => SupportsHttps && ServerConfigurationManager.Configuration.EnableHttps;
2015-01-19 05:29:57 +01:00
public bool SupportsHttps => Certificate != null || ServerConfigurationManager.Configuration.IsBehindProxy;
2015-01-19 05:29:57 +01:00
2017-11-23 16:46:16 +01:00
public async Task<string> GetLocalApiUrl(CancellationToken cancellationToken)
2014-08-20 00:28:35 +02:00
{
2016-06-19 08:18:29 +02:00
try
2014-08-20 00:28:35 +02:00
{
2016-06-19 08:18:29 +02:00
// Return the first matched address, if found, or the first known local address
2017-11-29 21:50:18 +01:00
var addresses = await GetLocalIpAddressesInternal(false, 1, cancellationToken).ConfigureAwait(false);
2015-01-24 20:03:55 +01:00
2017-11-29 21:50:18 +01:00
foreach (var address in addresses)
2015-01-24 20:03:55 +01:00
{
2016-06-19 08:18:29 +02:00
return GetLocalApiUrl(address);
2015-01-24 20:03:55 +01:00
}
2015-08-10 19:37:50 +02:00
return null;
2014-08-20 00:28:35 +02:00
}
2016-06-19 08:18:29 +02:00
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
Logger.LogError(ex, "Error getting local Ip address information");
2016-06-19 08:18:29 +02:00
}
return null;
2015-01-24 20:03:55 +01:00
}
2014-08-20 00:28:35 +02:00
/// <summary>
/// Removes the scope id from IPv6 addresses.
/// </summary>
/// <param name="address">The IPv6 address.</param>
/// <returns>The IPv6 address without the scope id.</returns>
2020-01-02 21:22:10 +01:00
private ReadOnlySpan<char> RemoveScopeId(ReadOnlySpan<char> address)
{
var index = address.IndexOf('%');
if (index == -1)
{
return address;
}
2020-01-02 21:22:10 +01:00
return address.Slice(0, index);
}
2020-01-02 21:22:10 +01:00
/// <inheritdoc />
public string GetLocalApiUrl(IPAddress ipAddress)
2016-10-26 03:57:58 +02:00
{
if (ipAddress.AddressFamily == AddressFamily.InterNetworkV6)
2016-03-09 18:40:29 +01:00
{
var str = RemoveScopeId(ipAddress.ToString());
2020-01-02 21:22:10 +01:00
Span<char> span = new char[str.Length + 2];
span[0] = '[';
str.CopyTo(span.Slice(1));
span[^1] = ']';
2020-01-02 21:22:10 +01:00
return GetLocalApiUrl(span);
2016-03-09 18:40:29 +01:00
}
return GetLocalApiUrl(ipAddress.ToString());
2016-03-09 18:40:29 +01:00
}
2020-01-02 21:22:10 +01:00
/// <inheritdoc />
public string GetLocalApiUrl(ReadOnlySpan<char> host)
2015-02-10 06:54:58 +01:00
{
2020-01-02 21:22:10 +01:00
var url = new StringBuilder(64);
url.Append(EnableHttps ? "https://" : "http://")
.Append(host)
2020-01-02 21:22:10 +01:00
.Append(':')
.Append(EnableHttps ? HttpsPort : HttpPort);
2020-01-02 21:22:10 +01:00
string baseUrl = ServerConfigurationManager.Configuration.BaseUrl;
if (baseUrl.Length != 0)
{
url.Append(baseUrl);
}
2020-01-02 21:22:10 +01:00
return url.ToString();
2015-02-10 06:54:58 +01:00
}
public Task<List<IPAddress>> GetLocalIpAddresses(CancellationToken cancellationToken)
2017-11-29 21:50:18 +01:00
{
return GetLocalIpAddressesInternal(true, 0, cancellationToken);
}
private async Task<List<IPAddress>> GetLocalIpAddressesInternal(bool allowLoopback, int limit, CancellationToken cancellationToken)
2016-10-26 03:57:58 +02:00
{
2016-12-07 21:02:34 +01:00
var addresses = ServerConfigurationManager
.Configuration
.LocalNetworkAddresses
.Select(NormalizeConfiguredLocalAddress)
.Where(i => i != null)
.ToList();
2015-12-29 04:39:38 +01:00
2016-12-07 21:02:34 +01:00
if (addresses.Count == 0)
2016-09-12 21:38:38 +02:00
{
addresses.AddRange(NetworkManager.GetLocalIpAddresses(ServerConfigurationManager.Configuration.IgnoreVirtualInterfaces));
2017-11-29 21:50:18 +01:00
}
2016-12-07 21:02:34 +01:00
var resultList = new List<IPAddress>();
2016-12-07 21:02:34 +01:00
2017-11-29 21:50:18 +01:00
foreach (var address in addresses)
{
if (!allowLoopback)
2016-09-12 21:38:38 +02:00
{
if (address.Equals(IPAddress.Loopback) || address.Equals(IPAddress.IPv6Loopback))
2016-12-07 21:02:34 +01:00
{
2017-11-29 21:50:18 +01:00
continue;
2016-12-07 21:02:34 +01:00
}
2016-09-12 21:38:38 +02:00
}
2016-12-07 21:02:34 +01:00
2017-11-29 21:50:18 +01:00
var valid = await IsIpAddressValidAsync(address, cancellationToken).ConfigureAwait(false);
if (valid)
{
resultList.Add(address);
if (limit > 0 && resultList.Count >= limit)
{
return resultList;
}
}
2016-09-12 21:38:38 +02:00
}
2017-11-29 21:50:18 +01:00
return resultList;
2016-12-07 21:02:34 +01:00
}
public IPAddress NormalizeConfiguredLocalAddress(string address)
2016-12-07 21:02:34 +01:00
{
var index = address.Trim('/').IndexOf('/');
if (index != -1)
{
address = address.Substring(index + 1);
}
if (IPAddress.TryParse(address.Trim('/'), out IPAddress result))
2016-12-07 21:02:34 +01:00
{
return result;
}
2019-03-13 22:32:52 +01:00
2016-12-07 21:02:34 +01:00
return null;
2014-08-20 00:28:35 +02:00
}
2015-12-29 04:39:38 +01:00
private readonly ConcurrentDictionary<string, bool> _validAddressResults = new ConcurrentDictionary<string, bool>(StringComparer.OrdinalIgnoreCase);
2019-03-13 22:32:52 +01:00
private async Task<bool> IsIpAddressValidAsync(IPAddress address, CancellationToken cancellationToken)
2014-09-17 05:04:10 +02:00
{
if (address.Equals(IPAddress.Loopback)
|| address.Equals(IPAddress.IPv6Loopback))
2014-09-17 05:04:10 +02:00
{
2015-12-29 04:39:38 +01:00
return true;
}
2014-09-17 05:04:10 +02:00
2016-03-09 18:40:29 +01:00
var apiUrl = GetLocalApiUrl(address);
2015-12-29 04:39:38 +01:00
apiUrl += "/system/ping";
2014-09-17 05:04:10 +02:00
if (_validAddressResults.TryGetValue(apiUrl, out var cachedResult))
2015-12-29 04:39:38 +01:00
{
return cachedResult;
}
2014-09-17 05:04:10 +02:00
2015-12-29 04:39:38 +01:00
try
{
using (var response = await _httpClient.SendAsync(
2019-03-13 22:32:52 +01:00
new HttpRequestOptions
{
Url = apiUrl,
LogErrorResponseBody = false,
BufferContent = false,
CancellationToken = cancellationToken
2019-03-08 20:32:14 +01:00
}, HttpMethod.Post).ConfigureAwait(false))
2015-12-29 04:39:38 +01:00
{
2015-12-29 20:06:32 +01:00
using (var reader = new StreamReader(response.Content))
{
2019-03-08 20:32:14 +01:00
var result = await reader.ReadToEndAsync().ConfigureAwait(false);
2015-12-29 20:06:32 +01:00
var valid = string.Equals(Name, result, StringComparison.OrdinalIgnoreCase);
_validAddressResults.AddOrUpdate(apiUrl, valid, (k, v) => valid);
Logger.LogDebug("Ping test result to {0}. Success: {1}", apiUrl, valid);
2015-12-29 20:06:32 +01:00
return valid;
}
2015-12-29 04:39:38 +01:00
}
2014-09-17 05:04:10 +02:00
}
2017-11-23 16:46:16 +01:00
catch (OperationCanceledException)
{
Logger.LogDebug("Ping test result to {0}. Success: {1}", apiUrl, "Cancelled");
2017-11-23 16:46:16 +01:00
throw;
}
2018-09-12 19:26:21 +02:00
catch (Exception ex)
2015-12-29 04:39:38 +01:00
{
2018-12-20 13:39:58 +01:00
Logger.LogDebug(ex, "Ping test result to {0}. Success: {1}", apiUrl, false);
2015-12-29 20:06:32 +01:00
_validAddressResults.AddOrUpdate(apiUrl, false, (k, v) => false);
2015-12-29 04:39:38 +01:00
return false;
}
}
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
}
}
}
/// <summary>
/// Removes the plugin.
/// </summary>
/// <param name="plugin">The plugin.</param>
public void RemovePlugin(IPlugin plugin)
{
2019-12-11 00:13:57 +01:00
var list = _plugins.ToList();
list.Remove(plugin);
2019-12-11 00:13:57 +01:00
_plugins = list.ToArray();
}
2017-08-17 22:19:02 +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 = Resolve<IProcessFactory>().Create(new ProcessOptions
2016-12-07 21:02:34 +01:00
{
2016-11-21 00:48:52 +01:00
FileName = url,
2019-03-13 22:32:52 +01:00
EnableRaisingEvents = true,
2016-11-21 00:48:52 +01:00
UseShellExecute = true,
ErrorDialog = false
});
process.Exited += ProcessExited;
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;
}
}
private static void ProcessExited(object sender, EventArgs e)
{
((IProcess)sender).Dispose();
}
2016-09-03 19:16:36 +02:00
2017-03-22 19:37:04 +01:00
public virtual void EnableLoopback(string appName)
2016-09-03 19:16:36 +02:00
{
}
2016-11-13 05:33:51 +01:00
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-04-03 14:22:17 +02:00
2019-08-14 20:24:44 +02:00
_userRepository?.Dispose();
}
2019-03-13 22:32:52 +01:00
_userRepository = null;
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
}
}