| | 1 | | using System.Collections.Generic; |
| | 2 | | using System.Threading.Tasks; |
| | 3 | | using Jellyfin.Data; |
| | 4 | | using Jellyfin.Database.Implementations.Enums; |
| | 5 | | using MediaBrowser.Controller.Authentication; |
| | 6 | | using MediaBrowser.Controller.Library; |
| | 7 | | using MediaBrowser.Controller.Net; |
| | 8 | | using MediaBrowser.Controller.Session; |
| | 9 | | using MediaBrowser.Model.Session; |
| | 10 | | using Microsoft.Extensions.Logging; |
| | 11 | |
|
| | 12 | | namespace Jellyfin.Api.WebSocketListeners; |
| | 13 | |
|
| | 14 | | /// <summary> |
| | 15 | | /// Class SessionInfoWebSocketListener. |
| | 16 | | /// </summary> |
| | 17 | | public class SessionInfoWebSocketListener : BasePeriodicWebSocketListener<IEnumerable<SessionInfo>, WebSocketListenerSta |
| | 18 | | { |
| | 19 | | private readonly ISessionManager _sessionManager; |
| | 20 | | private bool _disposed; |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// Initializes a new instance of the <see cref="SessionInfoWebSocketListener"/> class. |
| | 24 | | /// </summary> |
| | 25 | | /// <param name="logger">Instance of the <see cref="ILogger{SessionInfoWebSocketListener}"/> interface.</param> |
| | 26 | | /// <param name="sessionManager">Instance of the <see cref="ISessionManager"/> interface.</param> |
| | 27 | | public SessionInfoWebSocketListener(ILogger<SessionInfoWebSocketListener> logger, ISessionManager sessionManager) |
| 19 | 28 | | : base(logger) |
| | 29 | | { |
| 19 | 30 | | _sessionManager = sessionManager; |
| | 31 | |
|
| 19 | 32 | | _sessionManager.SessionStarted += OnSessionManagerSessionStarted; |
| 19 | 33 | | _sessionManager.SessionEnded += OnSessionManagerSessionEnded; |
| 19 | 34 | | _sessionManager.PlaybackStart += OnSessionManagerPlaybackStart; |
| 19 | 35 | | _sessionManager.PlaybackStopped += OnSessionManagerPlaybackStopped; |
| 19 | 36 | | _sessionManager.PlaybackProgress += OnSessionManagerPlaybackProgress; |
| 19 | 37 | | _sessionManager.CapabilitiesChanged += OnSessionManagerCapabilitiesChanged; |
| 19 | 38 | | _sessionManager.SessionActivity += OnSessionManagerSessionActivity; |
| 19 | 39 | | } |
| | 40 | |
|
| | 41 | | /// <inheritdoc /> |
| 0 | 42 | | protected override SessionMessageType Type => SessionMessageType.Sessions; |
| | 43 | |
|
| | 44 | | /// <inheritdoc /> |
| 0 | 45 | | protected override SessionMessageType StartType => SessionMessageType.SessionsStart; |
| | 46 | |
|
| | 47 | | /// <inheritdoc /> |
| 0 | 48 | | protected override SessionMessageType StopType => SessionMessageType.SessionsStop; |
| | 49 | |
|
| | 50 | | /// <summary> |
| | 51 | | /// Gets the data to send. |
| | 52 | | /// </summary> |
| | 53 | | /// <returns>Task{SystemInfo}.</returns> |
| | 54 | | protected override Task<IEnumerable<SessionInfo>> GetDataToSend() |
| | 55 | | { |
| 0 | 56 | | return Task.FromResult(_sessionManager.Sessions); |
| | 57 | | } |
| | 58 | |
|
| | 59 | | /// <inheritdoc /> |
| | 60 | | protected override async ValueTask DisposeAsyncCore() |
| | 61 | | { |
| | 62 | | if (!_disposed) |
| | 63 | | { |
| | 64 | | _sessionManager.SessionStarted -= OnSessionManagerSessionStarted; |
| | 65 | | _sessionManager.SessionEnded -= OnSessionManagerSessionEnded; |
| | 66 | | _sessionManager.PlaybackStart -= OnSessionManagerPlaybackStart; |
| | 67 | | _sessionManager.PlaybackStopped -= OnSessionManagerPlaybackStopped; |
| | 68 | | _sessionManager.PlaybackProgress -= OnSessionManagerPlaybackProgress; |
| | 69 | | _sessionManager.CapabilitiesChanged -= OnSessionManagerCapabilitiesChanged; |
| | 70 | | _sessionManager.SessionActivity -= OnSessionManagerSessionActivity; |
| | 71 | | _disposed = true; |
| | 72 | | } |
| | 73 | |
|
| | 74 | | await base.DisposeAsyncCore().ConfigureAwait(false); |
| | 75 | | } |
| | 76 | |
|
| | 77 | | /// <summary> |
| | 78 | | /// Starts sending messages over a session info web socket. |
| | 79 | | /// </summary> |
| | 80 | | /// <param name="message">The message.</param> |
| | 81 | | protected override void Start(WebSocketMessageInfo message) |
| | 82 | | { |
| 0 | 83 | | if (!message.Connection.AuthorizationInfo.IsApiKey |
| 0 | 84 | | && (message.Connection.AuthorizationInfo.User is null |
| 0 | 85 | | || !message.Connection.AuthorizationInfo.User.HasPermission(PermissionKind.IsAdministrator))) |
| | 86 | | { |
| 0 | 87 | | throw new AuthenticationException("Only admin users can subscribe to session information."); |
| | 88 | | } |
| | 89 | |
|
| 0 | 90 | | base.Start(message); |
| 0 | 91 | | } |
| | 92 | |
|
| | 93 | | private void OnSessionManagerSessionActivity(object? sender, SessionEventArgs e) |
| | 94 | | { |
| 15 | 95 | | SendData(false); |
| 15 | 96 | | } |
| | 97 | |
|
| | 98 | | private void OnSessionManagerCapabilitiesChanged(object? sender, SessionEventArgs e) |
| | 99 | | { |
| 0 | 100 | | SendData(true); |
| 0 | 101 | | } |
| | 102 | |
|
| | 103 | | private void OnSessionManagerPlaybackProgress(object? sender, PlaybackProgressEventArgs e) |
| | 104 | | { |
| 0 | 105 | | SendData(!e.IsAutomated); |
| 0 | 106 | | } |
| | 107 | |
|
| | 108 | | private void OnSessionManagerPlaybackStopped(object? sender, PlaybackStopEventArgs e) |
| | 109 | | { |
| 0 | 110 | | SendData(true); |
| 0 | 111 | | } |
| | 112 | |
|
| | 113 | | private void OnSessionManagerPlaybackStart(object? sender, PlaybackProgressEventArgs e) |
| | 114 | | { |
| 0 | 115 | | SendData(true); |
| 0 | 116 | | } |
| | 117 | |
|
| | 118 | | private void OnSessionManagerSessionEnded(object? sender, SessionEventArgs e) |
| | 119 | | { |
| 0 | 120 | | SendData(true); |
| 0 | 121 | | } |
| | 122 | |
|
| | 123 | | private void OnSessionManagerSessionStarted(object? sender, SessionEventArgs e) |
| | 124 | | { |
| 15 | 125 | | SendData(true); |
| 15 | 126 | | } |
| | 127 | | } |