< Summary - Jellyfin

Information
Class: Jellyfin.Api.WebSocketListeners.SessionInfoWebSocketListener
Assembly: Jellyfin.Api
File(s): /srv/git/jellyfin/Jellyfin.Api/WebSocketListeners/SessionInfoWebSocketListener.cs
Line coverage
41%
Covered lines: 14
Uncovered lines: 20
Coverable lines: 34
Total lines: 127
Line coverage: 41.1%
Branch coverage
0%
Covered branches: 0
Total branches: 6
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

File(s)

/srv/git/jellyfin/Jellyfin.Api/WebSocketListeners/SessionInfoWebSocketListener.cs

#LineLine coverage
 1using System.Collections.Generic;
 2using System.Threading.Tasks;
 3using Jellyfin.Data;
 4using Jellyfin.Database.Implementations.Enums;
 5using MediaBrowser.Controller.Authentication;
 6using MediaBrowser.Controller.Library;
 7using MediaBrowser.Controller.Net;
 8using MediaBrowser.Controller.Session;
 9using MediaBrowser.Model.Session;
 10using Microsoft.Extensions.Logging;
 11
 12namespace Jellyfin.Api.WebSocketListeners;
 13
 14/// <summary>
 15/// Class SessionInfoWebSocketListener.
 16/// </summary>
 17public 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)
 1928        : base(logger)
 29    {
 1930        _sessionManager = sessionManager;
 31
 1932        _sessionManager.SessionStarted += OnSessionManagerSessionStarted;
 1933        _sessionManager.SessionEnded += OnSessionManagerSessionEnded;
 1934        _sessionManager.PlaybackStart += OnSessionManagerPlaybackStart;
 1935        _sessionManager.PlaybackStopped += OnSessionManagerPlaybackStopped;
 1936        _sessionManager.PlaybackProgress += OnSessionManagerPlaybackProgress;
 1937        _sessionManager.CapabilitiesChanged += OnSessionManagerCapabilitiesChanged;
 1938        _sessionManager.SessionActivity += OnSessionManagerSessionActivity;
 1939    }
 40
 41    /// <inheritdoc />
 042    protected override SessionMessageType Type => SessionMessageType.Sessions;
 43
 44    /// <inheritdoc />
 045    protected override SessionMessageType StartType => SessionMessageType.SessionsStart;
 46
 47    /// <inheritdoc />
 048    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    {
 056        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    {
 083        if (!message.Connection.AuthorizationInfo.IsApiKey
 084            && (message.Connection.AuthorizationInfo.User is null
 085                || !message.Connection.AuthorizationInfo.User.HasPermission(PermissionKind.IsAdministrator)))
 86        {
 087            throw new AuthenticationException("Only admin users can subscribe to session information.");
 88        }
 89
 090        base.Start(message);
 091    }
 92
 93    private void OnSessionManagerSessionActivity(object? sender, SessionEventArgs e)
 94    {
 1595        SendData(false);
 1596    }
 97
 98    private void OnSessionManagerCapabilitiesChanged(object? sender, SessionEventArgs e)
 99    {
 0100        SendData(true);
 0101    }
 102
 103    private void OnSessionManagerPlaybackProgress(object? sender, PlaybackProgressEventArgs e)
 104    {
 0105        SendData(!e.IsAutomated);
 0106    }
 107
 108    private void OnSessionManagerPlaybackStopped(object? sender, PlaybackStopEventArgs e)
 109    {
 0110        SendData(true);
 0111    }
 112
 113    private void OnSessionManagerPlaybackStart(object? sender, PlaybackProgressEventArgs e)
 114    {
 0115        SendData(true);
 0116    }
 117
 118    private void OnSessionManagerSessionEnded(object? sender, SessionEventArgs e)
 119    {
 0120        SendData(true);
 0121    }
 122
 123    private void OnSessionManagerSessionStarted(object? sender, SessionEventArgs e)
 124    {
 15125        SendData(true);
 15126    }
 127}