40 lines
2.3 KiB
C#
40 lines
2.3 KiB
C#
namespace Microsoft.eShopOnContainers.Services.Ordering.API.Application.DomainEventHandlers;
|
|
|
|
public class OrderStatusChangedToAwaitingValidationDomainEventHandler
|
|
: INotificationHandler<OrderStatusChangedToAwaitingValidationDomainEvent>
|
|
{
|
|
private readonly IOrderRepository _orderRepository;
|
|
private readonly ILoggerFactory _logger;
|
|
private readonly IBuyerRepository _buyerRepository;
|
|
private readonly IOrderingIntegrationEventService _orderingIntegrationEventService;
|
|
|
|
public OrderStatusChangedToAwaitingValidationDomainEventHandler(
|
|
IOrderRepository orderRepository, ILoggerFactory logger,
|
|
IBuyerRepository buyerRepository,
|
|
IOrderingIntegrationEventService orderingIntegrationEventService)
|
|
{
|
|
_orderRepository = orderRepository ?? throw new ArgumentNullException(nameof(orderRepository));
|
|
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
|
|
_buyerRepository = buyerRepository;
|
|
_orderingIntegrationEventService = orderingIntegrationEventService;
|
|
}
|
|
|
|
public async Task Handle(OrderStatusChangedToAwaitingValidationDomainEvent orderStatusChangedToAwaitingValidationDomainEvent, CancellationToken cancellationToken)
|
|
{
|
|
_logger.CreateLogger<OrderStatusChangedToAwaitingValidationDomainEvent>()
|
|
.LogTrace("Order with Id: {OrderId} has been successfully updated to status {Status} ({Id})",
|
|
orderStatusChangedToAwaitingValidationDomainEvent.OrderId, nameof(OrderStatus.AwaitingValidation), OrderStatus.AwaitingValidation.Id);
|
|
|
|
var order = await _orderRepository.GetAsync(orderStatusChangedToAwaitingValidationDomainEvent.OrderId);
|
|
|
|
var buyer = await _buyerRepository.FindByIdAsync(order.GetBuyerId.Value.ToString());
|
|
|
|
var orderStockList = orderStatusChangedToAwaitingValidationDomainEvent.OrderItems
|
|
.Select(orderItem => new OrderStockItem(orderItem.ProductId, orderItem.GetUnits()));
|
|
|
|
var orderStatusChangedToAwaitingValidationIntegrationEvent = new OrderStatusChangedToAwaitingValidationIntegrationEvent(
|
|
order.Id, order.OrderStatus.Name, buyer.Name, orderStockList);
|
|
await _orderingIntegrationEventService.AddAndSaveEventAsync(orderStatusChangedToAwaitingValidationIntegrationEvent);
|
|
}
|
|
}
|