mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
migrated messaging
This commit is contained in:
parent
1d95c73173
commit
0fc013eb8a
3 changed files with 24 additions and 2 deletions
|
@ -31,7 +31,11 @@ namespace Bit.Droid
|
|||
{
|
||||
RegisterLocalServices();
|
||||
ServiceContainer.Init();
|
||||
var task = App.Migration.MigrationHelpers.PerformMigrationAsync();
|
||||
if(App.Migration.MigrationHelpers.NeedsMigration())
|
||||
{
|
||||
var task = App.Migration.MigrationHelpers.PerformMigrationAsync();
|
||||
Task.Delay(2000).Wait();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -99,6 +99,10 @@ namespace Bit.App
|
|||
}
|
||||
else if(message.Command == "logout")
|
||||
{
|
||||
if(Migration.MigrationHelpers.Migrating)
|
||||
{
|
||||
return;
|
||||
}
|
||||
await LogOutAsync(false);
|
||||
}
|
||||
else if(message.Command == "loggedOut")
|
||||
|
@ -117,6 +121,11 @@ namespace Bit.App
|
|||
SyncIfNeeded();
|
||||
}
|
||||
}
|
||||
else if(message.Command == "migrated")
|
||||
{
|
||||
await Task.Delay(1000);
|
||||
await SetMainPageAsync();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -295,6 +304,10 @@ namespace Bit.App
|
|||
|
||||
private void SyncIfNeeded()
|
||||
{
|
||||
if(Migration.MigrationHelpers.Migrating)
|
||||
{
|
||||
return;
|
||||
}
|
||||
Task.Run(async () =>
|
||||
{
|
||||
var lastSync = await _syncService.GetLastSyncAsync();
|
||||
|
|
|
@ -5,12 +5,13 @@ using Bit.Core.Utilities;
|
|||
using System;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace Bit.App.Migration
|
||||
{
|
||||
public static class MigrationHelpers
|
||||
{
|
||||
public static bool Migrating = false;
|
||||
|
||||
public static bool NeedsMigration()
|
||||
{
|
||||
return ServiceContainer.Resolve<SettingsShim>("settingsShim")
|
||||
|
@ -24,10 +25,12 @@ namespace Bit.App.Migration
|
|||
return false;
|
||||
}
|
||||
|
||||
Migrating = true;
|
||||
var settingsShim = ServiceContainer.Resolve<SettingsShim>("settingsShim");
|
||||
var oldSecureStorageService = ServiceContainer.Resolve<Abstractions.IOldSecureStorageService>(
|
||||
"oldSecureStorageService");
|
||||
|
||||
var messagingService = ServiceContainer.Resolve<IMessagingService>("messagingService");
|
||||
var storageService = ServiceContainer.Resolve<IStorageService>("storageService");
|
||||
var secureStorageService = ServiceContainer.Resolve<IStorageService>("secureStorageService");
|
||||
var cryptoService = ServiceContainer.Resolve<ICryptoService>("cryptoService");
|
||||
|
@ -159,6 +162,8 @@ namespace Bit.App.Migration
|
|||
|
||||
// Remove "needs migration" flag
|
||||
settingsShim.Remove(Constants.OldUserIdKey);
|
||||
Migrating = false;
|
||||
messagingService.Send("migrated");
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue