|
|
|
@ -15,8 +15,10 @@
|
|
|
|
|
#import "DJWActionSheet.h"
|
|
|
|
|
#import "TSStorageManager.h"
|
|
|
|
|
#import "TSStorageManager+IdentityKeyStore.h"
|
|
|
|
|
#import "TSStorageManager+SessionStore.h"
|
|
|
|
|
#import "PresentIdentityQRCodeViewController.h"
|
|
|
|
|
#import "ScanIdentityBarcodeViewController.h"
|
|
|
|
|
#import "SignalsNavigationController.h"
|
|
|
|
|
#include "NSData+Base64.h"
|
|
|
|
|
|
|
|
|
|
#import "TSFingerprintGenerator.h"
|
|
|
|
@ -44,9 +46,8 @@
|
|
|
|
|
|
|
|
|
|
- (void)viewWillAppear:(BOOL)animated
|
|
|
|
|
{
|
|
|
|
|
self.contactFingerprintTitleLabel.text = self.thread.name;
|
|
|
|
|
NSData *identityKey = [[TSStorageManager sharedManager] identityKeyForRecipientId:self.thread.contactIdentifier];
|
|
|
|
|
self.contactFingerprintLabel.text = [TSFingerprintGenerator getFingerprintForDisplay:identityKey];
|
|
|
|
|
|
|
|
|
|
[self setHisKeyInformation];
|
|
|
|
|
|
|
|
|
|
NSData *myPublicKey = [[TSStorageManager sharedManager] identityKeyPair].publicKey;
|
|
|
|
|
self.userFingerprintLabel.text = [TSFingerprintGenerator getFingerprintForDisplay:myPublicKey];
|
|
|
|
@ -60,6 +61,12 @@
|
|
|
|
|
[super didReceiveMemoryWarning];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)setHisKeyInformation {
|
|
|
|
|
self.contactFingerprintTitleLabel.text = self.thread.name;
|
|
|
|
|
NSData *identityKey = [[TSStorageManager sharedManager] identityKeyForRecipientId:self.thread.contactIdentifier];
|
|
|
|
|
self.contactFingerprintLabel.text = [TSFingerprintGenerator getFingerprintForDisplay:identityKey];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(NSData*) getMyPublicIdentityKey {
|
|
|
|
|
return [[TSStorageManager sharedManager] identityKeyPair].publicKey;
|
|
|
|
|
}
|
|
|
|
@ -87,7 +94,7 @@
|
|
|
|
|
} completion:nil];
|
|
|
|
|
|
|
|
|
|
_presentationLabel.hidden = YES;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)hideInfo
|
|
|
|
@ -95,7 +102,7 @@
|
|
|
|
|
|
|
|
|
|
_didShowInfo = NO;
|
|
|
|
|
_presentationLabel.hidden = NO;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[UIView animateWithDuration:0.3f delay:0 options:UIViewAnimationOptionCurveEaseIn animations:^(){
|
|
|
|
|
_infoArrowTop.alpha = 0;
|
|
|
|
|
_infoArrowBottom.alpha = 0;
|
|
|
|
@ -110,10 +117,10 @@
|
|
|
|
|
_infoMyFingerprint.hidden = YES;
|
|
|
|
|
_infoTheirFingerprint.hidden = YES;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pragma mark - Action
|
|
|
|
@ -124,7 +131,7 @@
|
|
|
|
|
} completion:^(BOOL succeeded){
|
|
|
|
|
[self dismissViewControllerAnimated:YES completion:nil];
|
|
|
|
|
}];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (IBAction)showInfoAction:(id)sender
|
|
|
|
@ -138,15 +145,25 @@
|
|
|
|
|
|
|
|
|
|
- (IBAction)shredAndDelete:(id)sender
|
|
|
|
|
{
|
|
|
|
|
[DJWActionSheet showInView:self.view withTitle:@"Are you sure wou want to shred all communications with this contact ? This action is irreversible."
|
|
|
|
|
cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@[@"Shred all communications & delete contact"]
|
|
|
|
|
[DJWActionSheet showInView:self.view withTitle:@"Are you sure wou want to shred the following? This action is irreversible."
|
|
|
|
|
cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@[@"Shred all keying material", @"Shred all keying material & communications history"]
|
|
|
|
|
tapBlock:^(DJWActionSheet *actionSheet, NSInteger tappedButtonIndex) {
|
|
|
|
|
if (tappedButtonIndex == actionSheet.cancelButtonIndex) {
|
|
|
|
|
NSLog(@"User Cancelled");
|
|
|
|
|
} else if (tappedButtonIndex == actionSheet.destructiveButtonIndex) {
|
|
|
|
|
NSLog(@"Destructive button tapped");
|
|
|
|
|
}else {
|
|
|
|
|
[self shredAndDelete];
|
|
|
|
|
switch (tappedButtonIndex) {
|
|
|
|
|
case 0:
|
|
|
|
|
[self shredKeyingMaterial];
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
[self shredKeyingMaterial];
|
|
|
|
|
[self shredDiscussionsWithContact];
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}];
|
|
|
|
|
}
|
|
|
|
@ -174,8 +191,18 @@
|
|
|
|
|
|
|
|
|
|
#pragma mark - Shredding & Deleting
|
|
|
|
|
|
|
|
|
|
- (void)shredAndDelete {
|
|
|
|
|
#warning unimplemented: shredAndDelete
|
|
|
|
|
- (void)shredKeyingMaterial {
|
|
|
|
|
[[TSStorageManager sharedManager] removeIdentityKeyForRecipient:self.thread.contactIdentifier];
|
|
|
|
|
[[TSStorageManager sharedManager] deleteAllSessionsForContact:self.thread.contactIdentifier];
|
|
|
|
|
[self setHisKeyInformation];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)shredDiscussionsWithContact {
|
|
|
|
|
[self.thread remove]; // this removes the thread and all it's discussion (YapDatabaseRelationships)
|
|
|
|
|
__block SignalsNavigationController *vc = (SignalsNavigationController*)[self presentingViewController];
|
|
|
|
|
[vc dismissViewControllerAnimated:YES completion:^{
|
|
|
|
|
[vc popToRootViewControllerAnimated:YES];
|
|
|
|
|
}];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|