jellyfin/Jellyfin.Server/CoreAppHost.cs

119 lines
4.9 KiB
C#
Raw Normal View History

using System;
2019-01-01 15:27:11 +00: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;
2020-05-14 21:13:45 +00:00
using Jellyfin.Server.Implementations;
using Jellyfin.Server.Implementations.Activity;
2021-04-10 20:17:36 +00:00
using Jellyfin.Server.Implementations.Devices;
2020-08-15 19:56:56 +00:00
using Jellyfin.Server.Implementations.Events;
2021-05-21 03:56:59 +00:00
using Jellyfin.Server.Implementations.Security;
using Jellyfin.Server.Implementations.Trickplay;
2020-05-15 21:24:01 +00:00
using Jellyfin.Server.Implementations.Users;
using MediaBrowser.Controller;
2020-10-28 00:01:52 +00:00
using MediaBrowser.Controller.BaseItemManager;
2021-04-10 20:17:36 +00:00
using MediaBrowser.Controller.Devices;
2019-06-09 22:53:16 +00:00
using MediaBrowser.Controller.Drawing;
2020-08-15 19:56:56 +00:00
using MediaBrowser.Controller.Events;
2020-05-15 21:24:01 +00:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Lyrics;
using MediaBrowser.Controller.Net;
using MediaBrowser.Controller.Security;
using MediaBrowser.Controller.Trickplay;
2020-05-14 21:13:45 +00:00
using MediaBrowser.Model.Activity;
2023-06-20 14:51:07 +00:00
using MediaBrowser.Providers.Lyric;
2021-02-27 20:12:55 +00:00
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
2019-01-01 15:27:11 +00:00
using Microsoft.Extensions.Logging;
namespace Jellyfin.Server
{
/// <summary>
/// Implementation of the abstract <see cref="ApplicationHost" /> class.
/// </summary>
2019-01-01 15:27:11 +00: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 20:12:55 +00: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 15:02:52 +00:00
IConfiguration startupConfig)
: base(
applicationPaths,
loggerFactory,
options,
2021-11-02 15:02:52 +00:00
startupConfig)
2019-01-01 15:27:11 +00:00
{
}
/// <inheritdoc/>
2021-11-02 15:02:52 +00: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 15:02:52 +00:00
serviceCollection.AddSingleton(typeof(IImageEncoder), imageEncoderType);
// Log a warning if the Skia encoder could not be used
if (!useSkiaEncoder)
{
2021-11-02 15:02:52 +00:00
Logger.LogWarning("Skia not available. Will fallback to {ImageEncoder}.", nameof(NullImageEncoder));
}
2021-11-02 15:02:52 +00:00
serviceCollection.AddEventServices();
serviceCollection.AddSingleton<IBaseItemManager, BaseItemManager>();
serviceCollection.AddSingleton<IEventManager, EventManager>();
2020-05-14 21:13:45 +00:00
2021-11-02 15:02:52 +00:00
serviceCollection.AddSingleton<IActivityManager, ActivityManager>();
serviceCollection.AddSingleton<IUserManager, UserManager>();
serviceCollection.AddScoped<IDisplayPreferencesManager, DisplayPreferencesManager>();
2021-11-02 15:02:52 +00:00
serviceCollection.AddSingleton<IDeviceManager, DeviceManager>();
serviceCollection.AddSingleton<ITrickplayManager, TrickplayManager>();
2020-05-14 21:13:45 +00:00
// TODO search the assemblies instead of adding them manually?
2021-11-02 15:02:52 +00:00
serviceCollection.AddSingleton<IWebSocketListener, SessionWebSocketListener>();
serviceCollection.AddSingleton<IWebSocketListener, ActivityLogWebSocketListener>();
serviceCollection.AddSingleton<IWebSocketListener, ScheduledTasksWebSocketListener>();
serviceCollection.AddSingleton<IWebSocketListener, SessionInfoWebSocketListener>();
2021-11-02 15:02:52 +00:00
serviceCollection.AddSingleton<IAuthorizationContext, AuthorizationContext>();
2021-05-21 03:56:59 +00:00
2021-11-02 15:02:52 +00:00
serviceCollection.AddScoped<IAuthenticationManager, AuthenticationManager>();
foreach (var type in GetExportTypes<ILyricProvider>())
{
serviceCollection.AddSingleton(typeof(ILyricProvider), type);
}
2023-06-20 14:51:07 +00:00
foreach (var type in GetExportTypes<ILyricParser>())
{
serviceCollection.AddSingleton(typeof(ILyricParser), type);
}
2021-11-02 15:02:52 +00:00
base.RegisterServices(serviceCollection);
}
/// <inheritdoc />
2019-01-01 15:27:11 +00:00
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
2019-02-06 13:04:32 +00:00
{
// Jellyfin.Server
2019-02-06 13:04:32 +00:00
yield return typeof(CoreAppHost).Assembly;
// Jellyfin.Server.Implementations
2023-01-16 17:14:44 +00:00
yield return typeof(JellyfinDbContext).Assembly;
2019-02-06 13:04:32 +00:00
}
2019-01-01 15:27:11 +00:00
}
}