DevServerApp.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. using System.Net;
  2. using System.Security.Cryptography;
  3. using System.Text;
  4. using PCC.App;
  5. using PCC.App.Security;
  6. using PCC.Common.AssemblyInject.Interfaces;
  7. using PCC.Common.EventBus;
  8. using PCC.Common.Networking;
  9. namespace PCC.DevServer;
  10. internal class DevServerApp(
  11. DevServerPccConfigManager configManager,
  12. TrustedPeerManager tpm,
  13. IEventBus eventBus,
  14. ILogger<DevServerApp> logger,
  15. ILogger<KestrelTcpServer> ktsLogger) : IAssemblyInjectSyncInitStarStop
  16. {
  17. private KestrelTcpServer _tcpServer;
  18. public void Init()
  19. {
  20. logger.LogInformation("init");
  21. eventBus.Subscript<TrustedPeerManager.TPM_EVT_PEER_IX>(OnIncome);
  22. eventBus.Subscript<TrustedPeerManager.TPM_EVT_PEER_RX>(OnRx);
  23. eventBus.Subscript<TrustedPeerManager.TPM_EVT_PEER_DX>(OnDx);
  24. }
  25. public void Start()
  26. {
  27. logger.LogInformation("starting...");
  28. byte[] myPri, myPub;
  29. if (configManager.Instance.MyKeyPrivate == null || configManager.Instance.MyKeyPublic == null)
  30. {
  31. logger.LogInformation("Generating 8192bit RSA key... be patient, may take up to 30 seconds...");
  32. (myPub, myPri) = RsaUtility.GeneratePKCS1(8192);
  33. configManager.Instance.MyKeyPrivate = Convert.ToBase64String(myPri, Base64FormattingOptions.None);
  34. configManager.Instance.MyKeyPublic = Convert.ToBase64String(myPub, Base64FormattingOptions.None);
  35. configManager.Save();
  36. logger.LogInformation("RSA key generated and saved.");
  37. }
  38. else
  39. {
  40. myPri = Convert.FromBase64String(configManager.Instance.MyKeyPrivate);
  41. myPub = Convert.FromBase64String(configManager.Instance.MyKeyPublic);
  42. }
  43. eventBus.Publish(new TrustedPeerManager.TPM_EVT_CMD_INIT(myPub, myPri));
  44. logger.LogInformation("Your public key for share to trusted peer: " + configManager.Instance.MyKeyPublic);
  45. if (configManager.Instance.ListenPort == null || false == IPAddress.TryParse(configManager.Instance.ListenAddress, out _))
  46. {
  47. logger.LogError($"Missing config `{nameof(configManager.Instance.ListenPort)}' or `{nameof(configManager.Instance.ListenAddress)}', HALT");
  48. return;
  49. }
  50. if (configManager.Instance.TrustPeerKeyPub == null)
  51. {
  52. logger.LogError($"Missing config `{nameof(configManager.Instance.TrustPeerKeyPub)}', please obtain from trusted peer, HALT");
  53. return;
  54. }
  55. //warn just example for server
  56. tpm.AddTrustPeer(Convert.FromBase64String(configManager.Instance.TrustPeerKeyPub), "", 0);
  57. _tcpServer = new KestrelTcpServer(configManager.Instance.ListenAddress, configManager.Instance.ListenPort.Value, tpm.HandleIncomingPeerAsync, ktsLogger);
  58. Task.Run(async () =>
  59. {
  60. try
  61. {
  62. await _tcpServer.StartAsync();
  63. }
  64. catch (Exception e)
  65. {
  66. logger.LogError(e, "Start TCP server");
  67. }
  68. });
  69. }
  70. private void OnIncome(TrustedPeerManager.TPM_EVT_PEER_IX obj)
  71. {
  72. logger.LogInformation("Income:" + obj.PeerId);
  73. }
  74. private void OnRx(TrustedPeerManager.TPM_EVT_PEER_RX obj)
  75. {
  76. logger.LogInformation($"Rx from <{obj.PeerId}>");
  77. logger.LogInformation($"Rx content: {Encoding.UTF8.GetString(obj.block)}");
  78. tpm.SendToPeer(obj.PeerId, SHA256.HashData(obj.block));
  79. }
  80. private void OnDx(TrustedPeerManager.TPM_EVT_PEER_DX obj)
  81. {
  82. logger.LogInformation("Disconnected:" + obj.PeerId);
  83. }
  84. public void Stop()
  85. {
  86. logger.LogInformation("stop");
  87. _ = _tcpServer.StopAsync(); //FAF
  88. eventBus.Publish(new TrustedPeerManager.TPM_EVT_CMD_SHUTDOWN());
  89. }
  90. }