forked from mirrors/linphone-iphone
189 lines
7.3 KiB
Objective-C
189 lines
7.3 KiB
Objective-C
/* ContactsTableViewController.m
|
|
*
|
|
* Copyright (C) 2012 Belledonne Comunications, Grenoble, France
|
|
*
|
|
* This program 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 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#import "ContactsTableViewController.h"
|
|
#import "UIContactCell.h"
|
|
#import "LinphoneManager.h"
|
|
#import "PhoneMainView.h"
|
|
|
|
@implementation ContactsTableViewController
|
|
|
|
@synthesize sipFilter;
|
|
|
|
#pragma mark - Lifecycle Functions
|
|
|
|
- (void)initContactsTableViewController {
|
|
addressBookMap = [[OrderedDictionary alloc] init];
|
|
addressBook = ABAddressBookCreate();
|
|
}
|
|
|
|
- (id)init {
|
|
self = [super init];
|
|
if (self) {
|
|
[self initContactsTableViewController];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (id)initWithCoder:(NSCoder *)decoder {
|
|
self = [super initWithCoder:decoder];
|
|
if (self) {
|
|
[self initContactsTableViewController];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)dealloc {
|
|
[super dealloc];
|
|
[addressBookMap removeAllObjects];
|
|
}
|
|
|
|
|
|
#pragma mark - Property Functions
|
|
|
|
- (void)setSipFilter:(BOOL)asipFilter {
|
|
self->sipFilter = asipFilter;
|
|
[[self tableView] reloadData];
|
|
}
|
|
|
|
|
|
#pragma mark -
|
|
|
|
static void sync_toc_address_book (ABAddressBookRef addressBook, CFDictionaryRef info, void *context) {
|
|
ContactsTableViewController* controller = (ContactsTableViewController*)context;
|
|
[(UITableView *)controller.view reloadData];
|
|
}
|
|
|
|
|
|
#pragma mark - ViewController Functions
|
|
|
|
- (void)viewWillAppear:(BOOL)animated {
|
|
[super viewWillAppear:animated];
|
|
ABAddressBookRegisterExternalChangeCallback (addressBook, sync_toc_address_book, self);
|
|
}
|
|
|
|
- (void)viewWillDisappear:(BOOL)animated {
|
|
[super viewWillDisappear:animated];
|
|
ABAddressBookUnregisterExternalChangeCallback(addressBook, sync_toc_address_book, self);
|
|
}
|
|
|
|
|
|
#pragma mark - UITableViewDataSource Functions
|
|
|
|
- (void)reloadData {
|
|
@synchronized (addressBookMap) {
|
|
|
|
// Reset Address book
|
|
[addressBookMap removeAllObjects];
|
|
|
|
NSArray *lContacts = (NSArray *)ABAddressBookCopyArrayOfAllPeople(addressBook);
|
|
for (id lPerson in lContacts) {
|
|
BOOL add = true;
|
|
if(sipFilter) {
|
|
add = false;
|
|
ABMultiValueRef lMap = ABRecordCopyValue((ABRecordRef)lPerson, kABPersonInstantMessageProperty);
|
|
for(int i = 0; i < ABMultiValueGetCount(lMap); ++i) {
|
|
CFDictionaryRef lDict = ABMultiValueCopyValueAtIndex(lMap, i);
|
|
if(CFDictionaryContainsKey(lDict, @"service")) {
|
|
if(CFStringCompare((CFStringRef)@"SIP", CFDictionaryGetValue(lDict, @"service"), kCFCompareCaseInsensitive) == 0) {
|
|
add = true;
|
|
}
|
|
}
|
|
CFRelease(lDict);
|
|
}
|
|
}
|
|
if(add) {
|
|
CFStringRef lFirstName = ABRecordCopyValue((ABRecordRef)lPerson, kABPersonFirstNameProperty);
|
|
CFStringRef lLocalizedFirstName = (lFirstName != nil)? ABAddressBookCopyLocalizedLabel(lFirstName): nil;
|
|
CFStringRef lLastName = ABRecordCopyValue((ABRecordRef)lPerson, kABPersonLastNameProperty);
|
|
CFStringRef lLocalizedLastName = (lLastName != nil)? ABAddressBookCopyLocalizedLabel(lLastName): nil;
|
|
NSString *name = nil;
|
|
if(lLocalizedFirstName != nil && lLocalizedLastName != nil) {
|
|
name=[NSString stringWithFormat:@"%@%@", [(NSString *)lLocalizedFirstName retain], [(NSString *)lLocalizedLastName retain]];
|
|
} else if(lLocalizedLastName != nil) {
|
|
name=[NSString stringWithFormat:@"%@",[(NSString *)lLocalizedLastName retain]];
|
|
} else if(lLocalizedFirstName != nil) {
|
|
name=[NSString stringWithFormat:@"%@",[(NSString *)lLocalizedFirstName retain]];
|
|
}
|
|
if(name != nil) {
|
|
// Put in correct subDic
|
|
NSString *firstChar = [[name substringToIndex:1] uppercaseString];
|
|
OrderedDictionary *subDic =[addressBookMap objectForKey: firstChar];
|
|
if(subDic == nil) {
|
|
subDic = [[OrderedDictionary alloc] init];
|
|
[addressBookMap insertObject:subDic forKey:firstChar selector:@selector(caseInsensitiveCompare:)];
|
|
}
|
|
[subDic insertObject:lPerson forKey:name selector:@selector(caseInsensitiveCompare:)];
|
|
}
|
|
if(lLocalizedLastName != nil)
|
|
CFRelease(lLocalizedLastName);
|
|
if(lLastName != nil)
|
|
CFRelease(lLastName);
|
|
if(lLocalizedFirstName != nil)
|
|
CFRelease(lLocalizedFirstName);
|
|
if(lFirstName != nil)
|
|
CFRelease(lFirstName);
|
|
}
|
|
}
|
|
CFRelease(lContacts);
|
|
}
|
|
}
|
|
|
|
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
|
|
[self reloadData];
|
|
return [addressBookMap count];
|
|
}
|
|
|
|
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
|
|
return [(OrderedDictionary *)[addressBookMap objectForKey: [addressBookMap keyAtIndex: section]] count];
|
|
}
|
|
|
|
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
|
|
UIContactCell *cell = [tableView dequeueReusableCellWithIdentifier:@"UIContactCell"];
|
|
if (cell == nil) {
|
|
cell = [[UIContactCell alloc] initWithIdentifier:@"UIContactCell"];
|
|
}
|
|
|
|
OrderedDictionary *subDic = [addressBookMap objectForKey: [addressBookMap keyAtIndex: [indexPath section]]];
|
|
|
|
NSString *key = [[subDic allKeys] objectAtIndex:[indexPath row]];
|
|
ABRecordRef record = [subDic objectForKey:key];
|
|
|
|
[cell update: record];
|
|
|
|
return cell;
|
|
}
|
|
|
|
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
|
|
return [addressBookMap keyAtIndex: section];
|
|
}
|
|
|
|
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
|
|
OrderedDictionary *subDic = [addressBookMap objectForKey: [addressBookMap keyAtIndex: [indexPath section]]];
|
|
ABRecordRef lPerson = [subDic objectForKey: [subDic keyAtIndex:[indexPath row]]];
|
|
|
|
// Go to Contact details view
|
|
NSDictionary *dict = [[[NSDictionary alloc] initWithObjectsAndKeys:
|
|
[[[NSArray alloc] initWithObjects: lPerson, nil] autorelease]
|
|
, @"setContact:",
|
|
nil] autorelease];
|
|
[[PhoneMainView instance] changeView:PhoneView_ContactDetails dict:dict push:TRUE];
|
|
}
|
|
|
|
@end
|