bitwarden-android/src/App/Pages/Vault/VaultAutofillListCiphersPage.cs

360 lines
13 KiB
C#
Raw Normal View History

using System;
using System.Linq;
using System.Threading.Tasks;
using Acr.UserDialogs;
using Bit.App.Abstractions;
using Bit.App.Controls;
using Bit.App.Models.Page;
using Bit.App.Resources;
using Xamarin.Forms;
using XLabs.Ioc;
using Bit.App.Utilities;
using System.Threading;
using Bit.App.Models;
2017-01-31 03:26:39 +03:00
using System.Collections.Generic;
namespace Bit.App.Pages
{
public class VaultAutofillListCiphersPage : ExtendedContentPage
{
private readonly ICipherService _cipherService;
private readonly IDeviceInfoService _deviceInfoService;
private readonly IDeviceActionService _clipboardService;
private readonly ISettingsService _settingsService;
private CancellationTokenSource _filterResultsCancellationTokenSource;
2017-01-31 03:26:39 +03:00
private readonly string _name;
public VaultAutofillListCiphersPage(string uriString)
: base(true)
{
Uri = uriString;
Uri uri;
if(uriString?.StartsWith(Constants.AndroidAppProtocol) ?? false)
{
_name = uriString.Substring(Constants.AndroidAppProtocol.Length);
}
else if(!System.Uri.TryCreate(uriString, UriKind.Absolute, out uri) ||
2017-09-07 06:08:24 +03:00
!DomainName.TryParseBaseDomain(uri.Host, out _name))
2017-01-31 03:26:39 +03:00
{
_name = "--";
2017-01-31 03:26:39 +03:00
}
_cipherService = Resolver.Resolve<ICipherService>();
_deviceInfoService = Resolver.Resolve<IDeviceInfoService>();
_clipboardService = Resolver.Resolve<IDeviceActionService>();
_settingsService = Resolver.Resolve<ISettingsService>();
2017-02-14 06:35:16 +03:00
UserDialogs = Resolver.Resolve<IUserDialogs>();
GoogleAnalyticsService = Resolver.Resolve<IGoogleAnalyticsService>();
Init();
}
public ExtendedObservableCollection<VaultListPageModel.AutofillGrouping> PresentationCiphersGroup { get; private set; }
= new ExtendedObservableCollection<VaultListPageModel.AutofillGrouping>();
2017-01-31 03:26:39 +03:00
public StackLayout NoDataStackLayout { get; set; }
public ListView ListView { get; set; }
2017-01-31 03:26:39 +03:00
public ActivityIndicator LoadingIndicator { get; set; }
private SearchToolBarItem SearchItem { get; set; }
private AddCipherToolBarItem AddCipherItem { get; set; }
private IGoogleAnalyticsService GoogleAnalyticsService { get; set; }
2017-02-14 06:35:16 +03:00
private IUserDialogs UserDialogs { get; set; }
private string Uri { get; set; }
private void Init()
{
2017-01-31 03:26:39 +03:00
var noDataLabel = new Label
{
Text = string.Format(AppResources.NoLoginsForUri, _name ?? "--"),
HorizontalTextAlignment = TextAlignment.Center,
FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label)),
Style = (Style)Application.Current.Resources["text-muted"]
};
var addCipherButton = new ExtendedButton
2017-01-31 03:26:39 +03:00
{
Text = AppResources.AddALogin,
Command = new Command(() => AddCipherAsync()),
2017-01-31 03:26:39 +03:00
Style = (Style)Application.Current.Resources["btn-primaryAccent"]
};
NoDataStackLayout = new StackLayout
{
Children = { noDataLabel, addCipherButton },
2017-01-31 03:26:39 +03:00
VerticalOptions = LayoutOptions.CenterAndExpand,
Padding = new Thickness(20, 0),
Spacing = 20
};
AddCipherItem = new AddCipherToolBarItem(this);
ToolbarItems.Add(AddCipherItem);
SearchItem = new SearchToolBarItem(this);
ToolbarItems.Add(SearchItem);
ListView = new ListView(ListViewCachingStrategy.RecycleElement)
{
IsGroupingEnabled = true,
ItemsSource = PresentationCiphersGroup,
HasUnevenRows = true,
GroupHeaderTemplate = new DataTemplate(() => new HeaderViewCell()),
2017-01-31 03:26:39 +03:00
ItemTemplate = new DataTemplate(() => new VaultListViewCell(
(VaultListPageModel.Cipher l) => MoreClickedAsync(l)))
};
2017-05-30 21:13:53 +03:00
if(Device.RuntimePlatform == Device.iOS)
{
ListView.RowHeight = -1;
}
2017-01-31 03:26:39 +03:00
Title = string.Format(AppResources.LoginsForUri, _name ?? "--");
LoadingIndicator = new ActivityIndicator
{
IsRunning = true,
VerticalOptions = LayoutOptions.CenterAndExpand,
HorizontalOptions = LayoutOptions.Center
};
2017-01-31 03:26:39 +03:00
Content = LoadingIndicator;
}
protected override void OnAppearing()
{
base.OnAppearing();
ListView.ItemSelected += CipherSelected;
AddCipherItem.InitEvents();
SearchItem.InitEvents();
_filterResultsCancellationTokenSource = FetchAndLoadVault();
}
protected override void OnDisappearing()
{
base.OnDisappearing();
ListView.ItemSelected -= CipherSelected;
AddCipherItem.Dispose();
SearchItem.Dispose();
}
2017-01-31 03:26:39 +03:00
protected override bool OnBackButtonPressed()
{
GoogleAnalyticsService.TrackExtensionEvent("BackClosed", Uri.StartsWith("http") ? "Website" : "App");
MessagingCenter.Send(Application.Current, "Autofill", (VaultListPageModel.Cipher)null);
2017-01-31 03:26:39 +03:00
return true;
}
2017-01-31 03:26:39 +03:00
private void AdjustContent()
{
if(PresentationCiphersGroup.Count > 0)
2017-01-31 03:26:39 +03:00
{
Content = ListView;
}
else
{
2017-01-31 03:26:39 +03:00
Content = NoDataStackLayout;
}
2017-01-31 03:26:39 +03:00
}
2017-01-31 03:26:39 +03:00
private CancellationTokenSource FetchAndLoadVault()
{
var cts = new CancellationTokenSource();
_filterResultsCancellationTokenSource?.Cancel();
Task.Run(async () =>
{
2017-02-14 06:10:34 +03:00
var autofillGroupings = new List<VaultListPageModel.AutofillGrouping>();
var ciphers = await _cipherService.GetAllAsync(Uri);
2017-02-14 06:10:34 +03:00
var normalLogins = ciphers?.Item1.Select(l => new VaultListPageModel.AutofillCipher(l, false))
.OrderBy(s => s.Name)
.ThenBy(s => s.Subtitle)
.ToList();
2017-02-14 06:10:34 +03:00
if(normalLogins?.Any() ?? false)
{
autofillGroupings.Add(new VaultListPageModel.AutofillGrouping(normalLogins, AppResources.MatchingLogins));
}
var fuzzyLogins = ciphers?.Item2.Select(l => new VaultListPageModel.AutofillCipher(l, true))
.OrderBy(s => s.Name)
.ThenBy(s => s.Username)
.ToList();
2017-02-14 06:10:34 +03:00
if(fuzzyLogins?.Any() ?? false)
{
2017-02-14 06:10:34 +03:00
autofillGroupings.Add(new VaultListPageModel.AutofillGrouping(fuzzyLogins,
AppResources.PossibleMatchingLogins));
}
2017-01-31 03:26:39 +03:00
Device.BeginInvokeOnMainThread(() =>
{
2017-02-14 06:10:34 +03:00
if(autofillGroupings.Any())
{
PresentationCiphersGroup.ResetWithRange(autofillGroupings);
2017-02-14 06:10:34 +03:00
}
2017-01-31 03:26:39 +03:00
AdjustContent();
});
}, cts.Token);
return cts;
}
private async void CipherSelected(object sender, SelectedItemChangedEventArgs e)
{
var cipher = e.SelectedItem as VaultListPageModel.AutofillCipher;
if(cipher == null)
2017-02-14 06:10:34 +03:00
{
return;
}
2017-09-08 16:16:21 +03:00
if(_deviceInfoService.Version < 21)
{
MoreClickedAsync(cipher);
2017-02-14 06:10:34 +03:00
}
else
{
bool doAutofill = true;
if(cipher.Fuzzy)
2017-02-14 06:10:34 +03:00
{
2017-02-14 06:35:16 +03:00
doAutofill = await UserDialogs.ConfirmAsync(
2017-02-14 06:10:34 +03:00
string.Format(AppResources.BitwardenAutofillServiceMatchConfirm, _name),
okText: AppResources.Yes, cancelText: AppResources.No);
}
if(doAutofill)
{
GoogleAnalyticsService.TrackExtensionEvent("AutoFilled", Uri.StartsWith("http") ? "Website" : "App");
MessagingCenter.Send(Application.Current, "Autofill", cipher as VaultListPageModel.Cipher);
2017-02-14 06:10:34 +03:00
}
}
2017-02-14 06:10:34 +03:00
((ListView)sender).SelectedItem = null;
}
private async void AddCipherAsync()
{
var page = new VaultAddLoginPage(Uri, _name, true);
await Navigation.PushForDeviceAsync(page);
}
private async void MoreClickedAsync(VaultListPageModel.Cipher cipher)
{
2017-01-31 03:26:39 +03:00
var buttons = new List<string> { AppResources.View, AppResources.Edit };
if(cipher.Type == Enums.CipherType.Login)
{
if(!string.IsNullOrWhiteSpace(cipher.Password.Value))
{
buttons.Add(AppResources.CopyPassword);
}
if(!string.IsNullOrWhiteSpace(cipher.Username))
{
buttons.Add(AppResources.CopyUsername);
}
2017-01-31 03:26:39 +03:00
}
else if(cipher.Type == Enums.CipherType.Card)
2017-01-31 03:26:39 +03:00
{
if(!string.IsNullOrWhiteSpace(cipher.CardNumber))
{
buttons.Add(AppResources.CopyNumber);
}
if(!string.IsNullOrWhiteSpace(cipher.CardCode.Value))
{
buttons.Add(AppResources.CopySecurityCode);
}
}
var selection = await DisplayActionSheet(cipher.Name, AppResources.Cancel, null, buttons.ToArray());
2017-01-31 03:26:39 +03:00
if(selection == AppResources.View)
{
var page = new VaultViewLoginPage(cipher.Id);
2017-01-31 03:26:39 +03:00
await Navigation.PushForDeviceAsync(page);
}
else if(selection == AppResources.Edit)
{
var page = new VaultEditLoginPage(cipher.Id);
2017-01-31 03:26:39 +03:00
await Navigation.PushForDeviceAsync(page);
}
else if(selection == AppResources.CopyPassword)
{
Copy(cipher.Password.Value, AppResources.Password);
2017-01-31 03:26:39 +03:00
}
else if(selection == AppResources.CopyUsername)
{
Copy(cipher.Username, AppResources.Username);
}
else if(selection == AppResources.CopyNumber)
{
Copy(cipher.CardNumber, AppResources.Number);
}
else if(selection == AppResources.CopySecurityCode)
{
Copy(cipher.CardCode.Value, AppResources.SecurityCode);
}
}
2017-01-31 03:26:39 +03:00
private void Copy(string copyText, string alertLabel)
{
2017-01-31 03:26:39 +03:00
_clipboardService.CopyToClipboard(copyText);
2017-02-14 06:35:16 +03:00
UserDialogs.Toast(string.Format(AppResources.ValueHasBeenCopied, alertLabel));
2017-01-31 03:26:39 +03:00
}
private class AddCipherToolBarItem : ExtendedToolbarItem
2017-01-31 03:26:39 +03:00
{
public AddCipherToolBarItem(VaultAutofillListCiphersPage page)
: base(() => page.AddCipherAsync())
{
2017-01-31 03:26:39 +03:00
Text = AppResources.Add;
Icon = "plus.png";
2017-02-14 06:35:16 +03:00
Priority = 2;
}
}
private class SearchToolBarItem : ExtendedToolbarItem
{
private readonly VaultAutofillListCiphersPage _page;
public SearchToolBarItem(VaultAutofillListCiphersPage page)
{
_page = page;
2017-02-14 06:35:16 +03:00
Text = AppResources.Search;
Icon = "search.png";
2017-02-14 06:35:16 +03:00
Priority = 1;
ClickAction = () => DoClick();
}
private void DoClick()
{
2017-02-14 06:10:34 +03:00
_page.GoogleAnalyticsService.TrackExtensionEvent("CloseToSearch",
_page.Uri.StartsWith("http") ? "Website" : "App");
Application.Current.MainPage = new MainPage(_page.Uri);
2017-02-14 06:35:16 +03:00
_page.UserDialogs.Toast(string.Format(AppResources.BitwardenAutofillServiceSearch, _page._name),
TimeSpan.FromSeconds(10));
}
}
private class HeaderViewCell : ExtendedViewCell
{
public HeaderViewCell()
{
var label = new Label
{
FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label)),
Style = (Style)Application.Current.Resources["text-muted"],
VerticalTextAlignment = TextAlignment.Center
};
2017-05-30 21:13:53 +03:00
label.SetBinding(Label.TextProperty, nameof(VaultListPageModel.AutofillGrouping.Name));
var grid = new ContentView
{
Padding = new Thickness(16, 8, 0, 8),
Content = label
};
View = grid;
BackgroundColor = Color.FromHex("efeff4");
}
}
}
}