mirror of
https://github.com/bitwarden/server.git
synced 2025-05-21 03:24:31 -05:00
79 lines
3.0 KiB
C#
79 lines
3.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text.Json;
|
|
using System.Threading.Tasks;
|
|
using Azure.Messaging.EventGrid;
|
|
using Azure.Messaging.EventGrid.SystemEvents;
|
|
using Bit.Core.Utilities;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Bit.Api.Utilities
|
|
{
|
|
public static class ApiHelpers
|
|
{
|
|
public static string EventGridKey { get; set; }
|
|
public async static Task<T> ReadJsonFileFromBody<T>(HttpContext httpContext, IFormFile file, long maxSize = 51200)
|
|
{
|
|
T obj = default(T);
|
|
if (file != null && httpContext.Request.ContentLength.HasValue && httpContext.Request.ContentLength.Value <= maxSize)
|
|
{
|
|
try
|
|
{
|
|
using var stream = file.OpenReadStream();
|
|
obj = await JsonSerializer.DeserializeAsync<T>(stream, JsonHelpers.IgnoreCase);
|
|
}
|
|
catch { }
|
|
}
|
|
|
|
return obj;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Validates Azure event subscription and calls the appropriate event handler. Responds HttpOk.
|
|
/// </summary>
|
|
/// <param name="request">HttpRequest received from Azure</param>
|
|
/// <param name="eventTypeHandlers">Dictionary of eventType strings and their associated handlers.</param>
|
|
/// <returns>OkObjectResult</returns>
|
|
/// <remarks>Reference https://docs.microsoft.com/en-us/azure/event-grid/receive-events</remarks>
|
|
public async static Task<ObjectResult> HandleAzureEvents(HttpRequest request,
|
|
Dictionary<string, Func<EventGridEvent, Task>> eventTypeHandlers)
|
|
{
|
|
var queryKey = request.Query["key"];
|
|
|
|
if (!CoreHelpers.FixedTimeEquals(queryKey, EventGridKey))
|
|
{
|
|
return new UnauthorizedObjectResult("Authentication failed. Please use a valid key.");
|
|
}
|
|
|
|
var response = string.Empty;
|
|
var requestData = await BinaryData.FromStreamAsync(request.Body);
|
|
var eventGridEvents = EventGridEvent.ParseMany(requestData);
|
|
foreach (var eventGridEvent in eventGridEvents)
|
|
{
|
|
if (eventGridEvent.TryGetSystemEventData(out object systemEvent))
|
|
{
|
|
if (systemEvent is SubscriptionValidationEventData eventData)
|
|
{
|
|
// Might want to enable additional validation: subject, topic etc.
|
|
var responseData = new SubscriptionValidationResponse()
|
|
{
|
|
ValidationResponse = eventData.ValidationCode
|
|
};
|
|
|
|
return new OkObjectResult(responseData);
|
|
}
|
|
}
|
|
|
|
if (eventTypeHandlers.ContainsKey(eventGridEvent.EventType))
|
|
{
|
|
await eventTypeHandlers[eventGridEvent.EventType](eventGridEvent);
|
|
}
|
|
}
|
|
|
|
return new OkObjectResult(response);
|
|
}
|
|
}
|
|
}
|