OuterBusinessService.cs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. using EVCB_OCPP.Domain;
  2. using EVCB_OCPP.Domain.Models.Database;
  3. using EVCB_OCPP.Packet.Messages.SubTypes;
  4. using EVCB_OCPP.WSServer.Dto;
  5. using Microsoft.EntityFrameworkCore;
  6. using Newtonsoft.Json;
  7. using Newtonsoft.Json.Linq;
  8. using NLog;
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Linq;
  12. using System.Threading.Tasks;
  13. namespace EVCB_OCPP.WSServer.Service
  14. {
  15. internal class CPOOuterResponse
  16. {
  17. public CPOOuterResponse()
  18. {
  19. StatusCode = 0;
  20. }
  21. public int StatusCode { set; get; }
  22. public string StatusMessage { set; get; }
  23. public string Data { set; get; }
  24. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  25. public string SerialNo { set; get; }
  26. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  27. public string ErrorDetail { set; get; }
  28. }
  29. internal class CustomerSignMaterial
  30. {
  31. internal bool CallsThirdParty { set; get; }
  32. internal string Id { set; get; }
  33. internal string APIUrl { set; get; }
  34. internal string SaltKey { set; get; }
  35. }
  36. public class OuterBusinessService : IBusinessService
  37. {
  38. static private ILogger logger = NLog.LogManager.GetCurrentClassLogger();
  39. private OuterHttpClient httpClient = new OuterHttpClient();
  40. private CustomerSignMaterial signMaterial = null;
  41. private string _CustomerId = string.Empty;
  42. private readonly IDbContextFactory<MainDBContext> maindbContextFactory;
  43. public string CustomerId
  44. {
  45. get => _CustomerId;
  46. set
  47. {
  48. _CustomerId = value;
  49. signMaterial = GetSign(_CustomerId).Result;
  50. }
  51. }
  52. internal CustomerSignMaterial CustomerSignMaterial
  53. {
  54. get => signMaterial;
  55. set
  56. {
  57. signMaterial = value;
  58. _CustomerId = signMaterial.Id;
  59. }
  60. }
  61. public OuterBusinessService(IDbContextFactory<MainDBContext> maindbContextFactory)
  62. {
  63. this.maindbContextFactory = maindbContextFactory;
  64. }
  65. async public Task<IdTokenInfo> Authorize(string chargeBoxId, string idTag)
  66. {
  67. await Task.Delay(10);
  68. IdTokenInfo result = new IdTokenInfo() { IdTagInfo = new IdTagInfo() { status = AuthorizationStatus.Invalid } };
  69. try
  70. {
  71. string requestParams = string.Format("charging_auth?ChargeBoxId={0}&IdTag={1}", chargeBoxId, idTag);
  72. // if (CustomerId.ToLower() == "9e6bfdcc-09fb-4dab-a428-43fe507600a3")
  73. {
  74. logger.Info(chargeBoxId + " Charging Monitor======================================>");
  75. logger.Info(signMaterial.APIUrl + requestParams);
  76. }
  77. var response = await httpClient.Post(signMaterial.APIUrl + requestParams, new Dictionary<string, string>()
  78. {
  79. { "PartnerId",signMaterial.Id}
  80. }, null, signMaterial.SaltKey).ConfigureAwait(false);
  81. // if (CustomerId.ToLower() == "9e6bfdcc-09fb-4dab-a428-43fe507600a3")
  82. {
  83. logger.Info(JsonConvert.SerializeObject(response));
  84. }
  85. if (response.Success)
  86. {
  87. Console.WriteLine(response.Response);
  88. var _httpResult = JsonConvert.DeserializeObject<CPOOuterResponse>(response.Response);
  89. JObject jo = JObject.Parse(_httpResult.Data);
  90. if (jo.ContainsKey("ExpiryDate"))
  91. {
  92. DateTime dt = jo["ExpiryDate"].Value<DateTime>();
  93. result.IdTagInfo.expiryDate = dt;
  94. }
  95. if (jo.ContainsKey("ParentIdTag"))
  96. {
  97. string _Message = jo["ParentIdTag"].Value<string>();
  98. result.IdTagInfo.parentIdTag = _Message;
  99. }
  100. if (jo.ContainsKey("ChargePointFee"))
  101. {
  102. for(int i=0;i< jo["ChargePointFee"].Count();i++)
  103. {
  104. if(i==0)
  105. {
  106. result.ChargePointFee = new List<ChargePointFee>();
  107. }
  108. result.ChargePointFee.Add(jo["ChargePointFee"][i].ToObject<ChargePointFee>());
  109. }
  110. }
  111. if (jo.ContainsKey("ChargepointFee"))
  112. {
  113. for (int i = 0; i < jo["ChargepointFee"].Count(); i++)
  114. {
  115. if (i == 0)
  116. {
  117. result.ChargePointFee = new List<ChargePointFee>();
  118. }
  119. result.ChargePointFee.Add(jo["ChargepointFee"][i].ToObject<ChargePointFee>());
  120. }
  121. }
  122. if (jo.ContainsKey("AccountBalance"))
  123. {
  124. decimal accountBalance = jo["AccountBalance"].Value<decimal>();
  125. result.AccountBalance = accountBalance;
  126. }
  127. if (jo.ContainsKey("Status"))
  128. {
  129. string _Message = jo["Status"].Value<string>();
  130. result.IdTagInfo.status = (AuthorizationStatus)Enum.Parse(typeof(AuthorizationStatus), _Message);
  131. }
  132. }
  133. else
  134. {
  135. logger.Error(chargeBoxId + " OuterBusinessService.Authorize Fail: " + response.Response);
  136. }
  137. }
  138. catch (Exception ex)
  139. {
  140. result.IdTagInfo.status = AuthorizationStatus.Invalid;
  141. logger.Error(chargeBoxId + " OuterBusinessService.Authorize Ex: " + ex.ToString());
  142. }
  143. return result;
  144. }
  145. async public Task NotifyFaultStatus(ErrorDetails details)
  146. {
  147. try
  148. {
  149. if (signMaterial.CallsThirdParty)
  150. {
  151. var response = await httpClient.Post(signMaterial.APIUrl + "connectorfault", new Dictionary<string, string>()
  152. {
  153. { "PartnerId",signMaterial.Id}
  154. }, details, signMaterial.SaltKey).ConfigureAwait(false);
  155. }
  156. }
  157. catch (Exception ex)
  158. {
  159. logger.Error(details.ChargeBoxId + " OuterBusinessService.NotifyFaultStatus Ex: " + ex.ToString());
  160. }
  161. }
  162. async public Task NotifyConnectorUnplugged(string chargeBoxId, string data)
  163. {
  164. try
  165. {
  166. JObject jo = JObject.Parse(data);
  167. var details = new { ChargeBoxId = chargeBoxId, SessionId = jo["idTx"].Value<Int32>(), Timestamp = jo["timestamp"].Value<DateTime>() };
  168. if (signMaterial.CallsThirdParty)
  169. {
  170. var response = await httpClient.Post(signMaterial.APIUrl + "connectorunplugged", new Dictionary<string, string>()
  171. {
  172. { "PartnerId",signMaterial.Id}
  173. }, details, signMaterial.SaltKey).ConfigureAwait(false);
  174. }
  175. }
  176. catch (Exception ex)
  177. {
  178. logger.Error(chargeBoxId + " OuterBusinessService.NotifyConnectorUnplugged Ex: " + ex.ToString());
  179. }
  180. }
  181. private async Task<CustomerSignMaterial> GetSign(string customerId)
  182. {
  183. Guid Id = new Guid(customerId);
  184. CustomerSignMaterial _customer = new CustomerSignMaterial();
  185. //using (var db = new MainDBContext())
  186. using (var db = maindbContextFactory.CreateDbContext())
  187. {
  188. _customer = await db.Customer.Where(x => x.Id == Id).Select(x => new CustomerSignMaterial() { Id = x.Id.ToString(), APIUrl = x.ApiUrl, SaltKey = x.ApiKey, CallsThirdParty = x.CallPartnerApiOnSchedule }).FirstOrDefaultAsync();
  189. }
  190. return _customer;
  191. }
  192. public Task NotifyConnectorUnplugged(string data)
  193. {
  194. throw new NotImplementedException();
  195. }
  196. }
  197. }