2016-06-05 00:04:49 +03:00
|
|
|
using System;
|
|
|
|
using System.Drawing;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using Bit.App.Abstractions;
|
|
|
|
using Bit.App.Repositories;
|
|
|
|
using Bit.App.Services;
|
|
|
|
using Bit.iOS.Core.Services;
|
|
|
|
using Foundation;
|
|
|
|
using Microsoft.Practices.Unity;
|
|
|
|
using UIKit;
|
|
|
|
using XLabs.Ioc;
|
|
|
|
using XLabs.Ioc.Unity;
|
|
|
|
using Bit.iOS.Core;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
using Bit.iOS.Extension.Models;
|
|
|
|
using MobileCoreServices;
|
2016-06-25 08:58:42 +03:00
|
|
|
using Plugin.Settings.Abstractions;
|
2016-07-03 06:53:45 +03:00
|
|
|
using Plugin.Connectivity;
|
2016-07-09 20:11:18 +03:00
|
|
|
using Plugin.Fingerprint;
|
2016-07-22 04:33:27 +03:00
|
|
|
using Bit.iOS.Core.Utilities;
|
|
|
|
using Bit.App.Resources;
|
2016-06-05 00:04:49 +03:00
|
|
|
|
|
|
|
namespace Bit.iOS.Extension
|
|
|
|
{
|
|
|
|
public partial class LoadingViewController : UIViewController
|
|
|
|
{
|
|
|
|
private Context _context = new Context();
|
2016-07-23 00:14:57 +03:00
|
|
|
private bool _setupHockeyApp = false;
|
2016-07-26 04:32:15 +03:00
|
|
|
private readonly JsonSerializerSettings _jsonSettings =
|
|
|
|
new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore };
|
2016-06-05 00:04:49 +03:00
|
|
|
|
|
|
|
public LoadingViewController(IntPtr handle) : base(handle)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void ViewDidLoad()
|
|
|
|
{
|
|
|
|
base.ViewDidLoad();
|
2016-07-09 08:07:02 +03:00
|
|
|
View.BackgroundColor = new UIColor(red: 0.94f, green: 0.94f, blue: 0.96f, alpha: 1.0f);
|
2016-06-05 00:04:49 +03:00
|
|
|
_context.ExtContext = ExtensionContext;
|
|
|
|
|
2016-07-24 06:50:08 +03:00
|
|
|
var descriptor = UIFontDescriptor.PreferredBody;
|
|
|
|
DecryptingLabel.Font = UIFont.FromDescriptor(descriptor, descriptor.PointSize);
|
|
|
|
DecryptingLabel.TextColor = new UIColor(red: 0.47f, green: 0.47f, blue: 0.47f, alpha: 1.0f);
|
|
|
|
|
2016-07-23 00:55:11 +03:00
|
|
|
if(!Resolver.IsSet)
|
|
|
|
{
|
|
|
|
SetIoc();
|
|
|
|
}
|
|
|
|
|
2016-07-23 00:14:57 +03:00
|
|
|
if(!_setupHockeyApp)
|
|
|
|
{
|
2016-07-23 00:55:11 +03:00
|
|
|
var crashManagerDelegate = new HockeyAppCrashManagerDelegate(Resolver.Resolve<IAppIdService>());
|
2016-07-23 00:14:57 +03:00
|
|
|
var manager = HockeyApp.iOS.BITHockeyManager.SharedHockeyManager;
|
2016-07-23 05:56:45 +03:00
|
|
|
manager.Configure("51f96ae568ba45f699a18ad9f63046c3", crashManagerDelegate);
|
|
|
|
manager.CrashManager.CrashManagerStatus = HockeyApp.iOS.BITCrashManagerStatus.AutoSend;
|
2016-07-23 00:14:57 +03:00
|
|
|
manager.StartManager();
|
|
|
|
manager.Authenticator.AuthenticateInstallation();
|
|
|
|
_setupHockeyApp = true;
|
|
|
|
}
|
|
|
|
|
2016-06-05 00:04:49 +03:00
|
|
|
foreach(var item in ExtensionContext.InputItems)
|
|
|
|
{
|
|
|
|
var processed = false;
|
|
|
|
foreach(var itemProvider in item.Attachments)
|
|
|
|
{
|
|
|
|
if(ProcessWebUrlProvider(itemProvider)
|
|
|
|
|| ProcessFindLoginProvider(itemProvider)
|
|
|
|
|| ProcessFindLoginBrowserProvider(itemProvider, Constants.UTTypeAppExtensionFillBrowserAction)
|
|
|
|
|| ProcessFindLoginBrowserProvider(itemProvider, Constants.UTTypeAppExtensionFillWebViewAction)
|
|
|
|
|| ProcessSaveLoginProvider(itemProvider)
|
|
|
|
|| ProcessChangePasswordProvider(itemProvider))
|
|
|
|
{
|
|
|
|
processed = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(processed)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-06-25 02:24:00 +03:00
|
|
|
}
|
2016-06-05 00:04:49 +03:00
|
|
|
|
2016-06-25 02:24:00 +03:00
|
|
|
public override void ViewDidAppear(bool animated)
|
|
|
|
{
|
|
|
|
base.ViewDidAppear(animated);
|
2016-07-22 02:02:04 +03:00
|
|
|
|
2016-07-22 04:33:27 +03:00
|
|
|
var authService = Resolver.Resolve<IAuthService>();
|
|
|
|
if(!authService.IsAuthenticated)
|
|
|
|
{
|
|
|
|
var alert = Dialogs.CreateAlert(null, "You must log into the main bitwarden app before you can use the extension.", AppResources.Ok, (a) =>
|
|
|
|
{
|
2016-07-26 04:32:15 +03:00
|
|
|
CompleteRequest(null);
|
2016-07-22 04:33:27 +03:00
|
|
|
});
|
|
|
|
PresentViewController(alert, true, null);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-07-22 02:02:04 +03:00
|
|
|
var lockService = Resolver.Resolve<ILockService>();
|
|
|
|
var lockType = lockService.GetLockType(false);
|
|
|
|
switch(lockType)
|
|
|
|
{
|
|
|
|
case App.Enums.LockType.Fingerprint:
|
|
|
|
PerformSegue("lockFingerprintSegue", this);
|
|
|
|
break;
|
|
|
|
case App.Enums.LockType.PIN:
|
|
|
|
PerformSegue("lockPinSegue", this);
|
|
|
|
break;
|
|
|
|
case App.Enums.LockType.Password:
|
|
|
|
PerformSegue("lockPasswordSegue", this);
|
|
|
|
break;
|
|
|
|
default:
|
2016-07-26 04:32:15 +03:00
|
|
|
if(_context.ProviderType == Constants.UTTypeAppExtensionSaveLoginAction)
|
|
|
|
{
|
|
|
|
PerformSegue("newSiteSegue", this);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PerformSegue("siteListSegue", this);
|
|
|
|
}
|
2016-07-22 02:02:04 +03:00
|
|
|
break;
|
|
|
|
}
|
2016-06-05 00:04:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void PrepareForSegue(UIStoryboardSegue segue, NSObject sender)
|
|
|
|
{
|
|
|
|
var navController = segue.DestinationViewController as UINavigationController;
|
|
|
|
if(navController != null)
|
|
|
|
{
|
2016-07-22 02:02:04 +03:00
|
|
|
var listSiteController = navController.TopViewController as SiteListViewController;
|
|
|
|
var addSiteController = navController.TopViewController as SiteAddViewController;
|
|
|
|
var fingerprintViewController = navController.TopViewController as LockFingerprintViewController;
|
|
|
|
var pinViewController = navController.TopViewController as LockPinViewController;
|
|
|
|
var passwordViewController = navController.TopViewController as LockPasswordViewController;
|
|
|
|
|
|
|
|
if(listSiteController != null)
|
|
|
|
{
|
|
|
|
listSiteController.Context = _context;
|
2016-07-26 04:32:15 +03:00
|
|
|
listSiteController.LoadingController = this;
|
2016-07-22 02:02:04 +03:00
|
|
|
}
|
|
|
|
else if(addSiteController != null)
|
2016-06-05 00:04:49 +03:00
|
|
|
{
|
2016-07-22 02:02:04 +03:00
|
|
|
addSiteController.Context = _context;
|
2016-07-26 04:32:15 +03:00
|
|
|
addSiteController.LoadingController = this;
|
2016-07-22 02:02:04 +03:00
|
|
|
}
|
|
|
|
else if(fingerprintViewController != null)
|
|
|
|
{
|
|
|
|
fingerprintViewController.Context = _context;
|
2016-07-26 04:32:15 +03:00
|
|
|
fingerprintViewController.LoadingController = this;
|
2016-07-22 02:02:04 +03:00
|
|
|
}
|
|
|
|
else if(pinViewController != null)
|
|
|
|
{
|
|
|
|
pinViewController.Context = _context;
|
2016-07-26 04:32:15 +03:00
|
|
|
pinViewController.LoadingController = this;
|
2016-07-22 02:02:04 +03:00
|
|
|
}
|
|
|
|
else if(passwordViewController != null)
|
|
|
|
{
|
|
|
|
passwordViewController.Context = _context;
|
2016-07-26 04:32:15 +03:00
|
|
|
passwordViewController.LoadingController = this;
|
2016-06-05 00:04:49 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-22 02:02:04 +03:00
|
|
|
public void DismissLockAndContinue()
|
|
|
|
{
|
2016-07-22 03:59:55 +03:00
|
|
|
Debug.WriteLine("BW Log, Dismissing lock controller.");
|
|
|
|
DismissViewController(false, () =>
|
2016-07-22 02:02:04 +03:00
|
|
|
{
|
2016-07-26 06:40:25 +03:00
|
|
|
Debug.WriteLine("BW Log, Segue to site add or list.");
|
|
|
|
if(_context.ProviderType == Constants.UTTypeAppExtensionSaveLoginAction)
|
|
|
|
{
|
|
|
|
PerformSegue("newSiteSegue", this);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PerformSegue("siteListSegue", this);
|
|
|
|
}
|
2016-07-22 02:02:04 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-07-26 04:32:15 +03:00
|
|
|
public void CompleteUsernamePasswordRequest(string username, string password)
|
|
|
|
{
|
|
|
|
NSDictionary itemData = null;
|
|
|
|
if(_context.ProviderType == UTType.PropertyList)
|
|
|
|
{
|
|
|
|
var fillScript = new FillScript(_context.Details, username, password);
|
|
|
|
var scriptJson = JsonConvert.SerializeObject(fillScript, _jsonSettings);
|
|
|
|
var scriptDict = new NSDictionary(Constants.AppExtensionWebViewPageFillScript, scriptJson);
|
|
|
|
itemData = new NSDictionary(NSJavaScriptExtension.FinalizeArgumentKey, scriptDict);
|
|
|
|
}
|
|
|
|
else if(_context.ProviderType == Constants.UTTypeAppExtensionFindLoginAction)
|
|
|
|
{
|
|
|
|
itemData = new NSDictionary(
|
|
|
|
Constants.AppExtensionUsernameKey, username,
|
|
|
|
Constants.AppExtensionPasswordKey, password);
|
|
|
|
}
|
|
|
|
else if(_context.ProviderType == Constants.UTTypeAppExtensionFillBrowserAction
|
|
|
|
|| _context.ProviderType == Constants.UTTypeAppExtensionFillWebViewAction)
|
|
|
|
{
|
|
|
|
var fillScript = new FillScript(_context.Details, username, password);
|
|
|
|
var scriptJson = JsonConvert.SerializeObject(fillScript, _jsonSettings);
|
|
|
|
itemData = new NSDictionary(Constants.AppExtensionWebViewPageFillScript, scriptJson);
|
|
|
|
}
|
|
|
|
else if(_context.ProviderType == Constants.UTTypeAppExtensionSaveLoginAction)
|
|
|
|
{
|
|
|
|
itemData = new NSDictionary(
|
|
|
|
Constants.AppExtensionUsernameKey, username,
|
|
|
|
Constants.AppExtensionPasswordKey, password);
|
|
|
|
}
|
|
|
|
else if(_context.ProviderType == Constants.UTTypeAppExtensionChangePasswordAction)
|
|
|
|
{
|
|
|
|
itemData = new NSDictionary(
|
|
|
|
Constants.AppExtensionPasswordKey, string.Empty,
|
|
|
|
Constants.AppExtensionOldPasswordKey, password);
|
|
|
|
}
|
|
|
|
|
|
|
|
CompleteRequest(itemData);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void CompleteRequest(NSDictionary itemData)
|
|
|
|
{
|
|
|
|
Debug.WriteLine("BW LOG, itemData: " + itemData);
|
|
|
|
|
|
|
|
var resultsProvider = new NSItemProvider(itemData, UTType.PropertyList);
|
|
|
|
var resultsItem = new NSExtensionItem { Attachments = new NSItemProvider[] { resultsProvider } };
|
|
|
|
var returningItems = new NSExtensionItem[] { resultsItem };
|
|
|
|
|
|
|
|
ExtensionContext.CompleteRequest(returningItems, null);
|
|
|
|
}
|
|
|
|
|
2016-06-05 00:04:49 +03:00
|
|
|
private void SetIoc()
|
|
|
|
{
|
|
|
|
var container = new UnityContainer();
|
|
|
|
|
|
|
|
container
|
|
|
|
// Services
|
|
|
|
.RegisterType<IDatabaseService, DatabaseService>(new ContainerControlledLifetimeManager())
|
|
|
|
.RegisterType<ISqlService, SqlService>(new ContainerControlledLifetimeManager())
|
2016-06-25 08:58:42 +03:00
|
|
|
.RegisterType<ISecureStorageService, KeyChainStorageService>(new ContainerControlledLifetimeManager())
|
2016-06-05 00:04:49 +03:00
|
|
|
.RegisterType<ICryptoService, CryptoService>(new ContainerControlledLifetimeManager())
|
|
|
|
.RegisterType<IAuthService, AuthService>(new ContainerControlledLifetimeManager())
|
|
|
|
.RegisterType<IFolderService, FolderService>(new ContainerControlledLifetimeManager())
|
|
|
|
.RegisterType<ISiteService, SiteService>(new ContainerControlledLifetimeManager())
|
|
|
|
.RegisterType<ISyncService, SyncService>(new ContainerControlledLifetimeManager())
|
2016-07-02 09:01:47 +03:00
|
|
|
.RegisterType<IPasswordGenerationService, PasswordGenerationService>(new ContainerControlledLifetimeManager())
|
2016-07-09 20:11:18 +03:00
|
|
|
.RegisterType<IAppIdService, AppIdService>(new ContainerControlledLifetimeManager())
|
2016-07-20 06:29:32 +03:00
|
|
|
.RegisterType<ILockService, LockService>(new ContainerControlledLifetimeManager())
|
2016-06-05 00:04:49 +03:00
|
|
|
// Repositories
|
|
|
|
.RegisterType<IFolderRepository, FolderRepository>(new ContainerControlledLifetimeManager())
|
|
|
|
.RegisterType<IFolderApiRepository, FolderApiRepository>(new ContainerControlledLifetimeManager())
|
|
|
|
.RegisterType<ISiteRepository, SiteRepository>(new ContainerControlledLifetimeManager())
|
|
|
|
.RegisterType<ISiteApiRepository, SiteApiRepository>(new ContainerControlledLifetimeManager())
|
2016-07-03 06:53:45 +03:00
|
|
|
.RegisterType<IAuthApiRepository, AuthApiRepository>(new ContainerControlledLifetimeManager())
|
2016-07-02 09:01:47 +03:00
|
|
|
// Other
|
2016-07-09 20:11:18 +03:00
|
|
|
.RegisterInstance(CrossConnectivity.Current, new ContainerControlledLifetimeManager())
|
|
|
|
.RegisterInstance(CrossFingerprint.Current, new ContainerControlledLifetimeManager());
|
2016-06-05 00:04:49 +03:00
|
|
|
|
2016-06-25 08:58:42 +03:00
|
|
|
ISettings settings = new Settings("group.com.8bit.bitwarden");
|
|
|
|
container.RegisterInstance(settings, new ContainerControlledLifetimeManager());
|
|
|
|
|
2016-06-05 00:04:49 +03:00
|
|
|
Resolver.SetResolver(new UnityResolver(container));
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool ProcessItemProvider(NSItemProvider itemProvider, string type, Action<NSDictionary> action)
|
|
|
|
{
|
|
|
|
if(!itemProvider.HasItemConformingTo(type))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
itemProvider.LoadItem(type, null, (NSObject list, NSError error) =>
|
|
|
|
{
|
|
|
|
if(list == null)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_context.ProviderType = type;
|
|
|
|
var dict = list as NSDictionary;
|
|
|
|
action(dict);
|
|
|
|
|
|
|
|
Debug.WriteLine("BW LOG, ProviderType: " + _context.ProviderType);
|
|
|
|
Debug.WriteLine("BW LOG, Url: " + _context.Url);
|
|
|
|
Debug.WriteLine("BW LOG, Title: " + _context.SiteTitle);
|
|
|
|
Debug.WriteLine("BW LOG, Username: " + _context.Username);
|
|
|
|
Debug.WriteLine("BW LOG, Password: " + _context.Password);
|
|
|
|
Debug.WriteLine("BW LOG, Old Password: " + _context.OldPassword);
|
|
|
|
Debug.WriteLine("BW LOG, Notes: " + _context.Notes);
|
|
|
|
Debug.WriteLine("BW LOG, Details: " + _context.Details);
|
|
|
|
|
|
|
|
if(_context.PasswordOptions != null)
|
|
|
|
{
|
|
|
|
Debug.WriteLine("BW LOG, PasswordOptions Min Length: " + _context.PasswordOptions.MinLength);
|
|
|
|
Debug.WriteLine("BW LOG, PasswordOptions Max Length: " + _context.PasswordOptions.MaxLength);
|
|
|
|
Debug.WriteLine("BW LOG, PasswordOptions Require Digits: " + _context.PasswordOptions.RequireDigits);
|
|
|
|
Debug.WriteLine("BW LOG, PasswordOptions Require Symbols: " + _context.PasswordOptions.RequireSymbols);
|
|
|
|
Debug.WriteLine("BW LOG, PasswordOptions Forbidden Chars: " + _context.PasswordOptions.ForbiddenCharacters);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool ProcessWebUrlProvider(NSItemProvider itemProvider)
|
|
|
|
{
|
|
|
|
return ProcessItemProvider(itemProvider, UTType.PropertyList, (dict) =>
|
|
|
|
{
|
|
|
|
var result = dict[NSJavaScriptExtension.PreprocessingResultsKey];
|
|
|
|
if(result == null)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_context.Url = new Uri(result.ValueForKey(new NSString(Constants.AppExtensionUrlStringKey)) as NSString);
|
|
|
|
var jsonStr = result.ValueForKey(new NSString(Constants.AppExtensionWebViewPageDetails)) as NSString;
|
|
|
|
_context.Details = DeserializeString<PageDetails>(jsonStr);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool ProcessFindLoginProvider(NSItemProvider itemProvider)
|
|
|
|
{
|
|
|
|
return ProcessItemProvider(itemProvider, Constants.UTTypeAppExtensionFindLoginAction, (dict) =>
|
|
|
|
{
|
|
|
|
var version = dict[Constants.AppExtensionVersionNumberKey] as NSNumber;
|
|
|
|
var url = dict[Constants.AppExtensionUrlStringKey] as NSString;
|
|
|
|
|
|
|
|
if(url != null)
|
|
|
|
{
|
|
|
|
_context.Url = new Uri(url);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool ProcessFindLoginBrowserProvider(NSItemProvider itemProvider, string action)
|
|
|
|
{
|
|
|
|
return ProcessItemProvider(itemProvider, action, (dict) =>
|
|
|
|
{
|
|
|
|
var version = dict[Constants.AppExtensionVersionNumberKey] as NSNumber;
|
|
|
|
var url = dict[Constants.AppExtensionUrlStringKey] as NSString;
|
|
|
|
if(url != null)
|
|
|
|
{
|
|
|
|
_context.Url = new Uri(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
_context.Details = DeserializeDictionary<PageDetails>(dict[Constants.AppExtensionWebViewPageDetails] as NSDictionary);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool ProcessSaveLoginProvider(NSItemProvider itemProvider)
|
|
|
|
{
|
|
|
|
return ProcessItemProvider(itemProvider, Constants.UTTypeAppExtensionSaveLoginAction, (dict) =>
|
|
|
|
{
|
|
|
|
var version = dict[Constants.AppExtensionVersionNumberKey] as NSNumber;
|
|
|
|
var url = dict[Constants.AppExtensionUrlStringKey] as NSString;
|
|
|
|
var title = dict[Constants.AppExtensionTitleKey] as NSString;
|
|
|
|
var sectionTitle = dict[Constants.AppExtensionSectionTitleKey] as NSString;
|
|
|
|
var username = dict[Constants.AppExtensionUsernameKey] as NSString;
|
|
|
|
var password = dict[Constants.AppExtensionPasswordKey] as NSString;
|
|
|
|
var notes = dict[Constants.AppExtensionNotesKey] as NSString;
|
|
|
|
var fields = dict[Constants.AppExtensionFieldsKey] as NSDictionary;
|
|
|
|
|
|
|
|
if(url != null)
|
|
|
|
{
|
|
|
|
_context.Url = new Uri(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
_context.Url = new Uri(url);
|
|
|
|
_context.SiteTitle = title;
|
|
|
|
_context.Username = username;
|
|
|
|
_context.Password = password;
|
|
|
|
_context.Notes = notes;
|
|
|
|
_context.PasswordOptions = DeserializeDictionary<PasswordGenerationOptions>(dict[Constants.AppExtensionPasswordGeneratorOptionsKey] as NSDictionary);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool ProcessChangePasswordProvider(NSItemProvider itemProvider)
|
|
|
|
{
|
|
|
|
return ProcessItemProvider(itemProvider, Constants.UTTypeAppExtensionChangePasswordAction, (dict) =>
|
|
|
|
{
|
|
|
|
var version = dict[Constants.AppExtensionVersionNumberKey] as NSNumber;
|
|
|
|
var url = dict[Constants.AppExtensionUrlStringKey] as NSString;
|
|
|
|
var title = dict[Constants.AppExtensionTitleKey] as NSString;
|
|
|
|
var sectionTitle = dict[Constants.AppExtensionSectionTitleKey] as NSString;
|
|
|
|
var username = dict[Constants.AppExtensionUsernameKey] as NSString;
|
|
|
|
var password = dict[Constants.AppExtensionPasswordKey] as NSString;
|
|
|
|
var oldPassword = dict[Constants.AppExtensionOldPasswordKey] as NSString;
|
|
|
|
var notes = dict[Constants.AppExtensionNotesKey] as NSString;
|
|
|
|
var fields = dict[Constants.AppExtensionFieldsKey] as NSDictionary;
|
|
|
|
|
|
|
|
if(url != null)
|
|
|
|
{
|
|
|
|
_context.Url = new Uri(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
_context.SiteTitle = title;
|
|
|
|
_context.Username = username;
|
|
|
|
_context.Password = password;
|
|
|
|
_context.OldPassword = oldPassword;
|
|
|
|
_context.Notes = notes;
|
|
|
|
_context.PasswordOptions = DeserializeDictionary<PasswordGenerationOptions>(dict[Constants.AppExtensionPasswordGeneratorOptionsKey] as NSDictionary);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private T DeserializeDictionary<T>(NSDictionary dict)
|
|
|
|
{
|
|
|
|
if(dict != null)
|
|
|
|
{
|
|
|
|
NSError jsonError;
|
|
|
|
var jsonData = NSJsonSerialization.Serialize(dict, NSJsonWritingOptions.PrettyPrinted, out jsonError);
|
|
|
|
if(jsonData != null)
|
|
|
|
{
|
|
|
|
var jsonString = new NSString(jsonData, NSStringEncoding.UTF8);
|
|
|
|
return DeserializeString<T>(jsonString);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return default(T);
|
|
|
|
}
|
|
|
|
|
|
|
|
private T DeserializeString<T>(NSString jsonString)
|
|
|
|
{
|
|
|
|
if(jsonString != null)
|
|
|
|
{
|
|
|
|
var convertedObject = JsonConvert.DeserializeObject<T>(jsonString.ToString());
|
|
|
|
return convertedObject;
|
|
|
|
}
|
|
|
|
|
|
|
|
return default(T);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|