2020-04-17 14:24:46 +00:00
|
|
|
using System;
|
2019-01-01 15:27:11 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Reflection;
|
|
|
|
using Emby.Server.Implementations;
|
2020-10-06 12:44:07 +00:00
|
|
|
using Emby.Server.Implementations.Session;
|
|
|
|
using Jellyfin.Api.WebSocketListeners;
|
2023-01-10 12:51:46 +00:00
|
|
|
using Jellyfin.Drawing;
|
2020-04-05 14:03:53 +00:00
|
|
|
using Jellyfin.Drawing.Skia;
|
2023-12-28 20:15:03 +00:00
|
|
|
using Jellyfin.LiveTv;
|
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;
|
2023-06-27 00:40:10 +00:00
|
|
|
using Jellyfin.Server.Implementations.Trickplay;
|
2020-05-15 21:24:01 +00:00
|
|
|
using Jellyfin.Server.Implementations.Users;
|
2020-06-30 03:00:46 +00:00
|
|
|
using MediaBrowser.Controller;
|
2024-01-06 20:43:48 +00:00
|
|
|
using MediaBrowser.Controller.Authentication;
|
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;
|
2022-09-17 00:52:40 +00:00
|
|
|
using MediaBrowser.Controller.Lyrics;
|
2020-10-06 12:44:07 +00:00
|
|
|
using MediaBrowser.Controller.Net;
|
2021-06-27 20:45:41 +00:00
|
|
|
using MediaBrowser.Controller.Security;
|
2023-06-27 00:40:10 +00:00
|
|
|
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;
|
2020-04-05 14:03:53 +00:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2019-01-01 15:27:11 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
namespace Jellyfin.Server
|
|
|
|
{
|
2019-08-11 13:11:53 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Implementation of the abstract <see cref="ApplicationHost" /> class.
|
|
|
|
/// </summary>
|
2019-01-01 15:27:11 +00:00
|
|
|
public class CoreAppHost : ApplicationHost
|
|
|
|
{
|
2019-08-11 13:11:53 +00:00
|
|
|
/// <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>
|
2019-02-17 10:54:47 +00:00
|
|
|
public CoreAppHost(
|
2020-06-30 03:00:46 +00:00
|
|
|
IServerApplicationPaths applicationPaths,
|
2019-02-17 10:54:47 +00:00
|
|
|
ILoggerFactory loggerFactory,
|
2020-06-30 03:00:46 +00:00
|
|
|
IStartupOptions options,
|
2021-11-02 15:02:52 +00:00
|
|
|
IConfiguration startupConfig)
|
2019-02-17 10:54:47 +00:00
|
|
|
: base(
|
|
|
|
applicationPaths,
|
|
|
|
loggerFactory,
|
|
|
|
options,
|
2021-11-02 15:02:52 +00:00
|
|
|
startupConfig)
|
2019-01-01 15:27:11 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-04-05 14:03:53 +00:00
|
|
|
/// <inheritdoc/>
|
2021-11-02 15:02:52 +00:00
|
|
|
protected override void RegisterServices(IServiceCollection serviceCollection)
|
2020-04-05 14:03:53 +00:00
|
|
|
{
|
2020-04-17 14:24:46 +00:00
|
|
|
// Register an image encoder
|
|
|
|
bool useSkiaEncoder = SkiaEncoder.IsNativeLibAvailable();
|
|
|
|
Type imageEncoderType = useSkiaEncoder
|
2020-04-05 14:03:53 +00:00
|
|
|
? typeof(SkiaEncoder)
|
|
|
|
: typeof(NullImageEncoder);
|
2021-11-02 15:02:52 +00:00
|
|
|
serviceCollection.AddSingleton(typeof(IImageEncoder), imageEncoderType);
|
2020-04-05 14:03:53 +00:00
|
|
|
|
2020-04-17 14:24:46 +00:00
|
|
|
// 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));
|
2020-04-17 14:24:46 +00:00
|
|
|
}
|
|
|
|
|
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>();
|
2024-01-06 20:43:48 +00:00
|
|
|
serviceCollection.AddSingleton<IAuthenticationProvider, DefaultAuthenticationProvider>();
|
|
|
|
serviceCollection.AddSingleton<IAuthenticationProvider, InvalidAuthProvider>();
|
|
|
|
serviceCollection.AddSingleton<IPasswordResetProvider, DefaultPasswordResetProvider>();
|
2022-10-21 09:55:32 +00:00
|
|
|
serviceCollection.AddScoped<IDisplayPreferencesManager, DisplayPreferencesManager>();
|
2021-11-02 15:02:52 +00:00
|
|
|
serviceCollection.AddSingleton<IDeviceManager, DeviceManager>();
|
2023-06-27 00:40:10 +00:00
|
|
|
serviceCollection.AddSingleton<ITrickplayManager, TrickplayManager>();
|
2020-05-14 21:13:45 +00:00
|
|
|
|
2020-11-28 10:21:53 +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>();
|
2020-10-06 12:44:07 +00:00
|
|
|
|
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>();
|
2021-06-27 20:45:41 +00:00
|
|
|
|
2022-09-17 00:52:40 +00:00
|
|
|
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);
|
2020-04-05 14:03:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-11 13:11:53 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-01 15:27:11 +00:00
|
|
|
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
|
2019-02-06 13:04:32 +00:00
|
|
|
{
|
2020-05-31 21:00:57 +00:00
|
|
|
// Jellyfin.Server
|
2019-02-06 13:04:32 +00:00
|
|
|
yield return typeof(CoreAppHost).Assembly;
|
2020-05-31 21:00:57 +00:00
|
|
|
|
|
|
|
// Jellyfin.Server.Implementations
|
2023-01-16 17:14:44 +00:00
|
|
|
yield return typeof(JellyfinDbContext).Assembly;
|
2023-12-28 20:15:03 +00:00
|
|
|
|
|
|
|
// Jellyfin.LiveTv
|
|
|
|
yield return typeof(LiveTvManager).Assembly;
|
2019-02-06 13:04:32 +00:00
|
|
|
}
|
2019-01-01 15:27:11 +00:00
|
|
|
}
|
|
|
|
}
|