BusinessServiceFactory.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 Microsoft.Extensions.DependencyInjection;
  7. using System;
  8. using System.Linq;
  9. using System.Threading.Tasks;
  10. namespace EVCB_OCPP.WSServer.Service;
  11. public interface IBusinessService
  12. {
  13. Task<IdTokenInfo> Authorize(string chargeBoxId, string idTag);
  14. Task NotifyFaultStatus(ErrorDetails details);
  15. Task NotifyConnectorUnplugged(string chargeBoxId,string data);
  16. }
  17. public static class BusinessServiceFactoryRegistration
  18. {
  19. public static void AddBusinessServiceFactory(this IServiceCollection services)
  20. {
  21. services.AddSingleton<OuterBusinessService>();
  22. services.AddSingleton<LocalBusinessService>();
  23. services.AddSingleton<IBusinessServiceFactory, BusinessServiceFactory>();
  24. }
  25. }
  26. public class BusinessServiceFactory : IBusinessServiceFactory
  27. {
  28. public BusinessServiceFactory(
  29. IServiceProvider serviceProvider,
  30. IDbContextFactory<MainDBContext> mainDBContextFactory)
  31. {
  32. this.serviceProvider = serviceProvider;
  33. this.mainDBContextFactory = mainDBContextFactory;
  34. }
  35. private readonly IServiceProvider serviceProvider;
  36. private readonly IDbContextFactory<MainDBContext> mainDBContextFactory;
  37. public async Task<IBusinessService> CreateBusinessService(string customerId)
  38. {
  39. bool isCallOut = false;
  40. //using (var db = this.mainDBContextFactory.CreateDbContext())
  41. //{
  42. // isCallOut = await db.Customer.Where(x => x.Id == new Guid(customerId)).Select(x => x.CallPartnerApiOnSchedule).FirstOrDefaultAsync();
  43. //}
  44. CustomerSignMaterial _customer;
  45. using (var db = this.mainDBContextFactory.CreateDbContext())
  46. {
  47. _customer = await db.Customer.Where(x => x.Id == new Guid(customerId)).Select(x => new CustomerSignMaterial() { Id = x.Id.ToString(), APIUrl = x.ApiUrl, SaltKey = x.ApiKey, CallsThirdParty = x.CallPartnerApiOnSchedule }).FirstOrDefaultAsync();
  48. }
  49. isCallOut = _customer != null && _customer.CallsThirdParty;
  50. //return isCallOut ? new OuterBusinessService(customerId) : new LocalBusinessService(customerId);
  51. if (isCallOut)
  52. {
  53. OuterBusinessService outerBusinessService = serviceProvider.GetService<OuterBusinessService>();
  54. //outerBusinessService.CustomerId = customerId;
  55. outerBusinessService.CustomerSignMaterial = _customer;
  56. return outerBusinessService;
  57. }
  58. LocalBusinessService toReturn = serviceProvider.GetService<LocalBusinessService>();
  59. toReturn.CustomerId = customerId;
  60. return toReturn;
  61. //return isCallOut ? new OuterBusinessService(customerId) :
  62. }
  63. }