2
0
MasterPassword/platform-darwin/Source/iOS/MPEmergencyViewController.m

177 lines
4.9 KiB
Mathematica
Raw Normal View History

/**
* 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"
2014-04-13 17:04:18 +00:00
@implementation MPEmergencyViewController {
MPKey *_key;
NSOperationQueue *_emergencyKeyQueue;
NSOperationQueue *_emergencyPasswordQueue;
}
- (void)viewDidLoad {
[super viewDidLoad];
2014-04-13 17:04:18 +00:00
[_emergencyKeyQueue = [NSOperationQueue new] setMaxConcurrentOperationCount:1];
[_emergencyPasswordQueue = [NSOperationQueue new] setMaxConcurrentOperationCount:1];
self.view.backgroundColor = [UIColor clearColor];
2014-04-13 17:04:18 +00:00
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];
2014-04-13 17:04:18 +00:00
}
- (void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
PearlRemoveNotificationObservers();
PearlRemoveNotificationObserversFrom( self.scrollView );
2014-04-13 17:04:18 +00:00
[self reset];
}
- (UIStatusBarStyle)preferredStatusBarStyle {
return UIStatusBarStyleLightContent;
}
#pragma mark - UITextFieldDelegate
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
[textField resignFirstResponder];
return YES;
}
2014-04-13 17:04:18 +00:00
#pragma mark - Actions
- (IBAction)controlChanged:(UIControl *)control {
if (control == self.fullNameField || control == self.masterPasswordField)
2014-04-13 17:04:18 +00:00
[self updateKey];
else
[self updatePassword];
}
2014-04-13 17:04:18 +00:00
- (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;
2014-04-13 17:04:18 +00:00
NSString *masterPassword = self.masterPasswordField.text;
2014-04-13 17:04:18 +00:00
self.passwordLabel.text = nil;
[self.activity startAnimating];
[_emergencyKeyQueue cancelAllOperations];
[_emergencyKeyQueue addOperationWithBlock:^{
if ([masterPassword length] && [fullName length])
_key = [[MPKey alloc] initForFullName:fullName withMasterPassword:masterPassword];
2014-04-13 17:04:18 +00:00
else
_key = nil;
PearlMainQueue( ^{
[self updatePassword];
} );
}];
}
- (void)updatePassword {
NSString *siteName = self.siteField.text;
2014-09-21 14:39:09 +00:00
MPSiteType siteType = [self siteType];
2014-04-13 17:04:18 +00:00
NSUInteger siteCounter = (NSUInteger)self.counterStepper.value;
2014-04-25 02:00:38 +00:00
self.counterLabel.text = strf( @"%lu", (unsigned long)siteCounter );
2014-04-13 17:04:18 +00:00
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];
2014-04-13 17:04:18 +00:00
PearlMainQueue( ^{
[self.activity stopAnimating];
self.passwordLabel.text = sitePassword;
} );
}];
}
2014-09-21 14:39:09 +00:00
- (enum MPSiteType)siteType {
2014-04-13 17:04:18 +00:00
switch (self.typeControl.selectedSegmentIndex) {
case 0:
2014-09-21 14:39:09 +00:00
return MPSiteTypeGeneratedMaximum;
2014-04-13 17:04:18 +00:00
case 1:
2014-09-21 14:39:09 +00:00
return MPSiteTypeGeneratedLong;
2014-04-13 17:04:18 +00:00
case 2:
2014-09-21 14:39:09 +00:00
return MPSiteTypeGeneratedMedium;
2014-04-13 17:04:18 +00:00
case 3:
2014-09-21 14:39:09 +00:00
return MPSiteTypeGeneratedBasic;
2014-04-13 17:04:18 +00:00
case 4:
2014-09-21 14:39:09 +00:00
return MPSiteTypeGeneratedShort;
2014-04-13 17:04:18 +00:00
case 5:
2014-09-21 14:39:09 +00:00
return MPSiteTypeGeneratedPIN;
2014-04-13 17:04:18 +00:00
default:
Throw( @"Unsupported type index: %ld", (long)self.typeControl.selectedSegmentIndex );
2014-04-13 17:04:18 +00:00
}
}
- (void)reset {
self.fullNameField.text = nil;
2014-04-13 17:04:18 +00:00
self.masterPasswordField.text = nil;
self.siteField.text = nil;
self.counterStepper.value = 1;
self.typeControl.selectedSegmentIndex = 1;
[self updateKey];
}
@end