58 lines
2.2 KiB
C#
58 lines
2.2 KiB
C#
using MediatR;
|
|
using Microsoft.eShopOnContainers.Services.Ordering.API.Application.Commands;
|
|
using Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.OrderAggregate;
|
|
using Microsoft.eShopOnContainers.Services.Ordering.Infrastructure.Idempotency;
|
|
using Microsoft.Extensions.Logging;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ordering.API.Application.Commands
|
|
{
|
|
// Regular CommandHandler
|
|
public class SetAwaitingValidationOrderStatusCommandHandler : IRequestHandler<SetAwaitingValidationOrderStatusCommand, bool>
|
|
{
|
|
private readonly IOrderRepository _orderRepository;
|
|
|
|
public SetAwaitingValidationOrderStatusCommandHandler(IOrderRepository orderRepository)
|
|
{
|
|
_orderRepository = orderRepository;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler which processes the command when
|
|
/// graceperiod has finished
|
|
/// </summary>
|
|
/// <param name="command"></param>
|
|
/// <returns></returns>
|
|
public async Task<bool> Handle(SetAwaitingValidationOrderStatusCommand command, CancellationToken cancellationToken)
|
|
{
|
|
var orderToUpdate = await _orderRepository.GetAsync(command.OrderNumber);
|
|
if(orderToUpdate == null)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
orderToUpdate.SetAwaitingValidationStatus();
|
|
return await _orderRepository.UnitOfWork.SaveEntitiesAsync(cancellationToken);
|
|
}
|
|
}
|
|
|
|
|
|
// Use for Idempotency in Command process
|
|
public class SetAwaitingValidationIdentifiedOrderStatusCommandHandler : IdentifiedCommandHandler<SetAwaitingValidationOrderStatusCommand, bool>
|
|
{
|
|
public SetAwaitingValidationIdentifiedOrderStatusCommandHandler(
|
|
IMediator mediator,
|
|
IRequestManager requestManager,
|
|
ILogger<IdentifiedCommandHandler<SetAwaitingValidationOrderStatusCommand, bool>> logger)
|
|
: base(mediator, requestManager, logger)
|
|
{
|
|
}
|
|
|
|
protected override bool CreateResultForDuplicateRequest()
|
|
{
|
|
return true; // Ignore duplicate requests for processing order.
|
|
}
|
|
}
|
|
}
|