| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Concurrent; |
| | 7 | | using System.Collections.Generic; |
| | 8 | | using System.Diagnostics; |
| | 9 | | using System.Globalization; |
| | 10 | | using System.IO; |
| | 11 | | using System.Linq; |
| | 12 | | using System.Net; |
| | 13 | | using System.Reflection; |
| | 14 | | using System.Security.Cryptography.X509Certificates; |
| | 15 | | using System.Threading.Tasks; |
| | 16 | | using Emby.Naming.Common; |
| | 17 | | using Emby.Photos; |
| | 18 | | using Emby.Server.Implementations.Collections; |
| | 19 | | using Emby.Server.Implementations.Configuration; |
| | 20 | | using Emby.Server.Implementations.Cryptography; |
| | 21 | | using Emby.Server.Implementations.Data; |
| | 22 | | using Emby.Server.Implementations.Devices; |
| | 23 | | using Emby.Server.Implementations.Dto; |
| | 24 | | using Emby.Server.Implementations.HttpServer.Security; |
| | 25 | | using Emby.Server.Implementations.IO; |
| | 26 | | using Emby.Server.Implementations.Library; |
| | 27 | | using Emby.Server.Implementations.Localization; |
| | 28 | | using Emby.Server.Implementations.Playlists; |
| | 29 | | using Emby.Server.Implementations.Plugins; |
| | 30 | | using Emby.Server.Implementations.QuickConnect; |
| | 31 | | using Emby.Server.Implementations.ScheduledTasks; |
| | 32 | | using Emby.Server.Implementations.Serialization; |
| | 33 | | using Emby.Server.Implementations.Session; |
| | 34 | | using Emby.Server.Implementations.SyncPlay; |
| | 35 | | using Emby.Server.Implementations.TV; |
| | 36 | | using Emby.Server.Implementations.Updates; |
| | 37 | | using Jellyfin.Api.Helpers; |
| | 38 | | using Jellyfin.Database.Implementations; |
| | 39 | | using Jellyfin.Drawing; |
| | 40 | | using Jellyfin.MediaEncoding.Hls.Playlist; |
| | 41 | | using Jellyfin.Networking.Manager; |
| | 42 | | using Jellyfin.Networking.Udp; |
| | 43 | | using Jellyfin.Server.Implementations.Item; |
| | 44 | | using Jellyfin.Server.Implementations.MediaSegments; |
| | 45 | | using MediaBrowser.Common; |
| | 46 | | using MediaBrowser.Common.Configuration; |
| | 47 | | using MediaBrowser.Common.Events; |
| | 48 | | using MediaBrowser.Common.Net; |
| | 49 | | using MediaBrowser.Common.Plugins; |
| | 50 | | using MediaBrowser.Common.Updates; |
| | 51 | | using MediaBrowser.Controller; |
| | 52 | | using MediaBrowser.Controller.Channels; |
| | 53 | | using MediaBrowser.Controller.Chapters; |
| | 54 | | using MediaBrowser.Controller.ClientEvent; |
| | 55 | | using MediaBrowser.Controller.Collections; |
| | 56 | | using MediaBrowser.Controller.Configuration; |
| | 57 | | using MediaBrowser.Controller.Drawing; |
| | 58 | | using MediaBrowser.Controller.Dto; |
| | 59 | | using MediaBrowser.Controller.Entities; |
| | 60 | | using MediaBrowser.Controller.IO; |
| | 61 | | using MediaBrowser.Controller.Library; |
| | 62 | | using MediaBrowser.Controller.LiveTv; |
| | 63 | | using MediaBrowser.Controller.Lyrics; |
| | 64 | | using MediaBrowser.Controller.MediaEncoding; |
| | 65 | | using MediaBrowser.Controller.Net; |
| | 66 | | using MediaBrowser.Controller.Persistence; |
| | 67 | | using MediaBrowser.Controller.Playlists; |
| | 68 | | using MediaBrowser.Controller.Providers; |
| | 69 | | using MediaBrowser.Controller.QuickConnect; |
| | 70 | | using MediaBrowser.Controller.Resolvers; |
| | 71 | | using MediaBrowser.Controller.Session; |
| | 72 | | using MediaBrowser.Controller.Sorting; |
| | 73 | | using MediaBrowser.Controller.Subtitles; |
| | 74 | | using MediaBrowser.Controller.SyncPlay; |
| | 75 | | using MediaBrowser.Controller.TV; |
| | 76 | | using MediaBrowser.LocalMetadata.Savers; |
| | 77 | | using MediaBrowser.MediaEncoding.BdInfo; |
| | 78 | | using MediaBrowser.MediaEncoding.Subtitles; |
| | 79 | | using MediaBrowser.MediaEncoding.Transcoding; |
| | 80 | | using MediaBrowser.Model.Cryptography; |
| | 81 | | using MediaBrowser.Model.Globalization; |
| | 82 | | using MediaBrowser.Model.IO; |
| | 83 | | using MediaBrowser.Model.MediaInfo; |
| | 84 | | using MediaBrowser.Model.Net; |
| | 85 | | using MediaBrowser.Model.Serialization; |
| | 86 | | using MediaBrowser.Model.System; |
| | 87 | | using MediaBrowser.Model.Tasks; |
| | 88 | | using MediaBrowser.Providers.Lyric; |
| | 89 | | using MediaBrowser.Providers.Manager; |
| | 90 | | using MediaBrowser.Providers.Plugins.Tmdb; |
| | 91 | | using MediaBrowser.Providers.Subtitles; |
| | 92 | | using MediaBrowser.XbmcMetadata.Providers; |
| | 93 | | using Microsoft.AspNetCore.Http; |
| | 94 | | using Microsoft.AspNetCore.Mvc; |
| | 95 | | using Microsoft.EntityFrameworkCore; |
| | 96 | | using Microsoft.Extensions.Configuration; |
| | 97 | | using Microsoft.Extensions.DependencyInjection; |
| | 98 | | using Microsoft.Extensions.Logging; |
| | 99 | | using Prometheus.DotNetRuntime; |
| | 100 | | using static MediaBrowser.Controller.Extensions.ConfigurationExtensions; |
| | 101 | | using IConfigurationManager = MediaBrowser.Common.Configuration.IConfigurationManager; |
| | 102 | | using WebSocketManager = Emby.Server.Implementations.HttpServer.WebSocketManager; |
| | 103 | |
|
| | 104 | | namespace Emby.Server.Implementations |
| | 105 | | { |
| | 106 | | /// <summary> |
| | 107 | | /// Class CompositionRoot. |
| | 108 | | /// </summary> |
| | 109 | | public abstract class ApplicationHost : IServerApplicationHost, IDisposable |
| | 110 | | { |
| | 111 | | /// <summary> |
| | 112 | | /// The disposable parts. |
| | 113 | | /// </summary> |
| 21 | 114 | | private readonly ConcurrentBag<IDisposable> _disposableParts = new(); |
| | 115 | | private readonly DeviceId _deviceId; |
| | 116 | |
|
| | 117 | | private readonly IConfiguration _startupConfig; |
| | 118 | | private readonly IXmlSerializer _xmlSerializer; |
| | 119 | | private readonly IStartupOptions _startupOptions; |
| | 120 | | private readonly PluginManager _pluginManager; |
| | 121 | |
|
| | 122 | | private List<Type> _creatingInstances; |
| | 123 | |
|
| | 124 | | /// <summary> |
| | 125 | | /// Gets or sets all concrete types. |
| | 126 | | /// </summary> |
| | 127 | | /// <value>All concrete types.</value> |
| | 128 | | private Type[] _allConcreteTypes; |
| | 129 | |
|
| | 130 | | private bool _disposed; |
| | 131 | |
|
| | 132 | | /// <summary> |
| | 133 | | /// Initializes a new instance of the <see cref="ApplicationHost"/> class. |
| | 134 | | /// </summary> |
| | 135 | | /// <param name="applicationPaths">Instance of the <see cref="IServerApplicationPaths"/> interface.</param> |
| | 136 | | /// <param name="loggerFactory">Instance of the <see cref="ILoggerFactory"/> interface.</param> |
| | 137 | | /// <param name="options">Instance of the <see cref="IStartupOptions"/> interface.</param> |
| | 138 | | /// <param name="startupConfig">The <see cref="IConfiguration" /> interface.</param> |
| | 139 | | protected ApplicationHost( |
| | 140 | | IServerApplicationPaths applicationPaths, |
| | 141 | | ILoggerFactory loggerFactory, |
| | 142 | | IStartupOptions options, |
| | 143 | | IConfiguration startupConfig) |
| | 144 | | { |
| | 145 | | ApplicationPaths = applicationPaths; |
| | 146 | | LoggerFactory = loggerFactory; |
| 21 | 147 | | _startupOptions = options; |
| 21 | 148 | | _startupConfig = startupConfig; |
| | 149 | |
|
| 21 | 150 | | Logger = LoggerFactory.CreateLogger<ApplicationHost>(); |
| 21 | 151 | | _deviceId = new DeviceId(ApplicationPaths, LoggerFactory.CreateLogger<DeviceId>()); |
| | 152 | |
|
| 21 | 153 | | ApplicationVersion = typeof(ApplicationHost).Assembly.GetName().Version; |
| 21 | 154 | | ApplicationVersionString = ApplicationVersion.ToString(3); |
| 21 | 155 | | ApplicationUserAgent = Name.Replace(' ', '-') + "/" + ApplicationVersionString; |
| | 156 | |
|
| 21 | 157 | | _xmlSerializer = new MyXmlSerializer(); |
| 21 | 158 | | ConfigurationManager = new ServerConfigurationManager(ApplicationPaths, LoggerFactory, _xmlSerializer); |
| 21 | 159 | | _pluginManager = new PluginManager( |
| 21 | 160 | | LoggerFactory.CreateLogger<PluginManager>(), |
| 21 | 161 | | this, |
| 21 | 162 | | ConfigurationManager.Configuration, |
| 21 | 163 | | ApplicationPaths.PluginsPath, |
| 21 | 164 | | ApplicationVersion); |
| | 165 | |
|
| 21 | 166 | | _disposableParts.Add(_pluginManager); |
| 21 | 167 | | } |
| | 168 | |
|
| | 169 | | /// <summary> |
| | 170 | | /// Occurs when [has pending restart changed]. |
| | 171 | | /// </summary> |
| | 172 | | public event EventHandler HasPendingRestartChanged; |
| | 173 | |
|
| | 174 | | /// <summary> |
| | 175 | | /// Gets the value of the PublishedServerUrl setting. |
| | 176 | | /// </summary> |
| 0 | 177 | | private string PublishedServerUrl => _startupConfig[AddressOverrideKey]; |
| | 178 | |
|
| | 179 | | public bool CoreStartupHasCompleted { get; private set; } |
| | 180 | |
|
| | 181 | | /// <summary> |
| | 182 | | /// Gets the <see cref="INetworkManager"/> singleton instance. |
| | 183 | | /// </summary> |
| | 184 | | public INetworkManager NetManager { get; private set; } |
| | 185 | |
|
| | 186 | | /// <inheritdoc /> |
| | 187 | | public bool HasPendingRestart { get; private set; } |
| | 188 | |
|
| | 189 | | /// <inheritdoc /> |
| | 190 | | public bool ShouldRestart { get; set; } |
| | 191 | |
|
| | 192 | | /// <summary> |
| | 193 | | /// Gets the logger. |
| | 194 | | /// </summary> |
| | 195 | | protected ILogger<ApplicationHost> Logger { get; } |
| | 196 | |
|
| | 197 | | /// <summary> |
| | 198 | | /// Gets the logger factory. |
| | 199 | | /// </summary> |
| | 200 | | protected ILoggerFactory LoggerFactory { get; } |
| | 201 | |
|
| | 202 | | /// <summary> |
| | 203 | | /// Gets the application paths. |
| | 204 | | /// </summary> |
| | 205 | | /// <value>The application paths.</value> |
| | 206 | | protected IServerApplicationPaths ApplicationPaths { get; } |
| | 207 | |
|
| | 208 | | /// <summary> |
| | 209 | | /// Gets the configuration manager. |
| | 210 | | /// </summary> |
| | 211 | | /// <value>The configuration manager.</value> |
| | 212 | | public ServerConfigurationManager ConfigurationManager { get; } |
| | 213 | |
|
| | 214 | | /// <summary> |
| | 215 | | /// Gets or sets the service provider. |
| | 216 | | /// </summary> |
| | 217 | | public IServiceProvider ServiceProvider { get; set; } |
| | 218 | |
|
| | 219 | | /// <summary> |
| | 220 | | /// Gets the http port for the webhost. |
| | 221 | | /// </summary> |
| | 222 | | public int HttpPort { get; private set; } |
| | 223 | |
|
| | 224 | | /// <summary> |
| | 225 | | /// Gets the https port for the webhost. |
| | 226 | | /// </summary> |
| | 227 | | public int HttpsPort { get; private set; } |
| | 228 | |
|
| | 229 | | /// <inheritdoc /> |
| | 230 | | public Version ApplicationVersion { get; } |
| | 231 | |
|
| | 232 | | /// <inheritdoc /> |
| | 233 | | public string ApplicationVersionString { get; } |
| | 234 | |
|
| | 235 | | /// <summary> |
| | 236 | | /// Gets the current application user agent. |
| | 237 | | /// </summary> |
| | 238 | | /// <value>The application user agent.</value> |
| | 239 | | public string ApplicationUserAgent { get; } |
| | 240 | |
|
| | 241 | | /// <summary> |
| | 242 | | /// Gets the email address for use within a comment section of a user agent field. |
| | 243 | | /// Presently used to provide contact information to MusicBrainz service. |
| | 244 | | /// </summary> |
| 21 | 245 | | public string ApplicationUserAgentAddress => "team@jellyfin.org"; |
| | 246 | |
|
| | 247 | | /// <summary> |
| | 248 | | /// Gets the current application name. |
| | 249 | | /// </summary> |
| | 250 | | /// <value>The application name.</value> |
| 21 | 251 | | public string ApplicationProductName { get; } = FileVersionInfo.GetVersionInfo(Assembly.GetEntryAssembly().Locat |
| | 252 | |
|
| 98 | 253 | | public string SystemId => _deviceId.Value; |
| | 254 | |
|
| | 255 | | /// <inheritdoc/> |
| 63 | 256 | | public string Name => ApplicationProductName; |
| | 257 | |
|
| | 258 | | private string CertificatePath { get; set; } |
| | 259 | |
|
| | 260 | | public X509Certificate2 Certificate { get; private set; } |
| | 261 | |
|
| | 262 | | /// <inheritdoc/> |
| 0 | 263 | | public bool ListenWithHttps => Certificate is not null && ConfigurationManager.GetNetworkConfiguration().EnableH |
| | 264 | |
|
| | 265 | | public string FriendlyName => |
| 0 | 266 | | string.IsNullOrEmpty(ConfigurationManager.Configuration.ServerName) |
| 0 | 267 | | ? Environment.MachineName |
| 0 | 268 | | : ConfigurationManager.Configuration.ServerName; |
| | 269 | |
|
| | 270 | | public string ExpandVirtualPath(string path) |
| | 271 | | { |
| 91 | 272 | | if (path is null) |
| | 273 | | { |
| 0 | 274 | | return null; |
| | 275 | | } |
| | 276 | |
|
| 91 | 277 | | var appPaths = ApplicationPaths; |
| | 278 | |
|
| 91 | 279 | | return path.Replace(appPaths.VirtualDataPath, appPaths.DataPath, StringComparison.OrdinalIgnoreCase) |
| 91 | 280 | | .Replace(appPaths.VirtualInternalMetadataPath, appPaths.InternalMetadataPath, StringComparison.OrdinalIg |
| | 281 | | } |
| | 282 | |
|
| | 283 | | public string ReverseVirtualPath(string path) |
| | 284 | | { |
| 80 | 285 | | var appPaths = ApplicationPaths; |
| | 286 | |
|
| 80 | 287 | | return path.Replace(appPaths.DataPath, appPaths.VirtualDataPath, StringComparison.OrdinalIgnoreCase) |
| 80 | 288 | | .Replace(appPaths.InternalMetadataPath, appPaths.VirtualInternalMetadataPath, StringComparison.OrdinalIg |
| | 289 | | } |
| | 290 | |
|
| | 291 | | /// <summary> |
| | 292 | | /// Creates the instance safe. |
| | 293 | | /// </summary> |
| | 294 | | /// <param name="type">The type.</param> |
| | 295 | | /// <returns>System.Object.</returns> |
| | 296 | | protected object CreateInstanceSafe(Type type) |
| | 297 | | { |
| 4116 | 298 | | _creatingInstances ??= new List<Type>(); |
| | 299 | |
|
| 4116 | 300 | | if (_creatingInstances.Contains(type)) |
| | 301 | | { |
| 0 | 302 | | Logger.LogError("DI Loop detected in the attempted creation of {Type}", type.FullName); |
| 0 | 303 | | foreach (var entry in _creatingInstances) |
| | 304 | | { |
| 0 | 305 | | Logger.LogError("Called from: {TypeName}", entry.FullName); |
| | 306 | | } |
| | 307 | |
|
| 0 | 308 | | _pluginManager.FailPlugin(type.Assembly); |
| | 309 | |
|
| 0 | 310 | | throw new TypeLoadException("DI Loop detected"); |
| | 311 | | } |
| | 312 | |
|
| | 313 | | try |
| | 314 | | { |
| 4116 | 315 | | _creatingInstances.Add(type); |
| 4116 | 316 | | Logger.LogDebug("Creating instance of {Type}", type); |
| 4116 | 317 | | return ServiceProvider is null |
| 4116 | 318 | | ? Activator.CreateInstance(type) |
| 4116 | 319 | | : ActivatorUtilities.CreateInstance(ServiceProvider, type); |
| | 320 | | } |
| 0 | 321 | | catch (Exception ex) |
| | 322 | | { |
| 0 | 323 | | Logger.LogError(ex, "Error creating {Type}", type); |
| | 324 | | // If this is a plugin fail it. |
| 0 | 325 | | _pluginManager.FailPlugin(type.Assembly); |
| 0 | 326 | | return null; |
| | 327 | | } |
| | 328 | | finally |
| | 329 | | { |
| 4116 | 330 | | _creatingInstances.Remove(type); |
| 4116 | 331 | | } |
| 4116 | 332 | | } |
| | 333 | |
|
| | 334 | | /// <summary> |
| | 335 | | /// Resolves this instance. |
| | 336 | | /// </summary> |
| | 337 | | /// <typeparam name="T">The type.</typeparam> |
| | 338 | | /// <returns>``0.</returns> |
| 483 | 339 | | public T Resolve<T>() => ServiceProvider.GetService<T>(); |
| | 340 | |
|
| | 341 | | /// <inheritdoc/> |
| | 342 | | public IEnumerable<Type> GetExportTypes<T>() |
| | 343 | | { |
| | 344 | | var currentType = typeof(T); |
| | 345 | | var numberOfConcreteTypes = _allConcreteTypes.Length; |
| | 346 | | for (var i = 0; i < numberOfConcreteTypes; i++) |
| | 347 | | { |
| | 348 | | var type = _allConcreteTypes[i]; |
| | 349 | | if (currentType.IsAssignableFrom(type)) |
| | 350 | | { |
| | 351 | | yield return type; |
| | 352 | | } |
| | 353 | | } |
| | 354 | | } |
| | 355 | |
|
| | 356 | | /// <inheritdoc /> |
| | 357 | | public IReadOnlyCollection<T> GetExports<T>(bool manageLifetime = true) |
| | 358 | | { |
| | 359 | | // Convert to list so this isn't executed for each iteration |
| 294 | 360 | | var parts = GetExportTypes<T>() |
| 294 | 361 | | .Select(CreateInstanceSafe) |
| 294 | 362 | | .Where(i => i is not null) |
| 294 | 363 | | .Cast<T>() |
| 294 | 364 | | .ToList(); |
| | 365 | |
|
| 294 | 366 | | if (manageLifetime) |
| | 367 | | { |
| 630 | 368 | | foreach (var part in parts.OfType<IDisposable>()) |
| | 369 | | { |
| 42 | 370 | | _disposableParts.Add(part); |
| | 371 | | } |
| | 372 | | } |
| | 373 | |
|
| 294 | 374 | | return parts; |
| | 375 | | } |
| | 376 | |
|
| | 377 | | /// <inheritdoc /> |
| | 378 | | public IReadOnlyCollection<T> GetExports<T>(CreationDelegateFactory defaultFunc, bool manageLifetime = true) |
| | 379 | | { |
| | 380 | | // Convert to list so this isn't executed for each iteration |
| 21 | 381 | | var parts = GetExportTypes<T>() |
| 21 | 382 | | .Select(i => defaultFunc(i)) |
| 21 | 383 | | .Where(i => i is not null) |
| 21 | 384 | | .Cast<T>() |
| 21 | 385 | | .ToList(); |
| | 386 | |
|
| 21 | 387 | | if (manageLifetime) |
| | 388 | | { |
| 42 | 389 | | foreach (var part in parts.OfType<IDisposable>()) |
| | 390 | | { |
| 0 | 391 | | _disposableParts.Add(part); |
| | 392 | | } |
| | 393 | | } |
| | 394 | |
|
| 21 | 395 | | return parts; |
| | 396 | | } |
| | 397 | |
|
| | 398 | | /// <summary> |
| | 399 | | /// Runs the startup tasks. |
| | 400 | | /// </summary> |
| | 401 | | /// <returns><see cref="Task" />.</returns> |
| | 402 | | public Task RunStartupTasksAsync() |
| | 403 | | { |
| 21 | 404 | | Logger.LogInformation("Running startup tasks"); |
| | 405 | |
|
| 21 | 406 | | Resolve<ITaskManager>().AddTasks(GetExports<IScheduledTask>(false)); |
| | 407 | |
|
| 21 | 408 | | ConfigurationManager.ConfigurationUpdated += OnConfigurationUpdated; |
| 21 | 409 | | ConfigurationManager.NamedConfigurationUpdated += OnConfigurationUpdated; |
| | 410 | |
|
| 21 | 411 | | var ffmpegValid = Resolve<IMediaEncoder>().SetFFmpegPath(); |
| | 412 | |
|
| 21 | 413 | | if (!ffmpegValid) |
| | 414 | | { |
| 0 | 415 | | throw new FfmpegException("Failed to find valid ffmpeg"); |
| | 416 | | } |
| | 417 | |
|
| 21 | 418 | | Logger.LogInformation("ServerId: {ServerId}", SystemId); |
| 21 | 419 | | Logger.LogInformation("Core startup complete"); |
| 21 | 420 | | CoreStartupHasCompleted = true; |
| | 421 | |
|
| 21 | 422 | | return Task.CompletedTask; |
| | 423 | | } |
| | 424 | |
|
| | 425 | | /// <inheritdoc/> |
| | 426 | | public void Init(IServiceCollection serviceCollection) |
| | 427 | | { |
| 21 | 428 | | DiscoverTypes(); |
| | 429 | |
|
| 21 | 430 | | ConfigurationManager.AddParts(GetExports<IConfigurationFactory>()); |
| | 431 | |
|
| 21 | 432 | | NetManager = new NetworkManager(ConfigurationManager, _startupConfig, LoggerFactory.CreateLogger<NetworkMana |
| | 433 | |
|
| | 434 | | // Initialize runtime stat collection |
| 21 | 435 | | if (ConfigurationManager.Configuration.EnableMetrics) |
| | 436 | | { |
| 0 | 437 | | _disposableParts.Add(DotNetRuntimeStatsBuilder.Default().StartCollecting()); |
| | 438 | | } |
| | 439 | |
|
| 21 | 440 | | var networkConfiguration = ConfigurationManager.GetNetworkConfiguration(); |
| 21 | 441 | | HttpPort = networkConfiguration.InternalHttpPort; |
| 21 | 442 | | HttpsPort = networkConfiguration.InternalHttpsPort; |
| | 443 | |
|
| | 444 | | // Safeguard against invalid configuration |
| 21 | 445 | | if (HttpPort == HttpsPort) |
| | 446 | | { |
| 0 | 447 | | HttpPort = NetworkConfiguration.DefaultHttpPort; |
| 0 | 448 | | HttpsPort = NetworkConfiguration.DefaultHttpsPort; |
| | 449 | | } |
| | 450 | |
|
| 21 | 451 | | CertificatePath = networkConfiguration.CertificatePath; |
| 21 | 452 | | Certificate = GetCertificate(CertificatePath, networkConfiguration.CertificatePassword); |
| | 453 | |
|
| 21 | 454 | | RegisterServices(serviceCollection); |
| | 455 | |
|
| 21 | 456 | | _pluginManager.RegisterServices(serviceCollection); |
| 21 | 457 | | } |
| | 458 | |
|
| | 459 | | /// <summary> |
| | 460 | | /// Registers services/resources with the service collection that will be available via DI. |
| | 461 | | /// </summary> |
| | 462 | | /// <param name="serviceCollection">Instance of the <see cref="IServiceCollection"/> interface.</param> |
| | 463 | | protected virtual void RegisterServices(IServiceCollection serviceCollection) |
| | 464 | | { |
| 21 | 465 | | serviceCollection.AddSingleton(_startupOptions); |
| | 466 | |
|
| 21 | 467 | | serviceCollection.AddMemoryCache(); |
| | 468 | |
|
| 21 | 469 | | serviceCollection.AddSingleton<IServerConfigurationManager>(ConfigurationManager); |
| 21 | 470 | | serviceCollection.AddSingleton<IConfigurationManager>(ConfigurationManager); |
| 21 | 471 | | serviceCollection.AddSingleton<IApplicationHost>(this); |
| 21 | 472 | | serviceCollection.AddSingleton<IPluginManager>(_pluginManager); |
| 21 | 473 | | serviceCollection.AddSingleton<IApplicationPaths>(ApplicationPaths); |
| | 474 | |
|
| 21 | 475 | | serviceCollection.AddSingleton<IFileSystem, ManagedFileSystem>(); |
| 21 | 476 | | serviceCollection.AddSingleton<IShortcutHandler, MbLinkShortcutHandler>(); |
| | 477 | |
|
| 21 | 478 | | serviceCollection.AddScoped<ISystemManager, SystemManager>(); |
| | 479 | |
|
| 21 | 480 | | serviceCollection.AddSingleton<TmdbClientManager>(); |
| | 481 | |
|
| 21 | 482 | | serviceCollection.AddSingleton(NetManager); |
| | 483 | |
|
| 21 | 484 | | serviceCollection.AddSingleton<ITaskManager, TaskManager>(); |
| | 485 | |
|
| 21 | 486 | | serviceCollection.AddSingleton(_xmlSerializer); |
| | 487 | |
|
| 21 | 488 | | serviceCollection.AddSingleton<ICryptoProvider, CryptographyProvider>(); |
| | 489 | |
|
| 21 | 490 | | serviceCollection.AddSingleton<ISocketFactory, SocketFactory>(); |
| | 491 | |
|
| 21 | 492 | | serviceCollection.AddSingleton<IInstallationManager, InstallationManager>(); |
| | 493 | |
|
| 21 | 494 | | serviceCollection.AddSingleton<IServerApplicationHost>(this); |
| 21 | 495 | | serviceCollection.AddSingleton(ApplicationPaths); |
| | 496 | |
|
| 21 | 497 | | serviceCollection.AddSingleton<ILocalizationManager, LocalizationManager>(); |
| | 498 | |
|
| 21 | 499 | | serviceCollection.AddSingleton<IBlurayExaminer, BdInfoExaminer>(); |
| | 500 | |
|
| 21 | 501 | | serviceCollection.AddSingleton<IUserDataManager, UserDataManager>(); |
| | 502 | |
|
| 21 | 503 | | serviceCollection.AddSingleton<IItemRepository, BaseItemRepository>(); |
| 21 | 504 | | serviceCollection.AddSingleton<IPeopleRepository, PeopleRepository>(); |
| 21 | 505 | | serviceCollection.AddSingleton<IChapterRepository, ChapterRepository>(); |
| 21 | 506 | | serviceCollection.AddSingleton<IMediaAttachmentRepository, MediaAttachmentRepository>(); |
| 21 | 507 | | serviceCollection.AddSingleton<IMediaStreamRepository, MediaStreamRepository>(); |
| 21 | 508 | | serviceCollection.AddSingleton<IItemTypeLookup, ItemTypeLookup>(); |
| | 509 | |
|
| 21 | 510 | | serviceCollection.AddSingleton<IMediaEncoder, MediaBrowser.MediaEncoding.Encoder.MediaEncoder>(); |
| 21 | 511 | | serviceCollection.AddSingleton<EncodingHelper>(); |
| 21 | 512 | | serviceCollection.AddSingleton<IPathManager, PathManager>(); |
| | 513 | |
|
| | 514 | | // TODO: Refactor to eliminate the circular dependencies here so that Lazy<T> isn't required |
| 21 | 515 | | serviceCollection.AddTransient(provider => new Lazy<ILibraryMonitor>(provider.GetRequiredService<ILibraryMon |
| 21 | 516 | | serviceCollection.AddTransient(provider => new Lazy<IProviderManager>(provider.GetRequiredService<IProviderM |
| 21 | 517 | | serviceCollection.AddTransient(provider => new Lazy<IUserViewManager>(provider.GetRequiredService<IUserViewM |
| 21 | 518 | | serviceCollection.AddSingleton<ILibraryManager, LibraryManager>(); |
| 21 | 519 | | serviceCollection.AddSingleton<NamingOptions>(); |
| | 520 | |
|
| 21 | 521 | | serviceCollection.AddSingleton<IMusicManager, MusicManager>(); |
| | 522 | |
|
| 21 | 523 | | serviceCollection.AddSingleton<ILibraryMonitor, LibraryMonitor>(); |
| | 524 | |
|
| 21 | 525 | | serviceCollection.AddSingleton<ISearchEngine, SearchEngine>(); |
| | 526 | |
|
| 21 | 527 | | serviceCollection.AddSingleton<IWebSocketManager, WebSocketManager>(); |
| | 528 | |
|
| 21 | 529 | | serviceCollection.AddSingleton<IImageProcessor, ImageProcessor>(); |
| | 530 | |
|
| 21 | 531 | | serviceCollection.AddSingleton<ITVSeriesManager, TVSeriesManager>(); |
| | 532 | |
|
| 21 | 533 | | serviceCollection.AddSingleton<IMediaSourceManager, MediaSourceManager>(); |
| | 534 | |
|
| 21 | 535 | | serviceCollection.AddSingleton<ISubtitleManager, SubtitleManager>(); |
| 21 | 536 | | serviceCollection.AddSingleton<ILyricManager, LyricManager>(); |
| | 537 | |
|
| 21 | 538 | | serviceCollection.AddSingleton<IProviderManager, ProviderManager>(); |
| | 539 | |
|
| | 540 | | // TODO: Refactor to eliminate the circular dependency here so that Lazy<T> isn't required |
| 21 | 541 | | serviceCollection.AddTransient(provider => new Lazy<ILiveTvManager>(provider.GetRequiredService<ILiveTvManag |
| 21 | 542 | | serviceCollection.AddSingleton<IDtoService, DtoService>(); |
| | 543 | |
|
| 21 | 544 | | serviceCollection.AddSingleton<ISessionManager, SessionManager>(); |
| | 545 | |
|
| 21 | 546 | | serviceCollection.AddSingleton<ICollectionManager, CollectionManager>(); |
| | 547 | |
|
| 21 | 548 | | serviceCollection.AddSingleton<IPlaylistManager, PlaylistManager>(); |
| | 549 | |
|
| 21 | 550 | | serviceCollection.AddSingleton<ISyncPlayManager, SyncPlayManager>(); |
| | 551 | |
|
| 21 | 552 | | serviceCollection.AddSingleton<IUserViewManager, UserViewManager>(); |
| | 553 | |
|
| 21 | 554 | | serviceCollection.AddSingleton<IEncodingManager, MediaEncoder.EncodingManager>(); |
| | 555 | |
|
| 21 | 556 | | serviceCollection.AddSingleton<IAuthService, AuthService>(); |
| 21 | 557 | | serviceCollection.AddSingleton<IQuickConnect, QuickConnectManager>(); |
| | 558 | |
|
| 21 | 559 | | serviceCollection.AddSingleton<ISubtitleParser, SubtitleEditParser>(); |
| 21 | 560 | | serviceCollection.AddSingleton<ISubtitleEncoder, SubtitleEncoder>(); |
| | 561 | |
|
| 21 | 562 | | serviceCollection.AddSingleton<IAttachmentExtractor, MediaBrowser.MediaEncoding.Attachments.AttachmentExtrac |
| | 563 | |
|
| 21 | 564 | | serviceCollection.AddSingleton<ITranscodeManager, TranscodeManager>(); |
| 21 | 565 | | serviceCollection.AddScoped<MediaInfoHelper>(); |
| 21 | 566 | | serviceCollection.AddScoped<AudioHelper>(); |
| 21 | 567 | | serviceCollection.AddScoped<DynamicHlsHelper>(); |
| 21 | 568 | | serviceCollection.AddScoped<IClientEventLogger, ClientEventLogger>(); |
| 21 | 569 | | serviceCollection.AddSingleton<IDirectoryService, DirectoryService>(); |
| | 570 | |
|
| 21 | 571 | | serviceCollection.AddSingleton<IMediaSegmentManager, MediaSegmentManager>(); |
| 21 | 572 | | } |
| | 573 | |
|
| | 574 | | /// <summary> |
| | 575 | | /// Create services registered with the service container that need to be initialized at application startup. |
| | 576 | | /// </summary> |
| | 577 | | /// <param name="startupConfig">The configuration used to initialise the application.</param> |
| | 578 | | /// <returns>A task representing the service initialization operation.</returns> |
| | 579 | | public async Task InitializeServices(IConfiguration startupConfig) |
| | 580 | | { |
| | 581 | | var factory = Resolve<IDbContextFactory<JellyfinDbContext>>(); |
| | 582 | | var provider = Resolve<IJellyfinDatabaseProvider>(); |
| | 583 | | provider.DbContextFactory = factory; |
| | 584 | |
|
| | 585 | | var jellyfinDb = await factory.CreateDbContextAsync().ConfigureAwait(false); |
| | 586 | | await using (jellyfinDb.ConfigureAwait(false)) |
| | 587 | | { |
| | 588 | | if ((await jellyfinDb.Database.GetPendingMigrationsAsync().ConfigureAwait(false)).Any()) |
| | 589 | | { |
| | 590 | | Logger.LogInformation("There are pending EFCore migrations in the database. Applying... (This may ta |
| | 591 | | await jellyfinDb.Database.MigrateAsync().ConfigureAwait(false); |
| | 592 | | Logger.LogInformation("EFCore migrations applied successfully"); |
| | 593 | | } |
| | 594 | | } |
| | 595 | |
|
| | 596 | | var localizationManager = (LocalizationManager)Resolve<ILocalizationManager>(); |
| | 597 | | await localizationManager.LoadAll().ConfigureAwait(false); |
| | 598 | |
|
| | 599 | | SetStaticProperties(); |
| | 600 | |
|
| | 601 | | FindParts(); |
| | 602 | | } |
| | 603 | |
|
| | 604 | | private X509Certificate2 GetCertificate(string path, string password) |
| | 605 | | { |
| 21 | 606 | | if (string.IsNullOrWhiteSpace(path)) |
| | 607 | | { |
| 21 | 608 | | return null; |
| | 609 | | } |
| | 610 | |
|
| | 611 | | try |
| | 612 | | { |
| 0 | 613 | | if (!File.Exists(path)) |
| | 614 | | { |
| 0 | 615 | | return null; |
| | 616 | | } |
| | 617 | |
|
| | 618 | | // Don't use an empty string password |
| 0 | 619 | | password = string.IsNullOrWhiteSpace(password) ? null : password; |
| | 620 | |
|
| 0 | 621 | | var localCert = X509CertificateLoader.LoadPkcs12FromFile(path, password, X509KeyStorageFlags.UserKeySet) |
| 0 | 622 | | if (!localCert.HasPrivateKey) |
| | 623 | | { |
| 0 | 624 | | Logger.LogError("No private key included in SSL cert {CertificateLocation}.", path); |
| 0 | 625 | | return null; |
| | 626 | | } |
| | 627 | |
|
| 0 | 628 | | return localCert; |
| | 629 | | } |
| 0 | 630 | | catch (Exception ex) |
| | 631 | | { |
| 0 | 632 | | Logger.LogError(ex, "Error loading cert from {CertificateLocation}", path); |
| 0 | 633 | | return null; |
| | 634 | | } |
| 0 | 635 | | } |
| | 636 | |
|
| | 637 | | /// <summary> |
| | 638 | | /// Dirty hacks. |
| | 639 | | /// </summary> |
| | 640 | | private void SetStaticProperties() |
| | 641 | | { |
| | 642 | | // For now there's no real way to inject these properly |
| 21 | 643 | | BaseItem.Logger = Resolve<ILogger<BaseItem>>(); |
| 21 | 644 | | BaseItem.ConfigurationManager = ConfigurationManager; |
| 21 | 645 | | BaseItem.LibraryManager = Resolve<ILibraryManager>(); |
| 21 | 646 | | BaseItem.ProviderManager = Resolve<IProviderManager>(); |
| 21 | 647 | | BaseItem.LocalizationManager = Resolve<ILocalizationManager>(); |
| 21 | 648 | | BaseItem.ItemRepository = Resolve<IItemRepository>(); |
| 21 | 649 | | BaseItem.ChapterRepository = Resolve<IChapterRepository>(); |
| 21 | 650 | | BaseItem.FileSystem = Resolve<IFileSystem>(); |
| 21 | 651 | | BaseItem.UserDataManager = Resolve<IUserDataManager>(); |
| 21 | 652 | | BaseItem.ChannelManager = Resolve<IChannelManager>(); |
| 21 | 653 | | Video.RecordingsManager = Resolve<IRecordingsManager>(); |
| 21 | 654 | | Folder.UserViewManager = Resolve<IUserViewManager>(); |
| 21 | 655 | | UserView.TVSeriesManager = Resolve<ITVSeriesManager>(); |
| 21 | 656 | | UserView.CollectionManager = Resolve<ICollectionManager>(); |
| 21 | 657 | | BaseItem.MediaSourceManager = Resolve<IMediaSourceManager>(); |
| 21 | 658 | | BaseItem.MediaSegmentManager = Resolve<IMediaSegmentManager>(); |
| 21 | 659 | | CollectionFolder.XmlSerializer = _xmlSerializer; |
| 21 | 660 | | CollectionFolder.ApplicationHost = this; |
| 21 | 661 | | } |
| | 662 | |
|
| | 663 | | /// <summary> |
| | 664 | | /// Finds plugin components and register them with the appropriate services. |
| | 665 | | /// </summary> |
| | 666 | | private void FindParts() |
| | 667 | | { |
| 21 | 668 | | if (!ConfigurationManager.Configuration.IsPortAuthorized) |
| | 669 | | { |
| 21 | 670 | | ConfigurationManager.Configuration.IsPortAuthorized = true; |
| 21 | 671 | | ConfigurationManager.SaveConfiguration(); |
| | 672 | | } |
| | 673 | |
|
| 21 | 674 | | _pluginManager.CreatePlugins(); |
| | 675 | |
|
| 21 | 676 | | Resolve<ILibraryManager>().AddParts( |
| 21 | 677 | | GetExports<IResolverIgnoreRule>(), |
| 21 | 678 | | GetExports<IItemResolver>(), |
| 21 | 679 | | GetExports<IIntroProvider>(), |
| 21 | 680 | | GetExports<IBaseItemComparer>(), |
| 21 | 681 | | GetExports<ILibraryPostScanTask>()); |
| | 682 | |
|
| 21 | 683 | | Resolve<IProviderManager>().AddParts( |
| 21 | 684 | | GetExports<IImageProvider>(), |
| 21 | 685 | | GetExports<IMetadataService>(), |
| 21 | 686 | | GetExports<IMetadataProvider>(), |
| 21 | 687 | | GetExports<IMetadataSaver>(), |
| 21 | 688 | | GetExports<IExternalId>(), |
| 21 | 689 | | GetExports<IExternalUrlProvider>()); |
| | 690 | |
|
| 21 | 691 | | Resolve<IMediaSourceManager>().AddParts(GetExports<IMediaSourceProvider>()); |
| 21 | 692 | | } |
| | 693 | |
|
| | 694 | | /// <summary> |
| | 695 | | /// Discovers the types. |
| | 696 | | /// </summary> |
| | 697 | | protected void DiscoverTypes() |
| | 698 | | { |
| 21 | 699 | | Logger.LogInformation("Loading assemblies"); |
| | 700 | |
|
| 21 | 701 | | _allConcreteTypes = GetTypes(GetComposablePartAssemblies()).ToArray(); |
| 21 | 702 | | } |
| | 703 | |
|
| | 704 | | private IEnumerable<Type> GetTypes(IEnumerable<Assembly> assemblies) |
| | 705 | | { |
| | 706 | | foreach (var ass in assemblies) |
| | 707 | | { |
| | 708 | | Type[] exportedTypes; |
| | 709 | | try |
| | 710 | | { |
| | 711 | | exportedTypes = ass.GetExportedTypes(); |
| | 712 | | } |
| | 713 | | catch (FileNotFoundException ex) |
| | 714 | | { |
| | 715 | | Logger.LogError(ex, "Error getting exported types from {Assembly}", ass.FullName); |
| | 716 | | _pluginManager.FailPlugin(ass); |
| | 717 | | continue; |
| | 718 | | } |
| | 719 | | catch (TypeLoadException ex) |
| | 720 | | { |
| | 721 | | Logger.LogError(ex, "Error loading types from {Assembly}.", ass.FullName); |
| | 722 | | _pluginManager.FailPlugin(ass); |
| | 723 | | continue; |
| | 724 | | } |
| | 725 | |
|
| | 726 | | foreach (Type type in exportedTypes) |
| | 727 | | { |
| | 728 | | if (type.IsClass && !type.IsAbstract && !type.IsInterface && !type.IsGenericType) |
| | 729 | | { |
| | 730 | | yield return type; |
| | 731 | | } |
| | 732 | | } |
| | 733 | | } |
| | 734 | | } |
| | 735 | |
|
| | 736 | | /// <summary> |
| | 737 | | /// Called when [configuration updated]. |
| | 738 | | /// </summary> |
| | 739 | | /// <param name="sender">The sender.</param> |
| | 740 | | /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param> |
| | 741 | | private void OnConfigurationUpdated(object sender, EventArgs e) |
| | 742 | | { |
| 18 | 743 | | var requiresRestart = false; |
| 18 | 744 | | var networkConfiguration = ConfigurationManager.GetNetworkConfiguration(); |
| | 745 | |
|
| | 746 | | // Don't do anything if these haven't been set yet |
| 18 | 747 | | if (HttpPort != 0 && HttpsPort != 0) |
| | 748 | | { |
| | 749 | | // Need to restart if ports have changed |
| 18 | 750 | | if (networkConfiguration.InternalHttpPort != HttpPort |
| 18 | 751 | | || networkConfiguration.InternalHttpsPort != HttpsPort) |
| | 752 | | { |
| 0 | 753 | | if (ConfigurationManager.Configuration.IsPortAuthorized) |
| | 754 | | { |
| 0 | 755 | | ConfigurationManager.Configuration.IsPortAuthorized = false; |
| 0 | 756 | | ConfigurationManager.SaveConfiguration(); |
| | 757 | |
|
| 0 | 758 | | requiresRestart = true; |
| | 759 | | } |
| | 760 | | } |
| | 761 | | } |
| | 762 | |
|
| 18 | 763 | | if (ValidateSslCertificate(networkConfiguration)) |
| | 764 | | { |
| 0 | 765 | | requiresRestart = true; |
| | 766 | | } |
| | 767 | |
|
| 18 | 768 | | if (requiresRestart) |
| | 769 | | { |
| 0 | 770 | | Logger.LogInformation("App needs to be restarted due to configuration change."); |
| | 771 | |
|
| 0 | 772 | | NotifyPendingRestart(); |
| | 773 | | } |
| 18 | 774 | | } |
| | 775 | |
|
| | 776 | | /// <summary> |
| | 777 | | /// Validates the SSL certificate. |
| | 778 | | /// </summary> |
| | 779 | | /// <param name="networkConfig">The new configuration.</param> |
| | 780 | | /// <exception cref="FileNotFoundException">The certificate path doesn't exist.</exception> |
| | 781 | | private bool ValidateSslCertificate(NetworkConfiguration networkConfig) |
| | 782 | | { |
| 18 | 783 | | var newPath = networkConfig.CertificatePath; |
| | 784 | |
|
| 18 | 785 | | if (!string.IsNullOrWhiteSpace(newPath) |
| 18 | 786 | | && !string.Equals(CertificatePath, newPath, StringComparison.Ordinal)) |
| | 787 | | { |
| 0 | 788 | | if (File.Exists(newPath)) |
| | 789 | | { |
| 0 | 790 | | return true; |
| | 791 | | } |
| | 792 | |
|
| 0 | 793 | | throw new FileNotFoundException( |
| 0 | 794 | | string.Format( |
| 0 | 795 | | CultureInfo.InvariantCulture, |
| 0 | 796 | | "Certificate file '{0}' does not exist.", |
| 0 | 797 | | newPath)); |
| | 798 | | } |
| | 799 | |
|
| 18 | 800 | | return false; |
| | 801 | | } |
| | 802 | |
|
| | 803 | | /// <summary> |
| | 804 | | /// Notifies the kernel that a change has been made that requires a restart. |
| | 805 | | /// </summary> |
| | 806 | | public void NotifyPendingRestart() |
| | 807 | | { |
| 0 | 808 | | Logger.LogInformation("App needs to be restarted."); |
| | 809 | |
|
| 0 | 810 | | var changed = !HasPendingRestart; |
| | 811 | |
|
| 0 | 812 | | HasPendingRestart = true; |
| | 813 | |
|
| 0 | 814 | | if (changed) |
| | 815 | | { |
| 0 | 816 | | EventHelper.QueueEventIfNotNull(HasPendingRestartChanged, this, EventArgs.Empty, Logger); |
| | 817 | | } |
| 0 | 818 | | } |
| | 819 | |
|
| | 820 | | /// <summary> |
| | 821 | | /// Gets the composable part assemblies. |
| | 822 | | /// </summary> |
| | 823 | | /// <returns>IEnumerable{Assembly}.</returns> |
| | 824 | | protected IEnumerable<Assembly> GetComposablePartAssemblies() |
| | 825 | | { |
| | 826 | | foreach (var p in _pluginManager.LoadAssemblies()) |
| | 827 | | { |
| | 828 | | yield return p; |
| | 829 | | } |
| | 830 | |
|
| | 831 | | // Include composable parts in the Model assembly |
| | 832 | | yield return typeof(SystemInfo).Assembly; |
| | 833 | |
|
| | 834 | | // Include composable parts in the Common assembly |
| | 835 | | yield return typeof(IApplicationHost).Assembly; |
| | 836 | |
|
| | 837 | | // Include composable parts in the Controller assembly |
| | 838 | | yield return typeof(IServerApplicationHost).Assembly; |
| | 839 | |
|
| | 840 | | // Include composable parts in the Providers assembly |
| | 841 | | yield return typeof(ProviderManager).Assembly; |
| | 842 | |
|
| | 843 | | // Include composable parts in the Photos assembly |
| | 844 | | yield return typeof(PhotoProvider).Assembly; |
| | 845 | |
|
| | 846 | | // Emby.Server implementations |
| | 847 | | yield return typeof(InstallationManager).Assembly; |
| | 848 | |
|
| | 849 | | // MediaEncoding |
| | 850 | | yield return typeof(MediaBrowser.MediaEncoding.Encoder.MediaEncoder).Assembly; |
| | 851 | |
|
| | 852 | | // Local metadata |
| | 853 | | yield return typeof(BoxSetXmlSaver).Assembly; |
| | 854 | |
|
| | 855 | | // Xbmc |
| | 856 | | yield return typeof(ArtistNfoProvider).Assembly; |
| | 857 | |
|
| | 858 | | // Network |
| | 859 | | yield return typeof(NetworkManager).Assembly; |
| | 860 | |
|
| | 861 | | // Hls |
| | 862 | | yield return typeof(DynamicHlsPlaylistGenerator).Assembly; |
| | 863 | |
|
| | 864 | | foreach (var i in GetAssembliesWithPartsInternal()) |
| | 865 | | { |
| | 866 | | yield return i; |
| | 867 | | } |
| | 868 | | } |
| | 869 | |
|
| | 870 | | protected abstract IEnumerable<Assembly> GetAssembliesWithPartsInternal(); |
| | 871 | |
|
| | 872 | | /// <inheritdoc/> |
| | 873 | | public string GetSmartApiUrl(IPAddress remoteAddr) |
| | 874 | | { |
| | 875 | | // Published server ends with a / |
| 0 | 876 | | if (!string.IsNullOrEmpty(PublishedServerUrl)) |
| | 877 | | { |
| | 878 | | // Published server ends with a '/', so we need to remove it. |
| 0 | 879 | | return PublishedServerUrl.Trim('/'); |
| | 880 | | } |
| | 881 | |
|
| 0 | 882 | | string smart = NetManager.GetBindAddress(remoteAddr, out var port); |
| 0 | 883 | | return GetLocalApiUrl(smart.Trim('/'), null, port); |
| | 884 | | } |
| | 885 | |
|
| | 886 | | /// <inheritdoc/> |
| | 887 | | public string GetSmartApiUrl(HttpRequest request) |
| | 888 | | { |
| | 889 | | // Return the host in the HTTP request as the API URL if not configured otherwise |
| 0 | 890 | | if (ConfigurationManager.GetNetworkConfiguration().EnablePublishedServerUriByRequest) |
| | 891 | | { |
| 0 | 892 | | int? requestPort = request.Host.Port; |
| 0 | 893 | | if (requestPort is null |
| 0 | 894 | | || (requestPort == 80 && string.Equals(request.Scheme, "http", StringComparison.OrdinalIgnoreCase)) |
| 0 | 895 | | || (requestPort == 443 && string.Equals(request.Scheme, "https", StringComparison.OrdinalIgnoreCase) |
| | 896 | | { |
| 0 | 897 | | requestPort = -1; |
| | 898 | | } |
| | 899 | |
|
| 0 | 900 | | return GetLocalApiUrl(request.Host.Host, request.Scheme, requestPort); |
| | 901 | | } |
| | 902 | |
|
| 0 | 903 | | return GetSmartApiUrl(request.HttpContext.Connection.RemoteIpAddress ?? IPAddress.Loopback); |
| | 904 | | } |
| | 905 | |
|
| | 906 | | /// <inheritdoc/> |
| | 907 | | public string GetSmartApiUrl(string hostname) |
| | 908 | | { |
| | 909 | | // Published server ends with a / |
| 0 | 910 | | if (!string.IsNullOrEmpty(PublishedServerUrl)) |
| | 911 | | { |
| | 912 | | // Published server ends with a '/', so we need to remove it. |
| 0 | 913 | | return PublishedServerUrl.Trim('/'); |
| | 914 | | } |
| | 915 | |
|
| 0 | 916 | | string smart = NetManager.GetBindAddress(hostname, out var port); |
| 0 | 917 | | return GetLocalApiUrl(smart.Trim('/'), null, port); |
| | 918 | | } |
| | 919 | |
|
| | 920 | | /// <inheritdoc/> |
| | 921 | | public string GetApiUrlForLocalAccess(IPAddress ipAddress = null, bool allowHttps = true) |
| | 922 | | { |
| | 923 | | // With an empty source, the port will be null |
| 0 | 924 | | var smart = NetManager.GetBindAddress(ipAddress, out _, false); |
| 0 | 925 | | var scheme = !allowHttps ? Uri.UriSchemeHttp : null; |
| 0 | 926 | | int? port = !allowHttps ? HttpPort : null; |
| 0 | 927 | | return GetLocalApiUrl(smart, scheme, port); |
| | 928 | | } |
| | 929 | |
|
| | 930 | | /// <inheritdoc/> |
| | 931 | | public string GetLocalApiUrl(string hostname, string scheme = null, int? port = null) |
| | 932 | | { |
| | 933 | | // If the smartAPI doesn't start with http then treat it as a host or ip. |
| 0 | 934 | | if (hostname.StartsWith("http", StringComparison.OrdinalIgnoreCase)) |
| | 935 | | { |
| 0 | 936 | | return hostname.TrimEnd('/'); |
| | 937 | | } |
| | 938 | |
|
| | 939 | | // NOTE: If no BaseUrl is set then UriBuilder appends a trailing slash, but if there is no BaseUrl it does |
| | 940 | | // not. For consistency, always trim the trailing slash. |
| 0 | 941 | | scheme ??= ListenWithHttps ? Uri.UriSchemeHttps : Uri.UriSchemeHttp; |
| 0 | 942 | | var isHttps = string.Equals(scheme, Uri.UriSchemeHttps, StringComparison.OrdinalIgnoreCase); |
| 0 | 943 | | return new UriBuilder |
| 0 | 944 | | { |
| 0 | 945 | | Scheme = scheme, |
| 0 | 946 | | Host = hostname, |
| 0 | 947 | | Port = port ?? (isHttps ? HttpsPort : HttpPort), |
| 0 | 948 | | Path = ConfigurationManager.GetNetworkConfiguration().BaseUrl |
| 0 | 949 | | }.ToString().TrimEnd('/'); |
| | 950 | | } |
| | 951 | |
|
| | 952 | | public IEnumerable<Assembly> GetApiPluginAssemblies() |
| | 953 | | { |
| | 954 | | var assemblies = _allConcreteTypes |
| | 955 | | .Where(i => typeof(ControllerBase).IsAssignableFrom(i)) |
| | 956 | | .Select(i => i.Assembly) |
| | 957 | | .Distinct(); |
| | 958 | |
|
| | 959 | | foreach (var assembly in assemblies) |
| | 960 | | { |
| | 961 | | Logger.LogDebug("Found API endpoints in plugin {Name}", assembly.FullName); |
| | 962 | | yield return assembly; |
| | 963 | | } |
| | 964 | | } |
| | 965 | |
|
| | 966 | | /// <inheritdoc /> |
| | 967 | | public void Dispose() |
| | 968 | | { |
| 21 | 969 | | Dispose(true); |
| 21 | 970 | | GC.SuppressFinalize(this); |
| 21 | 971 | | } |
| | 972 | |
|
| | 973 | | /// <summary> |
| | 974 | | /// Releases unmanaged and - optionally - managed resources. |
| | 975 | | /// </summary> |
| | 976 | | /// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release o |
| | 977 | | protected virtual void Dispose(bool dispose) |
| | 978 | | { |
| 21 | 979 | | if (_disposed) |
| | 980 | | { |
| 0 | 981 | | return; |
| | 982 | | } |
| | 983 | |
|
| 21 | 984 | | if (dispose) |
| | 985 | | { |
| 21 | 986 | | var type = GetType(); |
| | 987 | |
|
| 21 | 988 | | Logger.LogInformation("Disposing {Type}", type.Name); |
| | 989 | |
|
| 168 | 990 | | foreach (var part in _disposableParts.ToArray()) |
| | 991 | | { |
| 63 | 992 | | var partType = part.GetType(); |
| 63 | 993 | | if (partType == type) |
| | 994 | | { |
| | 995 | | continue; |
| | 996 | | } |
| | 997 | |
|
| 63 | 998 | | Logger.LogInformation("Disposing {Type}", partType.Name); |
| | 999 | |
|
| | 1000 | | try |
| | 1001 | | { |
| 63 | 1002 | | part.Dispose(); |
| 63 | 1003 | | } |
| 0 | 1004 | | catch (Exception ex) |
| | 1005 | | { |
| 0 | 1006 | | Logger.LogError(ex, "Error disposing {Type}", partType.Name); |
| 0 | 1007 | | } |
| | 1008 | | } |
| | 1009 | |
|
| 21 | 1010 | | _disposableParts.Clear(); |
| | 1011 | | } |
| | 1012 | |
|
| 21 | 1013 | | _disposed = true; |
| 21 | 1014 | | } |
| | 1015 | | } |
| | 1016 | | } |