mirror of
https://github.com/bitwarden/server.git
synced 2025-04-07 05:58:13 -05:00
135 lines
4.4 KiB
C#
135 lines
4.4 KiB
C#
using System.Text.Json;
|
|
using Azure.Storage.Queues;
|
|
using Bit.Core;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.Services;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.EventsProcessor;
|
|
|
|
public class AzureQueueHostedService : IHostedService, IDisposable
|
|
{
|
|
private readonly ILogger<AzureQueueHostedService> _logger;
|
|
private readonly IConfiguration _configuration;
|
|
|
|
private Task _executingTask;
|
|
private CancellationTokenSource _cts;
|
|
private QueueClient _queueClient;
|
|
private IEventWriteService _eventWriteService;
|
|
|
|
public AzureQueueHostedService(
|
|
ILogger<AzureQueueHostedService> logger,
|
|
IConfiguration configuration)
|
|
{
|
|
_logger = logger;
|
|
_configuration = configuration;
|
|
}
|
|
|
|
public Task StartAsync(CancellationToken cancellationToken)
|
|
{
|
|
_logger.LogInformation(Constants.BypassFiltersEventId, "Starting service.");
|
|
_cts = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken);
|
|
_executingTask = ExecuteAsync(_cts.Token);
|
|
|
|
return _executingTask.IsCompleted ? _executingTask : Task.CompletedTask;
|
|
}
|
|
|
|
public async Task StopAsync(CancellationToken cancellationToken)
|
|
{
|
|
if (_executingTask == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
_logger.LogWarning("Stopping service.");
|
|
|
|
await _cts.CancelAsync();
|
|
await Task.WhenAny(_executingTask, Task.Delay(-1, cancellationToken));
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
}
|
|
|
|
public void Dispose()
|
|
{ }
|
|
|
|
private async Task ExecuteAsync(CancellationToken cancellationToken)
|
|
{
|
|
var storageConnectionString = _configuration["azureStorageConnectionString"];
|
|
if (string.IsNullOrWhiteSpace(storageConnectionString))
|
|
{
|
|
return;
|
|
}
|
|
|
|
var repo = new Core.Repositories.TableStorage.EventRepository(storageConnectionString);
|
|
_eventWriteService = new RepositoryEventWriteService(repo);
|
|
_queueClient = new QueueClient(storageConnectionString, "event");
|
|
|
|
while (!cancellationToken.IsCancellationRequested)
|
|
{
|
|
try
|
|
{
|
|
var messages = await _queueClient.ReceiveMessagesAsync(32,
|
|
cancellationToken: cancellationToken);
|
|
if (messages.Value?.Any() ?? false)
|
|
{
|
|
foreach (var message in messages.Value)
|
|
{
|
|
await ProcessQueueMessageAsync(message.DecodeMessageText(), cancellationToken);
|
|
await _queueClient.DeleteMessageAsync(message.MessageId, message.PopReceipt,
|
|
cancellationToken);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
await Task.Delay(TimeSpan.FromSeconds(5), cancellationToken);
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Error occurred processing message block.");
|
|
|
|
await Task.Delay(TimeSpan.FromSeconds(5), cancellationToken);
|
|
}
|
|
}
|
|
|
|
_logger.LogWarning("Done processing messages.");
|
|
}
|
|
|
|
public async Task ProcessQueueMessageAsync(string message, CancellationToken cancellationToken)
|
|
{
|
|
if (_eventWriteService == null || message == null || message.Length == 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
_logger.LogInformation("Processing message.");
|
|
|
|
var events = new List<IEvent>();
|
|
using var jsonDocument = JsonDocument.Parse(message);
|
|
var root = jsonDocument.RootElement;
|
|
if (root.ValueKind == JsonValueKind.Array)
|
|
{
|
|
var indexedEntities = root.Deserialize<List<EventMessage>>()
|
|
.SelectMany(EventTableEntity.IndexEvent);
|
|
events.AddRange(indexedEntities);
|
|
}
|
|
else if (root.ValueKind == JsonValueKind.Object)
|
|
{
|
|
var eventMessage = root.Deserialize<EventMessage>();
|
|
events.AddRange(EventTableEntity.IndexEvent(eventMessage));
|
|
}
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
await _eventWriteService.CreateManyAsync(events);
|
|
|
|
_logger.LogInformation("Processed message.");
|
|
}
|
|
catch (JsonException ex)
|
|
{
|
|
_logger.LogError(ex, "Unable to parse message.");
|
|
}
|
|
}
|
|
}
|