mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08:00
* Revert "Add git blame entry (#2226)" This reverts commit239286737d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a.
65 lines
2.1 KiB
C#
65 lines
2.1 KiB
C#
using System.Data.SqlClient;
|
|
using Bit.Core.Jobs;
|
|
using Bit.Core.Settings;
|
|
using Bit.Migrator;
|
|
|
|
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;
|
|
}
|
|
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()
|
|
{ }
|
|
}
|
|
}
|