123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- using System.Net;
- using System.Security.Cryptography;
- using System.Text;
- using PCC.App;
- using PCC.App.Security;
- using PCC.Common.AssemblyInject.Interfaces;
- using PCC.Common.EventBus;
- using PCC.Common.Networking;
- namespace PCC.DevServer;
- internal class DevServerApp(
- DevServerPccConfigManager configManager,
- TrustedPeerManager tpm,
- IEventBus eventBus,
- ILogger<DevServerApp> logger,
- ILogger<KestrelTcpServer> ktsLogger) : IAssemblyInjectSyncInitStarStop
- {
- private KestrelTcpServer _tcpServer;
- public void Init()
- {
- logger.LogInformation("init");
- eventBus.Subscript<TrustedPeerManager.TPM_EVT_PEER_IX>(OnIncome);
- eventBus.Subscript<TrustedPeerManager.TPM_EVT_PEER_RX>(OnRx);
- eventBus.Subscript<TrustedPeerManager.TPM_EVT_PEER_DX>(OnDx);
- }
- public void Start()
- {
- logger.LogInformation("starting...");
- byte[] myPri, myPub;
- if (configManager.Instance.MyKeyPrivate == null || configManager.Instance.MyKeyPublic == null)
- {
- logger.LogInformation("Generating 8192bit RSA key... be patient, may take up to 30 seconds...");
- (myPub, myPri) = RsaUtility.GeneratePKCS1(8192);
- configManager.Instance.MyKeyPrivate = Convert.ToBase64String(myPri, Base64FormattingOptions.None);
- configManager.Instance.MyKeyPublic = Convert.ToBase64String(myPub, Base64FormattingOptions.None);
- configManager.Save();
- logger.LogInformation("RSA key generated and saved.");
- }
- else
- {
- myPri = Convert.FromBase64String(configManager.Instance.MyKeyPrivate);
- myPub = Convert.FromBase64String(configManager.Instance.MyKeyPublic);
- }
- eventBus.Publish(new TrustedPeerManager.TPM_EVT_CMD_INIT(myPub, myPri));
- logger.LogInformation("Your public key for share to trusted peer: " + configManager.Instance.MyKeyPublic);
- if (configManager.Instance.ListenPort == null || false == IPAddress.TryParse(configManager.Instance.ListenAddress, out _))
- {
- logger.LogError($"Missing config `{nameof(configManager.Instance.ListenPort)}' or `{nameof(configManager.Instance.ListenAddress)}', HALT");
- return;
- }
- if (configManager.Instance.TrustPeerKeyPub == null)
- {
- logger.LogError($"Missing config `{nameof(configManager.Instance.TrustPeerKeyPub)}', please obtain from trusted peer, HALT");
- return;
- }
- //warn just example for server
- tpm.AddTrustPeer(Convert.FromBase64String(configManager.Instance.TrustPeerKeyPub), "", 0);
- _tcpServer = new KestrelTcpServer(configManager.Instance.ListenAddress, configManager.Instance.ListenPort.Value, tpm.HandleIncomingPeerAsync, ktsLogger);
- Task.Run(async () =>
- {
- try
- {
- await _tcpServer.StartAsync();
- }
- catch (Exception e)
- {
- logger.LogError(e, "Start TCP server");
- }
- });
- }
- private void OnIncome(TrustedPeerManager.TPM_EVT_PEER_IX obj)
- {
- logger.LogInformation("Income:" + obj.PeerId);
- }
- private void OnRx(TrustedPeerManager.TPM_EVT_PEER_RX obj)
- {
- logger.LogInformation($"Rx from <{obj.PeerId}>");
- logger.LogInformation($"Rx content: {Encoding.UTF8.GetString(obj.block)}");
- tpm.SendToPeer(obj.PeerId, SHA256.HashData(obj.block));
- }
- private void OnDx(TrustedPeerManager.TPM_EVT_PEER_DX obj)
- {
- logger.LogInformation("Disconnected:" + obj.PeerId);
- }
- public void Stop()
- {
- logger.LogInformation("stop");
- _ = _tcpServer.StopAsync(); //FAF
- eventBus.Publish(new TrustedPeerManager.TPM_EVT_CMD_SHUTDOWN());
- }
- }
|