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

191 lines
5.9 KiB
Mathematica
Raw Normal View History

2017-04-05 20:56:22 +00:00
//==============================================================================
// This file is part of Master Password.
// Copyright (c) 2011-2017, Maarten Billemont.
//
2017-04-05 20:56:22 +00:00
// Master Password is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
2017-04-05 20:56:22 +00:00
// Master Password is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
2017-04-05 20:56:22 +00:00
// You can find a copy of the GNU General Public License in the
// LICENSE file. Alternatively, see <http://www.gnu.org/licenses/>.
//==============================================================================
#import "MPEmergencyViewController.h"
#import "MPEntities.h"
2017-05-07 22:36:01 +00:00
@interface MPEmergencyViewController()
@property(nonatomic, strong) MPKey *key;
@property(nonatomic, strong) NSOperationQueue *emergencyKeyQueue;
@property(nonatomic, strong) NSOperationQueue *emergencyPasswordQueue;
@end
@implementation MPEmergencyViewController
- (void)viewDidLoad {
[super viewDidLoad];
2017-05-07 22:36:01 +00:00
[self.emergencyKeyQueue = [NSOperationQueue new] setMaxConcurrentOperationCount:1];
[self.emergencyPasswordQueue = [NSOperationQueue new] setMaxConcurrentOperationCount:1];
2014-04-13 17:04:18 +00:00
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];
}
- (IBAction)copyPassword:(id)sender {
NSString *sitePassword = [self.passwordButton titleForState:UIControlStateNormal];
if (![sitePassword length])
return;
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
if ([pasteboard respondsToSelector:@selector( setItems:options: )])
[pasteboard setItems:@[ @{ UIPasteboardTypeAutomatic: sitePassword } ]
options:@{
UIPasteboardOptionLocalOnly : @NO,
UIPasteboardOptionExpirationDate: [NSDate dateWithTimeIntervalSinceNow:3 * 60]
}];
else
pasteboard.string = sitePassword;
[UIView animateWithDuration:0.3f animations:^{
self.tipContainer.visible = YES;
} completion:^(BOOL finished) {
PearlMainQueueAfter( 3, ^{
[UIView animateWithDuration:0.3f animations:^{
self.tipContainer.visible = NO;
}];
} );
}];
2014-04-13 17:04:18 +00:00
}
#pragma mark - Private
- (void)updateKey {
NSString *fullName = self.fullNameField.text;
2014-04-13 17:04:18 +00:00
NSString *masterPassword = self.masterPasswordField.text;
[self.passwordButton setTitle:nil forState:UIControlStateNormal];
2014-04-13 17:04:18 +00:00
[self.activity startAnimating];
2017-05-07 22:36:01 +00:00
[self.emergencyKeyQueue cancelAllOperations];
[self.emergencyKeyQueue addOperationWithBlock:^{
if ([masterPassword length] && [fullName length])
2017-05-07 22:36:01 +00:00
self.key = [[MPKey alloc] initForFullName:fullName withMasterPassword:masterPassword];
2014-04-13 17:04:18 +00:00
else
2017-05-07 22:36:01 +00:00
self.key = nil;
2014-04-13 17:04:18 +00:00
PearlMainQueue( ^{
[self updatePassword];
} );
}];
}
- (void)updatePassword {
NSString *siteName = self.siteField.text;
MPResultType siteType = [self siteType];
2017-08-13 19:52:08 +00:00
MPCounterValue siteCounter = (MPCounterValue)self.counterStepper.value;
self.counterLabel.text = strf( @"%u", siteCounter );
2014-04-13 17:04:18 +00:00
[self.passwordButton setTitle:nil forState:UIControlStateNormal];
2014-04-13 17:04:18 +00:00
[self.activity startAnimating];
2017-05-07 22:36:01 +00:00
[self.emergencyPasswordQueue cancelAllOperations];
[self.emergencyPasswordQueue addOperationWithBlock:^{
2014-04-13 17:04:18 +00:00
NSString *sitePassword = nil;
2017-05-07 22:36:01 +00:00
if (self.key && [siteName length])
sitePassword = [MPAlgorithmDefault mpwTemplateForSiteNamed:siteName ofType:siteType withCounter:siteCounter
usingKey:self.key];
2014-04-13 17:04:18 +00:00
PearlMainQueue( ^{
[self.activity stopAnimating];
[self.passwordButton setTitle:sitePassword forState:UIControlStateNormal];
2014-04-13 17:04:18 +00:00
} );
}];
}
- (MPResultType)siteType {
2014-04-13 17:04:18 +00:00
switch (self.typeControl.selectedSegmentIndex) {
case 0:
return MPResultTypeTemplateMaximum;
2014-04-13 17:04:18 +00:00
case 1:
return MPResultTypeTemplateLong;
2014-04-13 17:04:18 +00:00
case 2:
return MPResultTypeTemplateMedium;
2014-04-13 17:04:18 +00:00
case 3:
return MPResultTypeTemplateBasic;
2014-04-13 17:04:18 +00:00
case 4:
return MPResultTypeTemplateShort;
2014-04-13 17:04:18 +00:00
case 5:
return MPResultTypeTemplatePIN;
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