WebsocketService.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. using Microsoft.AspNetCore.Builder;
  2. using Microsoft.AspNetCore.Http;
  3. using Microsoft.Extensions.DependencyInjection;
  4. using Microsoft.Extensions.Primitives;
  5. using System.Net;
  6. using System.Net.WebSockets;
  7. using System.Text;
  8. namespace EVCB_OCPP.WSServer.Service.WsService;
  9. public static class AppExtention
  10. {
  11. public static void MapWsService(this WebApplication webApplication)
  12. {
  13. var protocals = new List<string>() { "", "ocpp1.6", "ocpp2.0" };
  14. webApplication.UseWebSockets(new WebSocketOptions()
  15. {
  16. KeepAliveInterval = TimeSpan.FromSeconds(10)
  17. });
  18. webApplication.Use(async (context, next) =>
  19. {
  20. if (!context.WebSockets.IsWebSocketRequest)
  21. {
  22. await next(context);
  23. return;
  24. }
  25. var matched = context.WebSockets.WebSocketRequestedProtocols.Intersect(protocals);
  26. if (matched is null || !matched.Any())
  27. {
  28. await context.Response.WriteAsync("Protocol not matched");
  29. return;
  30. }
  31. using WebSocket webSocket = await context.WebSockets.AcceptWebSocketAsync(matched.Last());
  32. var servcie = context.RequestServices.GetService<WebsocketService<WsClientData>>();
  33. await servcie.AddWebSocket(webSocket, context);
  34. return;
  35. });
  36. }
  37. }
  38. public class WebsocketService<T> where T : WsSession
  39. {
  40. public WebsocketService() { }
  41. public Func<T, Task<bool>> ValidateHandshake;
  42. public event EventHandler<T> NewSessionConnected;
  43. public async Task AddWebSocket(WebSocket webSocket, HttpContext context)
  44. {
  45. T data = Activator.CreateInstance<T>();
  46. data.ClientWebSocket = webSocket;
  47. data.SessionID = context.TraceIdentifier;
  48. data.Path = context?.Request?.Path;
  49. //data.UriScheme = context?.Request?.Scheme;
  50. data.AuthHeader = context?.Request?.Headers?.Authorization;
  51. //data.Origin = context.Request.Scheme;
  52. var origin = context.Request.Headers.Origin.FirstOrDefault();
  53. try
  54. {
  55. data.UriScheme = new Uri(origin).Scheme;
  56. }
  57. catch
  58. {
  59. data.UriScheme = origin;
  60. }
  61. try
  62. {
  63. var ipaddress = context.Connection.RemoteIpAddress;
  64. var port = context.Connection.RemotePort;
  65. data.Endpoint = new IPEndPoint(ipaddress, port);
  66. }
  67. catch
  68. {
  69. data.Endpoint = null;
  70. }
  71. var validated = ValidateHandshake == null ? false : await ValidateHandshake(data);
  72. if (!validated)
  73. {
  74. return;
  75. }
  76. NewSessionConnected?.Invoke(this, data);
  77. await data.EndConnSemaphore.WaitAsync();
  78. return;
  79. }
  80. }
  81. public enum CloseReason
  82. {
  83. ClientClosing,
  84. ServerShutdown
  85. }