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;
|
2019-04-18 20:15:46 +03:00
|
|
|
|
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");
|
2019-04-18 20:15:46 +03:00
|
|
|
|
_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-05-29 22:50:20 +03:00
|
|
|
|
Bootstrap();
|
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;
|
2019-05-30 18:40:33 +03:00
|
|
|
|
Device.BeginInvokeOnMainThread(async () =>
|
2019-04-19 19:29:37 +03:00
|
|
|
|
{
|
2019-05-30 18:40:33 +03:00
|
|
|
|
if(!string.IsNullOrWhiteSpace(details.CancelText))
|
|
|
|
|
{
|
|
|
|
|
confirmed = await MainPage.DisplayAlert(details.Title, details.Text, confirmText,
|
|
|
|
|
details.CancelText);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
await MainPage.DisplayAlert(details.Title, details.Text, confirmText);
|
|
|
|
|
}
|
|
|
|
|
_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-30 18:40:33 +03:00
|
|
|
|
Device.BeginInvokeOnMainThread(() => MainPage = new NavigationPage(new LockPage()));
|
2019-05-16 00:37:59 +03:00
|
|
|
|
}
|
|
|
|
|
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-05-30 21:13:02 +03:00
|
|
|
|
else if(message.Command == "resumed")
|
|
|
|
|
{
|
|
|
|
|
if(Device.RuntimePlatform == Device.iOS)
|
|
|
|
|
{
|
|
|
|
|
SyncIfNeeded();
|
|
|
|
|
}
|
|
|
|
|
}
|
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-05-29 00:18:27 +03:00
|
|
|
|
Prime();
|
2019-05-30 21:13:02 +03:00
|
|
|
|
if(string.IsNullOrWhiteSpace(_appOptions.Uri))
|
|
|
|
|
{
|
|
|
|
|
var updated = await AppHelpers.PerformUpdateTasksAsync(_syncService, _deviceActionService,
|
|
|
|
|
_storageService);
|
|
|
|
|
if(!updated)
|
|
|
|
|
{
|
|
|
|
|
SyncIfNeeded();
|
|
|
|
|
}
|
|
|
|
|
}
|
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-05-29 00:18:27 +03:00
|
|
|
|
Prime();
|
2019-05-30 21:13:02 +03:00
|
|
|
|
if(Device.RuntimePlatform == Device.Android)
|
|
|
|
|
{
|
|
|
|
|
SyncIfNeeded();
|
|
|
|
|
}
|
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()
|
|
|
|
|
{
|
2019-05-16 19:33:48 +03:00
|
|
|
|
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-05-29 00:18:27 +03:00
|
|
|
|
|
|
|
|
|
private void Prime()
|
|
|
|
|
{
|
|
|
|
|
Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
var word = EEFLongWordList.Instance.List[1];
|
|
|
|
|
var parsedDomain = DomainName.TryParse("https://bitwarden.com", out var domainName);
|
|
|
|
|
});
|
|
|
|
|
}
|
2019-05-29 22:50:20 +03:00
|
|
|
|
|
|
|
|
|
private void Bootstrap()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
SetCulture();
|
|
|
|
|
ThemeManager.SetTheme();
|
|
|
|
|
MainPage = new HomePage();
|
|
|
|
|
var mainPageTask = SetMainPageAsync();
|
|
|
|
|
ServiceContainer.Resolve<MobilePlatformUtilsService>("platformUtilsService").Init();
|
|
|
|
|
}
|
2019-05-30 21:13:02 +03:00
|
|
|
|
|
|
|
|
|
private void SyncIfNeeded()
|
|
|
|
|
{
|
|
|
|
|
Task.Run(async () =>
|
|
|
|
|
{
|
|
|
|
|
var lastSync = await _syncService.GetLastSyncAsync();
|
|
|
|
|
if(DateTime.UtcNow - lastSync > TimeSpan.FromMinutes(30))
|
|
|
|
|
{
|
|
|
|
|
await _syncService.FullSyncAsync(false);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2019-03-28 03:12:44 +03:00
|
|
|
|
}
|
|
|
|
|
}
|