| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Reflection; |
| | 4 | | using Emby.Server.Implementations; |
| | 5 | | using Emby.Server.Implementations.Session; |
| | 6 | | using Jellyfin.Api.WebSocketListeners; |
| | 7 | | using Jellyfin.Database.Implementations; |
| | 8 | | using Jellyfin.Drawing; |
| | 9 | | using Jellyfin.Drawing.Skia; |
| | 10 | | using Jellyfin.LiveTv; |
| | 11 | | using Jellyfin.Server.Implementations.Activity; |
| | 12 | | using Jellyfin.Server.Implementations.Devices; |
| | 13 | | using Jellyfin.Server.Implementations.Events; |
| | 14 | | using Jellyfin.Server.Implementations.Extensions; |
| | 15 | | using Jellyfin.Server.Implementations.Security; |
| | 16 | | using Jellyfin.Server.Implementations.Trickplay; |
| | 17 | | using Jellyfin.Server.Implementations.Users; |
| | 18 | | using MediaBrowser.Controller; |
| | 19 | | using MediaBrowser.Controller.Authentication; |
| | 20 | | using MediaBrowser.Controller.BaseItemManager; |
| | 21 | | using MediaBrowser.Controller.Devices; |
| | 22 | | using MediaBrowser.Controller.Drawing; |
| | 23 | | using MediaBrowser.Controller.Events; |
| | 24 | | using MediaBrowser.Controller.Library; |
| | 25 | | using MediaBrowser.Controller.Lyrics; |
| | 26 | | using MediaBrowser.Controller.Net; |
| | 27 | | using MediaBrowser.Controller.Security; |
| | 28 | | using MediaBrowser.Controller.Trickplay; |
| | 29 | | using MediaBrowser.Model.Activity; |
| | 30 | | using MediaBrowser.Providers.Lyric; |
| | 31 | | using Microsoft.Extensions.Configuration; |
| | 32 | | using Microsoft.Extensions.DependencyInjection; |
| | 33 | | using Microsoft.Extensions.Logging; |
| | 34 | |
|
| | 35 | | namespace Jellyfin.Server |
| | 36 | | { |
| | 37 | | /// <summary> |
| | 38 | | /// Implementation of the abstract <see cref="ApplicationHost" /> class. |
| | 39 | | /// </summary> |
| | 40 | | public class CoreAppHost : ApplicationHost |
| | 41 | | { |
| | 42 | | /// <summary> |
| | 43 | | /// Initializes a new instance of the <see cref="CoreAppHost" /> class. |
| | 44 | | /// </summary> |
| | 45 | | /// <param name="applicationPaths">The <see cref="ServerApplicationPaths" /> to be used by the <see cref="CoreAp |
| | 46 | | /// <param name="loggerFactory">The <see cref="ILoggerFactory" /> to be used by the <see cref="CoreAppHost" />.< |
| | 47 | | /// <param name="options">The <see cref="StartupOptions" /> to be used by the <see cref="CoreAppHost" />.</param |
| | 48 | | /// <param name="startupConfig">The <see cref="IConfiguration" /> to be used by the <see cref="CoreAppHost" />.< |
| | 49 | | public CoreAppHost( |
| | 50 | | IServerApplicationPaths applicationPaths, |
| | 51 | | ILoggerFactory loggerFactory, |
| | 52 | | IStartupOptions options, |
| | 53 | | IConfiguration startupConfig) |
| 21 | 54 | | : base( |
| 21 | 55 | | applicationPaths, |
| 21 | 56 | | loggerFactory, |
| 21 | 57 | | options, |
| 21 | 58 | | startupConfig) |
| | 59 | | { |
| 21 | 60 | | } |
| | 61 | |
|
| | 62 | | /// <inheritdoc/> |
| | 63 | | protected override void RegisterServices(IServiceCollection serviceCollection) |
| | 64 | | { |
| | 65 | | // Register an image encoder |
| 21 | 66 | | bool useSkiaEncoder = SkiaEncoder.IsNativeLibAvailable(); |
| 21 | 67 | | Type imageEncoderType = useSkiaEncoder |
| 21 | 68 | | ? typeof(SkiaEncoder) |
| 21 | 69 | | : typeof(NullImageEncoder); |
| 21 | 70 | | serviceCollection.AddSingleton(typeof(IImageEncoder), imageEncoderType); |
| | 71 | |
|
| | 72 | | // Log a warning if the Skia encoder could not be used |
| 21 | 73 | | if (!useSkiaEncoder) |
| | 74 | | { |
| 0 | 75 | | Logger.LogWarning("Skia not available. Will fallback to {ImageEncoder}.", nameof(NullImageEncoder)); |
| | 76 | | } |
| | 77 | |
|
| 21 | 78 | | serviceCollection.AddEventServices(); |
| 21 | 79 | | serviceCollection.AddSingleton<IBaseItemManager, BaseItemManager>(); |
| 21 | 80 | | serviceCollection.AddSingleton<IEventManager, EventManager>(); |
| | 81 | |
|
| 21 | 82 | | serviceCollection.AddSingleton<IActivityManager, ActivityManager>(); |
| 21 | 83 | | serviceCollection.AddSingleton<IUserManager, UserManager>(); |
| 21 | 84 | | serviceCollection.AddSingleton<IAuthenticationProvider, DefaultAuthenticationProvider>(); |
| 21 | 85 | | serviceCollection.AddSingleton<IAuthenticationProvider, InvalidAuthProvider>(); |
| 21 | 86 | | serviceCollection.AddSingleton<IPasswordResetProvider, DefaultPasswordResetProvider>(); |
| 21 | 87 | | serviceCollection.AddScoped<IDisplayPreferencesManager, DisplayPreferencesManager>(); |
| 21 | 88 | | serviceCollection.AddSingleton<IDeviceManager, DeviceManager>(); |
| 21 | 89 | | serviceCollection.AddSingleton<ITrickplayManager, TrickplayManager>(); |
| | 90 | |
|
| | 91 | | // TODO search the assemblies instead of adding them manually? |
| 21 | 92 | | serviceCollection.AddSingleton<IWebSocketListener, SessionWebSocketListener>(); |
| 21 | 93 | | serviceCollection.AddSingleton<IWebSocketListener, ActivityLogWebSocketListener>(); |
| 21 | 94 | | serviceCollection.AddSingleton<IWebSocketListener, ScheduledTasksWebSocketListener>(); |
| 21 | 95 | | serviceCollection.AddSingleton<IWebSocketListener, SessionInfoWebSocketListener>(); |
| | 96 | |
|
| 21 | 97 | | serviceCollection.AddSingleton<IAuthorizationContext, AuthorizationContext>(); |
| | 98 | |
|
| 21 | 99 | | serviceCollection.AddScoped<IAuthenticationManager, AuthenticationManager>(); |
| | 100 | |
|
| 42 | 101 | | foreach (var type in GetExportTypes<ILyricProvider>()) |
| | 102 | | { |
| 0 | 103 | | serviceCollection.AddSingleton(typeof(ILyricProvider), type); |
| | 104 | | } |
| | 105 | |
|
| 126 | 106 | | foreach (var type in GetExportTypes<ILyricParser>()) |
| | 107 | | { |
| 42 | 108 | | serviceCollection.AddSingleton(typeof(ILyricParser), type); |
| | 109 | | } |
| | 110 | |
|
| 21 | 111 | | base.RegisterServices(serviceCollection); |
| 21 | 112 | | } |
| | 113 | |
|
| | 114 | | /// <inheritdoc /> |
| | 115 | | protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal() |
| | 116 | | { |
| | 117 | | // Jellyfin.Server |
| | 118 | | yield return typeof(CoreAppHost).Assembly; |
| | 119 | |
|
| | 120 | | // Jellyfin.Database.Implementations |
| | 121 | | yield return typeof(JellyfinDbContext).Assembly; |
| | 122 | |
|
| | 123 | | // Jellyfin.Server.Implementations |
| | 124 | | yield return typeof(ServiceCollectionExtensions).Assembly; |
| | 125 | |
|
| | 126 | | // Jellyfin.LiveTv |
| | 127 | | yield return typeof(LiveTvManager).Assembly; |
| | 128 | | } |
| | 129 | | } |
| | 130 | | } |