jellyfin/Emby.Server.Implementations/Session/WebSocketController.cs

108 lines
3.2 KiB
C#
Raw Normal View History

2020-01-13 14:03:49 -05:00
#pragma warning disable CS1591
using System;
2013-10-02 21:22:50 -04:00
using System.Collections.Generic;
using System.Linq;
using System.Net.WebSockets;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller.Net;
using MediaBrowser.Controller.Session;
using MediaBrowser.Model.Net;
using MediaBrowser.Model.Session;
using Microsoft.Extensions.Logging;
2016-11-03 19:35:19 -04:00
namespace Emby.Server.Implementations.Session
{
2019-12-17 17:15:02 -05:00
public sealed class WebSocketController : ISessionController, IDisposable
{
2020-06-05 20:15:56 -04:00
private readonly ILogger<WebSocketController> _logger;
2014-05-17 14:37:40 -04:00
private readonly ISessionManager _sessionManager;
2019-12-17 17:15:02 -05:00
private readonly SessionInfo _session;
2014-05-17 14:37:40 -04:00
2020-05-01 19:30:04 -04:00
private readonly List<IWebSocketConnection> _sockets;
2019-12-17 17:15:02 -05:00
private bool _disposed = false;
public WebSocketController(
ILogger<WebSocketController> logger,
SessionInfo session,
ISessionManager sessionManager)
{
2014-05-17 00:24:10 -04:00
_logger = logger;
2019-12-17 17:15:02 -05:00
_session = session;
2014-05-17 14:37:40 -04:00
_sessionManager = sessionManager;
2019-12-17 17:15:02 -05:00
_sockets = new List<IWebSocketConnection>();
}
private bool HasOpenSockets => GetActiveSockets().Any();
2015-03-21 12:10:02 -04:00
2019-12-17 17:15:02 -05:00
/// <inheritdoc />
public bool SupportsMediaControl => HasOpenSockets;
2015-03-21 12:10:02 -04:00
2019-12-17 17:15:02 -05:00
/// <inheritdoc />
public bool IsSessionActive => HasOpenSockets;
2013-10-02 21:22:50 -04:00
2014-05-17 00:24:10 -04:00
private IEnumerable<IWebSocketConnection> GetActiveSockets()
2019-12-17 17:15:02 -05:00
=> _sockets.Where(i => i.State == WebSocketState.Open);
2014-05-17 00:24:10 -04:00
2014-05-17 14:37:40 -04:00
public void AddWebSocket(IWebSocketConnection connection)
{
2019-12-17 17:15:02 -05:00
_logger.LogDebug("Adding websocket to session {Session}", _session.Id);
_sockets.Add(connection);
2014-05-17 14:37:40 -04:00
2019-12-17 17:15:02 -05:00
connection.Closed += OnConnectionClosed;
2014-05-17 14:37:40 -04:00
}
private void OnConnectionClosed(object? sender, EventArgs e)
2014-05-17 14:37:40 -04:00
{
2020-11-13 20:04:06 -05:00
var connection = sender as IWebSocketConnection ?? throw new ArgumentException($"{nameof(sender)} is not of type {nameof(IWebSocketConnection)}", nameof(sender));
_logger.LogDebug("Removing websocket from session {Session}", _session.Id);
2019-12-17 17:15:02 -05:00
_sockets.Remove(connection);
connection.Closed -= OnConnectionClosed;
_sessionManager.CloseIfNeeded(_session);
2014-05-17 14:37:40 -04:00
}
2019-12-17 17:15:02 -05:00
/// <inheritdoc />
public Task SendMessage<T>(
SessionMessageType name,
2019-12-17 17:15:02 -05:00
Guid messageId,
T data,
CancellationToken cancellationToken)
2014-05-17 00:24:10 -04:00
{
var socket = GetActiveSockets()
2019-12-17 17:15:02 -05:00
.OrderByDescending(i => i.LastActivityDate)
2014-05-17 00:24:10 -04:00
.FirstOrDefault();
if (socket == null)
{
2018-09-12 13:26:21 -04:00
return Task.CompletedTask;
}
2020-01-13 14:03:49 -05:00
return socket.SendAsync(
new WebSocketMessage<T>
{
Data = data,
MessageType = name,
MessageId = messageId
},
cancellationToken);
}
2019-12-17 17:15:02 -05:00
/// <inheritdoc />
2014-05-17 17:23:48 -04:00
public void Dispose()
{
2019-12-17 17:15:02 -05:00
if (_disposed)
2014-05-17 17:23:48 -04:00
{
2019-12-17 17:15:02 -05:00
return;
2014-05-17 17:23:48 -04:00
}
2019-12-17 17:15:02 -05:00
foreach (var socket in _sockets)
{
socket.Closed -= OnConnectionClosed;
}
_disposed = true;
2014-05-17 17:23:48 -04:00
}
}
}