FRAAccountsTableViewController.m revision 415243fbc81341293a852ff6aa14e9608d08685c
/*
* The contents of this file are subject to the terms of the Common Development and
* Distribution License (the License). You may not use this file except in compliance with the
* License.
*
* You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
* specific language governing permission and limitations under the License.
*
* When distributing Covered Software, include this CDDL Header Notice in each file and include
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
* Header, with the fields enclosed by brackets [] replaced by your own identifying
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2016 ForgeRock AS.
*/
#import "FRAAccountsTableViewController.h"
#import "FRAAccountTableViewCell.h"
#import "FRAAccountTableViewController.h"
#import "FRABlockAlertView.h"
#import "FRAIdentity.h"
#import "FRAIdentityDatabase.h"
#import "FRAIdentityModel.h"
#import "FRAOathMechanism.h"
#import "FRAPushMechanism.h"
@implementation FRAAccountsTableViewController;
#pragma mark -
#pragma mark UIViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.tableView reloadData];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleIdentityDatabaseChanged:) name:FRAIdentityDatabaseChangedNotification object:nil];
}
- (void)viewWillDisappear:(BOOL)animated {
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([segue.identifier isEqualToString:@"showAccountSegue"]) {
FRAAccountTableViewController* controller = (FRAAccountTableViewController*)segue.destinationViewController;
NSArray* selection = [self.tableView indexPathsForSelectedRows];
NSIndexPath* indexPath = [selection objectAtIndex:0];
controller.identity = [self identityAtIndexPath:indexPath];
}
}
#pragma mark -
#pragma mark UITableViewDataSource
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// Present accounts as a flat list not broken down into sections
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [self.identityModel identities].count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"AccountCell";
FRAAccountTableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
FRAIdentity *identity = [self identityAtIndexPath:indexPath];
// cell.image = ... // TODO: Use UIImageView+AFNetworking category provided by AFNetworking
cell.issuer.text = identity.issuer;
cell.accountName.text = identity.accountName;
FRAOathMechanism *oathMechanism = (FRAOathMechanism *)[identity mechanismOfClass:[FRAOathMechanism class]];
FRAPushMechanism *pushMechanism = (FRAPushMechanism *)[identity mechanismOfClass:[FRAPushMechanism class]];
if (oathMechanism && pushMechanism) {
cell.firstMechanismIcon.image = [UIImage imageNamed:@"NotificationIcon"];
cell.notificationsBadge.text = [NSString stringWithFormat:@"%lu", (unsigned long)pushMechanism.notifications.count];
cell.secondMechanismIcon.image = [UIImage imageNamed:@"TokensIcon"];
cell.firstMechanismIcon.hidden = false;
cell.secondMechanismIcon.hidden = false;
} else if (pushMechanism) {
cell.firstMechanismIcon.image = [UIImage imageNamed:@"NotificationIcon"];
cell.notificationsBadge.text = [NSString stringWithFormat:@"%lu", (unsigned long)pushMechanism.notifications.count];
cell.firstMechanismIcon.hidden = false;
cell.secondMechanismIcon.hidden = true;
} else if (oathMechanism) {
cell.firstMechanismIcon.image = [UIImage imageNamed:@"TokensIcon"];
cell.notificationsBadge.text = @"0";
cell.firstMechanismIcon.hidden = false;
cell.secondMechanismIcon.hidden = true;
} else {
cell.notificationsBadge.text = @"0";
cell.firstMechanismIcon.hidden = true;
cell.secondMechanismIcon.hidden = true;
}
return cell;
}
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(nonnull NSIndexPath *)indexPath {
return YES;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
FRAIdentity* identity = [self identityAtIndexPath:indexPath];
FRABlockAlertView* alertView = [[FRABlockAlertView alloc]
initWithTitle:@"Removing this account will NOT turn off 2-step verification"
message:[NSString stringWithFormat:@"This may prevent you from logging into your %@ account.", identity.issuer]
delegate:nil
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Delete", nil];
alertView.callback = ^(NSInteger offset) {
if (offset == 0) {
[self.identityModel removeIdentity:identity];
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}
};
[alertView show];
}
}
#pragma mark -
#pragma mark UITableViewDelegate
- (UITableViewCellEditingStyle)tableView:(UITableView *)aTableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
// Only offer delete option when in edit mode (disables swipe to delete)
if (self.tableView.editing) {
return UITableViewCellEditingStyleDelete;
} else {
return UITableViewCellEditingStyleNone;
}
}
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
// make table cell separator lines full width (normally, they leave a ~10% gap at the left edge)
if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
[cell setSeparatorInset:UIEdgeInsetsZero];
}
if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
[cell setLayoutMargins:UIEdgeInsetsZero];
}
}
#pragma mark -
#pragma mark FRAAccountsTableViewController (private)
- (FRAIdentity *)identityAtIndexPath:(NSIndexPath *)indexPath {
NSArray *sortedIdentities = [[self.identityModel identities] sortedArrayUsingComparator:^NSComparisonResult(FRAIdentity* first, FRAIdentity* second) {
NSComparisonResult comparisonResult = [first.issuer caseInsensitiveCompare:second.issuer];
if (comparisonResult == NSOrderedSame) {
comparisonResult = [first.accountName caseInsensitiveCompare:second.accountName];
}
return comparisonResult;
}];
return [sortedIdentities objectAtIndex:indexPath.row];
}
- (void)handleIdentityDatabaseChanged:(NSNotification *)notification {
[self.tableView reloadData];
}
@end