2016-06-26 03:54:17 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Bit.App.Abstractions;
|
|
|
|
|
using Bit.App.Controls;
|
|
|
|
|
using Bit.App.Models.Api;
|
|
|
|
|
using Bit.App.Resources;
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
using XLabs.Ioc;
|
|
|
|
|
using Acr.UserDialogs;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Bit.App.Pages
|
|
|
|
|
{
|
2016-06-28 02:53:31 +03:00
|
|
|
|
public class RegisterPage : ExtendedContentPage
|
2016-06-26 03:54:17 +03:00
|
|
|
|
{
|
|
|
|
|
private ICryptoService _cryptoService;
|
|
|
|
|
private IUserDialogs _userDialogs;
|
|
|
|
|
private IAccountsApiRepository _accountsApiRepository;
|
|
|
|
|
|
|
|
|
|
public RegisterPage()
|
|
|
|
|
{
|
|
|
|
|
_cryptoService = Resolver.Resolve<ICryptoService>();
|
|
|
|
|
_userDialogs = Resolver.Resolve<IUserDialogs>();
|
|
|
|
|
_accountsApiRepository = Resolver.Resolve<IAccountsApiRepository>();
|
|
|
|
|
|
|
|
|
|
Init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public FormEntryCell EmailCell { get; set; }
|
|
|
|
|
public FormEntryCell PasswordCell { get; set; }
|
|
|
|
|
public FormEntryCell ConfirmPasswordCell { get; set; }
|
|
|
|
|
public FormEntryCell PasswordHintCell { get; set; }
|
|
|
|
|
|
|
|
|
|
private void Init()
|
|
|
|
|
{
|
2016-07-23 22:32:11 +03:00
|
|
|
|
MessagingCenter.Send(Application.Current, "ShowStatusBar", true);
|
|
|
|
|
|
2016-07-03 07:27:10 +03:00
|
|
|
|
var padding = new Thickness(15, 20);
|
|
|
|
|
|
2016-07-04 09:45:32 +03:00
|
|
|
|
PasswordHintCell = new FormEntryCell("Master Password Hint (optional)", useLabelAsPlaceholder: true,
|
2016-07-03 07:27:10 +03:00
|
|
|
|
imageSource: "lightbulb-o", containerPadding: padding);
|
2016-07-04 09:45:32 +03:00
|
|
|
|
ConfirmPasswordCell = new FormEntryCell("Re-type Master Password", IsPassword: true,
|
2016-07-03 07:27:10 +03:00
|
|
|
|
nextElement: PasswordHintCell.Entry, useLabelAsPlaceholder: true, imageSource: "lock", containerPadding: padding);
|
2016-07-04 09:45:32 +03:00
|
|
|
|
PasswordCell = new FormEntryCell(AppResources.MasterPassword, IsPassword: true,
|
2016-07-03 07:27:10 +03:00
|
|
|
|
nextElement: ConfirmPasswordCell.Entry, useLabelAsPlaceholder: true, imageSource: "lock", containerPadding: padding);
|
2016-07-04 09:45:32 +03:00
|
|
|
|
EmailCell = new FormEntryCell(AppResources.EmailAddress, nextElement: PasswordCell.Entry,
|
2016-07-03 07:27:10 +03:00
|
|
|
|
entryKeyboard: Keyboard.Email, useLabelAsPlaceholder: true, imageSource: "envelope", containerPadding: padding);
|
2016-06-26 03:54:17 +03:00
|
|
|
|
|
|
|
|
|
PasswordHintCell.Entry.ReturnType = Enums.ReturnType.Done;
|
|
|
|
|
PasswordHintCell.Entry.Completed += Entry_Completed;
|
|
|
|
|
|
2016-07-04 09:45:32 +03:00
|
|
|
|
var table = new FormTableView
|
2016-06-26 03:54:17 +03:00
|
|
|
|
{
|
|
|
|
|
Root = new TableRoot
|
|
|
|
|
{
|
2016-07-04 09:45:32 +03:00
|
|
|
|
new TableSection
|
2016-06-26 03:54:17 +03:00
|
|
|
|
{
|
|
|
|
|
EmailCell,
|
2016-07-04 09:45:32 +03:00
|
|
|
|
PasswordCell
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var passwordLabel = new Label
|
|
|
|
|
{
|
2016-07-05 06:20:16 +03:00
|
|
|
|
Text = "The master password is the password you use to access your vault. It is very important that you do not"
|
|
|
|
|
+ " forget your master password. There is no way to recover the password in the event that you forget it.",
|
2016-07-04 09:45:32 +03:00
|
|
|
|
LineBreakMode = LineBreakMode.WordWrap,
|
|
|
|
|
FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label)),
|
2016-07-05 05:31:15 +03:00
|
|
|
|
Style = (Style)Application.Current.Resources["text-muted"],
|
|
|
|
|
Margin = new Thickness(15, (this.IsLandscape() ? 5 : 0), 15, 25)
|
2016-07-04 09:45:32 +03:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var table2 = new FormTableView
|
|
|
|
|
{
|
2016-07-05 05:31:15 +03:00
|
|
|
|
NoHeader = true,
|
2016-07-04 09:45:32 +03:00
|
|
|
|
Root = new TableRoot
|
|
|
|
|
{
|
|
|
|
|
new TableSection
|
2016-06-28 05:17:49 +03:00
|
|
|
|
{
|
2016-06-26 03:54:17 +03:00
|
|
|
|
ConfirmPasswordCell,
|
|
|
|
|
PasswordHintCell
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2016-07-04 09:45:32 +03:00
|
|
|
|
var hintLabel = new Label
|
|
|
|
|
{
|
|
|
|
|
Text = "A master password hint can help you remember your password if you forget it.",
|
|
|
|
|
LineBreakMode = LineBreakMode.WordWrap,
|
|
|
|
|
FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label)),
|
2016-07-05 05:31:15 +03:00
|
|
|
|
Style = (Style)Application.Current.Resources["text-muted"],
|
|
|
|
|
Margin = new Thickness(15, (this.IsLandscape() ? 5 : 0), 15, 25)
|
2016-07-04 09:45:32 +03:00
|
|
|
|
};
|
|
|
|
|
|
2016-07-05 05:31:15 +03:00
|
|
|
|
var layout = new StackLayout
|
2016-07-04 09:45:32 +03:00
|
|
|
|
{
|
2016-07-05 05:31:15 +03:00
|
|
|
|
Children = { table, passwordLabel, table2, hintLabel },
|
|
|
|
|
Spacing = 0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
layout.LayoutChanged += (sender, args) =>
|
|
|
|
|
{
|
|
|
|
|
passwordLabel.WidthRequest = layout.Bounds.Width - passwordLabel.Bounds.Left * 2;
|
|
|
|
|
hintLabel.WidthRequest = layout.Bounds.Width - hintLabel.Bounds.Left * 2;
|
2016-07-04 09:45:32 +03:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var scrollView = new ScrollView
|
|
|
|
|
{
|
|
|
|
|
Content = layout
|
|
|
|
|
};
|
|
|
|
|
|
2016-06-26 03:54:17 +03:00
|
|
|
|
var loginToolbarItem = new ToolbarItem("Submit", null, async () =>
|
|
|
|
|
{
|
|
|
|
|
await Register();
|
|
|
|
|
}, ToolbarItemOrder.Default, 0);
|
|
|
|
|
|
|
|
|
|
if(Device.OS == TargetPlatform.iOS)
|
|
|
|
|
{
|
2016-07-04 09:45:32 +03:00
|
|
|
|
table.RowHeight = table2.RowHeight = table2.RowHeight = -1;
|
|
|
|
|
table.EstimatedRowHeight = table2.EstimatedRowHeight = table2.EstimatedRowHeight = 70;
|
2016-07-23 22:32:11 +03:00
|
|
|
|
ToolbarItems.Add(new DismissModalToolBarItem(this, "Cancel", () =>
|
|
|
|
|
{
|
|
|
|
|
MessagingCenter.Send(Application.Current, "ShowStatusBar", false);
|
|
|
|
|
}));
|
2016-06-26 03:54:17 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ToolbarItems.Add(loginToolbarItem);
|
|
|
|
|
Title = "Create Account";
|
2016-07-04 09:45:32 +03:00
|
|
|
|
Content = scrollView;
|
2016-06-26 03:54:17 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnAppearing()
|
|
|
|
|
{
|
|
|
|
|
base.OnAppearing();
|
2016-07-23 22:32:11 +03:00
|
|
|
|
MessagingCenter.Send(Application.Current, "ShowStatusBar", true);
|
2016-06-26 03:54:17 +03:00
|
|
|
|
EmailCell.Entry.Focus();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async void Entry_Completed(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
await Register();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task Register()
|
|
|
|
|
{
|
|
|
|
|
if(string.IsNullOrWhiteSpace(EmailCell.Entry.Text))
|
|
|
|
|
{
|
2016-07-05 06:20:16 +03:00
|
|
|
|
await DisplayAlert(AppResources.AnErrorHasOccurred,
|
|
|
|
|
string.Format(AppResources.ValidationFieldRequired, AppResources.EmailAddress), AppResources.Ok);
|
2016-06-26 03:54:17 +03:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(string.IsNullOrWhiteSpace(PasswordCell.Entry.Text))
|
|
|
|
|
{
|
2016-07-05 06:20:16 +03:00
|
|
|
|
await DisplayAlert(AppResources.AnErrorHasOccurred,
|
|
|
|
|
string.Format(AppResources.ValidationFieldRequired, "Your Name"), AppResources.Ok);
|
2016-06-26 03:54:17 +03:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(ConfirmPasswordCell.Entry.Text != PasswordCell.Entry.Text)
|
|
|
|
|
{
|
|
|
|
|
await DisplayAlert(AppResources.AnErrorHasOccurred, "Password confirmation is not correct.", AppResources.Ok);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var key = _cryptoService.MakeKeyFromPassword(PasswordCell.Entry.Text, EmailCell.Entry.Text);
|
|
|
|
|
var request = new RegisterRequest
|
|
|
|
|
{
|
|
|
|
|
Email = EmailCell.Entry.Text,
|
|
|
|
|
MasterPasswordHash = _cryptoService.HashPasswordBase64(key, PasswordCell.Entry.Text),
|
|
|
|
|
MasterPasswordHint = !string.IsNullOrWhiteSpace(PasswordHintCell.Entry.Text) ? PasswordHintCell.Entry.Text : null
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var responseTask = _accountsApiRepository.PostRegisterAsync(request);
|
|
|
|
|
_userDialogs.ShowLoading("Creating account...", MaskType.Black);
|
|
|
|
|
var response = await responseTask;
|
|
|
|
|
_userDialogs.HideLoading();
|
|
|
|
|
if(!response.Succeeded)
|
|
|
|
|
{
|
|
|
|
|
await DisplayAlert(AppResources.AnErrorHasOccurred, response.Errors.FirstOrDefault()?.Message, AppResources.Ok);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_userDialogs.SuccessToast("Account Created", "Your new account has been created! You may now log in.");
|
|
|
|
|
await Navigation.PopModalAsync();
|
|
|
|
|
}
|
2016-07-04 09:45:32 +03:00
|
|
|
|
|
|
|
|
|
private class FormTableView : ExtendedTableView
|
|
|
|
|
{
|
|
|
|
|
public FormTableView()
|
|
|
|
|
{
|
|
|
|
|
Intent = TableIntent.Settings;
|
|
|
|
|
EnableScrolling = false;
|
|
|
|
|
HasUnevenRows = true;
|
2016-07-23 07:40:17 +03:00
|
|
|
|
EnableSelection = true;
|
2016-07-04 09:45:32 +03:00
|
|
|
|
VerticalOptions = LayoutOptions.Start;
|
2016-07-05 05:31:15 +03:00
|
|
|
|
NoFooter = true;
|
2016-07-04 09:45:32 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-06-26 03:54:17 +03:00
|
|
|
|
}
|
|
|
|
|
}
|