1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-29 11:05:52 +02:00
bitwarden-mobile/src/App/Pages/Accounts/TwoFactorPage.xaml.cs

224 lines
7.4 KiB
C#
Raw Normal View History

2019-05-27 17:57:10 +02:00
using Bit.App.Controls;
using Bit.App.Models;
using Bit.App.Resources;
2019-05-28 15:54:08 +02:00
using Bit.Core.Abstractions;
using Bit.Core.Utilities;
2019-05-27 17:57:10 +02:00
using System;
2019-05-28 15:04:20 +02:00
using System.Threading.Tasks;
using Bit.App.Utilities;
2019-05-28 15:54:08 +02:00
using Xamarin.Forms;
2019-05-24 03:19:45 +02:00
namespace Bit.App.Pages
{
public partial class TwoFactorPage : BaseContentPage
{
2019-05-28 15:54:08 +02:00
private readonly IBroadcasterService _broadcasterService;
private readonly IMessagingService _messagingService;
private readonly IStorageService _storageService;
private readonly IVaultTimeoutService _vaultTimeoutService;
private readonly AppOptions _appOptions;
2019-05-28 15:54:08 +02:00
2019-05-24 03:19:45 +02:00
private TwoFactorPageViewModel _vm;
2019-06-10 16:45:22 +02:00
private bool _inited;
private bool _authingWithSso;
private string _orgIdentifier;
2019-05-24 03:19:45 +02:00
public TwoFactorPage(bool? authingWithSso = false, AppOptions appOptions = null, string orgIdentifier = null)
2019-05-24 03:19:45 +02:00
{
InitializeComponent();
2019-05-28 15:54:08 +02:00
SetActivityIndicator();
_authingWithSso = authingWithSso ?? false;
_appOptions = appOptions;
_orgIdentifier = orgIdentifier;
_storageService = ServiceContainer.Resolve<IStorageService>("storageService");
2019-05-28 15:54:08 +02:00
_broadcasterService = ServiceContainer.Resolve<IBroadcasterService>("broadcasterService");
_messagingService = ServiceContainer.Resolve<IMessagingService>("messagingService");
_vaultTimeoutService = ServiceContainer.Resolve<IVaultTimeoutService>("vaultTimeoutService");
2019-05-24 03:19:45 +02:00
_vm = BindingContext as TwoFactorPageViewModel;
_vm.Page = this;
_vm.StartSetPasswordAction = () =>
Device.BeginInvokeOnMainThread(async () => await StartSetPasswordAsync());
_vm.TwoFactorAuthSuccessAction = () =>
Device.BeginInvokeOnMainThread(async () => await TwoFactorAuthSuccessAsync());
_vm.UpdateTempPasswordAction =
() => Device.BeginInvokeOnMainThread(async () => await UpdateTempPasswordAsync());
[Auto Logout] Final review of feature (#932) * Initial commit of LockService name refactor (#831) * [Auto-Logout] Update Service layer logic (#835) * Initial commit of service logic update * Added default value for action * Updated ToggleTokensAsync conditional * Removed unused variables, updated action conditional * Initial commit: lockOption/lock refactor app layer (#840) * [Auto-Logout] Settings Refactor - Application Layer Part 2 (#844) * Initial commit of app layer part 2 * Updated biometrics position * Reverted resource name refactor * LockOptions refactor revert * Updated method casing :: Removed VaultTimeout prefix for timeouts * Fixed dupe string resource (#854) * Updated dependency to use VaultTimeoutService (#896) * [Auto Logout] Xamarin Forms in AutoFill flow (iOS) (#902) * fix typo in PINRequireMasterPasswordRestart (#900) * initial commit for xf usage in autofill * Fixed databinding for hint button * Updated Two Factor page launch - removed unused imports * First pass at broadcast/messenger implentation for autofill * setting theme in extension using theme manager * extension app resources * App resources from main app * fix ref to twoFactorPage * apply resources to page * load empty app for sytling in extension * move ios renderers to ios core * static ref to resources and GetResourceColor helper * fix method ref * move application.current.resources refs to helper * switch login page alerts to device action dialogs * run on main thread * showDialog with device action service * abstract action sheet to device action service * add support for yubikey * add yubikey iimages to extension * support close button action * add support to action extension * remove empty lines Co-authored-by: Jonas Kittner <54631600+theendlessriver13@users.noreply.github.com> Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com> * [Auto Logout] Update lock option to be default value (#929) * Initial commit - make lock action default * Removed extra whitespace Co-authored-by: Jonas Kittner <54631600+theendlessriver13@users.noreply.github.com> Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com> Co-authored-by: Kyle Spearrin <kspearrin@users.noreply.github.com>
2020-05-29 18:26:36 +02:00
_vm.CloseAction = async () => await Navigation.PopModalAsync();
2019-05-27 17:57:10 +02:00
DuoWebView = _duoWebView;
if (Device.RuntimePlatform == Device.Android)
2019-06-12 03:31:51 +02:00
{
2019-06-15 00:08:08 +02:00
ToolbarItems.Remove(_cancelItem);
2019-06-12 03:31:51 +02:00
}
if (Device.RuntimePlatform == Device.iOS)
2019-05-28 15:12:05 +02:00
{
ToolbarItems.Add(_moreItem);
} else
2019-05-28 15:12:05 +02:00
{
ToolbarItems.Add(_useAnotherTwoStepMethod);
2019-05-28 15:12:05 +02:00
}
}
2019-05-28 15:54:08 +02:00
public HybridWebView DuoWebView { get; set; }
2019-05-28 15:04:20 +02:00
protected async override void OnAppearing()
2019-05-24 03:19:45 +02:00
{
base.OnAppearing();
2019-05-30 17:40:33 +02:00
_broadcasterService.Subscribe(nameof(TwoFactorPage), (message) =>
2019-05-28 15:54:08 +02:00
{
if (message.Command == "gotYubiKeyOTP")
2019-05-28 15:54:08 +02:00
{
2019-07-07 03:59:13 +02:00
var token = (string)message.Data;
if (_vm.YubikeyMethod && !string.IsNullOrWhiteSpace(token) &&
2019-07-22 19:59:12 +02:00
token.Length == 44 && !token.Contains(" "))
2019-05-28 15:54:08 +02:00
{
2019-05-30 17:40:33 +02:00
Device.BeginInvokeOnMainThread(async () =>
{
2019-07-07 03:59:13 +02:00
_vm.Token = token;
2019-05-30 17:40:33 +02:00
await _vm.SubmitAsync();
});
2019-05-28 15:54:08 +02:00
}
}
else if (message.Command == "resumeYubiKey")
2019-05-28 15:54:08 +02:00
{
if (_vm.YubikeyMethod)
2019-05-28 15:54:08 +02:00
{
_messagingService.Send("listenYubiKeyOTP", true);
}
}
});
2019-06-10 16:45:22 +02:00
await LoadOnAppearedAsync(_scrollView, true, () =>
2019-05-28 15:04:20 +02:00
{
if (!_inited)
2019-05-28 16:12:51 +02:00
{
_inited = true;
2019-06-10 16:45:22 +02:00
_vm.Init();
}
if (_vm.TotpMethod)
{
RequestFocus(_totpEntry);
} else if (_vm.YubikeyMethod)
{
RequestFocus(_yubikeyTokenEntry);
}
return Task.FromResult(0);
});
2019-05-24 03:19:45 +02:00
}
2019-05-28 15:54:08 +02:00
protected override void OnDisappearing()
{
base.OnDisappearing();
if (!_vm.YubikeyMethod)
2019-05-28 15:54:08 +02:00
{
_messagingService.Send("listenYubiKeyOTP", false);
2019-06-10 16:53:11 +02:00
_broadcasterService.Unsubscribe(nameof(TwoFactorPage));
2019-05-28 15:54:08 +02:00
}
2019-06-10 16:53:11 +02:00
}
protected override bool OnBackButtonPressed()
{
if (_vm.YubikeyMethod)
2019-06-10 16:53:11 +02:00
{
_messagingService.Send("listenYubiKeyOTP", false);
_broadcasterService.Unsubscribe(nameof(TwoFactorPage));
}
return base.OnBackButtonPressed();
2019-05-28 15:54:08 +02:00
}
2019-05-27 16:28:38 +02:00
private async void Continue_Clicked(object sender, EventArgs e)
2019-05-24 03:19:45 +02:00
{
if (DoOnce())
2019-05-24 03:19:45 +02:00
{
2019-05-27 16:28:38 +02:00
await _vm.SubmitAsync();
2019-05-24 03:19:45 +02:00
}
}
2019-05-27 16:28:38 +02:00
private async void Methods_Clicked(object sender, EventArgs e)
2019-05-24 03:19:45 +02:00
{
if (DoOnce())
2019-05-24 03:19:45 +02:00
{
2019-05-27 16:28:38 +02:00
await _vm.AnotherMethodAsync();
}
}
2019-05-24 03:19:45 +02:00
private async void More_Clicked(object sender, EventArgs e)
{
if (!DoOnce())
{
return;
}
var selection = await DisplayActionSheet(AppResources.Options, AppResources.Cancel, null, AppResources.UseAnotherTwoStepMethod);
if (selection == AppResources.UseAnotherTwoStepMethod)
{
await _vm.AnotherMethodAsync();
}
}
2019-05-27 16:28:38 +02:00
private async void ResendEmail_Clicked(object sender, EventArgs e)
{
if (DoOnce())
2019-05-27 16:28:38 +02:00
{
await _vm.SendEmailAsync(true, true);
2019-05-24 03:19:45 +02:00
}
}
2019-06-12 03:31:51 +02:00
private void Close_Clicked(object sender, System.EventArgs e)
2019-06-12 03:31:51 +02:00
{
if (DoOnce())
2019-06-12 03:31:51 +02:00
{
[Auto Logout] Final review of feature (#932) * Initial commit of LockService name refactor (#831) * [Auto-Logout] Update Service layer logic (#835) * Initial commit of service logic update * Added default value for action * Updated ToggleTokensAsync conditional * Removed unused variables, updated action conditional * Initial commit: lockOption/lock refactor app layer (#840) * [Auto-Logout] Settings Refactor - Application Layer Part 2 (#844) * Initial commit of app layer part 2 * Updated biometrics position * Reverted resource name refactor * LockOptions refactor revert * Updated method casing :: Removed VaultTimeout prefix for timeouts * Fixed dupe string resource (#854) * Updated dependency to use VaultTimeoutService (#896) * [Auto Logout] Xamarin Forms in AutoFill flow (iOS) (#902) * fix typo in PINRequireMasterPasswordRestart (#900) * initial commit for xf usage in autofill * Fixed databinding for hint button * Updated Two Factor page launch - removed unused imports * First pass at broadcast/messenger implentation for autofill * setting theme in extension using theme manager * extension app resources * App resources from main app * fix ref to twoFactorPage * apply resources to page * load empty app for sytling in extension * move ios renderers to ios core * static ref to resources and GetResourceColor helper * fix method ref * move application.current.resources refs to helper * switch login page alerts to device action dialogs * run on main thread * showDialog with device action service * abstract action sheet to device action service * add support for yubikey * add yubikey iimages to extension * support close button action * add support to action extension * remove empty lines Co-authored-by: Jonas Kittner <54631600+theendlessriver13@users.noreply.github.com> Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com> * [Auto Logout] Update lock option to be default value (#929) * Initial commit - make lock action default * Removed extra whitespace Co-authored-by: Jonas Kittner <54631600+theendlessriver13@users.noreply.github.com> Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com> Co-authored-by: Kyle Spearrin <kspearrin@users.noreply.github.com>
2020-05-29 18:26:36 +02:00
_vm.CloseAction();
2019-06-12 03:31:51 +02:00
}
}
2019-07-07 03:59:13 +02:00
private async void TryAgain_Clicked(object sender, EventArgs e)
2019-07-07 03:59:13 +02:00
{
if (DoOnce())
2019-07-07 03:59:13 +02:00
{
if (_vm.Fido2Method)
{
await _vm.Fido2AuthenticateAsync();
}
else if (_vm.YubikeyMethod)
2019-07-07 03:59:13 +02:00
{
_messagingService.Send("listenYubiKeyOTP", true);
}
}
}
private async Task StartSetPasswordAsync()
{
_vm.CloseAction();
var page = new SetPasswordPage(_appOptions, _orgIdentifier);
await Navigation.PushModalAsync(new NavigationPage(page));
}
private async Task UpdateTempPasswordAsync()
{
var page = new UpdateTempPasswordPage();
await Navigation.PushModalAsync(new NavigationPage(page));
}
private async Task TwoFactorAuthSuccessAsync()
{
if (_authingWithSso)
{
Application.Current.MainPage = new NavigationPage(new LockPage(_appOptions));
}
else
{
if (AppHelpers.SetAlternateMainPage(_appOptions))
{
return;
}
var previousPage = await AppHelpers.ClearPreviousPage();
Application.Current.MainPage = new TabsPage(_appOptions, previousPage);
}
}
private void Token_TextChanged(object sender, TextChangedEventArgs e)
{
_vm.EnableContinue = !string.IsNullOrWhiteSpace(e.NewTextValue);
}
2019-05-24 03:19:45 +02:00
}
}