using System; using Acr.UserDialogs; using Bit.App.Abstractions; using Bit.App.Controls; using Bit.App.Models.Page; using Bit.App.Resources; using Plugin.Settings.Abstractions; using Xamarin.Forms; using XLabs.Ioc; namespace Bit.App.Pages { public class ToolsPasswordGeneratorPage : ExtendedContentPage { private readonly IUserDialogs _userDialogs; private readonly IPasswordGenerationService _passwordGenerationService; private readonly ISettings _settings; private readonly IClipboardService _clipboardService; private readonly IGoogleAnalyticsService _googleAnalyticsService; private readonly Action _passwordValueAction; public ToolsPasswordGeneratorPage(Action passwordValueAction = null) { _userDialogs = Resolver.Resolve(); _passwordGenerationService = Resolver.Resolve(); _settings = Resolver.Resolve(); _clipboardService = Resolver.Resolve(); _googleAnalyticsService = Resolver.Resolve(); _passwordValueAction = passwordValueAction; Init(); } public PasswordGeneratorPageModel Model { get; private set; } = new PasswordGeneratorPageModel(); public Label Password { get; private set; } public SliderViewCell SliderCell { get; private set; } public void Init() { Password = new Label { FontSize = Device.GetNamedSize(NamedSize.Large, typeof(Label)), Margin = new Thickness(15, 40, 15, 40), HorizontalTextAlignment = TextAlignment.Center, FontFamily = Device.OnPlatform(iOS: "Courier", Android: "monospace", WinPhone: "Courier"), LineBreakMode = LineBreakMode.TailTruncation, VerticalOptions = LayoutOptions.Start }; var tgr = new TapGestureRecognizer(); tgr.Tapped += Tgr_Tapped; Password.GestureRecognizers.Add(tgr); Password.SetBinding(Label.TextProperty, m => m.Password); SliderCell = new SliderViewCell(this, _passwordGenerationService, _settings); var settingsCell = new ExtendedTextCell { Text = AppResources.MoreSettings, ShowDisclousure = true }; settingsCell.Tapped += SettingsCell_Tapped; var buttonColor = Color.FromHex("3c8dbc"); var regenerateCell = new ExtendedTextCell { Text = AppResources.RegeneratePassword, TextColor = buttonColor }; regenerateCell.Tapped += RegenerateCell_Tapped; ; var copyCell = new ExtendedTextCell { Text = AppResources.CopyPassword, TextColor = buttonColor }; copyCell.Tapped += CopyCell_Tapped; var table = new ExtendedTableView { VerticalOptions = LayoutOptions.Start, EnableScrolling = false, Intent = TableIntent.Settings, HasUnevenRows = true, NoHeader = true, Root = new TableRoot { new TableSection { regenerateCell, copyCell }, new TableSection(AppResources.Options) { SliderCell, settingsCell } } }; if(Device.OS == TargetPlatform.iOS) { table.RowHeight = -1; table.EstimatedRowHeight = 44; ToolbarItems.Add(new DismissModalToolBarItem(this, _passwordValueAction == null ? AppResources.Close : AppResources.Cancel)); } var stackLayout = new StackLayout { Orientation = StackOrientation.Vertical, Children = { Password, table }, VerticalOptions = LayoutOptions.FillAndExpand, Spacing = 0 }; var scrollView = new ScrollView { Content = stackLayout, Orientation = ScrollOrientation.Vertical, VerticalOptions = LayoutOptions.FillAndExpand }; if(_passwordValueAction != null) { var selectToolBarItem = new ToolbarItem(AppResources.Select, null, async () => { _googleAnalyticsService.TrackAppEvent("SelectedGeneratedPassword"); _passwordValueAction(Password.Text); await Navigation.PopForDeviceAsync(); }, ToolbarItemOrder.Default, 0); ToolbarItems.Add(selectToolBarItem); } Title = AppResources.GeneratePassword; Content = scrollView; BindingContext = Model; } private void Tgr_Tapped(object sender, EventArgs e) { CopyPassword(); } protected override void OnAppearing() { base.OnAppearing(); _googleAnalyticsService.TrackAppEvent("GeneratedPassword"); Model.Password = _passwordGenerationService.GeneratePassword(); Model.Length = _settings.GetValueOrDefault(Constants.PasswordGeneratorLength, 10).ToString(); } private void RegenerateCell_Tapped(object sender, EventArgs e) { Model.Password = _passwordGenerationService.GeneratePassword(); _googleAnalyticsService.TrackAppEvent("RegeneratedPassword"); } private void CopyCell_Tapped(object sender, EventArgs e) { CopyPassword(); } private void SettingsCell_Tapped(object sender, EventArgs e) { Navigation.PushAsync(new ToolsPasswordGeneratorSettingsPage()); } private void CopyPassword() { _googleAnalyticsService.TrackAppEvent("CopiedGeneratedPassword"); _clipboardService.CopyToClipboard(Password.Text); _userDialogs.Toast(string.Format(AppResources.ValueHasBeenCopied, AppResources.Password)); } // TODO: move to standalone reusable control public class SliderViewCell : ExtendedViewCell { private readonly ToolsPasswordGeneratorPage _page; private readonly IPasswordGenerationService _passwordGenerationService; private readonly ISettings _settings; public Label Value { get; set; } public Slider LengthSlider { get; set; } public SliderViewCell( ToolsPasswordGeneratorPage page, IPasswordGenerationService passwordGenerationService, ISettings settings) { _page = page; _passwordGenerationService = passwordGenerationService; _settings = settings; var label = new Label { FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label)), Text = AppResources.Length, HorizontalOptions = LayoutOptions.Start, VerticalOptions = LayoutOptions.CenterAndExpand }; LengthSlider = new Slider(5, 64, _settings.GetValueOrDefault(Constants.PasswordGeneratorLength, 10)) { HorizontalOptions = LayoutOptions.FillAndExpand, VerticalOptions = LayoutOptions.CenterAndExpand }; Value = new Label { FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label)), HorizontalOptions = LayoutOptions.End, VerticalOptions = LayoutOptions.CenterAndExpand, Style = (Style)Application.Current.Resources["text-muted"] }; Value.SetBinding(Label.TextProperty, m => m.Length); LengthSlider.ValueChanged += Slider_ValueChanged; var stackLayout = new StackLayout { Orientation = StackOrientation.Horizontal, Spacing = 15, Children = { label, LengthSlider, Value }, Padding = Device.OnPlatform( iOS: new Thickness(15, 8), Android: new Thickness(16, 10), WinPhone: new Thickness(15, 8)) }; stackLayout.AdjustPaddingForDevice(); if(Device.OS == TargetPlatform.Android) { label.TextColor = Color.Black; } View = stackLayout; } private void Slider_ValueChanged(object sender, ValueChangedEventArgs e) { var length = Convert.ToInt32(LengthSlider.Value); _settings.AddOrUpdateValue(Constants.PasswordGeneratorLength, length); _page.Model.Length = length.ToString(); _page.Model.Password = _passwordGenerationService.GeneratePassword(); } } } }