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.3 KiB
C#
70 lines
2.3 KiB
C#
using System;
|
|
using System.Data.SqlClient;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Jobs;
|
|
using Bit.Core.Settings;
|
|
using Bit.Migrator;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Bit.Admin.HostedServices
|
|
{
|
|
public class DatabaseMigrationHostedService : IHostedService, IDisposable
|
|
{
|
|
private readonly GlobalSettings _globalSettings;
|
|
private readonly ILogger<DatabaseMigrationHostedService> _logger;
|
|
private readonly DbMigrator _dbMigrator;
|
|
|
|
public DatabaseMigrationHostedService(
|
|
GlobalSettings globalSettings,
|
|
ILogger<DatabaseMigrationHostedService> logger,
|
|
ILogger<DbMigrator> migratorLogger,
|
|
ILogger<JobListener> listenerLogger)
|
|
{
|
|
_globalSettings = globalSettings;
|
|
_logger = logger;
|
|
_dbMigrator = new DbMigrator(globalSettings.SqlServer.ConnectionString, migratorLogger);
|
|
}
|
|
|
|
public virtual async Task StartAsync(CancellationToken cancellationToken)
|
|
{
|
|
// Wait 20 seconds to allow database to come online
|
|
await Task.Delay(20000);
|
|
|
|
var maxMigrationAttempts = 10;
|
|
for (var i = 1; i <= maxMigrationAttempts; i++)
|
|
{
|
|
try
|
|
{
|
|
_dbMigrator.MigrateMsSqlDatabase(true, cancellationToken);
|
|
// TODO: Maybe flip a flag somewhere to indicate migration is complete??
|
|
break;
|
|
}
|
|
catch (SqlException e)
|
|
{
|
|
if (i >= maxMigrationAttempts)
|
|
{
|
|
_logger.LogError(e, "Database failed to migrate.");
|
|
throw e;
|
|
}
|
|
else
|
|
{
|
|
_logger.LogError(e,
|
|
"Database unavailable for migration. Trying again (attempt #{0})...", i + 1);
|
|
await Task.Delay(20000);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual Task StopAsync(CancellationToken cancellationToken)
|
|
{
|
|
return Task.FromResult(0);
|
|
}
|
|
|
|
public virtual void Dispose()
|
|
{ }
|
|
}
|
|
}
|