mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 11:32:59 +00:00
51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
|
|
using Esiur.Net.IIP;
|
|
using Esiur.Net.Sockets;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
using System.Net.WebSockets;
|
|
|
|
namespace Esiur.AspNetCore
|
|
{
|
|
public class EsiurMiddleware
|
|
{
|
|
readonly DistributedServer server;
|
|
readonly RequestDelegate next;
|
|
readonly ILoggerFactory loggerFactory;
|
|
|
|
public async Task InvokeAsync(HttpContext context)
|
|
{
|
|
var buffer = new ArraySegment<byte>(new byte[10240]);
|
|
|
|
if (context.WebSockets.IsWebSocketRequest
|
|
&& context.WebSockets.WebSocketRequestedProtocols.Contains("iip"))
|
|
{
|
|
var webSocket = await context.WebSockets.AcceptWebSocketAsync("iip");
|
|
var socket = new FrameworkWebSocket(webSocket);
|
|
var iipConnection = new DistributedConnection();
|
|
server.Add(iipConnection);
|
|
iipConnection.Assign(socket);
|
|
socket.Begin();
|
|
|
|
// @TODO: Change this
|
|
while (webSocket.State == WebSocketState.Open)
|
|
await Task.Delay(500);
|
|
}
|
|
else
|
|
{
|
|
await next(context);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
public EsiurMiddleware(RequestDelegate next, IOptions<EsiurOptions> options, ILoggerFactory loggerFactory)
|
|
{
|
|
this.server = options.Value.Server;
|
|
this.loggerFactory = loggerFactory;
|
|
this.next = next;
|
|
}
|
|
}
|
|
}
|