OuterBusinessService.cs 7.8 KB

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