LocalAuthListManagementProfileHandler.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. using EVCB_OCPP.Domain;
  2. using EVCB_OCPP.Packet.Features;
  3. using EVCB_OCPP.Packet.Messages;
  4. using EVCB_OCPP.Packet.Messages.LocalAuthListManagement;
  5. using OCPPServer.Protocol;
  6. using System;
  7. using System.Linq;
  8. using System.Threading.Tasks;
  9. namespace EVCB_OCPP.WSServer.Message
  10. {
  11. internal partial class ProfileHandler
  12. {
  13. internal async Task<MessageResult> ExecuteLocalAuthListManagementConfirm(Actions action, ClientData session, IConfirmation confirm, string requestId)
  14. {
  15. MessageResult result = new MessageResult() { Success = true };
  16. switch (action)
  17. {
  18. case Actions.GetLocalListVersion:
  19. {
  20. GetLocalListVersionConfirmation _confirm = confirm as GetLocalListVersionConfirmation;
  21. GetLocalListVersionRequest _request = _confirm.GetRequest() as GetLocalListVersionRequest;
  22. using (var db = await maindbContextFactory.CreateDbContextAsync())
  23. {
  24. var operation = db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  25. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefault();
  26. if (operation != null)
  27. {
  28. operation.FinishedOn = DateTime.UtcNow;
  29. operation.Status = 1;//電樁有回覆
  30. operation.EVSE_Status = 1;//OK
  31. operation.EVSE_Value = _confirm.listVersion.ToString();
  32. await db.SaveChangesAsync();
  33. }
  34. }
  35. }
  36. break;
  37. case Actions.SendLocalList:
  38. {
  39. SendLocalListConfirmation _confirm = confirm as SendLocalListConfirmation;
  40. SendLocalListRequest _request = _confirm.GetRequest() as SendLocalListRequest;
  41. using (var db = await maindbContextFactory.CreateDbContextAsync())
  42. {
  43. var operation = db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  44. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefault();
  45. if (operation != null)
  46. {
  47. operation.FinishedOn = DateTime.UtcNow;
  48. operation.Status = 1;//電樁有回覆
  49. operation.EVSE_Status = (int)_confirm.status;//OK
  50. operation.EVSE_Value = _confirm.status.ToString();
  51. await db.SaveChangesAsync();
  52. }
  53. }
  54. }
  55. break;
  56. default:
  57. {
  58. Console.WriteLine(string.Format("Not Implement {0} Logic", confirm.GetType().ToString().Replace("OCPPPackage.Messages.RemoteTrigger.", "")));
  59. }
  60. break;
  61. }
  62. return result;
  63. }
  64. internal async Task<MessageResult> ReceivedLocalAuthListManagementError(Actions action, string errorMsg, ClientData session, string requestId)
  65. {
  66. MessageResult result = new MessageResult() { Success = true };
  67. switch (action)
  68. {
  69. case Actions.SendLocalList:
  70. case Actions.GetLocalListVersion:
  71. {
  72. using (var db = await maindbContextFactory.CreateDbContextAsync())
  73. {
  74. var operation = db.MachineOperateRecord.Where(x => x.SerialNo == requestId &&
  75. x.ChargeBoxId == session.ChargeBoxId && x.Status == 0).FirstOrDefault();
  76. if (operation != null)
  77. {
  78. operation.FinishedOn = DateTime.UtcNow;
  79. operation.Status = 1;//電樁有回覆
  80. operation.EVSE_Status = (int)255;//錯誤
  81. operation.EVSE_Value = errorMsg;
  82. await db.SaveChangesAsync();
  83. }
  84. }
  85. }
  86. break;
  87. default:
  88. {
  89. Console.WriteLine(string.Format("Not Implement {0} Logic", action));
  90. }
  91. break;
  92. }
  93. return result;
  94. }
  95. }
  96. }