mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
142 lines
4.6 KiB
C#
142 lines
4.6 KiB
C#
|
using System;
|
|||
|
using System.Linq;
|
|||
|
using Bit.App.Abstractions;
|
|||
|
using Bit.App.Controls;
|
|||
|
using Bit.App.Models.Api;
|
|||
|
using Bit.App.Resources;
|
|||
|
using Plugin.DeviceInfo.Abstractions;
|
|||
|
using Xamarin.Forms;
|
|||
|
using XLabs.Ioc;
|
|||
|
using Acr.UserDialogs;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Bit.App.Pages
|
|||
|
{
|
|||
|
public class LoginTwoFactorPage : ExtendedContentPage
|
|||
|
{
|
|||
|
private ICryptoService _cryptoService;
|
|||
|
private IAuthService _authService;
|
|||
|
private IDeviceInfo _deviceInfo;
|
|||
|
private IAppIdService _appIdService;
|
|||
|
private IUserDialogs _userDialogs;
|
|||
|
private ISyncService _syncService;
|
|||
|
|
|||
|
public LoginTwoFactorPage()
|
|||
|
{
|
|||
|
_cryptoService = Resolver.Resolve<ICryptoService>();
|
|||
|
_authService = Resolver.Resolve<IAuthService>();
|
|||
|
_deviceInfo = Resolver.Resolve<IDeviceInfo>();
|
|||
|
_appIdService = Resolver.Resolve<IAppIdService>();
|
|||
|
_userDialogs = Resolver.Resolve<IUserDialogs>();
|
|||
|
_syncService = Resolver.Resolve<ISyncService>();
|
|||
|
|
|||
|
Init();
|
|||
|
}
|
|||
|
|
|||
|
public FormEntryCell CodeCell { get; set; }
|
|||
|
|
|||
|
private void Init()
|
|||
|
{
|
|||
|
CodeCell = new FormEntryCell("Verification Code", useLabelAsPlaceholder: true,
|
|||
|
imageSource: "lock", containerPadding: new Thickness(15, 20));
|
|||
|
|
|||
|
CodeCell.Entry.Keyboard = Keyboard.Numeric;
|
|||
|
CodeCell.Entry.ReturnType = Enums.ReturnType.Go;
|
|||
|
CodeCell.Entry.Completed += Entry_Completed;
|
|||
|
|
|||
|
var table = new ExtendedTableView
|
|||
|
{
|
|||
|
Intent = TableIntent.Settings,
|
|||
|
EnableScrolling = false,
|
|||
|
HasUnevenRows = true,
|
|||
|
EnableSelection = true,
|
|||
|
NoFooter = true,
|
|||
|
VerticalOptions = LayoutOptions.Start,
|
|||
|
Root = new TableRoot
|
|||
|
{
|
|||
|
new TableSection()
|
|||
|
{
|
|||
|
CodeCell
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
|
|||
|
var codeLabel = new Label
|
|||
|
{
|
|||
|
Text = "Enter your two-step verification code.",
|
|||
|
LineBreakMode = LineBreakMode.WordWrap,
|
|||
|
FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label)),
|
|||
|
Style = (Style)Application.Current.Resources["text-muted"],
|
|||
|
Margin = new Thickness(15, (this.IsLandscape() ? 5 : 0), 15, 25)
|
|||
|
};
|
|||
|
|
|||
|
var layout = new StackLayout
|
|||
|
{
|
|||
|
Children = { table, codeLabel },
|
|||
|
Spacing = 0
|
|||
|
};
|
|||
|
|
|||
|
var scrollView = new ScrollView { Content = layout };
|
|||
|
|
|||
|
if(Device.OS == TargetPlatform.iOS)
|
|||
|
{
|
|||
|
table.RowHeight = -1;
|
|||
|
table.EstimatedRowHeight = 70;
|
|||
|
}
|
|||
|
|
|||
|
var continueToolbarItem = new ToolbarItem("Continue", null, async () =>
|
|||
|
{
|
|||
|
await LogIn();
|
|||
|
}, ToolbarItemOrder.Default, 0);
|
|||
|
|
|||
|
ToolbarItems.Add(continueToolbarItem);
|
|||
|
Title = "Verification Code";
|
|||
|
Content = scrollView;
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnAppearing()
|
|||
|
{
|
|||
|
base.OnAppearing();
|
|||
|
CodeCell.Entry.Focus();
|
|||
|
}
|
|||
|
|
|||
|
private async void Entry_Completed(object sender, EventArgs e)
|
|||
|
{
|
|||
|
await LogIn();
|
|||
|
}
|
|||
|
|
|||
|
private async Task LogIn()
|
|||
|
{
|
|||
|
if(string.IsNullOrWhiteSpace(CodeCell.Entry.Text))
|
|||
|
{
|
|||
|
await DisplayAlert(AppResources.AnErrorHasOccurred, string.Format(AppResources.ValidationFieldRequired, "Verification code"), AppResources.Ok);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
var request = new TokenTwoFactorRequest
|
|||
|
{
|
|||
|
Code = CodeCell.Entry.Text,
|
|||
|
Provider = "Authenticator",
|
|||
|
Device = new DeviceRequest(_appIdService, _deviceInfo)
|
|||
|
};
|
|||
|
|
|||
|
var responseTask = _authService.TokenTwoFactorPostAsync(request);
|
|||
|
_userDialogs.ShowLoading("Validating code...", MaskType.Black);
|
|||
|
var response = await responseTask;
|
|||
|
_userDialogs.HideLoading();
|
|||
|
if(!response.Succeeded)
|
|||
|
{
|
|||
|
await DisplayAlert(AppResources.AnErrorHasOccurred, response.Errors.FirstOrDefault()?.Message, AppResources.Ok);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
_authService.Token = response.Result.Token;
|
|||
|
_authService.UserId = response.Result.Profile.Id;
|
|||
|
_authService.Email = response.Result.Profile.Email;
|
|||
|
|
|||
|
var task = Task.Run(async () => await _syncService.FullSyncAsync());
|
|||
|
Application.Current.MainPage = new MainPage();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|