mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
46 lines
1.4 KiB
C#
46 lines
1.4 KiB
C#
using System.Net.Http.Json;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.Models.Data.Integrations;
|
|
using Bit.Core.Repositories;
|
|
|
|
#nullable enable
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public class WebhookEventHandler(
|
|
IHttpClientFactory httpClientFactory,
|
|
IOrganizationIntegrationConfigurationRepository configurationRepository)
|
|
: IEventMessageHandler
|
|
{
|
|
private readonly HttpClient _httpClient = httpClientFactory.CreateClient(HttpClientName);
|
|
|
|
public const string HttpClientName = "WebhookEventHandlerHttpClient";
|
|
|
|
public async Task HandleEventAsync(EventMessage eventMessage)
|
|
{
|
|
Guid organizationId = eventMessage.OrganizationId ?? Guid.NewGuid();
|
|
|
|
var configuration = await configurationRepository.GetConfigurationAsync<WebhookConfiguration>(
|
|
organizationId,
|
|
IntegrationType.Webhook,
|
|
eventMessage.Type);
|
|
if (configuration is not null)
|
|
{
|
|
var content = JsonContent.Create(configuration.Template);
|
|
var response = await _httpClient.PostAsync(
|
|
configuration.Configuration.Url,
|
|
content);
|
|
response.EnsureSuccessStatusCode();
|
|
}
|
|
}
|
|
|
|
public async Task HandleManyEventsAsync(IEnumerable<EventMessage> eventMessages)
|
|
{
|
|
foreach (var eventMessage in eventMessages)
|
|
{
|
|
await HandleEventAsync(eventMessage);
|
|
}
|
|
}
|
|
}
|