| | 1 | | using Jellyfin.Data.Events.System; |
| | 2 | | using Jellyfin.Data.Events.Users; |
| | 3 | | using Jellyfin.Server.Implementations.Events.Consumers.Library; |
| | 4 | | using Jellyfin.Server.Implementations.Events.Consumers.Security; |
| | 5 | | using Jellyfin.Server.Implementations.Events.Consumers.Session; |
| | 6 | | using Jellyfin.Server.Implementations.Events.Consumers.System; |
| | 7 | | using Jellyfin.Server.Implementations.Events.Consumers.Updates; |
| | 8 | | using Jellyfin.Server.Implementations.Events.Consumers.Users; |
| | 9 | | using MediaBrowser.Common.Updates; |
| | 10 | | using MediaBrowser.Controller.Events; |
| | 11 | | using MediaBrowser.Controller.Events.Authentication; |
| | 12 | | using MediaBrowser.Controller.Events.Session; |
| | 13 | | using MediaBrowser.Controller.Events.Updates; |
| | 14 | | using MediaBrowser.Controller.Library; |
| | 15 | | using MediaBrowser.Controller.Lyrics; |
| | 16 | | using MediaBrowser.Controller.Subtitles; |
| | 17 | | using MediaBrowser.Model.Tasks; |
| | 18 | | using Microsoft.Extensions.DependencyInjection; |
| | 19 | |
|
| | 20 | | namespace Jellyfin.Server.Implementations.Events |
| | 21 | | { |
| | 22 | | /// <summary> |
| | 23 | | /// A class containing extensions to <see cref="IServiceCollection"/> for eventing. |
| | 24 | | /// </summary> |
| | 25 | | public static class EventingServiceCollectionExtensions |
| | 26 | | { |
| | 27 | | /// <summary> |
| | 28 | | /// Adds the event services to the service collection. |
| | 29 | | /// </summary> |
| | 30 | | /// <param name="collection">The service collection.</param> |
| | 31 | | public static void AddEventServices(this IServiceCollection collection) |
| | 32 | | { |
| | 33 | | // Library consumers |
| 21 | 34 | | collection.AddScoped<IEventConsumer<LyricDownloadFailureEventArgs>, LyricDownloadFailureLogger>(); |
| 21 | 35 | | collection.AddScoped<IEventConsumer<SubtitleDownloadFailureEventArgs>, SubtitleDownloadFailureLogger>(); |
| | 36 | |
|
| | 37 | | // Security consumers |
| 21 | 38 | | collection.AddScoped<IEventConsumer<AuthenticationRequestEventArgs>, AuthenticationFailedLogger>(); |
| 21 | 39 | | collection.AddScoped<IEventConsumer<AuthenticationResultEventArgs>, AuthenticationSucceededLogger>(); |
| | 40 | |
|
| | 41 | | // Session consumers |
| 21 | 42 | | collection.AddScoped<IEventConsumer<PlaybackStartEventArgs>, PlaybackStartLogger>(); |
| 21 | 43 | | collection.AddScoped<IEventConsumer<PlaybackStopEventArgs>, PlaybackStopLogger>(); |
| 21 | 44 | | collection.AddScoped<IEventConsumer<SessionEndedEventArgs>, SessionEndedLogger>(); |
| 21 | 45 | | collection.AddScoped<IEventConsumer<SessionStartedEventArgs>, SessionStartedLogger>(); |
| | 46 | |
|
| | 47 | | // System consumers |
| 21 | 48 | | collection.AddScoped<IEventConsumer<PendingRestartEventArgs>, PendingRestartNotifier>(); |
| 21 | 49 | | collection.AddScoped<IEventConsumer<TaskCompletionEventArgs>, TaskCompletedLogger>(); |
| 21 | 50 | | collection.AddScoped<IEventConsumer<TaskCompletionEventArgs>, TaskCompletedNotifier>(); |
| | 51 | |
|
| | 52 | | // Update consumers |
| 21 | 53 | | collection.AddScoped<IEventConsumer<PluginInstallationCancelledEventArgs>, PluginInstallationCancelledNotifi |
| 21 | 54 | | collection.AddScoped<IEventConsumer<InstallationFailedEventArgs>, PluginInstallationFailedLogger>(); |
| 21 | 55 | | collection.AddScoped<IEventConsumer<InstallationFailedEventArgs>, PluginInstallationFailedNotifier>(); |
| 21 | 56 | | collection.AddScoped<IEventConsumer<PluginInstalledEventArgs>, PluginInstalledLogger>(); |
| 21 | 57 | | collection.AddScoped<IEventConsumer<PluginInstalledEventArgs>, PluginInstalledNotifier>(); |
| 21 | 58 | | collection.AddScoped<IEventConsumer<PluginInstallingEventArgs>, PluginInstallingNotifier>(); |
| 21 | 59 | | collection.AddScoped<IEventConsumer<PluginUninstalledEventArgs>, PluginUninstalledLogger>(); |
| 21 | 60 | | collection.AddScoped<IEventConsumer<PluginUninstalledEventArgs>, PluginUninstalledNotifier>(); |
| 21 | 61 | | collection.AddScoped<IEventConsumer<PluginUpdatedEventArgs>, PluginUpdatedLogger>(); |
| | 62 | |
|
| | 63 | | // User consumers |
| 21 | 64 | | collection.AddScoped<IEventConsumer<UserCreatedEventArgs>, UserCreatedLogger>(); |
| 21 | 65 | | collection.AddScoped<IEventConsumer<UserDeletedEventArgs>, UserDeletedLogger>(); |
| 21 | 66 | | collection.AddScoped<IEventConsumer<UserDeletedEventArgs>, UserDeletedNotifier>(); |
| 21 | 67 | | collection.AddScoped<IEventConsumer<UserLockedOutEventArgs>, UserLockedOutLogger>(); |
| 21 | 68 | | collection.AddScoped<IEventConsumer<UserPasswordChangedEventArgs>, UserPasswordChangedLogger>(); |
| 21 | 69 | | collection.AddScoped<IEventConsumer<UserUpdatedEventArgs>, UserUpdatedNotifier>(); |
| 21 | 70 | | } |
| | 71 | | } |
| | 72 | | } |