OuterBusinessService.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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<IdTokenInfo> Authorize(string chargeBoxId, string idTag)
  46. {
  47. await Task.Delay(10);
  48. IdTokenInfo result = new IdTokenInfo() { IdTagInfo = 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.Info(chargeBoxId + " Charging Monitor======================================>");
  55. logger.Info(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.Info(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.IdTagInfo.expiryDate = dt;
  74. }
  75. if (jo.ContainsKey("ParentIdTag"))
  76. {
  77. string _Message = jo["ParentIdTag"].Value<string>();
  78. result.IdTagInfo.parentIdTag = _Message;
  79. }
  80. if (jo.ContainsKey("ChargePointFee"))
  81. {
  82. result.ChargePointFee = new List<ChargePointFee>();
  83. for(int i=0;i< jo["ChargePointFee"].Count();i++)
  84. {
  85. result.ChargePointFee.Add(jo["ChargePointFee"][i].ToObject<ChargePointFee>());
  86. }
  87. }
  88. if (jo.ContainsKey("AccountBalance"))
  89. {
  90. decimal accountBalance = jo["AccountBalance"].Value<decimal>();
  91. result.AccountBalance = accountBalance;
  92. }
  93. if (jo.ContainsKey("Status"))
  94. {
  95. string _Message = jo["Status"].Value<string>();
  96. result.IdTagInfo.status = (AuthorizationStatus)Enum.Parse(typeof(AuthorizationStatus), _Message);
  97. }
  98. }
  99. else
  100. {
  101. logger.Error(chargeBoxId + " OuterBusinessService.Authorize Fail: " + response.Response);
  102. }
  103. }
  104. catch (Exception ex)
  105. {
  106. result.IdTagInfo.status = AuthorizationStatus.Invalid;
  107. logger.Error(chargeBoxId + " OuterBusinessService.Authorize Ex: " + ex.ToString());
  108. }
  109. return result;
  110. }
  111. async public Task NotifyFaultStatus(ErrorDetails details)
  112. {
  113. try
  114. {
  115. if (signMaterial.CallsThirdParty)
  116. {
  117. var response = await httpClient.Post(signMaterial.APIUrl + "connectorfault", new Dictionary<string, string>()
  118. {
  119. { "PartnerId",signMaterial.Id}
  120. }, JsonConvert.SerializeObject(details, GlobalConfig.JSONSERIALIZER_FORMAT), signMaterial.SaltKey).ConfigureAwait(false);
  121. }
  122. }
  123. catch (Exception ex)
  124. {
  125. logger.Error(details.ChargeBoxId + " OuterBusinessService.NotifyFaultStatus Ex: " + ex.ToString());
  126. }
  127. }
  128. async public Task NotifyConnectorUnplugged(string chargeBoxId, string data)
  129. {
  130. try
  131. {
  132. JObject jo = JObject.Parse(data);
  133. var details = new { ChargeBoxId = chargeBoxId, SessionId = jo["idTx"].Value<Int32>(), Timestamp = jo["timestamp"].Value<DateTime>() };
  134. if (signMaterial.CallsThirdParty)
  135. {
  136. var response = await httpClient.Post(signMaterial.APIUrl + "connectorunplugged", new Dictionary<string, string>()
  137. {
  138. { "PartnerId",signMaterial.Id}
  139. }, JsonConvert.SerializeObject(details, new JsonSerializerSettings()
  140. {
  141. DateTimeZoneHandling = DateTimeZoneHandling.Utc,
  142. NullValueHandling = NullValueHandling.Ignore,
  143. Formatting = Formatting.None
  144. }), signMaterial.SaltKey).ConfigureAwait(false);
  145. }
  146. }
  147. catch (Exception ex)
  148. {
  149. logger.Error(chargeBoxId + " OuterBusinessService.NotifyConnectorUnplugged Ex: " + ex.ToString());
  150. }
  151. }
  152. private CustomerSignMaterial GetSign(string customerId)
  153. {
  154. Guid Id = new Guid(customerId);
  155. CustomerSignMaterial _customer = new CustomerSignMaterial();
  156. using (var db = new MainDBContext())
  157. {
  158. _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();
  159. }
  160. return _customer;
  161. }
  162. public Task NotifyConnectorUnplugged(string data)
  163. {
  164. throw new NotImplementedException();
  165. }
  166. }
  167. }