mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.Models.Data.Integrations;
|
|
using Bit.Core.Repositories;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public class SlackEventHandler(
|
|
IOrganizationIntegrationConfigurationRepository configurationRepository,
|
|
ISlackService slackService
|
|
) : IEventMessageHandler
|
|
{
|
|
public async Task HandleEventAsync(EventMessage eventMessage)
|
|
{
|
|
var organizationId = eventMessage.OrganizationId ?? Guid.NewGuid();
|
|
var configurations = await configurationRepository.GetConfigurationsAsync<SlackConfiguration>(organizationId, IntegrationType.Slack, eventMessage.Type);
|
|
|
|
foreach (var configuration in configurations)
|
|
{
|
|
await slackService.SendSlackMessageByChannelIdAsync(
|
|
configuration.Configuration.Token,
|
|
TemplateProcessor.ReplaceTokens(configuration.Template, eventMessage),
|
|
configuration.Configuration.ChannelId
|
|
);
|
|
}
|
|
}
|
|
|
|
public async Task HandleManyEventsAsync(IEnumerable<EventMessage> eventMessages)
|
|
{
|
|
foreach (var eventMessage in eventMessages)
|
|
{
|
|
await HandleEventAsync(eventMessage);
|
|
}
|
|
}
|
|
}
|