using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Newtonsoft.Json; using System.Net.WebSockets; namespace EVCB_OCPP.WSServer.Service.WsService; public static class AppExtention { public static void AddOcppWsServer(this IServiceCollection services) { services.AddTransient(); services.AddSingleton(); } public static void MapOcppWsService(this WebApplication webApplication) { webApplication.UseWebSockets(new WebSocketOptions() { KeepAliveInterval = TimeSpan.FromSeconds(10) }); webApplication.Use(async (context, next) => { if (!context.WebSockets.IsWebSocketRequest) { await next(context); return; } var servcie = context.RequestServices.GetService(); await servcie.AcceptWebSocket(context); return; }); } } public class OcppWebsocketService : WebsocketService { public static List protocals = new List() { "", "ocpp1.6", "ocpp2.0.1" }; private readonly ILogger logger; public OcppWebsocketService( IServiceProvider serviceProvider, ILogger logger ) : base(serviceProvider) { this.logger = logger; } internal override async ValueTask AcceptWebSocketHandler(HttpContext context) { logger.LogInformation("{function}:{Path}/{SubProtocol}", nameof(AcceptWebSocketHandler), context.Request.Path, context.WebSockets.WebSocketRequestedProtocols); var protocol = GetSupportedPortocol(context.WebSockets.WebSocketRequestedProtocols, protocals); if (string.IsNullOrEmpty(protocol)) { logger.LogInformation("{function}:{Path} Protocol Not Supported, Disconnecting", nameof(AcceptWebSocketHandler), context.Request.Path); using WebSocket toRejectwebSocket = await context.WebSockets.AcceptWebSocketAsync(); await toRejectwebSocket.CloseAsync(WebSocketCloseStatus.NormalClosure, null, default); return string.Empty; } return protocol; } private static string GetSupportedPortocol(IList clientProtocols, IList supportedProtocols) { int supportedProtocolIndex = supportedProtocols.Count - 1; for (; supportedProtocolIndex >= 0; supportedProtocolIndex--) { var testProtocol = supportedProtocols[supportedProtocolIndex]; if (clientProtocols.Contains(testProtocol)) { return testProtocol; } } return string.Empty; } }