2016-05-02 09:52:09 +03:00
|
|
|
|
using System;
|
2016-05-07 05:29:03 +03:00
|
|
|
|
using Acr.UserDialogs;
|
|
|
|
|
using Bit.App.Abstractions;
|
2016-05-13 07:11:32 +03:00
|
|
|
|
using Bit.App.Controls;
|
2016-05-08 06:11:47 +03:00
|
|
|
|
using Bit.App.Models.Page;
|
2016-05-07 20:42:09 +03:00
|
|
|
|
using Bit.App.Resources;
|
2016-05-02 09:52:09 +03:00
|
|
|
|
using Xamarin.Forms;
|
2016-05-07 05:29:03 +03:00
|
|
|
|
using XLabs.Ioc;
|
2016-05-02 09:52:09 +03:00
|
|
|
|
|
2016-05-03 00:50:16 +03:00
|
|
|
|
namespace Bit.App.Pages
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
|
|
|
|
public class VaultViewSitePage : ContentPage
|
|
|
|
|
{
|
2016-05-07 05:29:03 +03:00
|
|
|
|
private readonly string _siteId;
|
|
|
|
|
private readonly ISiteService _siteService;
|
|
|
|
|
private readonly IUserDialogs _userDialogs;
|
|
|
|
|
private readonly IClipboardService _clipboardService;
|
2016-05-02 09:52:09 +03:00
|
|
|
|
|
2016-05-07 05:29:03 +03:00
|
|
|
|
public VaultViewSitePage(string siteId)
|
2016-05-02 09:52:09 +03:00
|
|
|
|
{
|
|
|
|
|
_siteId = siteId;
|
2016-05-07 05:29:03 +03:00
|
|
|
|
_siteService = Resolver.Resolve<ISiteService>();
|
|
|
|
|
_userDialogs = Resolver.Resolve<IUserDialogs>();
|
|
|
|
|
_clipboardService = Resolver.Resolve<IClipboardService>();
|
|
|
|
|
|
|
|
|
|
Init();
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-08 06:11:47 +03:00
|
|
|
|
private VaultViewSitePageModel Model { get; set; } = new VaultViewSitePageModel();
|
2016-05-14 02:57:07 +03:00
|
|
|
|
private ExtendedTableView Table { get; set; }
|
2016-06-14 03:03:16 +03:00
|
|
|
|
private TableSection SiteInformationSection { get; set; }
|
|
|
|
|
private TableSection NotesSection { get; set; }
|
|
|
|
|
public LabeledValueCell UsernameCell { get; set; }
|
|
|
|
|
public LabeledValueCell PasswordCell { get; set; }
|
|
|
|
|
public LabeledValueCell UriCell { get; set; }
|
2016-05-08 06:11:47 +03:00
|
|
|
|
|
|
|
|
|
private void Init()
|
2016-05-07 05:29:03 +03:00
|
|
|
|
{
|
|
|
|
|
ToolbarItems.Add(new EditSiteToolBarItem(this, _siteId));
|
2016-05-14 08:34:42 +03:00
|
|
|
|
if(Device.OS == TargetPlatform.iOS)
|
|
|
|
|
{
|
|
|
|
|
ToolbarItems.Add(new DismissModalToolBarItem(this));
|
|
|
|
|
}
|
2016-05-07 05:29:03 +03:00
|
|
|
|
|
2016-05-08 06:11:47 +03:00
|
|
|
|
// Username
|
2016-05-14 02:57:07 +03:00
|
|
|
|
var nameCell = new LabeledValueCell(AppResources.Name);
|
|
|
|
|
nameCell.Value.SetBinding<VaultViewSitePageModel>(Label.TextProperty, s => s.Name);
|
|
|
|
|
|
|
|
|
|
// Username
|
2016-06-14 03:03:16 +03:00
|
|
|
|
UsernameCell = new LabeledValueCell(AppResources.Username, button1Text: AppResources.Copy);
|
|
|
|
|
UsernameCell.Value.SetBinding<VaultViewSitePageModel>(Label.TextProperty, s => s.Username);
|
|
|
|
|
UsernameCell.Button1.Command = new Command(() => Copy(Model.Username, AppResources.Username));
|
2016-05-07 05:29:03 +03:00
|
|
|
|
|
2016-05-08 06:11:47 +03:00
|
|
|
|
// Password
|
2016-06-17 07:37:51 +03:00
|
|
|
|
PasswordCell = new LabeledValueCell(AppResources.Password, button1Text: string.Empty, button2Text: AppResources.Copy);
|
2016-06-14 03:03:16 +03:00
|
|
|
|
PasswordCell.Value.SetBinding<VaultViewSitePageModel>(Label.TextProperty, s => s.MaskedPassword);
|
2016-06-17 07:37:51 +03:00
|
|
|
|
PasswordCell.Button1.SetBinding<VaultViewSitePageModel>(Button.ImageProperty, s => s.ShowHideImage);
|
|
|
|
|
PasswordCell.Button1.Margin = new Thickness(10, 0);
|
2016-06-14 03:03:16 +03:00
|
|
|
|
PasswordCell.Button1.Command = new Command(() => Model.RevealPassword = !Model.RevealPassword);
|
|
|
|
|
PasswordCell.Button2.Command = new Command(() => Copy(Model.Password, AppResources.Password));
|
|
|
|
|
|
|
|
|
|
UsernameCell.Value.FontFamily = PasswordCell.Value.FontFamily = "Courier";
|
2016-05-07 05:29:03 +03:00
|
|
|
|
|
2016-05-08 06:11:47 +03:00
|
|
|
|
// URI
|
2016-06-14 03:03:16 +03:00
|
|
|
|
UriCell = new LabeledValueCell(AppResources.Website, button1Text: AppResources.Launch);
|
|
|
|
|
UriCell.Value.SetBinding<VaultViewSitePageModel>(Label.TextProperty, s => s.UriHost);
|
|
|
|
|
UriCell.Button1.Command = new Command(() => Device.OpenUri(new Uri(Model.Uri)));
|
2016-05-14 02:57:07 +03:00
|
|
|
|
|
|
|
|
|
// Notes
|
2016-05-14 08:34:42 +03:00
|
|
|
|
var notesCell = new LabeledValueCell();
|
2016-05-14 02:57:07 +03:00
|
|
|
|
notesCell.Value.SetBinding<VaultViewSitePageModel>(Label.TextProperty, s => s.Notes);
|
2016-05-24 06:48:34 +03:00
|
|
|
|
notesCell.Value.LineBreakMode = LineBreakMode.WordWrap;
|
2016-05-14 02:57:07 +03:00
|
|
|
|
|
2016-06-14 03:03:16 +03:00
|
|
|
|
SiteInformationSection = new TableSection("Site Information")
|
|
|
|
|
{
|
|
|
|
|
nameCell
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
NotesSection = new TableSection(AppResources.Notes)
|
|
|
|
|
{
|
|
|
|
|
notesCell
|
|
|
|
|
};
|
|
|
|
|
|
2016-05-14 02:57:07 +03:00
|
|
|
|
Table = new ExtendedTableView
|
2016-05-07 05:29:03 +03:00
|
|
|
|
{
|
2016-05-14 02:57:07 +03:00
|
|
|
|
Intent = TableIntent.Settings,
|
2016-05-24 06:48:34 +03:00
|
|
|
|
EnableScrolling = true,
|
2016-05-14 02:57:07 +03:00
|
|
|
|
HasUnevenRows = true,
|
2016-05-17 06:54:24 +03:00
|
|
|
|
EnableSelection = false,
|
2016-05-14 02:57:07 +03:00
|
|
|
|
Root = new TableRoot
|
|
|
|
|
{
|
2016-06-14 03:03:16 +03:00
|
|
|
|
SiteInformationSection,
|
|
|
|
|
NotesSection
|
2016-05-14 02:57:07 +03:00
|
|
|
|
}
|
2016-05-08 06:11:47 +03:00
|
|
|
|
};
|
|
|
|
|
|
2016-05-14 02:57:07 +03:00
|
|
|
|
if(Device.OS == TargetPlatform.iOS)
|
|
|
|
|
{
|
|
|
|
|
Table.RowHeight = -1;
|
|
|
|
|
Table.EstimatedRowHeight = 70;
|
|
|
|
|
}
|
2016-05-07 05:29:03 +03:00
|
|
|
|
|
2016-05-17 06:54:24 +03:00
|
|
|
|
Title = "View Site";
|
2016-05-24 06:48:34 +03:00
|
|
|
|
Content = Table;
|
2016-05-08 06:11:47 +03:00
|
|
|
|
BindingContext = Model;
|
2016-05-07 05:29:03 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-05-08 06:11:47 +03:00
|
|
|
|
protected override void OnAppearing()
|
2016-05-07 05:29:03 +03:00
|
|
|
|
{
|
2016-05-08 06:11:47 +03:00
|
|
|
|
var site = _siteService.GetByIdAsync(_siteId).GetAwaiter().GetResult();
|
|
|
|
|
if(site == null)
|
2016-05-07 05:29:03 +03:00
|
|
|
|
{
|
2016-05-08 06:11:47 +03:00
|
|
|
|
// TODO: handle error. navigate back? should never happen...
|
|
|
|
|
return;
|
2016-05-07 05:29:03 +03:00
|
|
|
|
}
|
2016-05-08 06:11:47 +03:00
|
|
|
|
|
|
|
|
|
Model.Update(site);
|
2016-05-12 00:30:09 +03:00
|
|
|
|
|
2016-06-14 03:03:16 +03:00
|
|
|
|
if(!Model.ShowUri)
|
|
|
|
|
{
|
|
|
|
|
SiteInformationSection.Remove(UriCell);
|
|
|
|
|
}
|
|
|
|
|
else if(!SiteInformationSection.Contains(UriCell))
|
|
|
|
|
{
|
|
|
|
|
SiteInformationSection.Add(UriCell);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!Model.ShowUsername)
|
|
|
|
|
{
|
|
|
|
|
SiteInformationSection.Remove(UsernameCell);
|
|
|
|
|
}
|
|
|
|
|
else if(!SiteInformationSection.Contains(UsernameCell))
|
|
|
|
|
{
|
|
|
|
|
SiteInformationSection.Add(UsernameCell);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!Model.ShowPassword)
|
|
|
|
|
{
|
|
|
|
|
SiteInformationSection.Remove(PasswordCell);
|
|
|
|
|
}
|
|
|
|
|
else if(!SiteInformationSection.Contains(PasswordCell))
|
|
|
|
|
{
|
|
|
|
|
SiteInformationSection.Add(PasswordCell);
|
|
|
|
|
}
|
2016-05-14 02:57:07 +03:00
|
|
|
|
|
2016-06-14 03:03:16 +03:00
|
|
|
|
if(!Model.ShowNotes)
|
|
|
|
|
{
|
|
|
|
|
Table.Root.Remove(NotesSection);
|
|
|
|
|
}
|
|
|
|
|
else if(!Table.Root.Contains(NotesSection))
|
|
|
|
|
{
|
|
|
|
|
Table.Root.Add(NotesSection);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
base.OnAppearing();
|
2016-05-07 05:29:03 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-05-07 20:42:09 +03:00
|
|
|
|
private void Copy(string copyText, string alertLabel)
|
2016-05-07 05:29:03 +03:00
|
|
|
|
{
|
|
|
|
|
_clipboardService.CopyToClipboard(copyText);
|
2016-05-07 20:42:09 +03:00
|
|
|
|
_userDialogs.SuccessToast(string.Format(AppResources.ValueHasBeenCopied, alertLabel));
|
2016-05-07 05:29:03 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class EditSiteToolBarItem : ToolbarItem
|
|
|
|
|
{
|
|
|
|
|
private readonly VaultViewSitePage _page;
|
|
|
|
|
private readonly string _siteId;
|
|
|
|
|
|
|
|
|
|
public EditSiteToolBarItem(VaultViewSitePage page, string siteId)
|
|
|
|
|
{
|
|
|
|
|
_page = page;
|
|
|
|
|
_siteId = siteId;
|
2016-05-07 20:42:09 +03:00
|
|
|
|
Text = AppResources.Edit;
|
2016-05-07 05:29:03 +03:00
|
|
|
|
Clicked += ClickedItem;
|
|
|
|
|
}
|
2016-05-02 09:52:09 +03:00
|
|
|
|
|
2016-05-07 05:29:03 +03:00
|
|
|
|
private async void ClickedItem(object sender, EventArgs e)
|
|
|
|
|
{
|
2016-05-13 07:11:32 +03:00
|
|
|
|
var page = new ExtendedNavigationPage(new VaultEditSitePage(_siteId));
|
|
|
|
|
await _page.Navigation.PushModalAsync(page);
|
2016-05-07 05:29:03 +03:00
|
|
|
|
}
|
2016-05-02 09:52:09 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|