40 lines
1.7 KiB
C#
40 lines
1.7 KiB
C#
using Microsoft.AspNetCore.SignalR;
|
|
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Abstractions;
|
|
using Microsoft.Extensions.Logging;
|
|
using Ordering.SignalrHub.IntegrationEvents.Events;
|
|
using Serilog.Context;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ordering.SignalrHub.IntegrationEvents.EventHandling
|
|
{
|
|
public class OrderStatusChangedToSubmittedIntegrationEventHandler :
|
|
IIntegrationEventHandler<OrderStatusChangedToSubmittedIntegrationEvent>
|
|
{
|
|
private readonly IHubContext<NotificationsHub> _hubContext;
|
|
private readonly ILogger<OrderStatusChangedToSubmittedIntegrationEventHandler> _logger;
|
|
|
|
public OrderStatusChangedToSubmittedIntegrationEventHandler(
|
|
IHubContext<NotificationsHub> hubContext,
|
|
ILogger<OrderStatusChangedToSubmittedIntegrationEventHandler> logger)
|
|
{
|
|
_hubContext = hubContext ?? throw new ArgumentNullException(nameof(hubContext));
|
|
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
|
|
}
|
|
|
|
|
|
public async Task Handle(OrderStatusChangedToSubmittedIntegrationEvent @event)
|
|
{
|
|
using (LogContext.PushProperty("IntegrationEventContext", $"{@event.Id}-{Program.AppName}"))
|
|
{
|
|
_logger.LogInformation("----- Handling integration event: {IntegrationEventId} at {AppName} - ({@IntegrationEvent})", @event.Id, Program.AppName, @event);
|
|
|
|
await _hubContext.Clients
|
|
.Group(@event.BuyerName)
|
|
.SendAsync("UpdatedOrderState", new { OrderId = @event.OrderId, Status = @event.OrderStatus });
|
|
}
|
|
}
|
|
}
|
|
} |