DevPeerInfoProviderBase.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using PCC.App.Tpm;
  2. using PCC.Common.AssemblyInject.Interfaces;
  3. using PCC.DevShared.Configuration;
  4. namespace PCC.DevShared;
  5. public class DevPeerInfoProviderBase(PccDevConfigManagerBase config) : IPeerInfoProvider, IAssemblyInjectSyncInitStarStop<IPeerInfoProvider>
  6. {
  7. private ICollection<ILocalPeerInfo>? _peerInfo;
  8. public ICollection<ILocalPeerInfo>? PeerInfo
  9. {
  10. get
  11. {
  12. if(_peerInfo == null) Start();
  13. return _peerInfo;
  14. }
  15. private set => _peerInfo = value;
  16. }
  17. public void Init()
  18. {
  19. }
  20. public void Start()
  21. {
  22. if (_peerInfo != null) return;
  23. var conf = config.Instance;
  24. var mPri = conf.MyKeyPrivate;
  25. var mPub = conf.MyKeyPublic;
  26. var mLisA = conf.ListenAddress;
  27. var mLisP = conf.ListenPort;
  28. var tPub = conf.TrustPeerKeyPub;
  29. var tLisA = conf.TrustPeerHost;
  30. var tLisP = conf.TrustPeerPort;
  31. if (new object[] { mPri, mPub, mLisA, mLisP, tPub, tLisA, tLisP }.Any(p => p == null))
  32. {
  33. PeerInfo = [];
  34. return;
  35. }
  36. var remote = new RemotePeerInfo(Convert.FromBase64String(tPub), tLisA, tLisP.Value);
  37. var local = new LocalPeerInfo(
  38. Convert.FromBase64String(mPub),
  39. Convert.FromBase64String(mPri),
  40. mLisA, mLisP.Value, [remote]
  41. );
  42. PeerInfo = [local];
  43. }
  44. public void Stop()
  45. {
  46. }
  47. }