bitwarden-android/src/App/App.xaml.cs

251 lines
10 KiB
C#
Raw Normal View History

2019-05-17 19:03:35 +03:00
using Bit.App.Abstractions;
using Bit.App.Models;
2019-04-10 06:24:03 +03:00
using Bit.App.Pages;
2019-04-11 22:33:10 +03:00
using Bit.App.Resources;
using Bit.App.Services;
2019-03-30 04:23:34 +03:00
using Bit.App.Utilities;
2019-05-16 19:30:20 +03:00
using Bit.Core;
2019-04-11 22:33:10 +03:00
using Bit.Core.Abstractions;
using Bit.Core.Utilities;
2019-03-29 00:10:10 +03:00
using System;
2019-04-19 23:40:20 +03:00
using System.Threading.Tasks;
2019-03-28 03:12:44 +03:00
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
[assembly: XamlCompilation(XamlCompilationOptions.Compile)]
namespace Bit.App
{
public partial class App : Application
{
2019-04-11 22:33:10 +03:00
private readonly MobileI18nService _i18nService;
2019-04-19 16:42:55 +03:00
private readonly IUserService _userService;
private readonly IBroadcasterService _broadcasterService;
private readonly IMessagingService _messagingService;
2019-05-15 22:47:50 +03:00
private readonly IStateService _stateService;
2019-05-16 00:37:59 +03:00
private readonly ILockService _lockService;
private readonly ISyncService _syncService;
private readonly ITokenService _tokenService;
private readonly ICryptoService _cryptoService;
private readonly ICipherService _cipherService;
private readonly IFolderService _folderService;
private readonly ICollectionService _collectionService;
private readonly ISettingsService _settingsService;
private readonly IPasswordGenerationService _passwordGenerationService;
private readonly ISearchService _searchService;
private readonly IPlatformUtilsService _platformUtilsService;
private readonly IAuthService _authService;
2019-05-16 19:30:20 +03:00
private readonly IStorageService _storageService;
2019-05-17 19:03:35 +03:00
private readonly IDeviceActionService _deviceActionService;
private readonly AppOptions _appOptions;
2019-04-11 22:33:10 +03:00
2019-05-17 19:03:35 +03:00
public App(AppOptions appOptions)
2019-03-28 03:12:44 +03:00
{
2019-05-17 19:03:35 +03:00
_appOptions = appOptions ?? new AppOptions();
2019-04-19 16:42:55 +03:00
_userService = ServiceContainer.Resolve<IUserService>("userService");
_broadcasterService = ServiceContainer.Resolve<IBroadcasterService>("broadcasterService");
_messagingService = ServiceContainer.Resolve<IMessagingService>("messagingService");
2019-05-15 22:47:50 +03:00
_stateService = ServiceContainer.Resolve<IStateService>("stateService");
2019-05-16 00:37:59 +03:00
_lockService = ServiceContainer.Resolve<ILockService>("lockService");
_syncService = ServiceContainer.Resolve<ISyncService>("syncService");
_tokenService = ServiceContainer.Resolve<ITokenService>("tokenService");
_cryptoService = ServiceContainer.Resolve<ICryptoService>("cryptoService");
_cipherService = ServiceContainer.Resolve<ICipherService>("cipherService");
_folderService = ServiceContainer.Resolve<IFolderService>("folderService");
_settingsService = ServiceContainer.Resolve<ISettingsService>("settingsService");
_collectionService = ServiceContainer.Resolve<ICollectionService>("collectionService");
_searchService = ServiceContainer.Resolve<ISearchService>("searchService");
_authService = ServiceContainer.Resolve<IAuthService>("authService");
_platformUtilsService = ServiceContainer.Resolve<IPlatformUtilsService>("platformUtilsService");
2019-05-16 19:30:20 +03:00
_storageService = ServiceContainer.Resolve<IStorageService>("storageService");
2019-05-16 00:37:59 +03:00
_passwordGenerationService = ServiceContainer.Resolve<IPasswordGenerationService>(
"passwordGenerationService");
2019-04-11 22:33:10 +03:00
_i18nService = ServiceContainer.Resolve<II18nService>("i18nService") as MobileI18nService;
2019-05-17 19:03:35 +03:00
_deviceActionService = ServiceContainer.Resolve<IDeviceActionService>("deviceActionService");
2019-03-30 00:54:03 +03:00
2019-04-11 22:33:10 +03:00
InitializeComponent();
SetCulture();
2019-04-22 18:32:17 +03:00
ThemeManager.SetThemeStyle("light");
2019-04-19 14:42:36 +03:00
MainPage = new HomePage();
2019-04-19 23:40:20 +03:00
var mainPageTask = SetMainPageAsync();
2019-04-10 06:24:03 +03:00
2019-04-11 22:33:10 +03:00
ServiceContainer.Resolve<MobilePlatformUtilsService>("platformUtilsService").Init();
2019-04-19 19:29:37 +03:00
_broadcasterService.Subscribe(nameof(App), async (message) =>
2019-04-10 06:24:03 +03:00
{
2019-04-19 19:29:37 +03:00
if(message.Command == "showDialog")
2019-04-10 06:24:03 +03:00
{
2019-04-19 19:29:37 +03:00
var details = message.Data as DialogDetails;
var confirmed = true;
var confirmText = string.IsNullOrWhiteSpace(details.ConfirmText) ?
AppResources.Ok : details.ConfirmText;
if(!string.IsNullOrWhiteSpace(details.CancelText))
{
confirmed = await MainPage.DisplayAlert(details.Title, details.Text, confirmText,
details.CancelText);
}
else
{
2019-04-27 07:19:44 +03:00
await MainPage.DisplayAlert(details.Title, details.Text, confirmText);
2019-04-19 19:29:37 +03:00
}
_messagingService.Send("showDialogResolve", new Tuple<int, bool>(details.DialogId, confirmed));
2019-04-10 06:24:03 +03:00
}
2019-05-15 22:47:50 +03:00
else if(message.Command == "locked")
{
await _stateService.PurgeAsync();
2019-05-16 00:37:59 +03:00
MainPage = new NavigationPage(new LockPage());
}
else if(message.Command == "lockVault")
{
await _lockService.LockAsync(true);
}
else if(message.Command == "logout")
{
await LogOutAsync(false);
}
else if(message.Command == "loggedOut")
{
// TODO
}
else if(message.Command == "unlocked" || message.Command == "loggedIn")
{
2019-05-15 22:47:50 +03:00
// TODO
}
2019-04-10 06:24:03 +03:00
});
2019-03-28 03:12:44 +03:00
}
2019-05-17 19:03:35 +03:00
protected async override void OnStart()
2019-03-28 03:12:44 +03:00
{
2019-05-16 19:30:20 +03:00
System.Diagnostics.Debug.WriteLine("XF App: OnStart");
2019-05-17 19:03:35 +03:00
await ClearCacheIfNeededAsync();
2019-03-28 03:12:44 +03:00
}
2019-05-16 19:30:20 +03:00
protected async override void OnSleep()
2019-03-28 03:12:44 +03:00
{
2019-05-16 19:30:20 +03:00
System.Diagnostics.Debug.WriteLine("XF App: OnSleep");
await HandleLockingAsync();
2019-05-17 19:03:35 +03:00
SetTabsPageFromAutofill();
2019-03-28 03:12:44 +03:00
}
2019-05-17 19:03:35 +03:00
protected async override void OnResume()
2019-03-28 03:12:44 +03:00
{
2019-05-16 19:30:20 +03:00
System.Diagnostics.Debug.WriteLine("XF App: OnResume");
_messagingService.Send("cancelLockTimer");
2019-05-17 19:03:35 +03:00
await ClearCacheIfNeededAsync();
2019-03-28 03:12:44 +03:00
}
2019-04-11 22:33:10 +03:00
private void SetCulture()
{
// Calendars are removed by linker. ref https://bugzilla.xamarin.com/show_bug.cgi?id=59077
new System.Globalization.ThaiBuddhistCalendar();
new System.Globalization.HijriCalendar();
new System.Globalization.UmAlQuraCalendar();
}
2019-04-19 23:40:20 +03:00
2019-05-16 00:37:59 +03:00
private async Task LogOutAsync(bool expired)
{
var userId = await _userService.GetUserIdAsync();
await Task.WhenAll(
_syncService.SetLastSyncAsync(DateTime.MinValue),
_tokenService.ClearTokenAsync(),
_cryptoService.ClearKeysAsync(),
_userService.ClearAsync(),
_settingsService.ClearAsync(userId),
_cipherService.ClearAsync(userId),
_folderService.ClearAsync(userId),
_collectionService.ClearAsync(userId),
_passwordGenerationService.ClearAsync(),
_lockService.ClearAsync());
_lockService.PinLocked = false;
2019-05-17 00:30:07 +03:00
_lockService.FingerprintLocked = true;
2019-05-16 00:37:59 +03:00
_searchService.ClearIndex();
_authService.LogOut(() =>
{
if(expired)
{
// TODO: Toast?
}
MainPage = new HomePage();
});
}
2019-04-19 23:40:20 +03:00
private async Task SetMainPageAsync()
{
var authed = await _userService.IsAuthenticatedAsync();
if(authed)
{
2019-05-17 18:02:50 +03:00
if(await _lockService.IsLockedAsync())
2019-05-16 00:37:59 +03:00
{
2019-05-17 23:36:29 +03:00
Current.MainPage = new NavigationPage(new LockPage(_appOptions));
2019-05-16 00:37:59 +03:00
}
2019-05-17 19:03:35 +03:00
else if(_appOptions.FromAutofillFramework && _appOptions.SaveType.HasValue)
{
Current.MainPage = new NavigationPage(new AddEditPage(appOptions: _appOptions));
}
2019-05-17 20:14:26 +03:00
else if(_appOptions.Uri != null)
{
Current.MainPage = new NavigationPage(new AutofillCiphersPage(_appOptions));
}
2019-05-16 00:37:59 +03:00
else
{
Current.MainPage = new TabsPage();
}
2019-04-19 23:40:20 +03:00
}
else
{
Current.MainPage = new HomePage();
}
}
2019-05-16 19:30:20 +03:00
private async Task HandleLockingAsync()
{
if(await _lockService.IsLockedAsync())
{
return;
}
var authed = await _userService.IsAuthenticatedAsync();
if(!authed)
{
return;
}
2019-05-16 19:30:20 +03:00
var lockOption = _platformUtilsService.LockTimeout();
if(lockOption == null)
{
lockOption = await _storageService.GetAsync<int?>(Constants.LockOptionKey);
}
lockOption = lockOption.GetValueOrDefault(-1);
if(lockOption > 0)
{
_messagingService.Send("scheduleLockTimer", lockOption.Value);
}
else if(lockOption == 0)
{
2019-05-16 19:31:00 +03:00
await _lockService.LockAsync(true);
2019-05-16 19:30:20 +03:00
}
}
2019-05-17 19:03:35 +03:00
private async Task ClearCacheIfNeededAsync()
{
var lastClear = await _storageService.GetAsync<DateTime?>(Constants.LastFileCacheClearKey);
if((DateTime.UtcNow - lastClear.GetValueOrDefault(DateTime.MinValue)).TotalDays >= 1)
{
var task = Task.Run(() => _deviceActionService.ClearCacheAsync());
}
}
private void SetTabsPageFromAutofill()
{
if(Device.RuntimePlatform == Device.Android && !string.IsNullOrWhiteSpace(_appOptions.Uri) &&
!_appOptions.FromAutofillFramework)
{
Task.Run(() =>
{
Device.BeginInvokeOnMainThread(() =>
{
Current.MainPage = new TabsPage();
_appOptions.Uri = null;
});
});
}
}
2019-03-28 03:12:44 +03:00
}
}