mirror of
https://github.com/bitwarden/server
synced 2026-02-24 16:42:52 +00:00
* Get limited life attachment download URL This change limits url download to a 1min lifetime. This requires moving to a new container to allow for non-public blob access. Clients will have to call GetAttachmentData api function to receive the download URL. For backwards compatibility, attachment URLs are still present, but will not work for attachments stored in non-public access blobs. * Make GlobalSettings interface for testing * Test LocalAttachmentStorageService equivalence * Remove comment * Add missing globalSettings using * Simplify default attachment container * Default to attachments containe for existing methods A new upload method will be made for uploading to attachments-v2. For compatibility for clients which don't use these new methods, we need to still use the old container. The new container will be used only for new uploads * Remove Default MetaData fixture. * Keep attachments container blob-level security for all instances * Close unclosed FileStream * Favor default value for noop services
70 lines
2.6 KiB
C#
70 lines
2.6 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Settings;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
using Azure.Storage.Queues;
|
|
|
|
namespace Bit.Admin.HostedServices
|
|
{
|
|
public class AzureQueueBlockIpHostedService : BlockIpHostedService
|
|
{
|
|
private QueueClient _blockIpQueueClient;
|
|
private QueueClient _unblockIpQueueClient;
|
|
|
|
public AzureQueueBlockIpHostedService(
|
|
ILogger<AzureQueueBlockIpHostedService> logger,
|
|
IOptions<AdminSettings> adminSettings,
|
|
GlobalSettings globalSettings)
|
|
: base(logger, adminSettings, globalSettings)
|
|
{ }
|
|
|
|
protected override async Task ExecuteAsync(CancellationToken cancellationToken)
|
|
{
|
|
_blockIpQueueClient = new QueueClient(_globalSettings.Storage.ConnectionString, "blockip");
|
|
_unblockIpQueueClient = new QueueClient(_globalSettings.Storage.ConnectionString, "unblockip");
|
|
|
|
while (!cancellationToken.IsCancellationRequested)
|
|
{
|
|
var blockMessages = await _blockIpQueueClient.ReceiveMessagesAsync(maxMessages: 32);
|
|
if (blockMessages.Value?.Any() ?? false)
|
|
{
|
|
foreach (var message in blockMessages.Value)
|
|
{
|
|
try
|
|
{
|
|
await BlockIpAsync(message.MessageText, cancellationToken);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
_logger.LogError(e, "Failed to block IP.");
|
|
}
|
|
await _blockIpQueueClient.DeleteMessageAsync(message.MessageId, message.PopReceipt);
|
|
}
|
|
}
|
|
|
|
var unblockMessages = await _unblockIpQueueClient.ReceiveMessagesAsync(maxMessages: 32);
|
|
if (unblockMessages.Value?.Any() ?? false)
|
|
{
|
|
foreach (var message in unblockMessages.Value)
|
|
{
|
|
try
|
|
{
|
|
await UnblockIpAsync(message.MessageText, cancellationToken);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
_logger.LogError(e, "Failed to unblock IP.");
|
|
}
|
|
await _unblockIpQueueClient.DeleteMessageAsync(message.MessageId, message.PopReceipt);
|
|
}
|
|
}
|
|
|
|
await Task.Delay(TimeSpan.FromSeconds(15));
|
|
}
|
|
}
|
|
}
|
|
}
|