1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-07-01 11:24:59 +02:00
bitwarden-mobile/src/App/Pages/Accounts/TwoFactorPage.xaml.cs

187 lines
5.9 KiB
C#
Raw Normal View History

2019-05-27 17:57:10 +02:00
using Bit.App.Controls;
using Bit.App.Models;
using Bit.Core;
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;
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 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;
2019-05-24 03:19:45 +02:00
public TwoFactorPage(AppOptions appOptions = null)
2019-05-24 03:19:45 +02:00
{
InitializeComponent();
2019-05-28 15:54:08 +02:00
SetActivityIndicator();
_appOptions = appOptions;
_storageService = ServiceContainer.Resolve<IStorageService>("storageService");
2019-05-28 15:54:08 +02:00
_broadcasterService = ServiceContainer.Resolve<IBroadcasterService>("broadcasterService");
_messagingService = ServiceContainer.Resolve<IMessagingService>("messagingService");
2019-05-24 03:19:45 +02:00
_vm = BindingContext as TwoFactorPageViewModel;
_vm.Page = this;
_vm.TwoFactorAction = () => Device.BeginInvokeOnMainThread(async () => await TwoFactorAuthAsync());
[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
}
2019-05-24 03:19:45 +02:00
}
2019-05-27 17:57:10 +02:00
public HybridWebView DuoWebView { get; set; }
2019-05-28 15:12:05 +02:00
public void AddContinueButton()
{
if (!ToolbarItems.Contains(_continueItem))
2019-05-28 15:12:05 +02:00
{
ToolbarItems.Add(_continueItem);
}
}
public void RemoveContinueButton()
{
if (ToolbarItems.Contains(_continueItem))
2019-05-28 15:12:05 +02:00
{
ToolbarItems.Remove(_continueItem);
}
}
2019-05-28 15:54:08 +02:00
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);
}
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
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 async void Close_Clicked(object sender, System.EventArgs e)
{
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 void TryAgain_Clicked(object sender, EventArgs e)
{
if (DoOnce())
2019-07-07 03:59:13 +02:00
{
if (_vm.YubikeyMethod)
2019-07-07 03:59:13 +02:00
{
_messagingService.Send("listenYubiKeyOTP", true);
}
}
}
private async Task TwoFactorAuthAsync()
{
if (_appOptions != null)
{
if (_appOptions.FromAutofillFramework && _appOptions.SaveType.HasValue)
{
Application.Current.MainPage = new NavigationPage(new AddEditPage(appOptions: _appOptions));
return;
}
if (_appOptions.Uri != null)
{
Application.Current.MainPage = new NavigationPage(new AutofillCiphersPage(_appOptions));
return;
}
}
var previousPage = await _storageService.GetAsync<PreviousPageInfo>(Constants.PreviousPageKey);
if (previousPage != null)
{
await _storageService.RemoveAsync(Constants.PreviousPageKey);
}
Application.Current.MainPage = new TabsPage(_appOptions, previousPage);
}
2019-05-24 03:19:45 +02:00
}
}