mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00

* Revert "Add git blame entry (#2226)" This reverts commit 239286737d15cb84a893703ee5a8b33a2d67ad3d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit 34fb4cca2aa78deb84d4cbc359992a7c6bba7ea5.
85 lines
3.3 KiB
C#
85 lines
3.3 KiB
C#
using Amazon;
|
|
using Amazon.SQS;
|
|
using Amazon.SQS.Model;
|
|
using Bit.Core.Settings;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace Bit.Admin.HostedServices
|
|
{
|
|
public class AmazonSqsBlockIpHostedService : BlockIpHostedService
|
|
{
|
|
private AmazonSQSClient _client;
|
|
|
|
public AmazonSqsBlockIpHostedService(
|
|
ILogger<AmazonSqsBlockIpHostedService> logger,
|
|
IOptions<AdminSettings> adminSettings,
|
|
GlobalSettings globalSettings)
|
|
: base(logger, adminSettings, globalSettings)
|
|
{ }
|
|
|
|
public override void Dispose()
|
|
{
|
|
_client?.Dispose();
|
|
}
|
|
|
|
protected override async Task ExecuteAsync(CancellationToken cancellationToken)
|
|
{
|
|
_client = new AmazonSQSClient(_globalSettings.Amazon.AccessKeyId,
|
|
_globalSettings.Amazon.AccessKeySecret, RegionEndpoint.GetBySystemName(_globalSettings.Amazon.Region));
|
|
var blockIpQueue = await _client.GetQueueUrlAsync("block-ip", cancellationToken);
|
|
var blockIpQueueUrl = blockIpQueue.QueueUrl;
|
|
var unblockIpQueue = await _client.GetQueueUrlAsync("unblock-ip", cancellationToken);
|
|
var unblockIpQueueUrl = unblockIpQueue.QueueUrl;
|
|
|
|
while (!cancellationToken.IsCancellationRequested)
|
|
{
|
|
var blockMessageResponse = await _client.ReceiveMessageAsync(new ReceiveMessageRequest
|
|
{
|
|
QueueUrl = blockIpQueueUrl,
|
|
MaxNumberOfMessages = 10,
|
|
WaitTimeSeconds = 15
|
|
}, cancellationToken);
|
|
if (blockMessageResponse.Messages.Any())
|
|
{
|
|
foreach (var message in blockMessageResponse.Messages)
|
|
{
|
|
try
|
|
{
|
|
await BlockIpAsync(message.Body, cancellationToken);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
_logger.LogError(e, "Failed to block IP.");
|
|
}
|
|
await _client.DeleteMessageAsync(blockIpQueueUrl, message.ReceiptHandle, cancellationToken);
|
|
}
|
|
}
|
|
|
|
var unblockMessageResponse = await _client.ReceiveMessageAsync(new ReceiveMessageRequest
|
|
{
|
|
QueueUrl = unblockIpQueueUrl,
|
|
MaxNumberOfMessages = 10,
|
|
WaitTimeSeconds = 15
|
|
}, cancellationToken);
|
|
if (unblockMessageResponse.Messages.Any())
|
|
{
|
|
foreach (var message in unblockMessageResponse.Messages)
|
|
{
|
|
try
|
|
{
|
|
await UnblockIpAsync(message.Body, cancellationToken);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
_logger.LogError(e, "Failed to unblock IP.");
|
|
}
|
|
await _client.DeleteMessageAsync(unblockIpQueueUrl, message.ReceiptHandle, cancellationToken);
|
|
}
|
|
}
|
|
|
|
await Task.Delay(TimeSpan.FromSeconds(15));
|
|
}
|
|
}
|
|
}
|
|
}
|