177 lines
4.9 KiB
Objective-C
177 lines
4.9 KiB
Objective-C
/**
|
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
|
*
|
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
*
|
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
*/
|
|
|
|
//
|
|
// MPCombinedViewController.h
|
|
// MPCombinedViewController
|
|
//
|
|
// Created by lhunath on 2014-03-08.
|
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
|
//
|
|
|
|
#import "MPEmergencyViewController.h"
|
|
#import "MPEntities.h"
|
|
|
|
@implementation MPEmergencyViewController {
|
|
MPKey *_key;
|
|
NSOperationQueue *_emergencyKeyQueue;
|
|
NSOperationQueue *_emergencyPasswordQueue;
|
|
}
|
|
|
|
- (void)viewDidLoad {
|
|
|
|
[super viewDidLoad];
|
|
|
|
[_emergencyKeyQueue = [NSOperationQueue new] setMaxConcurrentOperationCount:1];
|
|
[_emergencyPasswordQueue = [NSOperationQueue new] setMaxConcurrentOperationCount:1];
|
|
|
|
self.view.backgroundColor = [UIColor clearColor];
|
|
self.dialogView.layer.cornerRadius = 5;
|
|
}
|
|
|
|
- (void)viewWillAppear:(BOOL)animated {
|
|
|
|
[super viewWillAppear:animated];
|
|
|
|
[self reset];
|
|
PearlAddNotificationObserver( UIApplicationWillResignActiveNotification, nil, [NSOperationQueue mainQueue],
|
|
^(MPEmergencyViewController *self, NSNotification *note) {
|
|
[self performSegueWithIdentifier:@"unwind-popover" sender:self];
|
|
} );
|
|
|
|
[self.scrollView automaticallyAdjustInsetsForKeyboard];
|
|
}
|
|
|
|
- (void)viewDidDisappear:(BOOL)animated {
|
|
|
|
[super viewDidDisappear:animated];
|
|
|
|
PearlRemoveNotificationObservers();
|
|
PearlRemoveNotificationObserversFrom( self.scrollView );
|
|
[self reset];
|
|
}
|
|
|
|
- (UIStatusBarStyle)preferredStatusBarStyle {
|
|
|
|
return UIStatusBarStyleLightContent;
|
|
}
|
|
|
|
#pragma mark - UITextFieldDelegate
|
|
|
|
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
|
|
|
|
[textField resignFirstResponder];
|
|
return YES;
|
|
}
|
|
|
|
#pragma mark - Actions
|
|
|
|
- (IBAction)controlChanged:(UIControl *)control {
|
|
|
|
if (control == self.fullNameField || control == self.masterPasswordField)
|
|
[self updateKey];
|
|
else
|
|
[self updatePassword];
|
|
}
|
|
|
|
- (IBAction)copyPassword:(UITapGestureRecognizer *)recognizer {
|
|
|
|
if (recognizer.state == UIGestureRecognizerStateEnded) {
|
|
NSString *sitePassword = self.passwordLabel.text;
|
|
if ([sitePassword length]) {
|
|
[UIPasteboard generalPasteboard].string = sitePassword;
|
|
[UIView animateWithDuration:0.3f animations:^{
|
|
self.tipContainer.alpha = 1;
|
|
} completion:^(BOOL finished) {
|
|
if (finished)
|
|
PearlMainQueueAfter( 3, ^{
|
|
self.tipContainer.alpha = 0;
|
|
} );
|
|
}];
|
|
}
|
|
}
|
|
}
|
|
|
|
#pragma mark - Private
|
|
|
|
- (void)updateKey {
|
|
|
|
NSString *fullName = self.fullNameField.text;
|
|
NSString *masterPassword = self.masterPasswordField.text;
|
|
|
|
self.passwordLabel.text = nil;
|
|
[self.activity startAnimating];
|
|
[_emergencyKeyQueue cancelAllOperations];
|
|
[_emergencyKeyQueue addOperationWithBlock:^{
|
|
if ([masterPassword length] && [fullName length])
|
|
_key = [[MPKey alloc] initForFullName:fullName withMasterPassword:masterPassword];
|
|
else
|
|
_key = nil;
|
|
|
|
PearlMainQueue( ^{
|
|
[self updatePassword];
|
|
} );
|
|
}];
|
|
}
|
|
|
|
- (void)updatePassword {
|
|
|
|
NSString *siteName = self.siteField.text;
|
|
MPSiteType siteType = [self siteType];
|
|
NSUInteger siteCounter = (NSUInteger)self.counterStepper.value;
|
|
self.counterLabel.text = strf( @"%lu", (unsigned long)siteCounter );
|
|
|
|
self.passwordLabel.text = nil;
|
|
[self.activity startAnimating];
|
|
[_emergencyPasswordQueue cancelAllOperations];
|
|
[_emergencyPasswordQueue addOperationWithBlock:^{
|
|
NSString *sitePassword = nil;
|
|
if (_key && [siteName length])
|
|
sitePassword = [MPAlgorithmDefault generatePasswordForSiteNamed:siteName ofType:siteType withCounter:siteCounter usingKey:_key];
|
|
|
|
PearlMainQueue( ^{
|
|
[self.activity stopAnimating];
|
|
self.passwordLabel.text = sitePassword;
|
|
} );
|
|
}];
|
|
}
|
|
|
|
- (enum MPSiteType)siteType {
|
|
|
|
switch (self.typeControl.selectedSegmentIndex) {
|
|
case 0:
|
|
return MPSiteTypeGeneratedMaximum;
|
|
case 1:
|
|
return MPSiteTypeGeneratedLong;
|
|
case 2:
|
|
return MPSiteTypeGeneratedMedium;
|
|
case 3:
|
|
return MPSiteTypeGeneratedBasic;
|
|
case 4:
|
|
return MPSiteTypeGeneratedShort;
|
|
case 5:
|
|
return MPSiteTypeGeneratedPIN;
|
|
default:
|
|
Throw( @"Unsupported type index: %ld", (long)self.typeControl.selectedSegmentIndex );
|
|
}
|
|
}
|
|
|
|
- (void)reset {
|
|
|
|
self.fullNameField.text = nil;
|
|
self.masterPasswordField.text = nil;
|
|
self.siteField.text = nil;
|
|
self.counterStepper.value = 1;
|
|
self.typeControl.selectedSegmentIndex = 1;
|
|
[self updateKey];
|
|
}
|
|
|
|
@end
|