jellyfin/Jellyfin.Server/CoreAppHost.cs

127 lines
5.4 KiB
C#
Raw Normal View History

using System;
2019-01-01 10:27:11 -05:00
using System.Collections.Generic;
using System.Reflection;
using Emby.Server.Implementations;
using Emby.Server.Implementations.Session;
using Jellyfin.Api.WebSocketListeners;
using Jellyfin.Drawing;
using Jellyfin.Drawing.Skia;
2023-12-28 15:15:03 -05:00
using Jellyfin.LiveTv;
2020-05-14 17:13:45 -04:00
using Jellyfin.Server.Implementations;
using Jellyfin.Server.Implementations.Activity;
2021-04-10 16:17:36 -04:00
using Jellyfin.Server.Implementations.Devices;
2020-08-15 15:56:56 -04:00
using Jellyfin.Server.Implementations.Events;
2021-05-20 23:56:59 -04:00
using Jellyfin.Server.Implementations.Security;
using Jellyfin.Server.Implementations.Trickplay;
2020-05-15 17:24:01 -04:00
using Jellyfin.Server.Implementations.Users;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Authentication;
2020-10-27 20:01:52 -04:00
using MediaBrowser.Controller.BaseItemManager;
2021-04-10 16:17:36 -04:00
using MediaBrowser.Controller.Devices;
2019-06-09 18:53:16 -04:00
using MediaBrowser.Controller.Drawing;
2020-08-15 15:56:56 -04:00
using MediaBrowser.Controller.Events;
2020-05-15 17:24:01 -04:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Lyrics;
using MediaBrowser.Controller.Net;
using MediaBrowser.Controller.Security;
using MediaBrowser.Controller.Trickplay;
2020-05-14 17:13:45 -04:00
using MediaBrowser.Model.Activity;
2023-06-20 10:51:07 -04:00
using MediaBrowser.Providers.Lyric;
2021-02-27 15:12:55 -05:00
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
2019-01-01 10:27:11 -05:00
using Microsoft.Extensions.Logging;
namespace Jellyfin.Server
{
/// <summary>
/// Implementation of the abstract <see cref="ApplicationHost" /> class.
/// </summary>
2019-01-01 10:27:11 -05:00
public class CoreAppHost : ApplicationHost
{
/// <summary>
/// Initializes a new instance of the <see cref="CoreAppHost" /> class.
/// </summary>
/// <param name="applicationPaths">The <see cref="ServerApplicationPaths" /> to be used by the <see cref="CoreAppHost" />.</param>
/// <param name="loggerFactory">The <see cref="ILoggerFactory" /> to be used by the <see cref="CoreAppHost" />.</param>
/// <param name="options">The <see cref="StartupOptions" /> to be used by the <see cref="CoreAppHost" />.</param>
2021-02-27 15:12:55 -05:00
/// <param name="startupConfig">The <see cref="IConfiguration" /> to be used by the <see cref="CoreAppHost" />.</param>
public CoreAppHost(
IServerApplicationPaths applicationPaths,
ILoggerFactory loggerFactory,
IStartupOptions options,
2021-11-02 11:02:52 -04:00
IConfiguration startupConfig)
: base(
applicationPaths,
loggerFactory,
options,
2021-11-02 11:02:52 -04:00
startupConfig)
2019-01-01 10:27:11 -05:00
{
}
/// <inheritdoc/>
2021-11-02 11:02:52 -04:00
protected override void RegisterServices(IServiceCollection serviceCollection)
{
// Register an image encoder
bool useSkiaEncoder = SkiaEncoder.IsNativeLibAvailable();
Type imageEncoderType = useSkiaEncoder
? typeof(SkiaEncoder)
: typeof(NullImageEncoder);
2021-11-02 11:02:52 -04:00
serviceCollection.AddSingleton(typeof(IImageEncoder), imageEncoderType);
// Log a warning if the Skia encoder could not be used
if (!useSkiaEncoder)
{
2021-11-02 11:02:52 -04:00
Logger.LogWarning("Skia not available. Will fallback to {ImageEncoder}.", nameof(NullImageEncoder));
}
2021-11-02 11:02:52 -04:00
serviceCollection.AddEventServices();
serviceCollection.AddSingleton<IBaseItemManager, BaseItemManager>();
serviceCollection.AddSingleton<IEventManager, EventManager>();
2020-05-14 17:13:45 -04:00
2021-11-02 11:02:52 -04:00
serviceCollection.AddSingleton<IActivityManager, ActivityManager>();
serviceCollection.AddSingleton<IUserManager, UserManager>();
serviceCollection.AddSingleton<IAuthenticationProvider, DefaultAuthenticationProvider>();
serviceCollection.AddSingleton<IAuthenticationProvider, InvalidAuthProvider>();
serviceCollection.AddSingleton<IPasswordResetProvider, DefaultPasswordResetProvider>();
serviceCollection.AddScoped<IDisplayPreferencesManager, DisplayPreferencesManager>();
2021-11-02 11:02:52 -04:00
serviceCollection.AddSingleton<IDeviceManager, DeviceManager>();
serviceCollection.AddSingleton<ITrickplayManager, TrickplayManager>();
2020-05-14 17:13:45 -04:00
// TODO search the assemblies instead of adding them manually?
2021-11-02 11:02:52 -04:00
serviceCollection.AddSingleton<IWebSocketListener, SessionWebSocketListener>();
serviceCollection.AddSingleton<IWebSocketListener, ActivityLogWebSocketListener>();
serviceCollection.AddSingleton<IWebSocketListener, ScheduledTasksWebSocketListener>();
serviceCollection.AddSingleton<IWebSocketListener, SessionInfoWebSocketListener>();
2021-11-02 11:02:52 -04:00
serviceCollection.AddSingleton<IAuthorizationContext, AuthorizationContext>();
2021-05-20 23:56:59 -04:00
2021-11-02 11:02:52 -04:00
serviceCollection.AddScoped<IAuthenticationManager, AuthenticationManager>();
foreach (var type in GetExportTypes<ILyricProvider>())
{
serviceCollection.AddSingleton(typeof(ILyricProvider), type);
}
2023-06-20 10:51:07 -04:00
foreach (var type in GetExportTypes<ILyricParser>())
{
serviceCollection.AddSingleton(typeof(ILyricParser), type);
}
2021-11-02 11:02:52 -04:00
base.RegisterServices(serviceCollection);
}
/// <inheritdoc />
2019-01-01 10:27:11 -05:00
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
2019-02-06 08:04:32 -05:00
{
// Jellyfin.Server
2019-02-06 08:04:32 -05:00
yield return typeof(CoreAppHost).Assembly;
// Jellyfin.Server.Implementations
2023-01-16 12:14:44 -05:00
yield return typeof(JellyfinDbContext).Assembly;
2023-12-28 15:15:03 -05:00
// Jellyfin.LiveTv
yield return typeof(LiveTvManager).Assembly;
2019-02-06 08:04:32 -05:00
}
2019-01-01 10:27:11 -05:00
}
}