| | 1 | | using System; |
| | 2 | | using System.Linq; |
| | 3 | | using System.Threading; |
| | 4 | | using System.Threading.Tasks; |
| | 5 | | using Jellyfin.Data; |
| | 6 | | using Jellyfin.Data.Events; |
| | 7 | | using Jellyfin.Database.Implementations.Enums; |
| | 8 | | using MediaBrowser.Controller.Library; |
| | 9 | | using MediaBrowser.Controller.LiveTv; |
| | 10 | | using MediaBrowser.Controller.Session; |
| | 11 | | using MediaBrowser.Model.Session; |
| | 12 | | using Microsoft.Extensions.Hosting; |
| | 13 | | using Microsoft.Extensions.Logging; |
| | 14 | |
|
| | 15 | | namespace Jellyfin.LiveTv.Recordings |
| | 16 | | { |
| | 17 | | /// <summary> |
| | 18 | | /// <see cref="IHostedService"/> responsible for notifying users when a LiveTV recording is completed. |
| | 19 | | /// </summary> |
| | 20 | | public sealed class RecordingNotifier : IHostedService |
| | 21 | | { |
| | 22 | | private readonly ILogger<RecordingNotifier> _logger; |
| | 23 | | private readonly ISessionManager _sessionManager; |
| | 24 | | private readonly IUserManager _userManager; |
| | 25 | | private readonly ILiveTvManager _liveTvManager; |
| | 26 | |
|
| | 27 | | /// <summary> |
| | 28 | | /// Initializes a new instance of the <see cref="RecordingNotifier"/> class. |
| | 29 | | /// </summary> |
| | 30 | | /// <param name="logger">The <see cref="ILogger"/>.</param> |
| | 31 | | /// <param name="sessionManager">The <see cref="ISessionManager"/>.</param> |
| | 32 | | /// <param name="userManager">The <see cref="IUserManager"/>.</param> |
| | 33 | | /// <param name="liveTvManager">The <see cref="ILiveTvManager"/>.</param> |
| | 34 | | public RecordingNotifier( |
| | 35 | | ILogger<RecordingNotifier> logger, |
| | 36 | | ISessionManager sessionManager, |
| | 37 | | IUserManager userManager, |
| | 38 | | ILiveTvManager liveTvManager) |
| | 39 | | { |
| 21 | 40 | | _logger = logger; |
| 21 | 41 | | _sessionManager = sessionManager; |
| 21 | 42 | | _userManager = userManager; |
| 21 | 43 | | _liveTvManager = liveTvManager; |
| 21 | 44 | | } |
| | 45 | |
|
| | 46 | | /// <inheritdoc /> |
| | 47 | | public Task StartAsync(CancellationToken cancellationToken) |
| | 48 | | { |
| 21 | 49 | | _liveTvManager.TimerCancelled += OnLiveTvManagerTimerCancelled; |
| 21 | 50 | | _liveTvManager.SeriesTimerCancelled += OnLiveTvManagerSeriesTimerCancelled; |
| 21 | 51 | | _liveTvManager.TimerCreated += OnLiveTvManagerTimerCreated; |
| 21 | 52 | | _liveTvManager.SeriesTimerCreated += OnLiveTvManagerSeriesTimerCreated; |
| | 53 | |
|
| 21 | 54 | | return Task.CompletedTask; |
| | 55 | | } |
| | 56 | |
|
| | 57 | | /// <inheritdoc /> |
| | 58 | | public Task StopAsync(CancellationToken cancellationToken) |
| | 59 | | { |
| 21 | 60 | | _liveTvManager.TimerCancelled -= OnLiveTvManagerTimerCancelled; |
| 21 | 61 | | _liveTvManager.SeriesTimerCancelled -= OnLiveTvManagerSeriesTimerCancelled; |
| 21 | 62 | | _liveTvManager.TimerCreated -= OnLiveTvManagerTimerCreated; |
| 21 | 63 | | _liveTvManager.SeriesTimerCreated -= OnLiveTvManagerSeriesTimerCreated; |
| | 64 | |
|
| 21 | 65 | | return Task.CompletedTask; |
| | 66 | | } |
| | 67 | |
|
| | 68 | | private async void OnLiveTvManagerSeriesTimerCreated(object? sender, GenericEventArgs<TimerEventInfo> e) |
| | 69 | | => await SendMessage(SessionMessageType.SeriesTimerCreated, e.Argument).ConfigureAwait(false); |
| | 70 | |
|
| | 71 | | private async void OnLiveTvManagerTimerCreated(object? sender, GenericEventArgs<TimerEventInfo> e) |
| | 72 | | => await SendMessage(SessionMessageType.TimerCreated, e.Argument).ConfigureAwait(false); |
| | 73 | |
|
| | 74 | | private async void OnLiveTvManagerSeriesTimerCancelled(object? sender, GenericEventArgs<TimerEventInfo> e) |
| | 75 | | => await SendMessage(SessionMessageType.SeriesTimerCancelled, e.Argument).ConfigureAwait(false); |
| | 76 | |
|
| | 77 | | private async void OnLiveTvManagerTimerCancelled(object? sender, GenericEventArgs<TimerEventInfo> e) |
| | 78 | | => await SendMessage(SessionMessageType.TimerCancelled, e.Argument).ConfigureAwait(false); |
| | 79 | |
|
| | 80 | | private async Task SendMessage(SessionMessageType name, TimerEventInfo info) |
| | 81 | | { |
| | 82 | | var users = _userManager.Users |
| | 83 | | .Where(i => i.HasPermission(PermissionKind.EnableLiveTvAccess)) |
| | 84 | | .Select(i => i.Id) |
| | 85 | | .ToList(); |
| | 86 | |
|
| | 87 | | try |
| | 88 | | { |
| | 89 | | await _sessionManager.SendMessageToUserSessions(users, name, info, CancellationToken.None).ConfigureAwai |
| | 90 | | } |
| | 91 | | catch (Exception ex) |
| | 92 | | { |
| | 93 | | _logger.LogError(ex, "Error sending message"); |
| | 94 | | } |
| | 95 | | } |
| | 96 | | } |
| | 97 | | } |