| | 1 | | using System.Linq; |
| | 2 | | using System.Threading.Tasks; |
| | 3 | | using MediaBrowser.Common.Configuration; |
| | 4 | | using MediaBrowser.Common.Updates; |
| | 5 | | using MediaBrowser.Controller; |
| | 6 | | using MediaBrowser.Controller.Configuration; |
| | 7 | | using MediaBrowser.Model.System; |
| | 8 | | using Microsoft.AspNetCore.Http; |
| | 9 | | using Microsoft.Extensions.Hosting; |
| | 10 | |
|
| | 11 | | namespace Emby.Server.Implementations; |
| | 12 | |
|
| | 13 | | /// <inheritdoc /> |
| | 14 | | public class SystemManager : ISystemManager |
| | 15 | | { |
| | 16 | | private readonly IHostApplicationLifetime _applicationLifetime; |
| | 17 | | private readonly IServerApplicationHost _applicationHost; |
| | 18 | | private readonly IServerApplicationPaths _applicationPaths; |
| | 19 | | private readonly IServerConfigurationManager _configurationManager; |
| | 20 | | private readonly IStartupOptions _startupOptions; |
| | 21 | | private readonly IInstallationManager _installationManager; |
| | 22 | |
|
| | 23 | | /// <summary> |
| | 24 | | /// Initializes a new instance of the <see cref="SystemManager"/> class. |
| | 25 | | /// </summary> |
| | 26 | | /// <param name="applicationLifetime">Instance of <see cref="IHostApplicationLifetime"/>.</param> |
| | 27 | | /// <param name="applicationHost">Instance of <see cref="IServerApplicationHost"/>.</param> |
| | 28 | | /// <param name="applicationPaths">Instance of <see cref="IServerApplicationPaths"/>.</param> |
| | 29 | | /// <param name="configurationManager">Instance of <see cref="IServerConfigurationManager"/>.</param> |
| | 30 | | /// <param name="startupOptions">Instance of <see cref="IStartupOptions"/>.</param> |
| | 31 | | /// <param name="installationManager">Instance of <see cref="IInstallationManager"/>.</param> |
| | 32 | | public SystemManager( |
| | 33 | | IHostApplicationLifetime applicationLifetime, |
| | 34 | | IServerApplicationHost applicationHost, |
| | 35 | | IServerApplicationPaths applicationPaths, |
| | 36 | | IServerConfigurationManager configurationManager, |
| | 37 | | IStartupOptions startupOptions, |
| | 38 | | IInstallationManager installationManager) |
| | 39 | | { |
| 0 | 40 | | _applicationLifetime = applicationLifetime; |
| 0 | 41 | | _applicationHost = applicationHost; |
| 0 | 42 | | _applicationPaths = applicationPaths; |
| 0 | 43 | | _configurationManager = configurationManager; |
| 0 | 44 | | _startupOptions = startupOptions; |
| 0 | 45 | | _installationManager = installationManager; |
| 0 | 46 | | } |
| | 47 | |
|
| | 48 | | /// <inheritdoc /> |
| | 49 | | public SystemInfo GetSystemInfo(HttpRequest request) |
| | 50 | | { |
| 0 | 51 | | return new SystemInfo |
| 0 | 52 | | { |
| 0 | 53 | | HasPendingRestart = _applicationHost.HasPendingRestart, |
| 0 | 54 | | IsShuttingDown = _applicationLifetime.ApplicationStopping.IsCancellationRequested, |
| 0 | 55 | | Version = _applicationHost.ApplicationVersionString, |
| 0 | 56 | | ProductName = _applicationHost.Name, |
| 0 | 57 | | WebSocketPortNumber = _applicationHost.HttpPort, |
| 0 | 58 | | CompletedInstallations = _installationManager.CompletedInstallations.ToArray(), |
| 0 | 59 | | Id = _applicationHost.SystemId, |
| 0 | 60 | | ProgramDataPath = _applicationPaths.ProgramDataPath, |
| 0 | 61 | | WebPath = _applicationPaths.WebPath, |
| 0 | 62 | | LogPath = _applicationPaths.LogDirectoryPath, |
| 0 | 63 | | ItemsByNamePath = _applicationPaths.InternalMetadataPath, |
| 0 | 64 | | InternalMetadataPath = _applicationPaths.InternalMetadataPath, |
| 0 | 65 | | CachePath = _applicationPaths.CachePath, |
| 0 | 66 | | TranscodingTempPath = _configurationManager.GetTranscodePath(), |
| 0 | 67 | | ServerName = _applicationHost.FriendlyName, |
| 0 | 68 | | LocalAddress = _applicationHost.GetSmartApiUrl(request), |
| 0 | 69 | | StartupWizardCompleted = _configurationManager.CommonConfiguration.IsStartupWizardCompleted, |
| 0 | 70 | | SupportsLibraryMonitor = true, |
| 0 | 71 | | PackageName = _startupOptions.PackageName, |
| 0 | 72 | | CastReceiverApplications = _configurationManager.Configuration.CastReceiverApplications |
| 0 | 73 | | }; |
| | 74 | | } |
| | 75 | |
|
| | 76 | | /// <inheritdoc /> |
| | 77 | | public PublicSystemInfo GetPublicSystemInfo(HttpRequest request) |
| | 78 | | { |
| 0 | 79 | | return new PublicSystemInfo |
| 0 | 80 | | { |
| 0 | 81 | | Version = _applicationHost.ApplicationVersionString, |
| 0 | 82 | | ProductName = _applicationHost.Name, |
| 0 | 83 | | Id = _applicationHost.SystemId, |
| 0 | 84 | | ServerName = _applicationHost.FriendlyName, |
| 0 | 85 | | LocalAddress = _applicationHost.GetSmartApiUrl(request), |
| 0 | 86 | | StartupWizardCompleted = _configurationManager.CommonConfiguration.IsStartupWizardCompleted |
| 0 | 87 | | }; |
| | 88 | | } |
| | 89 | |
|
| | 90 | | /// <inheritdoc /> |
| 0 | 91 | | public void Restart() => ShutdownInternal(true); |
| | 92 | |
|
| | 93 | | /// <inheritdoc /> |
| 0 | 94 | | public void Shutdown() => ShutdownInternal(false); |
| | 95 | |
|
| | 96 | | private void ShutdownInternal(bool restart) |
| | 97 | | { |
| 0 | 98 | | Task.Run(async () => |
| 0 | 99 | | { |
| 0 | 100 | | await Task.Delay(100).ConfigureAwait(false); |
| 0 | 101 | | _applicationHost.ShouldRestart = restart; |
| 0 | 102 | | _applicationLifetime.StopApplication(); |
| 0 | 103 | | }); |
| 0 | 104 | | } |
| | 105 | | } |