2020-09-03 02:32:22 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Net.WebSockets;
|
|
|
|
using System.Threading.Tasks;
|
2020-11-27 17:25:20 -07:00
|
|
|
using Emby.Server.Implementations.Session;
|
|
|
|
using Jellyfin.Api.WebSocketListeners;
|
|
|
|
using MediaBrowser.Controller;
|
2020-09-03 02:32:22 -07:00
|
|
|
using MediaBrowser.Controller.Net;
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.HttpServer
|
|
|
|
{
|
|
|
|
public class WebSocketManager : IWebSocketManager
|
|
|
|
{
|
2020-11-27 17:25:20 -07:00
|
|
|
private readonly IServerApplicationHost _appHost;
|
2020-09-03 02:32:22 -07:00
|
|
|
private readonly ILogger<WebSocketManager> _logger;
|
|
|
|
private readonly ILoggerFactory _loggerFactory;
|
|
|
|
private bool _disposed = false;
|
|
|
|
|
|
|
|
public WebSocketManager(
|
2020-11-27 17:25:20 -07:00
|
|
|
IServerApplicationHost appHost,
|
2020-09-03 02:32:22 -07:00
|
|
|
ILogger<WebSocketManager> logger,
|
|
|
|
ILoggerFactory loggerFactory)
|
|
|
|
{
|
2020-11-27 17:25:20 -07:00
|
|
|
_appHost = appHost;
|
2020-09-03 02:32:22 -07:00
|
|
|
_logger = logger;
|
|
|
|
_loggerFactory = loggerFactory;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public async Task WebSocketRequestHandler(HttpContext context)
|
|
|
|
{
|
|
|
|
if (_disposed)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:25:20 -07:00
|
|
|
var listener = _appHost.Resolve<ISessionWebSocketListener>();
|
|
|
|
|
2020-09-03 02:32:22 -07:00
|
|
|
try
|
|
|
|
{
|
|
|
|
_logger.LogInformation("WS {IP} request", context.Connection.RemoteIpAddress);
|
|
|
|
|
|
|
|
WebSocket webSocket = await context.WebSockets.AcceptWebSocketAsync().ConfigureAwait(false);
|
|
|
|
|
|
|
|
using var connection = new WebSocketConnection(
|
|
|
|
_loggerFactory.CreateLogger<WebSocketConnection>(),
|
|
|
|
webSocket,
|
|
|
|
context.Connection.RemoteIpAddress,
|
|
|
|
context.Request.Query)
|
|
|
|
{
|
|
|
|
OnReceive = ProcessWebSocketMessageReceived
|
|
|
|
};
|
|
|
|
|
2020-11-27 17:25:20 -07:00
|
|
|
listener?.ProcessWebSocketConnected(connection);
|
2020-09-03 02:32:22 -07:00
|
|
|
|
|
|
|
await connection.ProcessAsync().ConfigureAwait(false);
|
|
|
|
_logger.LogInformation("WS {IP} closed", context.Connection.RemoteIpAddress);
|
|
|
|
}
|
|
|
|
catch (Exception ex) // Otherwise ASP.Net will ignore the exception
|
|
|
|
{
|
|
|
|
_logger.LogError(ex, "WS {IP} WebSocketRequestHandler error", context.Connection.RemoteIpAddress);
|
|
|
|
if (!context.Response.HasStarted)
|
|
|
|
{
|
|
|
|
context.Response.StatusCode = 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Processes the web socket message received.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="result">The result.</param>
|
|
|
|
private Task ProcessWebSocketMessageReceived(WebSocketMessageInfo result)
|
|
|
|
{
|
|
|
|
if (_disposed)
|
|
|
|
{
|
|
|
|
return Task.CompletedTask;
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:25:20 -07:00
|
|
|
Parallel.Invoke(
|
|
|
|
() => _appHost.Resolve<IActivityLogWebSocketListener>(),
|
|
|
|
() => _appHost.Resolve<IScheduledTasksWebSocketListener>(),
|
|
|
|
() => _appHost.Resolve<ISessionInfoWebSocketListener>());
|
2020-09-03 02:32:22 -07:00
|
|
|
|
2020-11-27 17:25:20 -07:00
|
|
|
return Task.CompletedTask;
|
2020-09-03 02:32:22 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|