CoreProfileHandler.cs 96 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724
  1. using Dapper;
  2. using EVCB_OCPP.Domain;
  3. using EVCB_OCPP.Domain.Models.Database;
  4. using EVCB_OCPP.Packet.Features;
  5. using EVCB_OCPP.Packet.Messages;
  6. using EVCB_OCPP.Packet.Messages.Core;
  7. using EVCB_OCPP.Packet.Messages.SubTypes;
  8. using EVCB_OCPP.WSServer.Dto;
  9. using EVCB_OCPP.WSServer.Helper;
  10. using EVCB_OCPP.WSServer.Service;
  11. using Microsoft.Data.SqlClient;
  12. using Microsoft.EntityFrameworkCore;
  13. using Microsoft.Extensions.Configuration;
  14. using Microsoft.Extensions.Logging;
  15. using Newtonsoft.Json;
  16. using Newtonsoft.Json.Linq;
  17. using OCPPServer.Protocol;
  18. using System.Data;
  19. using System.Diagnostics;
  20. using System.Globalization;
  21. using SuperSocket.SocketBase;
  22. namespace EVCB_OCPP.WSServer.Message;
  23. public class ID_CreditDeductResult
  24. {
  25. public int txId { set; get; }
  26. public string creditNo { set; get; }
  27. public bool deductResult { set; get; }
  28. public bool isDonateInvoice { set; get; }
  29. public decimal amount { set; get; }
  30. public string approvalNo { set; get; }
  31. }
  32. public class ID_ReaderStatus
  33. {
  34. public int ConnectorId { set; get; }
  35. public string creditNo { set; get; }
  36. public string SerialNo { set; get; }
  37. public int readerStatus { set; get; }
  38. public string VEMData { set; get; }
  39. public DateTime Timestamp { set; get; }
  40. }
  41. internal partial class ProfileHandler
  42. {
  43. private readonly ILogger logger;
  44. private readonly BlockingTreePrintService blockingTreePrintService;
  45. private readonly GoogleGetTimePrintService googleGetTimePrintService;
  46. private readonly ServerMessageService messageService;
  47. //private readonly string webConnectionString;// = ConfigurationManager.ConnectionStrings[].ConnectionString;
  48. private readonly IDbContextFactory<MainDBContext> maindbContextFactory;
  49. private readonly SqlConnectionFactory<WebDBConetext> webDbConnectionFactory;
  50. private readonly MeterValueDbService meterValueDbService;
  51. //private readonly IDbContextFactory<MeterValueDBContext> metervaluedbContextFactory;
  52. private readonly IBusinessServiceFactory businessServiceFactory;
  53. private readonly IMainDbService mainDbService;
  54. private OuterHttpClient httpClient;
  55. public ProfileHandler(
  56. IConfiguration configuration,
  57. IDbContextFactory<MainDBContext> maindbContextFactory,
  58. SqlConnectionFactory<WebDBConetext> webDbConnectionFactory,
  59. //IDbContextFactory<MeterValueDBContext> metervaluedbContextFactory,
  60. MeterValueDbService meterValueDbService,
  61. IBusinessServiceFactory businessServiceFactory,
  62. IMainDbService mainDbService,
  63. ILogger<ProfileHandler> logger,
  64. BlockingTreePrintService blockingTreePrintService,
  65. GoogleGetTimePrintService googleGetTimePrintService,
  66. ServerMessageService messageService,
  67. OuterHttpClient httpClient)
  68. {
  69. //webConnectionString = configuration.GetConnectionString("WebDBContext");
  70. this.logger = logger;
  71. this.blockingTreePrintService = blockingTreePrintService;
  72. this.googleGetTimePrintService = googleGetTimePrintService;
  73. this.messageService = messageService;
  74. this.maindbContextFactory = maindbContextFactory;
  75. this.webDbConnectionFactory = webDbConnectionFactory;
  76. this.meterValueDbService = meterValueDbService;
  77. this.mainDbService = mainDbService;
  78. //this.metervaluedbContextFactory = metervaluedbContextFactory;
  79. this.businessServiceFactory = businessServiceFactory;
  80. this.httpClient = httpClient;
  81. }
  82. async internal Task<MessageResult> ExecuteCoreRequest(Actions action, ClientData session, IRequest request)
  83. {
  84. Stopwatch watch = new Stopwatch();
  85. //if (action == Actions.Heartbeat || action == Actions.StopTransaction)
  86. //{
  87. // watch.Start();
  88. //}
  89. watch.Start();
  90. MessageResult result = new MessageResult() { Success = false };
  91. try
  92. {
  93. switch (action)
  94. {
  95. case Actions.DataTransfer:
  96. {
  97. DataTransferRequest _request = request as DataTransferRequest;
  98. var confirm = new DataTransferConfirmation() { status = DataTransferStatus.UnknownMessageId };
  99. if (_request.messageId == "ID_CreditDeductResult")
  100. {
  101. var creditDeductResult = JsonConvert.DeserializeObject<ID_CreditDeductResult>(_request.data);
  102. if (session.CustomerId == new Guid("009E603C-79CD-4620-A2B8-D9349C0E8AD8"))
  103. {
  104. var report = new
  105. {
  106. ChargeBoxId = session.ChargeBoxId,
  107. IsDonateInvoice = creditDeductResult.isDonateInvoice,
  108. CreditNo = creditDeductResult.creditNo,
  109. DeductResult = creditDeductResult.deductResult,
  110. SessionId = creditDeductResult.txId,
  111. ApprovalNo = creditDeductResult.approvalNo,
  112. TotalCost = creditDeductResult.amount,
  113. };
  114. var response = await httpClient.Post(GlobalConfig.TCC_API_URL + "prepare_issue_invoice", new Dictionary<string, string>()
  115. {
  116. { "PartnerId",session.CustomerId.ToString()}
  117. }, report, GlobalConfig.TCC_SALTKEY);
  118. logger.LogDebug(JsonConvert.SerializeObject(response));
  119. }
  120. confirm.status = DataTransferStatus.Accepted;
  121. confirm.data = JsonConvert.SerializeObject(new { txId = creditDeductResult.txId, creditNo = creditDeductResult.creditNo, msgId = _request.messageId });
  122. }
  123. if (_request.messageId == "ID_ReaderStatus")
  124. {
  125. if (session.CustomerId == new Guid("009E603C-79CD-4620-A2B8-D9349C0E8AD8"))
  126. {
  127. var preauth_status = JsonConvert.DeserializeObject<ID_ReaderStatus>(_request.data);
  128. var report = new
  129. {
  130. ChargeBoxId = session.ChargeBoxId,
  131. ConnectorId = preauth_status.ConnectorId,
  132. CreditNo = preauth_status.creditNo,
  133. ReaderStatus = preauth_status.readerStatus,
  134. SerialNo = preauth_status.SerialNo,
  135. VEMData = preauth_status.VEMData,
  136. Timestamp = preauth_status.Timestamp
  137. };
  138. var response = await httpClient.Post(GlobalConfig.TCC_API_URL + "preauth_status", new Dictionary<string, string>()
  139. {
  140. { "PartnerId",session.CustomerId.ToString()}
  141. }, report, GlobalConfig.TCC_SALTKEY);
  142. confirm.status = DataTransferStatus.Accepted;
  143. }
  144. }
  145. if (_request.messageId == "ID_OCMF")
  146. {
  147. JObject jo = JObject.Parse(_request.data);
  148. logger.LogDebug("{0}\r\n{1}\r\n{2}", jo["txId"].Value<int>(), jo["dataString"].Value<string>(), jo["publicKey"].Value<string>());
  149. await mainDbService.AddOCMF(new OCMF()
  150. {
  151. TransactionId = jo["txId"].Value<int>(),
  152. DataString = jo["dataString"].Value<string>(),
  153. PublicKey = jo["publicKey"].Value<string>()
  154. });
  155. confirm.status = DataTransferStatus.Accepted;
  156. confirm.data = JsonConvert.SerializeObject(new { txId = jo["txId"].Value<int>(), msgId = _request.messageId });
  157. }
  158. if (_request.messageId == "Authorize")
  159. {
  160. string iso15118_token = string.Empty;
  161. JObject jo = JObject.Parse(_request.data);
  162. if (jo.ContainsKey("idToken"))
  163. {
  164. iso15118_token = jo["idToken"]["idToken"].Value<string>();
  165. }
  166. confirm.status = DataTransferStatus.Accepted;
  167. confirm.data = JsonConvert.SerializeObject(
  168. new {
  169. certificateStatus = iso15118_token == "12345678901234" ? "Accepted" : "CertificateExpired",
  170. idTokenInfo = new { status = iso15118_token == "12345678901234" ? "Accepted" : "Invalid"
  171. } });
  172. }
  173. result.Message = confirm;
  174. result.Success = true;
  175. }
  176. break;
  177. case Actions.BootNotification:
  178. {
  179. BootNotificationRequest _request = request as BootNotificationRequest;
  180. int heartbeat_interval = GlobalConfig.GetHEARTBEAT_INTERVAL();
  181. //var _machine = db.Machine.FirstOrDefault(x => x.ChargeBoxId == session.ChargeBoxId);
  182. Machine _machine = new();
  183. _machine.ChargeBoxSerialNumber = string.IsNullOrEmpty(_request.chargeBoxSerialNumber) ? string.Empty : _request.chargeBoxSerialNumber;
  184. _machine.ChargePointSerialNumber = string.IsNullOrEmpty(_request.chargePointSerialNumber) ? string.Empty : _request.chargePointSerialNumber;
  185. _machine.ChargePointModel = string.IsNullOrEmpty(_request.chargePointModel) ? string.Empty : _request.chargePointModel;
  186. _machine.ChargePointVendor = string.IsNullOrEmpty(_request.chargePointVendor) ? string.Empty : _request.chargePointVendor;
  187. _machine.FW_CurrentVersion = string.IsNullOrEmpty(_request.firmwareVersion) ? string.Empty : _request.firmwareVersion;
  188. //_machine.Iccid = string.IsNullOrEmpty(_request.iccid) ? string.Empty : _request.iccid;
  189. _machine.Iccid = DateTime.UtcNow.ToString("yy-MM-dd HH:mm");
  190. _machine.Imsi = string.IsNullOrEmpty(_request.imsi) ? string.Empty : _request.imsi;
  191. _machine.MeterSerialNumber = string.IsNullOrEmpty(_request.meterSerialNumber) ? string.Empty : _request.meterSerialNumber;
  192. _machine.MeterType = string.IsNullOrEmpty(_request.meterType) ? string.Empty : _request.meterType;
  193. await mainDbService.UpdateMachineBasicInfo(session.ChargeBoxId, _machine);
  194. var configValue = await mainDbService.GetMachineHeartbeatInterval(session.ChargeBoxId);
  195. if (configValue != null)
  196. {
  197. int.TryParse(configValue, out heartbeat_interval);
  198. }
  199. if (session.IsPending == true)
  200. {
  201. session.IsPending = false;
  202. }
  203. if (session.IsPending == null)
  204. {
  205. session.IsPending = true;
  206. }
  207. var confirm = new BootNotificationConfirmation() {
  208. currentTime = DateTime.UtcNow,
  209. interval = session.IsPending.Value ? 5 : heartbeat_interval,
  210. status = session.IsPending.Value ? RegistrationStatus.Pending : RegistrationStatus.Accepted
  211. };
  212. result.Message = confirm;
  213. result.Success = true;
  214. }
  215. break;
  216. case Actions.StatusNotification:
  217. {
  218. var statusNotificationTimer = Stopwatch.StartNew();
  219. long s1 = 0, s2 = 0, s3 = 0, s4 = 0, s5 = 0;
  220. //只保留最新上報狀況
  221. StatusNotificationRequest _request = request as StatusNotificationRequest;
  222. int preStatus = 0;
  223. ConnectorStatus _oldStatus;
  224. _oldStatus = await mainDbService.GetConnectorStatus(session.ChargeBoxId, _request.connectorId);
  225. s1 = statusNotificationTimer.ElapsedMilliseconds;
  226. if (_oldStatus != null && (_request.status != (ChargePointStatus)_oldStatus.Status || _request.status == ChargePointStatus.Faulted))
  227. {
  228. preStatus = _oldStatus.Status;
  229. await mainDbService.UpdateConnectorStatus(_oldStatus.Id, new ConnectorStatus()
  230. {
  231. CreatedOn = _request.timestamp.HasValue ? _request.timestamp.Value : DateTime.UtcNow,
  232. Status = (int)_request.status,
  233. ChargePointErrorCodeId = (int)_request.errorCode,
  234. ErrorInfo = string.IsNullOrEmpty(_request.info) ? string.Empty : _request.info,
  235. VendorId = string.IsNullOrEmpty(_request.vendorId) ? string.Empty : _request.vendorId,
  236. VendorErrorCode = string.IsNullOrEmpty(_request.vendorErrorCode) ? string.Empty : _request.vendorErrorCode
  237. });
  238. }
  239. s2 = statusNotificationTimer.ElapsedMilliseconds;
  240. if (_oldStatus == null)
  241. {
  242. await mainDbService.AddConnectorStatus(
  243. ChargeBoxId: session.ChargeBoxId,
  244. ConnectorId: (byte)_request.connectorId,
  245. CreatedOn: _request.timestamp.HasValue ? _request.timestamp.Value : DateTime.UtcNow,
  246. Status: (int)_request.status,
  247. ChargePointErrorCodeId: (int)_request.errorCode,
  248. ErrorInfo: string.IsNullOrEmpty(_request.info) ? string.Empty : _request.info,
  249. VendorId: string.IsNullOrEmpty(_request.vendorId) ? string.Empty : _request.vendorId,
  250. VendorErrorCode: string.IsNullOrEmpty(_request.vendorErrorCode) ? string.Empty : _request.vendorErrorCode);
  251. }
  252. s3 = statusNotificationTimer.ElapsedMilliseconds;
  253. if (_request.status == Packet.Messages.SubTypes.ChargePointStatus.Faulted)
  254. {
  255. await mainDbService.AddMachineError(ConnectorId: (byte)_request.connectorId,
  256. CreatedOn: _request.timestamp.HasValue ? _request.timestamp.Value : DateTime.UtcNow,
  257. Status: (int)_request.status,
  258. ChargeBoxId: session.ChargeBoxId,
  259. ErrorCodeId: (int)_request.errorCode,
  260. ErrorInfo: string.IsNullOrEmpty(_request.info) ? string.Empty : _request.info,
  261. PreStatus: _oldStatus == null ? -1 : preStatus,
  262. VendorErrorCode: string.IsNullOrEmpty(_request.vendorErrorCode) ? string.Empty : _request.vendorErrorCode,
  263. VendorId: string.IsNullOrEmpty(_request.vendorId) ? string.Empty : _request.vendorId);
  264. }
  265. s4 = statusNotificationTimer.ElapsedMilliseconds;
  266. if (_request.status == Packet.Messages.SubTypes.ChargePointStatus.Faulted)
  267. {
  268. //var businessService = BusinessServiceFactory.CreateBusinessService(session.CustomerId.ToString());
  269. //var businessService = await serviceProvider.GetService<BusinessServiceFactory>().CreateBusinessService(session.CustomerId.ToString());
  270. var businessService = await businessServiceFactory.CreateBusinessService(session.CustomerId.ToString());
  271. var notification = businessService.NotifyFaultStatus(new ErrorDetails()
  272. {
  273. ChargeBoxId = session.ChargeBoxId,
  274. ConnectorId = _request.connectorId,
  275. ErrorCode = _request.errorCode,
  276. Info = string.IsNullOrEmpty(_request.info) ? string.Empty : _request.info,
  277. OCcuredOn = _request.timestamp ?? DateTime.UtcNow,
  278. VendorErrorCode = string.IsNullOrEmpty(_request.vendorErrorCode) ? string.Empty : _request.vendorErrorCode,
  279. });
  280. }
  281. s5 = statusNotificationTimer.ElapsedMilliseconds;
  282. var confirm = new StatusNotificationConfirmation() { };
  283. result.Message = confirm;
  284. result.Success = true;
  285. statusNotificationTimer.Stop();
  286. if (statusNotificationTimer.ElapsedMilliseconds / 1000 > 1)
  287. {
  288. logger.LogCritical(string.Format("StatusNotification took {0}/{1}/{2}/{3}/{4}", s1, s2, s3, s4, s5));
  289. }
  290. }
  291. break;
  292. case Actions.Heartbeat:
  293. {
  294. var confirm = new HeartbeatConfirmation() { currentTime = DateTime.UtcNow };
  295. result.Message = confirm;
  296. result.Success = true;
  297. }
  298. break;
  299. case Actions.MeterValues:
  300. {
  301. var meterValueTimer = Stopwatch.StartNew();
  302. long s1 = 0, s2 = 0, s3 = 0, s4 = 0, s5 = 0, insertTasksCnt = 0;
  303. MeterValuesRequest _request = request as MeterValuesRequest;
  304. if (_request.meterValue.Count > 0)
  305. {
  306. s1 = meterValueTimer.ElapsedMilliseconds;
  307. foreach (var item in _request.meterValue)
  308. {
  309. if (_request.transactionId.HasValue)
  310. {
  311. decimal meterStart = 0;
  312. var energy_Register = item.sampledValue.Where(x => x.measurand == Measurand.Energy_Active_Import_Register).FirstOrDefault();
  313. if (energy_Register != null)
  314. {
  315. decimal energyRegister = decimal.Parse(energy_Register.value);
  316. energyRegister = energy_Register.unit.Value == UnitOfMeasure.kWh ? decimal.Multiply(energyRegister, 1000) : energyRegister;
  317. using (var maindb = await maindbContextFactory.CreateDbContextAsync())
  318. {
  319. meterStart = await maindb.TransactionRecord
  320. .Where(x => x.Id == _request.transactionId.Value).Select(x => x.MeterStart)
  321. .FirstOrDefaultAsync();
  322. }
  323. item.sampledValue.Add(new SampledValue()
  324. {
  325. context = ReadingContext.Sample_Periodic,
  326. format = ValueFormat.Raw,
  327. location = Location.Outlet,
  328. phase = item.sampledValue.Where(x => x.measurand == Measurand.Energy_Active_Import_Register).Select(x => x.phase).FirstOrDefault(),
  329. unit = UnitOfMeasure.Wh,
  330. measurand = Measurand.TotalEnergy,
  331. value = decimal.Subtract(energyRegister, meterStart).ToString()
  332. });
  333. }
  334. }
  335. }
  336. s2 = meterValueTimer.ElapsedMilliseconds;
  337. //List<Task> insertTasks = new();
  338. List <InsertMeterValueParam> datas= new();
  339. foreach (var item in _request.meterValue)
  340. {
  341. foreach (var sampleVaule in item.sampledValue)
  342. {
  343. decimal value = Convert.ToDecimal(sampleVaule.value);
  344. datas.Add(new InsertMeterValueParam(
  345. chargeBoxId: session.ChargeBoxId
  346. , connectorId: (byte)_request.connectorId
  347. , value: value
  348. , createdOn: item.timestamp
  349. , contextId: sampleVaule.context.HasValue ? (int)sampleVaule.context : 0
  350. , formatId: sampleVaule.format.HasValue ? (int)sampleVaule.format : 0
  351. , measurandId: sampleVaule.measurand.HasValue ? (int)sampleVaule.measurand : 0
  352. , phaseId: sampleVaule.phase.HasValue ? (int)sampleVaule.phase : 0
  353. , locationId: sampleVaule.location.HasValue ? (int)sampleVaule.location : 0
  354. , unitId: sampleVaule.unit.HasValue ? (int)sampleVaule.unit : 0
  355. , transactionId: _request.transactionId.HasValue ? _request.transactionId.Value : -1));
  356. //var task = meterValueDbService.InsertAsync(
  357. // chargeBoxId: session.ChargeBoxId
  358. // , connectorId: (byte)_request.connectorId
  359. // , value: value
  360. // , createdOn: item.timestamp
  361. // , contextId: sampleVaule.context.HasValue ? (int)sampleVaule.context : 0
  362. // , formatId: sampleVaule.format.HasValue ? (int)sampleVaule.format : 0
  363. // , measurandId: sampleVaule.measurand.HasValue ? (int)sampleVaule.measurand : 0
  364. // , phaseId: sampleVaule.phase.HasValue ? (int)sampleVaule.phase : 0
  365. // , locationId: sampleVaule.location.HasValue ? (int)sampleVaule.location : 0
  366. // , unitId: sampleVaule.unit.HasValue ? (int)sampleVaule.unit : 0
  367. // , transactionId: _request.transactionId.HasValue ? _request.transactionId.Value : -1);
  368. //var task = Task.Delay(2_000);
  369. //insertTasks.Add(task);
  370. }
  371. }
  372. //insertTasksCnt = insertTasks.Count;
  373. insertTasksCnt = datas.Count;
  374. s3 = meterValueTimer.ElapsedMilliseconds;
  375. //await Task.WhenAll(insertTasks);
  376. await meterValueDbService.InsertBundleAsync(datas);
  377. s4 = meterValueTimer.ElapsedMilliseconds;
  378. }
  379. // if (energy_kwh > 0)
  380. {
  381. try
  382. {
  383. if (session.IsBilling)
  384. {
  385. await messageService.SendDataTransferRequest(
  386. session.ChargeBoxId,
  387. messageId: "ID_TxEnergy",
  388. vendorId: "Phihong Technology",
  389. data: JsonConvert.SerializeObject(new { txId = _request.transactionId, ConnectorId = _request.connectorId })
  390. );
  391. }
  392. }
  393. catch (Exception ex)
  394. {
  395. logger.LogTrace(string.Format("{0} :{1}", session.ChargeBoxId + " RunningCost", ex.Message));
  396. }
  397. }
  398. s5 = meterValueTimer.ElapsedMilliseconds;
  399. meterValueTimer.Stop();
  400. if (meterValueTimer.ElapsedMilliseconds / 1000 > 1)
  401. {
  402. logger.LogCritical(string.Format("MeterValues took {0}/{1}/{2}/{3}/{4}:{5}", s1 / 1000, s2 / 1000, s3 / 1000, s4 / 1000, s5 / 1000, insertTasksCnt));
  403. }
  404. var confirm = new MeterValuesConfirmation() { };
  405. result.Message = confirm;
  406. result.Success = true;
  407. }
  408. break;
  409. case Actions.StartTransaction:
  410. {
  411. var timer = Stopwatch.StartNew();
  412. long t0 = 0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, t5 = 0;
  413. StartTransactionRequest _request = request as StartTransactionRequest;
  414. int _transactionId = -1;
  415. var businessService = await businessServiceFactory.CreateBusinessService(session.CustomerId.ToString());
  416. t0 = timer.ElapsedMilliseconds;
  417. var _idTagInfo = new IdTagInfo() { expiryDate = DateTime.UtcNow.AddDays(1), status = AuthorizationStatus.Accepted };
  418. #region PnC 邏輯
  419. if (!string.IsNullOrEmpty(_request.idTag))
  420. {
  421. _request.idTag = _request.idTag.StartsWith("vid:") ? _request.idTag.Replace("vid:", "") : _request.idTag;
  422. }
  423. #endregion
  424. if (_request.idTag != "Backend")
  425. {
  426. var authorization_result = await businessService.Authorize(session.ChargeBoxId, _request.idTag);
  427. _idTagInfo = authorization_result.IdTagInfo;
  428. t1 = timer.ElapsedMilliseconds;
  429. if (_idTagInfo.status == AuthorizationStatus.Accepted && authorization_result.ChargePointFee != null)
  430. {
  431. var price = authorization_result.ChargePointFee.Where(x => x.IsAC == session.IsAC).First();
  432. if (price != null)
  433. {
  434. if (session.UserPrices.ContainsKey(_request.idTag))
  435. {
  436. session.UserPrices[_request.idTag] = price.PerkWhFee.HasValue ? JsonConvert.SerializeObject(new List<ChargingPrice>() { new ChargingPrice() { StartTime = "00:00", EndTime = "23:59", Fee = price.PerkWhFee.Value } }) : price.PerHourFee.Value.ToString();
  437. session.UserPrices[_request.idTag] += "|+" + authorization_result.AccountBalance + "+" + "&" + price.ParkingFee + "&|" + price.Currency;
  438. }
  439. else
  440. {
  441. session.UserPrices.Add(_request.idTag, price.PerkWhFee.HasValue ? JsonConvert.SerializeObject(new List<ChargingPrice>() { new ChargingPrice() { StartTime = "00:00", EndTime = "23:59", Fee = price.PerkWhFee.Value } }) : price.PerHourFee.Value.ToString());
  442. session.UserPrices[_request.idTag] += "|+" + authorization_result.AccountBalance + "+" + "&" + price.ParkingFee + "&|" + price.Currency;
  443. }
  444. }
  445. }
  446. }
  447. //特例****飛宏客戶旗下的電樁,若遇到Portal沒回應的狀況 ~允許充電
  448. if (session.CustomerId.ToString().ToUpper() == "8456AED9-6DD9-4BF3-A94C-9F5DCB9506F7" && _idTagInfo.status == AuthorizationStatus.ConcurrentTx)
  449. {
  450. _idTagInfo = new IdTagInfo() { expiryDate = DateTime.UtcNow.AddDays(1), status = AuthorizationStatus.Accepted };
  451. }
  452. string accountBalance = "0";
  453. if (session.CustomerId.ToString().ToUpper() == "10C7F5BD-C89A-4E2A-8611-B617E0B41A73")
  454. {
  455. using (SqlConnection conn = await webDbConnectionFactory.CreateAsync())
  456. {
  457. var parameters = new DynamicParameters();
  458. parameters.Add("@IdTag", _request.idTag, DbType.String, ParameterDirection.Input, 50);
  459. string strSql = "select parentIdTag from [dbo].[LocalListDetail] where ListId = 27 and IdTag=@IdTag; ";
  460. accountBalance = await conn.ExecuteScalarAsync<string>(strSql, parameters);
  461. }
  462. }
  463. var _CustomerId = await mainDbService.GetCustomerIdByChargeBoxId(session.ChargeBoxId);
  464. t2 = timer.ElapsedMilliseconds;
  465. var _existedTx = await mainDbService.TryGetDuplicatedTransactionId(session.ChargeBoxId, _CustomerId, _request.connectorId, _request.timestamp);
  466. t3 = timer.ElapsedMilliseconds;
  467. if (_existedTx != null)
  468. {
  469. _transactionId = _existedTx.Value;
  470. logger.LogError("Duplication ***************************************************** " + _existedTx);
  471. }
  472. else
  473. {
  474. TransactionRecord _newTransaction;//= new TransactionRecord();
  475. _newTransaction = new TransactionRecord()
  476. {
  477. ChargeBoxId = session.ChargeBoxId,
  478. ConnectorId = (byte)_request.connectorId,
  479. CreatedOn = DateTime.UtcNow,
  480. StartIdTag = _request.idTag,
  481. MeterStart = _request.meterStart,
  482. CustomerId = _CustomerId,
  483. StartTime = _request.timestamp.ToUniversalTime(),
  484. ReservationId = _request.reservationId.HasValue ? _request.reservationId.Value : 0,
  485. };
  486. if (session.UserPrices.ContainsKey(_request.idTag))
  487. {
  488. _newTransaction.Fee = !session.IsBilling ? string.Empty : session.UserPrices[_request.idTag];
  489. }
  490. else
  491. {
  492. _newTransaction.Fee = !session.IsBilling ? string.Empty : session.BillingMethod == 1 ? JsonConvert.SerializeObject(session.ChargingPrices) : session.ChargingFeebyHour.ToString();
  493. _newTransaction.Fee += !session.IsBilling ? string.Empty : "|+" + accountBalance + "+" + "&" + session.ParkingFee + "&|" + session.Currency;
  494. }
  495. //using (var db = await maindbContextFactory.CreateDbContextAsync())
  496. //{
  497. // await db.TransactionRecord.AddAsync(_newTransaction);
  498. // await db.SaveChangesAsync();
  499. // _transactionId = _newTransaction.Id;
  500. //}
  501. _transactionId = await mainDbService.AddNewTransactionRecord(_newTransaction);
  502. t4 = timer.ElapsedMilliseconds;
  503. logger.LogInformation("***************************************************** ");
  504. logger.LogInformation(string.Format("{0} :TransactionId {1} ", session.ChargeBoxId, _transactionId));
  505. logger.LogInformation("***************************************************** ");
  506. }
  507. var confirm = new StartTransactionConfirmation()
  508. {
  509. idTagInfo = _idTagInfo,
  510. transactionId = _transactionId
  511. };
  512. result.Message = confirm;
  513. result.Success = true;
  514. timer.Stop();
  515. t5 = timer.ElapsedMilliseconds;
  516. if (t5 > 1000)
  517. {
  518. logger.Log(LogLevel.Critical, "{action} {ChargeBoxId} time {t0}/{t1}/{t2}/{t3}/{t4}/{totalTime}", action.ToString(), session.ChargeBoxId, t0, t1, t2, t3, t4, t5);
  519. }
  520. }
  521. break;
  522. case Actions.StopTransaction:
  523. {
  524. StopTransactionRequest _request = request as StopTransactionRequest;
  525. //遠傳太久以前的停止充電 直接拒絕 避免電樁持續重送~~~~~~~
  526. if (_request.timestamp < new DateTime(2021, 11, 1))
  527. {
  528. var confirm = new StopTransactionConfirmation()
  529. {
  530. idTagInfo = new IdTagInfo()
  531. {
  532. status = AuthorizationStatus.Invalid
  533. }
  534. };
  535. result.Message = confirm;
  536. result.Success = true;
  537. return result;
  538. }
  539. long getDateTimeTime, getServiceTime, getTagInfoTime, dbOpTime = 0, meterValueTime = 0;
  540. var stopTrasactionTimer = Stopwatch.StartNew();
  541. int _ConnectorId = 0;
  542. var utcNow = DateTime.UtcNow;
  543. getDateTimeTime = stopTrasactionTimer.ElapsedMilliseconds;
  544. var businessService = await businessServiceFactory.CreateBusinessService(session.CustomerId.ToString());
  545. getServiceTime = stopTrasactionTimer.ElapsedMilliseconds;
  546. TransactionRecord transaction;
  547. transaction = await mainDbService.GetTransactionForStopTransaction(_request.transactionId, session.ChargeBoxId);
  548. var _idTagInfo = string.IsNullOrEmpty(_request.idTag) ? null : (
  549. _request.idTag == "Backend" ?
  550. new IdTagInfo()
  551. {
  552. expiryDate = utcNow.AddDays(1),
  553. status = AuthorizationStatus.Accepted
  554. } :
  555. (await businessService.Authorize(session.ChargeBoxId, _request.idTag, transaction?.ConnectorId)).IdTagInfo
  556. );
  557. getTagInfoTime = stopTrasactionTimer.ElapsedMilliseconds;
  558. //特例****飛宏客戶旗下的電樁,若遇到Portal沒回應的狀況 ~允許充電
  559. if (session.CustomerId.ToString().ToUpper() == "8456AED9-6DD9-4BF3-A94C-9F5DCB9506F7" && _idTagInfo != null && _idTagInfo.status == AuthorizationStatus.ConcurrentTx)
  560. {
  561. _idTagInfo = new IdTagInfo() { expiryDate = utcNow.AddDays(1), status = AuthorizationStatus.Accepted };
  562. }
  563. #region PnC 邏輯
  564. if (!string.IsNullOrEmpty(_request.idTag))
  565. {
  566. _request.idTag = _request.idTag.StartsWith("vid:") ? _request.idTag.Replace("vid:", "") : _request.idTag;
  567. }
  568. #endregion
  569. try
  570. {
  571. if (transaction is null)
  572. {
  573. result.Exception = new Exception("Can't find transactionId " + _request.transactionId);
  574. }
  575. else
  576. {
  577. #region 加入Transaction Start/StopSOC
  578. if (!session.IsAC && _request.transactionId > 0)
  579. {
  580. var SearchTime = transaction.StartTime;
  581. var txStopTime = _request.timestamp;
  582. List<int> SOCCollection = new List<int>();
  583. while (SearchTime.Date <= txStopTime.Date)
  584. {
  585. var searchResults = await meterValueDbService.GetTransactionSOC(transaction.Id, SearchTime.Date);
  586. SOCCollection.AddRange(searchResults);
  587. SearchTime = SearchTime.AddDays(1);
  588. }
  589. SOCCollection.Sort();
  590. logger.LogDebug(string.Format("SOCCollection:" + String.Join(",", SOCCollection.Select(x => x.ToString()).ToArray())));
  591. await mainDbService.UpdateTransactionSOC(
  592. transaction.Id,
  593. startsoc: SOCCollection.Count == 0 ? "" : SOCCollection.First().ToString("0"),
  594. stopsoc: SOCCollection.Count == 0 ? "" : SOCCollection.Last().ToString("0")
  595. );
  596. }
  597. #endregion
  598. _ConnectorId = transaction.ConnectorId;
  599. var confirm = new StopTransactionConfirmation()
  600. {
  601. idTagInfo = _idTagInfo
  602. };
  603. //Avoid rewrite transaction data
  604. if (transaction.StopTime != GlobalConfig.DefaultNullTime)
  605. {
  606. result.Message = confirm;
  607. result.Success = true;
  608. return result;
  609. }
  610. await mainDbService.UpdateTransaction(_request.transactionId,
  611. meterStop: _request.meterStop,
  612. stopTime: _request.timestamp.ToUniversalTime(),
  613. stopReasonId: _request.reason.HasValue ? (int)_request.reason.Value : 0,
  614. stopReason: _request.reason.HasValue ? _request.reason.Value.ToString() : Reason.Local.ToString(),
  615. stopIdTag: _request.idTag,
  616. receipt: string.Empty,
  617. cost: session.IsBilling ? -1 : 0);
  618. if (_request.transactionData == null || _request.transactionData.Count == 0)
  619. {
  620. _request.transactionData = new List<MeterValue>()
  621. {
  622. new MeterValue() { timestamp= _request.timestamp, sampledValue=new List<SampledValue>()}
  623. };
  624. }
  625. if (_request.transactionData != null && _request.transactionData.Count > 0)
  626. {
  627. //清除 StopTransaction TransactionData
  628. _request.transactionData[0].sampledValue.Clear();
  629. _request.transactionData[0].sampledValue.Add(new SampledValue()
  630. {
  631. context = ReadingContext.Transaction_End,
  632. format = ValueFormat.Raw,
  633. location = Location.Outlet,
  634. phase = _request.transactionData[0].sampledValue.Where(x => x.context.HasValue).Select(x => x.phase).FirstOrDefault(),
  635. unit = UnitOfMeasure.Wh,
  636. measurand = Measurand.TotalEnergy,
  637. value = decimal.Subtract(transaction.MeterStop, transaction.MeterStart).ToString()
  638. });
  639. }
  640. if (session.IsBilling)
  641. {
  642. await messageService.SendDataTransferRequest(
  643. session.ChargeBoxId,
  644. messageId: "ID_TxEnergy",
  645. vendorId: "Phihong Technology",
  646. data: JsonConvert.SerializeObject(new { txId = _request.transactionId, ConnectorId = transaction.ConnectorId })
  647. );
  648. }
  649. result.Message = confirm;
  650. result.Success = true;
  651. }
  652. dbOpTime = watch.ElapsedMilliseconds;
  653. #region Save MeterValue
  654. if (_request.transactionData != null &&
  655. _request.transactionData.Count > 0)
  656. {
  657. //List<Task> insertTasks = new();
  658. List<InsertMeterValueParam> datas = new();
  659. foreach (var item in _request.transactionData)
  660. {
  661. foreach (var sampleVaule in item.sampledValue)
  662. {
  663. decimal value = Convert.ToDecimal(sampleVaule.value);
  664. datas.Add(new InsertMeterValueParam(
  665. chargeBoxId: session.ChargeBoxId
  666. , connectorId: (byte)_ConnectorId
  667. , value: value
  668. , createdOn: item.timestamp
  669. , contextId: sampleVaule.context.HasValue ? (int)sampleVaule.context : 0
  670. , formatId: sampleVaule.format.HasValue ? (int)sampleVaule.format : 0
  671. , measurandId: sampleVaule.measurand.HasValue ? (int)sampleVaule.measurand : 0
  672. , phaseId: sampleVaule.phase.HasValue ? (int)sampleVaule.phase : 0
  673. , locationId: sampleVaule.location.HasValue ? (int)sampleVaule.location : 0
  674. , unitId: sampleVaule.unit.HasValue ? (int)sampleVaule.unit : 0
  675. , transactionId: _request.transactionId));
  676. //var task = meterValueDbService.InsertAsync(
  677. // chargeBoxId: session.ChargeBoxId
  678. // , connectorId: (byte)_ConnectorId
  679. // , value: value
  680. // , createdOn: item.timestamp
  681. // , contextId: sampleVaule.context.HasValue ? (int)sampleVaule.context : 0
  682. // , formatId: sampleVaule.format.HasValue ? (int)sampleVaule.format : 0
  683. // , measurandId: sampleVaule.measurand.HasValue ? (int)sampleVaule.measurand : 0
  684. // , phaseId: sampleVaule.phase.HasValue ? (int)sampleVaule.phase : 0
  685. // , locationId: sampleVaule.location.HasValue ? (int)sampleVaule.location : 0
  686. // , unitId: sampleVaule.unit.HasValue ? (int)sampleVaule.unit : 0
  687. // , transactionId: _request.transactionId);
  688. //insertTasks.Add(task);
  689. }
  690. }
  691. //await Task.WhenAll(insertTasks);
  692. await meterValueDbService.InsertBundleAsync(datas);
  693. }
  694. #endregion
  695. meterValueTime = watch.ElapsedMilliseconds;
  696. }
  697. catch (Exception ex)
  698. {
  699. result.Exception = new Exception("TransactionId " + _request.transactionId + " " + ex.Message);
  700. result.CallErrorMsg = "Reject Response Message";
  701. result.Success = false;
  702. logger.LogCritical("StopTransaction {msg} trace:{trace}", ex.Message, ex.StackTrace);
  703. // return result;
  704. }
  705. stopTrasactionTimer.Stop();
  706. if (stopTrasactionTimer.ElapsedMilliseconds > 1000)
  707. {
  708. logger.Log(LogLevel.Critical, "ExecuteCoreRequest {action} {ChargeBoxId} took {time} sec", action.ToString(), session.ChargeBoxId, stopTrasactionTimer.ElapsedMilliseconds / 1000);
  709. logger.Log(LogLevel.Critical, "{action} {ChargeBoxId} time {getDateTime}/{serviceTime}/{tagInfoTime}/{dbOpTime}/{meterValueTime}", action.ToString(), session.ChargeBoxId, getDateTimeTime, getServiceTime, getTagInfoTime, dbOpTime, meterValueTime);
  710. }
  711. }
  712. break;
  713. case Actions.Authorize:
  714. {
  715. AuthorizeRequest _request = request as AuthorizeRequest;
  716. var businessService = await businessServiceFactory.CreateBusinessService(session.CustomerId.ToString());
  717. var confirm = new AuthorizeConfirmation()
  718. {
  719. idTagInfo = new IdTagInfo() { expiryDate = DateTime.UtcNow.AddDays(1), status = AuthorizationStatus.Accepted }
  720. };
  721. if (_request.idTag != "Backend")
  722. {
  723. var authorization_result = await businessService.Authorize(session.ChargeBoxId, _request.idTag);
  724. confirm.idTagInfo = authorization_result.IdTagInfo;
  725. if (confirm.idTagInfo.status == AuthorizationStatus.Accepted && authorization_result.ChargePointFee != null)
  726. {
  727. var price = authorization_result.ChargePointFee.Where(x => x.IsAC == session.IsAC).First();
  728. if (price != null)
  729. {
  730. if (session.UserPrices.ContainsKey(_request.idTag))
  731. {
  732. session.UserPrices[_request.idTag] = price.PerkWhFee.HasValue ? JsonConvert.SerializeObject(new List<ChargingPrice>() { new ChargingPrice() { StartTime = "00:00", EndTime = "23:59", Fee = price.PerkWhFee.Value } }) : price.PerHourFee.Value.ToString();
  733. session.UserPrices[_request.idTag] += "|+" + authorization_result.AccountBalance + "+" + "&" + price.ParkingFee + "&|" + price.Currency;
  734. }
  735. else
  736. {
  737. session.UserPrices.Add(_request.idTag, price.PerkWhFee.HasValue ? JsonConvert.SerializeObject(new List<ChargingPrice>() { new ChargingPrice() { StartTime = "00:00", EndTime = "23:59", Fee = price.PerkWhFee.Value } }) : price.PerHourFee.Value.ToString());
  738. session.UserPrices[_request.idTag] += "|+" + authorization_result.AccountBalance + "+" + "&" + price.ParkingFee + "&|" + price.Currency;
  739. }
  740. if (session.UserDisplayPrices.ContainsKey(_request.idTag))
  741. {
  742. session.UserDisplayPrices[_request.idTag] = price.DisplayMessage;
  743. }
  744. else
  745. {
  746. session.UserDisplayPrices.Add(_request.idTag, price.DisplayMessage);
  747. }
  748. }
  749. }
  750. }
  751. //特例****飛宏客戶旗下的電樁,若遇到Portal沒回應的狀況 ~允許充電
  752. if (session.CustomerId.ToString().ToUpper() == "8456AED9-6DD9-4BF3-A94C-9F5DCB9506F7" && confirm.idTagInfo.status == AuthorizationStatus.ConcurrentTx)
  753. {
  754. confirm.idTagInfo = new IdTagInfo() { expiryDate = DateTime.UtcNow.AddDays(1), status = AuthorizationStatus.Accepted };
  755. }
  756. result.Message = confirm;
  757. result.Success = true;
  758. }
  759. break;
  760. default:
  761. {
  762. logger.LogWarning(string.Format("Not Implement {0} Logic(ExecuteCoreRequest)", request.GetType().ToString().Replace("OCPPPackage.Messages.Core.", "")));
  763. }
  764. break;
  765. }
  766. }
  767. catch (Exception ex)
  768. {
  769. logger.LogCritical("chargeBoxId:{0} {1}", session?.ChargeBoxId, action);
  770. logger.LogCritical("Data {0}", request?.ToString());
  771. logger.LogCritical("Error {0}", ex.ToString());
  772. result.Exception = ex;
  773. }
  774. //if (action == Actions.Heartbeat)
  775. //{
  776. watch.Stop();
  777. if (watch.ElapsedMilliseconds / 1000 > 3)
  778. {
  779. logger.LogError("Processing " + action.ToString() + " costs " + watch.ElapsedMilliseconds / 1000 + " seconds"); ;
  780. }
  781. //}
  782. if (watch.ElapsedMilliseconds > 5_000)
  783. {
  784. //ThreadPool.GetAvailableThreads(out int workerThreads,out int completionThreads);
  785. //logger.LogInformation($"ThreadPool workerThreads:{workerThreads} completionThreads:{completionThreads}");
  786. //await blockingTreePrintService.PrintDbBlockingTree();
  787. //await googleGetTimePrintService.Print();
  788. }
  789. return result;
  790. }
  791. async internal Task<MessageResult> ExecuteCoreConfirm(Actions action, ClientData session, IConfirmation confirm, string requestId)
  792. {
  793. MessageResult result = new MessageResult() { Success = true };
  794. try
  795. {
  796. switch (action)
  797. {
  798. case Actions.DataTransfer:
  799. {
  800. DataTransferConfirmation _confirm = confirm as DataTransferConfirmation;
  801. DataTransferRequest _request = _confirm.GetRequest() as DataTransferRequest;
  802. using (var db = await maindbContextFactory.CreateDbContextAsync())
  803. {
  804. var operation = await db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  805. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefaultAsync();
  806. if (operation != null)
  807. {
  808. operation.FinishedOn = DateTime.UtcNow;
  809. operation.Status = 1;//電樁有回覆
  810. operation.EVSE_Status = (int)_confirm.status;
  811. operation.EVSE_Value = string.IsNullOrEmpty(_confirm.data) ? "" : _confirm.data;
  812. await db.SaveChangesAsync();
  813. }
  814. if (_request.messageId == "ID_FirmwareVersion")
  815. {
  816. var machine = new Machine() { Id = session.MachineId };
  817. if (machine != null)
  818. {
  819. db.ChangeTracker.AutoDetectChangesEnabled = false;
  820. //db.Configuration.ValidateOnSaveEnabled = false;
  821. db.Machine.Attach(machine);
  822. machine.BoardVersions = _confirm.data;
  823. db.Entry(machine).Property(x => x.BoardVersions).IsModified = true;
  824. await db.SaveChangesAsync();
  825. }
  826. }
  827. if (_request.messageId == "ID_TxEnergy") //計費
  828. {
  829. if (_confirm.status == DataTransferStatus.Accepted)
  830. {
  831. decimal couponPoint = 0m;
  832. string farewellMessage = string.Empty;
  833. string receipt = string.Empty;
  834. List<ChargingBill> bill = new List<ChargingBill>();
  835. List<ChargingPrice> chargingPrices = new List<ChargingPrice>();
  836. var txEnergy = JsonConvert.DeserializeObject<TransactionEnergy>(_confirm.data);
  837. var feedto = await db.TransactionRecord.Where(x => x.Id == txEnergy.TxId).Select(x => new { Id = x.Id, ConnectorId = x.ConnectorId, Fee = x.Fee, StopTime = x.StopTime, StartTime = x.StartTime }).FirstOrDefaultAsync();
  838. decimal chargedEnergy = 0m;
  839. if (feedto == null || string.IsNullOrEmpty(feedto.Fee)) return result;
  840. string currency = feedto.Fee.Substring(feedto.Fee.Length - 3);
  841. decimal chargingCost = 0;
  842. if (feedto.Fee.Length > 58)
  843. {
  844. chargingPrices = JsonConvert.DeserializeObject<List<ChargingPrice>>(feedto.Fee.Split('|')[0]);
  845. foreach (var item in txEnergy.PeriodEnergy)
  846. {
  847. DateTime dt = new DateTime(2021, 01, 01, int.Parse(item.Key), 0, 0, DateTimeKind.Utc);
  848. string startTime = dt.ToString("hh:mm tt", new CultureInfo("en-us"));
  849. decimal perfee = 0;
  850. //小數點無條件捨去到第4位
  851. var periodEnergy = (decimal)((int)Decimal.Multiply(item.Value, 10000) / (double)10000);
  852. chargedEnergy += periodEnergy;
  853. if (chargingPrices.Count == 1)
  854. {
  855. perfee = Decimal.Multiply(periodEnergy, chargingPrices[0].Fee);
  856. if (bill.Count == 0)
  857. {
  858. bill.Add(new ChargingBill()
  859. {
  860. StartTime = "12:00 AM",
  861. EndTime = "11:59 PM",
  862. Fee = chargingPrices[0].Fee
  863. });
  864. }
  865. bill[0].PeriodEnergy += periodEnergy;
  866. }
  867. else
  868. {
  869. var price = chargingPrices.Where(x => x.StartTime == startTime).FirstOrDefault();
  870. perfee = Decimal.Multiply(periodEnergy, price.Fee);
  871. bill.Add(new ChargingBill()
  872. {
  873. StartTime = price.StartTime,
  874. EndTime = price.EndTime,
  875. PeriodEnergy = periodEnergy,
  876. Fee = price.Fee,
  877. });
  878. }
  879. if (bill.Count > 0)
  880. {
  881. bill[bill.Count - 1].Total += DollarRounding(perfee, session.Currency);
  882. chargingCost += bill[bill.Count - 1].Total;
  883. if (bill.Count == 1)
  884. {
  885. bill[bill.Count - 1].Total = DollarRounding(Decimal.Multiply(bill[0].PeriodEnergy, bill[0].Fee), session.Currency);
  886. chargingCost = bill[bill.Count - 1].Total;
  887. }
  888. }
  889. }
  890. }
  891. else
  892. {
  893. //以小時計費
  894. foreach (var item in txEnergy.PeriodEnergy)
  895. { //小數點無條件捨去到第4位
  896. var periodEnergy = (decimal)((int)Decimal.Multiply(item.Value, 10000) / (double)10000);
  897. chargedEnergy += periodEnergy;
  898. }
  899. var fee = decimal.Parse(feedto.Fee.Split('|')[0]);
  900. var charging_stoptime = feedto.StopTime == GlobalConfig.DefaultNullTime ? DateTime.Parse(DateTime.UtcNow.ToString("yyyy/MM/dd HH:mm")) : DateTime.Parse(feedto.StopTime.ToString("yyyy/MM/dd HH:mm"));
  901. var charging_starttime = DateTime.Parse(feedto.StartTime.ToString("yyyy/MM/dd HH:mm"));
  902. chargingCost = Decimal.Multiply((decimal)charging_stoptime.Subtract(charging_starttime).TotalHours, fee);
  903. chargingCost = DollarRounding(chargingCost, session.Currency);
  904. }
  905. // 計算停車費
  906. var parkingFee = decimal.Parse(feedto.Fee.Split('&')[1]);
  907. var stoptime = feedto.StopTime == GlobalConfig.DefaultNullTime ? DateTime.Parse(DateTime.UtcNow.ToString("yyyy/MM/dd HH:mm")) : DateTime.Parse(feedto.StopTime.ToString("yyyy/MM/dd HH:mm"));
  908. var starttime = DateTime.Parse(feedto.StartTime.ToString("yyyy/MM/dd HH:mm"));
  909. var totalHours = stoptime.Subtract(starttime).TotalHours;
  910. var parkingCost = Decimal.Multiply((decimal)totalHours, parkingFee);
  911. parkingCost = DollarRounding(parkingCost, session.Currency);
  912. if (feedto.StopTime != GlobalConfig.DefaultNullTime)
  913. {
  914. //var customerInfo = await db.Customer
  915. // .Where(x => x.Id == session.CustomerId).Select(x => new { x.InstantStopTxReport, x.ApiUrl, x.ApiKey })
  916. // .FirstOrDefaultAsync();
  917. var customerInfo = await mainDbService.GetCustomer(session.CustomerId);
  918. decimal accountBalance = 0;
  919. decimal.TryParse(feedto.Fee.Split('+')[1], out accountBalance);
  920. var tx = await db.TransactionRecord.Where(x => x.Id == txEnergy.TxId).FirstOrDefaultAsync();
  921. if (tx == null)
  922. {
  923. logger.LogWarning("Tx is empty");
  924. return result;
  925. }
  926. if (tx.BillingDone) return result;
  927. var startTime = new DateTime(tx.StartTime.Year, tx.StartTime.Month, tx.StartTime.Day, tx.StartTime.Hour, 0, 0);
  928. List<ChargingBill> confirmbill = new List<ChargingBill>();
  929. receipt = string.Format("({0} )Energy:", chargedEnergy);
  930. while (startTime < tx.StopTime)
  931. {
  932. if (bill.Count == 1)
  933. {
  934. confirmbill = bill;
  935. receipt += string.Format("| {0} - {1}:| {2} kWh @ ${3}/kWh= ${4}", tx.StartTime.ToString("hh:mm tt", new CultureInfo("en-us")), tx.StopTime.ToString("hh:mm tt", new CultureInfo("en-us")),
  936. confirmbill[0].PeriodEnergy.ToString("0.0000"), bill[0].Fee, bill[0].Total);
  937. break;
  938. }
  939. if (bill.Count == 0)
  940. {
  941. receipt += string.Format("| {0} - {1} @ ${2}/hr= ${3}", feedto.StartTime.ToString("hh:mm tt", new CultureInfo("en-us")),
  942. feedto.StopTime.ToString("hh:mm tt", new CultureInfo("en-us")), feedto.Fee.Split('|')[0], chargingCost);
  943. break;
  944. }
  945. if (bill.Count > 1)
  946. {
  947. var time = startTime.ToString("hh:mm tt", new CultureInfo("en-us"));
  948. var tt = bill.Where(x => x.StartTime == time).FirstOrDefault();
  949. confirmbill.Add(tt);
  950. if (confirmbill.Count == 1)
  951. {
  952. confirmbill[0].StartTime = tx.StartTime.ToString("hh:mm tt", new CultureInfo("en-us"));
  953. }
  954. var stopTimeText = tx.StopTime.ToString("hh:mm tt", new CultureInfo("en-us"));
  955. if (confirmbill[confirmbill.Count - 1].StartTime.Contains(stopTimeText.Split(' ')[1]))
  956. {
  957. var subHourText = (int.Parse(stopTimeText.Split(':')[0])).ToString();
  958. subHourText = subHourText.Length == 1 ? "0" + subHourText : subHourText;
  959. if (confirmbill[confirmbill.Count - 1].StartTime.Contains(subHourText))
  960. {
  961. confirmbill[confirmbill.Count - 1].EndTime = stopTimeText;
  962. }
  963. }
  964. receipt += string.Format("| {0} - {1}:| {2} kWh @ ${3}/kWh= ${4}", confirmbill[confirmbill.Count - 1].StartTime, confirmbill[confirmbill.Count - 1].EndTime,
  965. confirmbill[confirmbill.Count - 1].PeriodEnergy.ToString("0.0000"), confirmbill[confirmbill.Count - 1].Fee, confirmbill[confirmbill.Count - 1].Total);
  966. if (confirmbill.Count == 24) break;
  967. }
  968. startTime = startTime.AddHours(1);
  969. }
  970. chargingCost = confirmbill.Count > 0 ? confirmbill.Sum(x => x.Total) : chargingCost;
  971. receipt += string.Format("|Total Energy Fee : ${0}", chargingCost);
  972. receipt += string.Format("|Parking Fee: | {0} - {1}: | {2} @ ${3}/hr= ${4}", feedto.StartTime.ToString("hh:mm tt", new CultureInfo("en-us")),
  973. feedto.StopTime.ToString("hh:mm tt", new CultureInfo("en-us")), (totalHours / 1 >= 1) ? string.Format("{0} hours {1} minutes", (int)totalHours / 1, ((totalHours % 1) * 60).ToString("0.0")) : string.Format("{0} minutes", ((totalHours % 1) * 60).ToString("0.0")), parkingFee, parkingCost);
  974. receipt += string.Format("|Stop Reason: {0}", tx.StopReason);
  975. tx.Cost = chargingCost + parkingCost;
  976. if (customerInfo != null && customerInfo.InstantStopTxReport)
  977. {
  978. var request = new
  979. {
  980. ChargeBoxId = tx.ChargeBoxId,
  981. ConnectorId = tx.ConnectorId,
  982. SessionId = tx.Id,
  983. MeterStart = tx.MeterStart,
  984. MeterStop = tx.MeterStop,
  985. IdTag = tx.StartIdTag,
  986. StartTime = tx.StartTime.ToString(GlobalConfig.UTC_DATETIMEFORMAT),
  987. StopTime = tx.StopTime.ToString(GlobalConfig.UTC_DATETIMEFORMAT),
  988. StopReason = tx.StopReasonId < 1 ? "Unknown" : (tx.StopReasonId > 12 ? "Unknown" : ((Reason)tx.StopReasonId).ToString()),
  989. Receipt = tx.Receipt,
  990. TotalCost = tx.Cost,
  991. Fee = tx.Fee
  992. };
  993. logger.LogDebug("completed_session " + JsonConvert.SerializeObject(request));
  994. var response = await httpClient.Post(customerInfo.ApiUrl + "completed_session", new Dictionary<string, string>()
  995. {
  996. { "PartnerId",session.CustomerId.ToString()}
  997. }, request, customerInfo.ApiKey);
  998. var _httpResult = JsonConvert.DeserializeObject<CPOOuterResponse>(response.Response);
  999. logger.LogDebug("completed_session Response" + response.Response);
  1000. JObject jo = JObject.Parse(_httpResult.Data);
  1001. if (jo.ContainsKey("CouponPoint"))
  1002. {
  1003. couponPoint = jo["CouponPoint"].Value<Decimal>();
  1004. }
  1005. if (jo.ContainsKey("FarewellMessage"))
  1006. {
  1007. farewellMessage = jo["FarewellMessage"].Value<string>();
  1008. }
  1009. }
  1010. tx.Receipt = receipt;
  1011. tx.BillingDone = true;
  1012. db.ChangeTracker.AutoDetectChangesEnabled = false;
  1013. //db.Configuration.ValidateOnSaveEnabled = false;
  1014. db.TransactionRecord.Attach(tx);
  1015. db.Entry(tx).Property(x => x.Cost).IsModified = true;
  1016. db.Entry(tx).Property(x => x.Receipt).IsModified = true;
  1017. db.Entry(tx).Property(x => x.BillingDone).IsModified = true;
  1018. await db.SaveChangesAsync();
  1019. await messageService.SendDataTransferRequest(
  1020. session.ChargeBoxId,
  1021. messageId: "FinalCost",
  1022. vendorId: "Phihong Technology",
  1023. data: JsonConvert.SerializeObject(new
  1024. {
  1025. txId = txEnergy.TxId,
  1026. description = JsonConvert.SerializeObject(new
  1027. {
  1028. chargedEnergy = chargedEnergy,
  1029. chargingFee = chargingCost,
  1030. parkTime = (int)stoptime.Subtract(starttime).TotalSeconds,
  1031. parkingFee = parkingCost,
  1032. currency = currency,
  1033. couponPoint = couponPoint,
  1034. accountBalance = accountBalance - tx.Cost,
  1035. farewellMessage = farewellMessage
  1036. })
  1037. })
  1038. );
  1039. await meterValueDbService.InsertAsync(
  1040. chargeBoxId: session.ChargeBoxId,
  1041. connectorId: feedto.ConnectorId,
  1042. value: chargingCost,
  1043. createdOn: DateTime.UtcNow,
  1044. contextId: (int)ReadingContext.Sample_Periodic,
  1045. formatId: (int)ValueFormat.Raw,
  1046. measurandId: (int)Measurand.TotalCost,
  1047. phaseId: -1,
  1048. locationId: -1,
  1049. unitId: -1,
  1050. transactionId: feedto.Id);
  1051. using (SqlConnection conn = await webDbConnectionFactory.CreateAsync())
  1052. {
  1053. var parameters = new DynamicParameters();
  1054. parameters.Add("@IdTag", tx.StartIdTag, DbType.String, ParameterDirection.Input, 50);
  1055. parameters.Add("@parentIdTag", accountBalance - tx.Cost, DbType.String, ParameterDirection.Input, 50);
  1056. string strSql = "update [dbo].[LocalListDetail] set parentIdTag =@parentIdTag where ListId = 27 and IdTag=@IdTag; ";
  1057. await conn.ExecuteAsync(strSql, parameters);
  1058. }
  1059. #region 提供給PHA 過CDFA認證 使用
  1060. if (tx.CustomerId == Guid.Parse("10C7F5BD-C89A-4E2A-8611-B617E0B41A73"))
  1061. {
  1062. var mail_response = httpClient.PostFormDataAsync("https://evcb.zerovatech.com/CDFA/" + tx.Id, new Dictionary<string, string>()
  1063. {
  1064. { "email","2"},
  1065. { "to","wonderj@phihongusa.com;jessica_tseng@phihong.com.tw"}
  1066. //{ "to","jessica_tseng@phihong.com.tw"}
  1067. }, null);
  1068. logger.LogTrace(JsonConvert.SerializeObject(mail_response));
  1069. }
  1070. #endregion
  1071. }
  1072. else
  1073. {
  1074. await messageService.SendDataTransferRequest(
  1075. session.ChargeBoxId,
  1076. messageId: "RunningCost",
  1077. vendorId: "Phihong Technology",
  1078. data: JsonConvert.SerializeObject(new
  1079. {
  1080. txId = txEnergy.TxId,
  1081. description = JsonConvert.SerializeObject(new
  1082. {
  1083. chargedEnergy = chargedEnergy,
  1084. chargingFee = chargingCost,
  1085. parkTime = (int)stoptime.Subtract(starttime).TotalSeconds,
  1086. parkingFee = parkingCost,
  1087. currency = currency
  1088. })
  1089. })
  1090. );
  1091. await meterValueDbService.InsertAsync(
  1092. chargeBoxId: session.ChargeBoxId,
  1093. connectorId: (byte)feedto.ConnectorId,
  1094. value: chargingCost,
  1095. createdOn: DateTime.UtcNow,
  1096. contextId: (int)ReadingContext.Sample_Periodic,
  1097. formatId: (int)ValueFormat.Raw,
  1098. measurandId: (int)Measurand.ChargingCost,
  1099. phaseId: -1,
  1100. locationId: -1,
  1101. unitId: -1,
  1102. transactionId: feedto.Id
  1103. );
  1104. }
  1105. }
  1106. }
  1107. #region 台泥
  1108. if (_request.messageId == "ID_GetTxUserInfo")
  1109. {
  1110. var txUserInfo = JsonConvert.DeserializeObject<ID_GetTxUserInfo>(_confirm.data);
  1111. if (session.CustomerId == new Guid("009E603C-79CD-4620-A2B8-D9349C0E8AD8"))
  1112. {
  1113. var request = new
  1114. {
  1115. ChargeBoxId = session.ChargeBoxId,
  1116. ConnectorId = txUserInfo.ConnectorId,
  1117. SessionId = txUserInfo.TxId,
  1118. SerialNo = txUserInfo.SerialNo,
  1119. StartTime = txUserInfo.StartTime.ToString(GlobalConfig.UTC_DATETIMEFORMAT),
  1120. VEMData = txUserInfo.VEMData
  1121. };
  1122. var response = httpClient.Post(GlobalConfig.TCC_API_URL + "start_session", new Dictionary<string, string>()
  1123. {
  1124. { "PartnerId",session.CustomerId.ToString()}
  1125. }, request, GlobalConfig.TCC_SALTKEY);
  1126. logger.LogDebug(JsonConvert.SerializeObject(response));
  1127. }
  1128. }
  1129. #endregion
  1130. }
  1131. }
  1132. break;
  1133. case Actions.ChangeAvailability:
  1134. {
  1135. ChangeAvailabilityConfirmation _confirm = confirm as ChangeAvailabilityConfirmation;
  1136. ChangeAvailabilityRequest _request = _confirm.GetRequest() as ChangeAvailabilityRequest;
  1137. using (var db = await maindbContextFactory.CreateDbContextAsync())
  1138. {
  1139. var operation = await db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  1140. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefaultAsync();
  1141. if (operation != null)
  1142. {
  1143. operation.FinishedOn = DateTime.UtcNow;
  1144. operation.Status = 1;//電樁有回覆
  1145. operation.EVSE_Status = (int)_confirm.status;
  1146. operation.EVSE_Value = _confirm.status.ToString();
  1147. await db.SaveChangesAsync();
  1148. }
  1149. }
  1150. }
  1151. break;
  1152. case Actions.ClearCache:
  1153. {
  1154. ClearCacheConfirmation _confirm = confirm as ClearCacheConfirmation;
  1155. ClearCacheRequest _request = _confirm.GetRequest() as ClearCacheRequest;
  1156. using (var db = await maindbContextFactory.CreateDbContextAsync())
  1157. {
  1158. var operation = await db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  1159. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefaultAsync();
  1160. if (operation != null)
  1161. {
  1162. operation.FinishedOn = DateTime.UtcNow;
  1163. operation.Status = 1;//電樁有回覆
  1164. operation.EVSE_Status = (int)_confirm.status;
  1165. operation.EVSE_Value = _confirm.status.ToString();
  1166. await db.SaveChangesAsync();
  1167. }
  1168. }
  1169. }
  1170. break;
  1171. case Actions.RemoteStartTransaction:
  1172. {
  1173. RemoteStartTransactionConfirmation _confirm = confirm as RemoteStartTransactionConfirmation;
  1174. RemoteStartTransactionRequest _request = _confirm.GetRequest() as RemoteStartTransactionRequest;
  1175. using (var db = await maindbContextFactory.CreateDbContextAsync())
  1176. {
  1177. var operation = await db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  1178. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefaultAsync();
  1179. if (operation != null)
  1180. {
  1181. operation.FinishedOn = DateTime.UtcNow;
  1182. operation.Status = 1;//電樁有回覆
  1183. operation.EVSE_Status = (int)_confirm.status;
  1184. operation.EVSE_Value = _confirm.status.ToString();
  1185. await db.SaveChangesAsync();
  1186. }
  1187. }
  1188. }
  1189. break;
  1190. case Actions.RemoteStopTransaction:
  1191. {
  1192. RemoteStopTransactionConfirmation _confirm = confirm as RemoteStopTransactionConfirmation;
  1193. RemoteStopTransactionRequest _request = _confirm.GetRequest() as RemoteStopTransactionRequest;
  1194. using (var db = await maindbContextFactory.CreateDbContextAsync())
  1195. {
  1196. var operation = await db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  1197. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefaultAsync();
  1198. if (operation != null)
  1199. {
  1200. operation.FinishedOn = DateTime.UtcNow;
  1201. operation.Status = 1;//電樁有回覆
  1202. operation.EVSE_Status = (int)_confirm.status;
  1203. operation.EVSE_Value = _confirm.status.ToString();
  1204. await db.SaveChangesAsync();
  1205. }
  1206. }
  1207. }
  1208. break;
  1209. case Actions.Reset:
  1210. {
  1211. ResetConfirmation _confirm = confirm as ResetConfirmation;
  1212. ResetRequest _request = _confirm.GetRequest() as ResetRequest;
  1213. using (var db = await maindbContextFactory.CreateDbContextAsync())
  1214. {
  1215. var operation = await db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  1216. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefaultAsync();
  1217. if (operation != null)
  1218. {
  1219. operation.FinishedOn = DateTime.UtcNow;
  1220. operation.Status = 1;//電樁有回覆
  1221. operation.EVSE_Status = (int)_confirm.status;
  1222. operation.EVSE_Value = _confirm.status.ToString();
  1223. await db.SaveChangesAsync();
  1224. }
  1225. }
  1226. }
  1227. break;
  1228. case Actions.ChangeConfiguration:
  1229. {
  1230. ChangeConfigurationConfirmation _confirm = confirm as ChangeConfigurationConfirmation;
  1231. ChangeConfigurationRequest _request = _confirm.GetRequest() as ChangeConfigurationRequest;
  1232. using (var db = await maindbContextFactory.CreateDbContextAsync())
  1233. {
  1234. var operation = await db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  1235. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefaultAsync();
  1236. if (operation != null)
  1237. {
  1238. operation.FinishedOn = DateTime.UtcNow;
  1239. operation.Status = 1;//電樁有回覆
  1240. operation.EVSE_Status = (int)_confirm.status;
  1241. operation.EVSE_Value = _confirm.status.ToString();
  1242. }
  1243. if (_confirm.status == Packet.Messages.SubTypes.ConfigurationStatus.Accepted || _confirm.status == Packet.Messages.SubTypes.ConfigurationStatus.RebootRequired)
  1244. {
  1245. var configure = await db.MachineConfigurations.Where(x => x.ChargeBoxId == session.ChargeBoxId).ToListAsync();
  1246. var foundConfig = configure.Find(x => x.ConfigureName == _request.key);
  1247. if (foundConfig != null)
  1248. {
  1249. foundConfig.ReadOnly = false;
  1250. foundConfig.ConfigureSetting = _request.value;
  1251. }
  1252. else
  1253. {
  1254. await db.MachineConfigurations.AddAsync(new MachineConfiguration()
  1255. {
  1256. ChargeBoxId = session.ChargeBoxId,
  1257. ConfigureName = _request.key,
  1258. ReadOnly = false,
  1259. ConfigureSetting = _request.value
  1260. });
  1261. }
  1262. }
  1263. await db.SaveChangesAsync();
  1264. }
  1265. }
  1266. break;
  1267. case Actions.GetConfiguration:
  1268. {
  1269. try
  1270. {
  1271. GetConfigurationConfirmation _confirm = confirm as GetConfigurationConfirmation;
  1272. // GetConfigurationRequest _request = _confirm.GetRequest() as GetConfigurationRequest;
  1273. using (var db = await maindbContextFactory.CreateDbContextAsync())
  1274. {
  1275. var configure = await db.MachineConfigurations.Where(x => x.ChargeBoxId == session.ChargeBoxId).ToListAsync();
  1276. if (_confirm.configurationKey != null)
  1277. {
  1278. foreach (var item in _confirm.configurationKey)
  1279. {
  1280. string oldValue = string.Empty;
  1281. if (item.key == null)
  1282. {
  1283. logger.LogTrace("*********************");
  1284. }
  1285. var foundConfig = configure.Find(x => x.ConfigureName == item.key);
  1286. if (foundConfig != null)
  1287. {
  1288. if (foundConfig.ConfigureName == null)
  1289. {
  1290. logger.LogTrace("*********************");
  1291. }
  1292. if (foundConfig.ConfigureName == "SecurityProfile")
  1293. {
  1294. oldValue = foundConfig.ConfigureSetting;
  1295. }
  1296. foundConfig.ReadOnly = item.IsReadOnly;
  1297. foundConfig.ConfigureSetting = string.IsNullOrEmpty(item.value) ? string.Empty : item.value;
  1298. }
  1299. else
  1300. {
  1301. await db.MachineConfigurations.AddAsync(new MachineConfiguration()
  1302. {
  1303. ChargeBoxId = session.ChargeBoxId,
  1304. ConfigureName = item.key,
  1305. ReadOnly = item.IsReadOnly,
  1306. ConfigureSetting = string.IsNullOrEmpty(item.value) ? string.Empty : item.value,
  1307. Exists = true
  1308. });
  1309. }
  1310. }
  1311. }
  1312. if (_confirm.unknownKey != null)
  1313. {
  1314. foreach (var item in _confirm.unknownKey)
  1315. {
  1316. var foundConfig = configure.Find(x => x.ConfigureName == item);
  1317. if (foundConfig != null)
  1318. {
  1319. foundConfig.ReadOnly = true;
  1320. foundConfig.ConfigureSetting = string.Empty;
  1321. foundConfig.Exists = false;
  1322. }
  1323. else
  1324. {
  1325. await db.MachineConfigurations.AddAsync(new MachineConfiguration()
  1326. {
  1327. ChargeBoxId = session.ChargeBoxId,
  1328. ConfigureName = item
  1329. });
  1330. }
  1331. }
  1332. }
  1333. var operation = await db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  1334. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefaultAsync();
  1335. if (operation != null)
  1336. {
  1337. operation.FinishedOn = DateTime.UtcNow;
  1338. operation.Status = 1;//電樁有回覆
  1339. operation.EVSE_Status = 1;
  1340. operation.EVSE_Value = JsonConvert.SerializeObject(_confirm.configurationKey, Formatting.None);
  1341. }
  1342. await db.SaveChangesAsync();
  1343. }
  1344. }
  1345. catch (Exception ex)
  1346. {
  1347. logger.LogError(ex.ToString());
  1348. }
  1349. }
  1350. break;
  1351. case Actions.UnlockConnector:
  1352. {
  1353. UnlockConnectorConfirmation _confirm = confirm as UnlockConnectorConfirmation;
  1354. UnlockConnectorRequest _request = _confirm.GetRequest() as UnlockConnectorRequest;
  1355. using (var db = await maindbContextFactory.CreateDbContextAsync())
  1356. {
  1357. var operation = await db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  1358. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefaultAsync();
  1359. if (operation != null)
  1360. {
  1361. operation.FinishedOn = DateTime.UtcNow;
  1362. operation.Status = 1;//電樁有回覆
  1363. operation.EVSE_Status = (int)_confirm.status;
  1364. operation.EVSE_Value = _confirm.status.ToString();
  1365. await db.SaveChangesAsync();
  1366. }
  1367. }
  1368. }
  1369. break;
  1370. default:
  1371. {
  1372. logger.LogWarning(string.Format("Not Implement {0} Logic(ExecuteCoreConfirm)", confirm.GetType().ToString().Replace("OCPPPackage.Messages.Core.", "")));
  1373. }
  1374. break;
  1375. }
  1376. }
  1377. catch (Exception ex)
  1378. {
  1379. logger.LogDebug("123 " + action + " " + ex.ToString());
  1380. }
  1381. return result;
  1382. }
  1383. internal async Task<MessageResult> ReceivedCoreError(Actions action, string errorMsg, ClientData session, string requestId)
  1384. {
  1385. MessageResult result = new MessageResult() { Success = true };
  1386. switch (action)
  1387. {
  1388. case Actions.ChangeAvailability:
  1389. case Actions.ChangeConfiguration:
  1390. case Actions.ClearCache:
  1391. case Actions.RemoteStartTransaction:
  1392. case Actions.RemoteStopTransaction:
  1393. case Actions.Reset:
  1394. case Actions.GetConfiguration:
  1395. case Actions.UnlockConnector:
  1396. case Actions.DataTransfer:
  1397. {
  1398. if (action == Actions.DataTransfer)
  1399. {
  1400. logger.LogDebug(string.Format("DataTransfer Error {0}: {1}", session.ChargeBoxId, requestId));
  1401. }
  1402. using (var db = await maindbContextFactory.CreateDbContextAsync())
  1403. {
  1404. var operation = await db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  1405. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefaultAsync();
  1406. if (operation != null)
  1407. {
  1408. operation.FinishedOn = DateTime.UtcNow;
  1409. operation.Status = 1;//電樁有回覆
  1410. operation.EVSE_Status = (int)255;//錯誤
  1411. operation.EVSE_Value = errorMsg;
  1412. await db.SaveChangesAsync();
  1413. }
  1414. }
  1415. }
  1416. break;
  1417. default:
  1418. {
  1419. Console.WriteLine(string.Format("Not Implement {0} Logic(ReceivedCoreError)", action));
  1420. }
  1421. break;
  1422. }
  1423. return result;
  1424. }
  1425. /// <summary>
  1426. /// 依據幣值處理4捨5入
  1427. /// </summary>
  1428. /// <param name="money"></param>
  1429. /// <param name="currency"></param>
  1430. /// <returns></returns>
  1431. private decimal DollarRounding(decimal money, string currency)
  1432. {
  1433. if (currency == "USD" || currency == "EUR")
  1434. {
  1435. //0.4867
  1436. if ((double)((int)(money * 100) + 0.5) <= (double)(money * 100))
  1437. {
  1438. //money = Decimal.Add(money, (decimal)0.01);//0.4967
  1439. }
  1440. money = Math.Round(money, 2, MidpointRounding.AwayFromZero);
  1441. money = Decimal.Parse(money.ToString("0.00"));
  1442. }
  1443. else
  1444. {
  1445. if ((double)((int)(money) + 0.5) <= (double)money)
  1446. {
  1447. // money = (int) money + 1;
  1448. }
  1449. money = Math.Round(money, 0, MidpointRounding.AwayFromZero);
  1450. money = Decimal.Parse(money.ToString("0"));
  1451. }
  1452. return money;
  1453. }
  1454. }