OcppWebsocketService.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. using Microsoft.AspNetCore.Builder;
  2. using Microsoft.AspNetCore.Http;
  3. using Microsoft.Extensions.DependencyInjection;
  4. using System.Net.WebSockets;
  5. namespace EVCB_OCPP.WSServer.Service.WsService;
  6. public static class AppExtention
  7. {
  8. public static void MapOcppWsService(this WebApplication webApplication)
  9. {
  10. webApplication.UseWebSockets(new WebSocketOptions()
  11. {
  12. KeepAliveInterval = TimeSpan.FromSeconds(10)
  13. });
  14. webApplication.Use(async (context, next) =>
  15. {
  16. if (!context.WebSockets.IsWebSocketRequest)
  17. {
  18. await next(context);
  19. return;
  20. }
  21. var servcie = context.RequestServices.GetService<OcppWebsocketService>();
  22. await servcie.AcceptWebSocket(context);
  23. return;
  24. });
  25. }
  26. }
  27. public class OcppWebsocketService : WebsocketService<WsClientData>
  28. {
  29. public static List<string> protocals = new List<string>() { "", "ocpp1.6", "ocpp2.0.1" };
  30. internal override async ValueTask<string> AcceptWebSocketHandler(HttpContext context)
  31. {
  32. var protocol = GetSupportedPortocol(context.WebSockets.WebSocketRequestedProtocols, protocals);
  33. if (string.IsNullOrEmpty(protocol))
  34. {
  35. using WebSocket toRejectwebSocket = await context.WebSockets.AcceptWebSocketAsync();
  36. await toRejectwebSocket.CloseAsync(WebSocketCloseStatus.NormalClosure, null, default);
  37. return string.Empty;
  38. }
  39. return protocol;
  40. }
  41. private static string GetSupportedPortocol(IList<string> clientProtocols, IList<string> supportedProtocols)
  42. {
  43. int supportedProtocolIndex = supportedProtocols.Count - 1;
  44. for (; supportedProtocolIndex >= 0; supportedProtocolIndex--)
  45. {
  46. var testProtocol = supportedProtocols[supportedProtocolIndex];
  47. if (clientProtocols.Contains(testProtocol))
  48. {
  49. return testProtocol;
  50. }
  51. }
  52. return string.Empty;
  53. }
  54. }