mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Migrate deprecated Microsoft.Azure.EventGrid to Azure.Messaging.EventGrid (#1731)
* Migrate from deprecated Microsoft.Azure.EventGrid to Azure.Messaging.EventGrid * Fixed retrieval/parsing of EventGridEvents * Fixed an issue where the events where not handled by the registered event handlers
This commit is contained in:
parent
cc490a76de
commit
ad18adf471
@ -28,10 +28,10 @@
|
||||
</Choose>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Azure.Messaging.EventGrid" Version="4.7.0" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.9" />
|
||||
<PackageReference Include="NewRelic.Agent" Version="8.41.0" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
||||
<PackageReference Include="Microsoft.Azure.EventGrid" Version="3.2.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -14,7 +14,7 @@ using System.Collections.Generic;
|
||||
using Bit.Core.Models.Table;
|
||||
using Bit.Core.Settings;
|
||||
using Core.Models.Data;
|
||||
using Microsoft.Azure.EventGrid.Models;
|
||||
using Azure.Messaging.EventGrid;
|
||||
using Bit.Core.Models.Data;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Newtonsoft.Json;
|
||||
|
@ -12,7 +12,7 @@ using Bit.Core.Settings;
|
||||
using Bit.Core.Models.Api.Response;
|
||||
using Bit.Core.Enums;
|
||||
using Bit.Core.Context;
|
||||
using Microsoft.Azure.EventGrid.Models;
|
||||
using Azure.Messaging.EventGrid;
|
||||
using Bit.Api.Utilities;
|
||||
using System.Collections.Generic;
|
||||
using Bit.Core.Models.Table;
|
||||
|
@ -1,8 +1,8 @@
|
||||
using Bit.Core.Utilities;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Azure.EventGrid;
|
||||
using Microsoft.Azure.EventGrid.Models;
|
||||
using Azure.Messaging.EventGrid;
|
||||
using Azure.Messaging.EventGrid.SystemEvents;
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
@ -55,29 +55,25 @@ namespace Bit.Api.Utilities
|
||||
}
|
||||
|
||||
var response = string.Empty;
|
||||
var requestContent = await new StreamReader(request.Body).ReadToEndAsync();
|
||||
if (string.IsNullOrWhiteSpace(requestContent))
|
||||
{
|
||||
return new OkObjectResult(response);
|
||||
}
|
||||
|
||||
var eventGridSubscriber = new EventGridSubscriber();
|
||||
var eventGridEvents = eventGridSubscriber.DeserializeEventGridEvents(requestContent);
|
||||
|
||||
var requestData = await BinaryData.FromStreamAsync(request.Body);
|
||||
var eventGridEvents = EventGridEvent.ParseMany(requestData);
|
||||
foreach (var eventGridEvent in eventGridEvents)
|
||||
{
|
||||
if (eventGridEvent.Data is SubscriptionValidationEventData eventData)
|
||||
if (eventGridEvent.TryGetSystemEventData(out object systemEvent))
|
||||
{
|
||||
// Might want to enable additional validation: subject, topic etc.
|
||||
|
||||
var responseData = new SubscriptionValidationResponse()
|
||||
if (systemEvent is SubscriptionValidationEventData eventData)
|
||||
{
|
||||
ValidationResponse = eventData.ValidationCode
|
||||
};
|
||||
// Might want to enable additional validation: subject, topic etc.
|
||||
var responseData = new SubscriptionValidationResponse()
|
||||
{
|
||||
ValidationResponse = eventData.ValidationCode
|
||||
};
|
||||
|
||||
return new OkObjectResult(responseData);
|
||||
return new OkObjectResult(responseData);
|
||||
}
|
||||
}
|
||||
else if (eventTypeHandlers.ContainsKey(eventGridEvent.EventType))
|
||||
|
||||
if (eventTypeHandlers.ContainsKey(eventGridEvent.EventType))
|
||||
{
|
||||
await eventTypeHandlers[eventGridEvent.EventType](eventGridEvent);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user