using AuthenticationServices; using Bit.App.Resources; using Bit.Core.Abstractions; using Bit.Core.Utilities; using Bit.iOS.Autofill.Models; using Bit.iOS.Core.Utilities; using Foundation; using System; using System.Threading.Tasks; using UIKit; namespace Bit.iOS.Autofill { public partial class CredentialProviderViewController : ASCredentialProviderViewController { private Context _context; private bool _initedHockeyApp; public CredentialProviderViewController(IntPtr handle) : base(handle) { } public override void ViewDidLoad() { InitApp(); base.ViewDidLoad(); Logo.Image = new UIImage(ThemeHelpers.LightTheme ? "logo.png" : "logo_white.png"); View.BackgroundColor = ThemeHelpers.SplashBackgroundColor; _context = new Context { ExtContext = ExtensionContext }; } public override void PrepareCredentialList(ASCredentialServiceIdentifier[] serviceIdentifiers) { _context.ServiceIdentifiers = serviceIdentifiers; if(serviceIdentifiers.Length > 0) { var uri = serviceIdentifiers[0].Identifier; if(serviceIdentifiers[0].Type == ASCredentialServiceIdentifierType.Domain) { uri = string.Concat("https://", uri); } _context.UrlString = uri; } if(!CheckAuthed()) { return; } if(IsLocked()) { PerformSegue("lockPasswordSegue", this); } else { if(_context.ServiceIdentifiers == null || _context.ServiceIdentifiers.Length == 0) { PerformSegue("loginSearchSegue", this); } else { PerformSegue("loginListSegue", this); } } } public override void ProvideCredentialWithoutUserInteraction(ASPasswordCredentialIdentity credentialIdentity) { if(!IsAuthed() || IsLocked()) { var err = new NSError(new NSString("ASExtensionErrorDomain"), Convert.ToInt32(ASExtensionErrorCode.UserInteractionRequired), null); ExtensionContext.CancelRequest(err); return; } _context.CredentialIdentity = credentialIdentity; ProvideCredentialAsync().GetAwaiter().GetResult(); } public override void PrepareInterfaceToProvideCredential(ASPasswordCredentialIdentity credentialIdentity) { if(!CheckAuthed()) { return; } _context.CredentialIdentity = credentialIdentity; CheckLock(async () => await ProvideCredentialAsync()); } public override void PrepareInterfaceForExtensionConfiguration() { _context.Configuring = true; if(!CheckAuthed()) { return; } CheckLock(() => PerformSegue("setupSegue", this)); } public void CompleteRequest(string username = null, string password = null, string totp = null) { ServiceContainer.Reset(); if((_context?.Configuring ?? true) && string.IsNullOrWhiteSpace(password)) { ExtensionContext?.CompleteExtensionConfigurationRequest(); return; } if(_context == null || string.IsNullOrWhiteSpace(username) || string.IsNullOrWhiteSpace(password)) { var err = new NSError(new NSString("ASExtensionErrorDomain"), Convert.ToInt32(ASExtensionErrorCode.UserCanceled), null); NSRunLoop.Main.BeginInvokeOnMainThread(() => ExtensionContext?.CancelRequest(err)); return; } if(!string.IsNullOrWhiteSpace(totp)) { UIPasteboard.General.String = totp; } var cred = new ASPasswordCredential(username, password); NSRunLoop.Main.BeginInvokeOnMainThread(() => ExtensionContext?.CompleteRequest(cred, null)); } public override void PrepareForSegue(UIStoryboardSegue segue, NSObject sender) { if(segue.DestinationViewController is UINavigationController navController) { if(navController.TopViewController is LoginListViewController listLoginController) { listLoginController.Context = _context; listLoginController.CPViewController = this; } else if(navController.TopViewController is LoginSearchViewController listSearchController) { listSearchController.Context = _context; listSearchController.CPViewController = this; } else if(navController.TopViewController is LockPasswordViewController passwordViewController) { passwordViewController.CPViewController = this; } else if(navController.TopViewController is SetupViewController setupViewController) { setupViewController.CPViewController = this; } } } public void DismissLockAndContinue() { DismissViewController(false, async () => { if(_context.CredentialIdentity != null) { await ProvideCredentialAsync(); return; } if(_context.Configuring) { PerformSegue("setupSegue", this); return; } if(_context.ServiceIdentifiers == null || _context.ServiceIdentifiers.Length == 0) { PerformSegue("loginSearchSegue", this); } else { PerformSegue("loginListSegue", this); } }); } private async Task ProvideCredentialAsync() { var cipherService = ServiceContainer.Resolve("cipherService"); var cipher = await cipherService.GetAsync(_context.CredentialIdentity.RecordIdentifier); if(cipher == null || cipher.Type != Bit.Core.Enums.CipherType.Login) { var err = new NSError(new NSString("ASExtensionErrorDomain"), Convert.ToInt32(ASExtensionErrorCode.CredentialIdentityNotFound), null); ExtensionContext.CancelRequest(err); return; } var storageService = ServiceContainer.Resolve("storageService"); var decCipher = await cipher.DecryptAsync(); string totpCode = null; var disableTotpCopy = await storageService.GetAsync(Bit.Core.Constants.DisableAutoTotpCopyKey); if(!disableTotpCopy.GetValueOrDefault(false)) { var userService = ServiceContainer.Resolve("userService"); var canAccessPremiumAsync = await userService.CanAccessPremiumAsync(); if(!string.IsNullOrWhiteSpace(decCipher.Login.Totp) && (canAccessPremiumAsync || cipher.OrganizationUseTotp)) { var totpService = ServiceContainer.Resolve("totpService"); totpCode = await totpService.GetCodeAsync(decCipher.Login.Totp); } } CompleteRequest(decCipher.Login.Username, decCipher.Login.Password, totpCode); } private void CheckLock(Action notLockedAction) { if(IsLocked()) { PerformSegue("lockPasswordSegue", this); } else { notLockedAction(); } } private bool CheckAuthed() { if(!IsAuthed()) { var alert = Dialogs.CreateAlert(null, AppResources.MustLogInMainAppAutofill, AppResources.Ok, (a) => { CompleteRequest(); }); PresentViewController(alert, true, null); return false; } return true; } private bool IsLocked() { var lockService = ServiceContainer.Resolve("lockService"); return lockService.IsLockedAsync().GetAwaiter().GetResult(); } private bool IsAuthed() { var userService = ServiceContainer.Resolve("userService"); return userService.IsAuthenticatedAsync().GetAwaiter().GetResult(); } private void InitApp() { if(ServiceContainer.RegisteredServices.Count > 0) { ServiceContainer.Reset(); } iOSCoreHelpers.RegisterLocalServices(); ServiceContainer.Init(); if(!_initedHockeyApp) { iOSCoreHelpers.RegisterHockeyApp(); _initedHockeyApp = true; } iOSCoreHelpers.Bootstrap(); iOSCoreHelpers.AppearanceAdjustments(); } } }