jellyfin/Jellyfin.Api/Middleware/WebSocketHandlerMiddleware.cs

40 lines
1.2 KiB
C#
Raw Normal View History

2020-09-03 05:32:22 -04:00
using System.Threading.Tasks;
using MediaBrowser.Controller.Net;
using Microsoft.AspNetCore.Http;
2023-01-31 06:18:10 -05:00
namespace Jellyfin.Api.Middleware;
/// <summary>
/// Handles WebSocket requests.
/// </summary>
public class WebSocketHandlerMiddleware
2020-09-03 05:32:22 -04:00
{
2023-01-31 06:18:10 -05:00
private readonly RequestDelegate _next;
2020-09-03 05:32:22 -04:00
/// <summary>
2023-01-31 06:18:10 -05:00
/// Initializes a new instance of the <see cref="WebSocketHandlerMiddleware"/> class.
2020-09-03 05:32:22 -04:00
/// </summary>
2023-01-31 06:18:10 -05:00
/// <param name="next">The next delegate in the pipeline.</param>
public WebSocketHandlerMiddleware(RequestDelegate next)
2020-09-03 05:32:22 -04:00
{
2023-01-31 06:18:10 -05:00
_next = next;
}
2020-09-03 05:32:22 -04:00
2023-01-31 06:18:10 -05:00
/// <summary>
/// Executes the middleware action.
/// </summary>
/// <param name="httpContext">The current HTTP context.</param>
/// <param name="webSocketManager">The WebSocket connection manager.</param>
/// <returns>The async task.</returns>
public async Task Invoke(HttpContext httpContext, IWebSocketManager webSocketManager)
{
if (!httpContext.WebSockets.IsWebSocketRequest)
2020-09-03 05:32:22 -04:00
{
2023-01-31 06:18:10 -05:00
await _next(httpContext).ConfigureAwait(false);
return;
2020-09-03 05:32:22 -04:00
}
2023-01-31 06:18:10 -05:00
await webSocketManager.WebSocketRequestHandler(httpContext).ConfigureAwait(false);
2020-09-03 05:32:22 -04:00
}
}