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

186 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());
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
if (!_inited)
2019-05-28 15:04:20 +02:00
{
2019-06-10 16:45:22 +02:00
_inited = true;
await LoadOnAppearedAsync(_scrollView, true, () =>
2019-05-28 16:12:51 +02:00
{
2019-06-10 16:45:22 +02:00
_vm.Init();
if (_vm.TotpMethod)
2019-06-10 16:45:22 +02:00
{
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
{
await Navigation.PopModalAsync();
}
}
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
}
}