bitwarden-android/src/iOS.Extension/SiteListViewController.cs

181 lines
7.2 KiB
C#
Raw Normal View History

using System;
2016-06-05 01:27:34 +03:00
using System.Collections.Generic;
2016-06-10 07:36:15 +03:00
using System.Diagnostics;
2016-06-05 01:27:34 +03:00
using System.Linq;
using Bit.App.Abstractions;
using Bit.iOS.Core;
using Bit.iOS.Extension.Models;
using Foundation;
using MobileCoreServices;
using Newtonsoft.Json;
using UIKit;
using XLabs.Ioc;
namespace Bit.iOS.Extension
{
public partial class SiteListViewController : UITableViewController
{
public SiteListViewController(IntPtr handle) : base(handle)
{ }
public Context Context { get; set; }
2016-06-14 07:19:18 +03:00
public override void ViewWillAppear(bool animated)
{
UINavigationBar.Appearance.ShadowImage = new UIImage();
UINavigationBar.Appearance.SetBackgroundImage(new UIImage(), UIBarMetrics.Default);
base.ViewWillAppear(animated);
}
public async override void ViewDidLoad()
{
2016-06-03 06:28:17 +03:00
base.ViewDidLoad();
2016-06-05 01:27:34 +03:00
2016-07-08 07:35:48 +03:00
IEnumerable<SiteViewModel> filteredSiteModels = new List<SiteViewModel>();
if(Context.DomainName != null)
{
var siteService = Resolver.Resolve<ISiteService>();
var sites = await siteService.GetAllAsync();
var siteModels = sites.Select(s => new SiteViewModel(s));
2016-07-08 07:35:48 +03:00
filteredSiteModels = siteModels.Where(s => s.Domain != null && s.Domain.BaseDomain == Context.DomainName.BaseDomain);
}
TableView.RowHeight = UITableView.AutomaticDimension;
TableView.EstimatedRowHeight = 44;
TableView.Source = new TableSource(filteredSiteModels, this);
}
partial void CancelBarButton_Activated(UIBarButtonItem sender)
{
CompleteRequest(null);
}
2016-06-05 01:27:34 +03:00
private void CompleteRequest(NSDictionary itemData)
2016-06-04 19:10:03 +03:00
{
2016-06-05 01:27:34 +03:00
var resultsProvider = new NSItemProvider(itemData, UTType.PropertyList);
var resultsItem = new NSExtensionItem { Attachments = new NSItemProvider[] { resultsProvider } };
var returningItems = new NSExtensionItem[] { resultsItem };
Context.ExtContext.CompleteRequest(returningItems, null);
}
partial void AddBarButton_Activated(UIBarButtonItem sender)
{
PerformSegue("siteAddSegue", this);
}
public override void PrepareForSegue(UIStoryboardSegue segue, NSObject sender)
{
var navController = segue.DestinationViewController as UINavigationController;
if(navController != null)
{
var addSiteController = navController.TopViewController as SiteAddViewController;
if(addSiteController != null)
{
addSiteController.Context = Context;
addSiteController.Parent = this;
}
}
}
public void DismissModal()
{
DismissModalViewController(true);
TableView.ReloadData();
}
2016-06-05 01:27:34 +03:00
public class TableSource : UITableViewSource
{
private const string CellIdentifier = "TableCell";
private IEnumerable<SiteViewModel> _tableItems;
2016-06-05 01:27:34 +03:00
private Context _context;
private SiteListViewController _controller;
2016-06-05 01:27:34 +03:00
public TableSource(IEnumerable<SiteViewModel> items, SiteListViewController controller)
{
2016-06-05 01:27:34 +03:00
_tableItems = items;
_context = controller.Context;
_controller = controller;
}
2016-06-05 01:27:34 +03:00
public override nint RowsInSection(UITableView tableview, nint section)
{
2016-06-05 01:27:34 +03:00
return _tableItems.Count();
}
2016-06-05 01:27:34 +03:00
public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
{
2016-06-05 01:27:34 +03:00
var cell = tableView.DequeueReusableCell(CellIdentifier);
2016-06-05 01:27:34 +03:00
// if there are no cells to reuse, create a new one
if(cell == null)
{
2016-06-11 08:17:08 +03:00
cell = new UITableViewCell(UITableViewCellStyle.Subtitle, CellIdentifier);
2016-06-05 01:27:34 +03:00
}
return cell;
}
public override void WillDisplay(UITableView tableView, UITableViewCell cell, NSIndexPath indexPath)
{
if(cell == null)
{
return;
}
var item = _tableItems.ElementAt(indexPath.Row);
cell.TextLabel.Text = item.Name;
cell.DetailTextLabel.Text = item.Username;
cell.DetailTextLabel.TextColor = cell.DetailTextLabel.TintColor = new UIColor(red: 0.47f, green: 0.47f, blue: 0.47f, alpha: 1.0f);
2016-06-05 01:27:34 +03:00
}
2016-06-05 01:27:34 +03:00
public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
{
var item = _tableItems.ElementAt(indexPath.Row);
if(item == null)
{
_controller.CompleteRequest(null);
}
2016-06-05 01:27:34 +03:00
NSDictionary itemData = null;
if(_context.ProviderType == UTType.PropertyList)
{
var fillScript = new FillScript(_context.Details, item.Username, item.Password);
2016-06-05 01:27:34 +03:00
var scriptJson = JsonConvert.SerializeObject(fillScript, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore });
var scriptDict = new NSDictionary(Constants.AppExtensionWebViewPageFillScript, scriptJson);
itemData = new NSDictionary(NSJavaScriptExtension.FinalizeArgumentKey, scriptDict);
}
else if(_context.ProviderType == Constants.UTTypeAppExtensionFindLoginAction)
{
itemData = new NSDictionary(
Constants.AppExtensionUsernameKey, item.Username,
Constants.AppExtensionPasswordKey, item.Password);
2016-06-05 01:27:34 +03:00
}
else if(_context.ProviderType == Constants.UTTypeAppExtensionFillBrowserAction
|| _context.ProviderType == Constants.UTTypeAppExtensionFillWebViewAction)
{
var fillScript = new FillScript(_context.Details, item.Username, item.Password);
2016-06-05 01:27:34 +03:00
var scriptJson = JsonConvert.SerializeObject(fillScript, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore });
itemData = new NSDictionary(Constants.AppExtensionWebViewPageFillScript, scriptJson);
}
else if(_context.ProviderType == Constants.UTTypeAppExtensionSaveLoginAction)
{
itemData = new NSDictionary(
Constants.AppExtensionUsernameKey, item.Username,
Constants.AppExtensionPasswordKey, item.Password);
2016-06-05 01:27:34 +03:00
}
else if(_context.ProviderType == Constants.UTTypeAppExtensionChangePasswordAction)
{
itemData = new NSDictionary(
Constants.AppExtensionPasswordKey, "mynewpassword",
Constants.AppExtensionOldPasswordKey, "myoldpassword");
}
2016-06-10 07:36:15 +03:00
Debug.WriteLine("BW LOG, itemData: " + itemData);
2016-06-05 01:27:34 +03:00
_controller.CompleteRequest(itemData);
}
}
}
}