OuterBusinessService.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. using EVCB_OCPP.Domain;
  2. using EVCB_OCPP.Packet.Messages.SubTypes;
  3. using EVCB_OCPP.WSServer.Dto;
  4. using Newtonsoft.Json;
  5. using Newtonsoft.Json.Linq;
  6. using NLog;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Threading.Tasks;
  11. namespace EVCB_OCPP.WSServer.Service
  12. {
  13. internal class CPOOuterResponse
  14. {
  15. public CPOOuterResponse()
  16. {
  17. StatusCode = 0;
  18. }
  19. public int StatusCode { set; get; }
  20. public string StatusMessage { set; get; }
  21. public string Data { set; get; }
  22. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  23. public string SerialNo { set; get; }
  24. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  25. public string ErrorDetail { set; get; }
  26. }
  27. internal class CustomerSignMaterial
  28. {
  29. internal bool CallsThirdParty { set; get; }
  30. internal string Id { set; get; }
  31. internal string APIUrl { set; get; }
  32. internal string SaltKey { set; get; }
  33. }
  34. public class OuterBusinessService : IBusinessService
  35. {
  36. static private ILogger logger = NLog.LogManager.GetCurrentClassLogger();
  37. private OuterHttpClient httpClient = new OuterHttpClient();
  38. private CustomerSignMaterial signMaterial = null;
  39. private string CustomerId = string.Empty;
  40. public OuterBusinessService(string customerId)
  41. {
  42. CustomerId = customerId;
  43. signMaterial = GetSign(customerId);
  44. }
  45. async public Task<IdTagInfo> Authorize(string chargeBoxId, string idTag)
  46. {
  47. Console.WriteLine(string.Format("Authorize: {0}", CustomerId));
  48. IdTagInfo result = new IdTagInfo() { status = AuthorizationStatus.Invalid };
  49. try
  50. {
  51. string requestParams = string.Format("charging_auth?ChargeBoxId={0}&IdTag={1}", chargeBoxId, idTag);
  52. if (CustomerId.ToLower() == "9e6bfdcc-09fb-4dab-a428-43fe507600a3")
  53. {
  54. logger.Error(chargeBoxId+" Charging Monitor======================================>");
  55. logger.Error(signMaterial.APIUrl + requestParams);
  56. }
  57. var response = await httpClient.Post(signMaterial.APIUrl + requestParams, new Dictionary<string, string>()
  58. {
  59. { "PartnerId",signMaterial.Id}
  60. }, null, signMaterial.SaltKey).ConfigureAwait(false);
  61. if (CustomerId.ToLower() == "9e6bfdcc-09fb-4dab-a428-43fe507600a3")
  62. {
  63. logger.Error(JsonConvert.SerializeObject(response));
  64. }
  65. if (response.Success)
  66. {
  67. Console.WriteLine(response.Response);
  68. var _httpResult = JsonConvert.DeserializeObject<CPOOuterResponse>(response.Response);
  69. JObject jo = JObject.Parse(_httpResult.Data);
  70. if (jo.ContainsKey("ExpiryDate"))
  71. {
  72. DateTime dt = jo["ExpiryDate"].Value<DateTime>();
  73. result.expiryDate = dt;
  74. }
  75. if (jo.ContainsKey("ParentIdTag"))
  76. {
  77. string _Message = jo["ParentIdTag"].Value<string>();
  78. result.parentIdTag = _Message;
  79. }
  80. if (jo.ContainsKey("Status"))
  81. {
  82. string _Message = jo["Status"].Value<string>();
  83. result.status = (AuthorizationStatus)Enum.Parse(typeof(AuthorizationStatus), _Message);
  84. }
  85. }
  86. else
  87. {
  88. logger.Error(chargeBoxId + " OuterBusinessService.Authorize Fail: " + response.Response);
  89. }
  90. }
  91. catch (Exception ex)
  92. {
  93. result.status = AuthorizationStatus.Invalid;
  94. logger.Error(chargeBoxId + " OuterBusinessService.Authorize Ex: " + ex.ToString());
  95. }
  96. return result;
  97. }
  98. async public Task NotifyFaultStatus(ErrorDetails details)
  99. {
  100. try
  101. {
  102. if (signMaterial.CallsThirdParty)
  103. {
  104. var response = await httpClient.Post(signMaterial.APIUrl + "connectorfault", new Dictionary<string, string>()
  105. {
  106. { "PartnerId",signMaterial.Id}
  107. }, JsonConvert.SerializeObject(details, GlobalConfig.JSONSERIALIZER_FORMAT), signMaterial.SaltKey).ConfigureAwait(false);
  108. }
  109. }
  110. catch (Exception ex)
  111. {
  112. logger.Error(details.ChargeBoxId + " OuterBusinessService.NotifyFaultStatus Ex: " + ex.ToString());
  113. }
  114. }
  115. async public Task NotifyConnectorUnplugged(string chargeBoxId, string transactionId, string timestamp)
  116. {
  117. try
  118. {
  119. var details = new { ChargeBoxId = chargeBoxId, SessionId = transactionId, Timestamp = timestamp };
  120. logger.Debug("NotifyConnectorUnplugged: " + JsonConvert.SerializeObject(details));
  121. if (signMaterial.CallsThirdParty)
  122. {
  123. var response = await httpClient.Post(signMaterial.APIUrl + "connectorunplugged", new Dictionary<string, string>()
  124. {
  125. { "PartnerId",signMaterial.Id}
  126. }, details, signMaterial.SaltKey).ConfigureAwait(false);
  127. logger.Debug( JsonConvert.SerializeObject(response));
  128. }
  129. }
  130. catch (Exception ex)
  131. {
  132. logger.Error(chargeBoxId + " OuterBusinessService.NotifyConnectorUnplugged Ex: " + ex.ToString());
  133. }
  134. }
  135. private CustomerSignMaterial GetSign(string customerId)
  136. {
  137. Guid Id = new Guid(customerId);
  138. CustomerSignMaterial _customer = new CustomerSignMaterial();
  139. using (var db = new MainDBContext())
  140. {
  141. _customer = db.Customer.Where(x => x.Id == Id).Select(x => new CustomerSignMaterial() { Id = x.Id.ToString(), APIUrl = x.ApiUrl, SaltKey = x.ApiKey, CallsThirdParty = x.CallPartnerApiOnSchedule }).FirstOrDefault();
  142. }
  143. return _customer;
  144. }
  145. public Task NotifyConnectorUnplugged(string data)
  146. {
  147. throw new NotImplementedException();
  148. }
  149. }
  150. }