-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActiveAccountViewController.m
969 lines (791 loc) · 38.5 KB
/
ActiveAccountViewController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
//
// ActiveAccountViewController.m
// Telephone
//
// Copyright (c) 2008-2009 Alexei Kuznetsov. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// 3. Neither the name of the copyright holder nor the names of contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE THE COPYRIGHT HOLDER
// OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
// OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
#import "ActiveAccountViewController.h"
#import <AddressBook/AddressBook.h>
#import "AKABRecord+Querying.h"
#import "AKABAddressBook+Localizing.h"
#import "AKNSString+Scanning.h"
#import "AKSIPURI.h"
#import "AKSIPURIFormatter.h"
#import "AKTelephoneNumberFormatter.h"
#import "AccountController.h"
#import "PreferencesController.h"
NSString * const kURI = @"URI";
NSString * const kPhoneLabel = @"PhoneLabel";
@implementation ActiveAccountViewController
@synthesize accountController = accountController_;
@synthesize callDestinationField = callDestinationField_;
@synthesize callDestinationURIIndex = callDestinationURIIndex_;
@dynamic callDestinationURI;
- (AKSIPURI *)callDestinationURI {
NSDictionary *callDestinationDict
= [[[[self callDestinationField] objectValue] objectAtIndex:0]
objectAtIndex:[self callDestinationURIIndex]];
AKSIPURI *uri
= [[[callDestinationDict objectForKey:kURI] copy] autorelease];
// Displayed name is stored in the first URI only.
AKSIPURI *firstURI
= [[[[[self callDestinationField] objectValue] objectAtIndex:0]
objectAtIndex:0] objectForKey:kURI];
[uri setDisplayName:[firstURI displayName]];
if ([uri isKindOfClass:[AKSIPURI class]] && [[uri user] length] > 0) {
return uri;
} else {
return nil;
}
}
- (id)initWithAccountController:(AccountController *)anAccountController
windowController:(XSWindowController *)windowController {
self = [super initWithNibName:@"ActiveAccountView"
bundle:nil
windowController:windowController];
if (self != nil) {
[self setAccountController:anAccountController];
}
return self;
}
- (id)init {
[self dealloc];
NSString *reason
= @"Initialize ActiveAccountViewController with initWithAccountController:";
@throw [NSException exceptionWithName:@"AKBadInitCall"
reason:reason
userInfo:nil];
return nil;
}
- (void)awakeFromNib {
// Exclude comma from the callDestination tokenizing character set.
[[self callDestinationField] setTokenizingCharacterSet:
[NSCharacterSet characterSetWithCharactersInString:@""]];
[[self callDestinationField] setCompletionDelay:0.4];
}
- (IBAction)makeCall:(id)sender {
if ([[[self callDestinationField] objectValue] count] == 0)
return;
NSDictionary *callDestinationDict
= [[[[self callDestinationField] objectValue] objectAtIndex:0]
objectAtIndex:[self callDestinationURIIndex]];
NSString *phoneLabel = [callDestinationDict objectForKey:kPhoneLabel];
AKSIPURI *uri = [self callDestinationURI];
if (uri != nil) {
[[self accountController] makeCallToURI:uri phoneLabel:phoneLabel];
}
}
- (IBAction)changeCallDestinationURIIndex:(id)sender {
[self setCallDestinationURIIndex:[sender tag]];
}
#pragma mark -
#pragma mark NSTokenField delegate
// Returns completions based on the Address Book search.
// A completion string can be in one of two formats: Display Name <1234567> for
// person or company name searches, 1234567 (Display Name) for the phone number
// searches.
// Sets tokenField sytle to NSRoundedTokenStyle if the substring is found in
// the Address Book; otherwise, sets tokenField sytle to NSPlainTextTokenStyle.
- (NSArray *)tokenField:(NSTokenField *)tokenField
completionsForSubstring:(NSString *)substring
indexOfToken:(NSInteger)tokenIndex
indexOfSelectedItem:(NSInteger *)selectedIndex {
ABAddressBook *AB = [ABAddressBook sharedAddressBook];
NSMutableArray *searchElements = [NSMutableArray array];
NSArray *substringComponents = [substring componentsSeparatedByString:@" "];
ABSearchElement *isPersonRecord
= [ABPerson searchElementForProperty:kABPersonFlags
label:nil
key:nil
value:[NSNumber
numberWithInteger:kABShowAsPerson]
comparison:kABBitsInBitFieldMatch];
// Entered substring matches the first name prefix.
ABSearchElement *firstNamePrefixMatch
= [ABPerson searchElementForProperty:kABFirstNameProperty
label:nil
key:nil
value:substring
comparison:kABPrefixMatchCaseInsensitive];
ABSearchElement *firstNamePrefixPersonMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
firstNamePrefixMatch,
isPersonRecord,
nil]];
[searchElements addObject:firstNamePrefixPersonMatch];
// Entered substring matches the last name prefix.
ABSearchElement *lastNamePrefixMatch
= [ABPerson searchElementForProperty:kABLastNameProperty
label:nil
key:nil
value:substring
comparison:kABPrefixMatchCaseInsensitive];
ABSearchElement *lastNamePrefixPersonMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
lastNamePrefixMatch,
isPersonRecord,
nil]];
[searchElements addObject:lastNamePrefixPersonMatch];
// If entered substring consists of several words separated by spaces,
// add searches for all possible combinations of the first and the last names.
for (NSUInteger i = 0; i < [substringComponents count] - 1; ++i) {
NSMutableString *firstPart = [[[NSMutableString alloc] init] autorelease];
NSMutableString *secondPart = [[[NSMutableString alloc] init] autorelease];
NSUInteger j;
for (j = 0; j <= i; ++j) {
if ([firstPart length] > 0)
[firstPart appendFormat:@" %@", [substringComponents objectAtIndex:j]];
else
[firstPart appendString:[substringComponents objectAtIndex:j]];
}
for (j = i + 1; j < [substringComponents count]; ++j) {
if ([secondPart length] > 0)
[secondPart appendFormat:@" %@", [substringComponents objectAtIndex:j]];
else
[secondPart appendString:[substringComponents objectAtIndex:j]];
}
ABSearchElement *firstNameMatch
= [ABPerson searchElementForProperty:kABFirstNameProperty
label:nil
key:nil
value:firstPart
comparison:kABEqualCaseInsensitive];
if ([secondPart length] > 0) {
// Search element for the prefix match of the last name.
lastNamePrefixMatch
= [ABPerson searchElementForProperty:kABLastNameProperty
label:nil
key:nil
value:secondPart
comparison:kABPrefixMatchCaseInsensitive];
} else {
// Search element for the existence of the last name.
lastNamePrefixMatch
= [ABPerson searchElementForProperty:kABLastNameProperty
label:nil
key:nil
value:nil
comparison:kABNotEqual];
}
ABSearchElement *firstNameAndLastNamePrefixMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
firstNameMatch,
lastNamePrefixMatch,
isPersonRecord,
nil]];
[searchElements addObject:firstNameAndLastNamePrefixMatch];
// Swap the first and the last names in search.
ABSearchElement *lastNameMatch
= [ABPerson searchElementForProperty:kABLastNameProperty
label:nil
key:nil
value:firstPart
comparison:kABEqualCaseInsensitive];
if ([secondPart length] > 0) {
// Search element for the prefix match of the first name.
firstNamePrefixMatch
= [ABPerson searchElementForProperty:kABFirstNameProperty
label:nil
key:nil
value:secondPart
comparison:kABPrefixMatchCaseInsensitive];
} else {
// Search element for the existence of the first name.
firstNamePrefixMatch
= [ABPerson searchElementForProperty:kABFirstNameProperty
label:nil
key:nil
value:nil
comparison:kABNotEqual];
}
ABSearchElement *lastNameAndFirstNamePrefixMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
lastNameMatch,
firstNamePrefixMatch,
isPersonRecord,
nil]];
[searchElements addObject:lastNameAndFirstNamePrefixMatch];
}
ABSearchElement *isCompanyRecord
= [ABPerson searchElementForProperty:kABPersonFlags
label:nil
key:nil
value:[NSNumber
numberWithInteger:kABShowAsCompany]
comparison:kABBitsInBitFieldMatch];
// Entered substring matches company name prefix.
ABSearchElement *companyPrefixMatch
= [ABPerson searchElementForProperty:kABOrganizationProperty
label:nil
key:nil
value:substring
comparison:kABPrefixMatchCaseInsensitive];
// Don't bother if the AB record is not a company record.
ABSearchElement *companyPrefixAndIsCompanyRecord
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
companyPrefixMatch,
isCompanyRecord,
nil]];
[searchElements addObject:companyPrefixAndIsCompanyRecord];
// Entered substring matches phone number prefix.
ABSearchElement *phoneNumberPrefixMatch
= [ABPerson searchElementForProperty:kABPhoneProperty
label:nil
key:nil
value:substring
comparison:kABPrefixMatch];
[searchElements addObject:phoneNumberPrefixMatch];
// Entered substing matches SIP address prefix. (SIP address is the email
// with kEmailSIPLabel label.) If you set the label to kEmailSIPLabel,
// it will find only the first email with that label. So, find all emails and
// filter them later.
ABSearchElement *SIPAddressPrefixMatch
= [ABPerson searchElementForProperty:kABEmailProperty
label:nil
key:nil
value:substring
comparison:kABPrefixMatchCaseInsensitive];
[searchElements addObject:SIPAddressPrefixMatch];
ABSearchElement *compoundMatch
= [ABSearchElement searchElementForConjunction:kABSearchOr
children:searchElements];
// Perform Address Book search.
NSArray *recordsFound = [AB recordsMatchingSearchElement:compoundMatch];
// Populate the completions array.
NSMutableArray *completions
= [NSMutableArray arrayWithCapacity:[recordsFound count]];
for (id theRecord in recordsFound) {
if (![theRecord isKindOfClass:[ABPerson class]])
continue;
NSString *firstName = [theRecord valueForProperty:kABFirstNameProperty];
NSString *lastName = [theRecord valueForProperty:kABLastNameProperty];
NSString *company = [theRecord valueForProperty:kABOrganizationProperty];
ABMultiValue *phones = [theRecord valueForProperty:kABPhoneProperty];
ABMultiValue *emails = [theRecord valueForProperty:kABEmailProperty];
NSInteger personFlags = [[theRecord valueForProperty:kABPersonFlags]
integerValue];
BOOL isPerson = (personFlags & kABShowAsMask) == kABShowAsPerson;
BOOL isCompany = (personFlags & kABShowAsMask) == kABShowAsCompany;
NSUInteger i;
// Check for the phone number match.
// Display completion as 1234567 (Display Name).
for (i = 0; i < [phones count]; ++i) {
NSString *phoneNumber = [phones valueAtIndex:i];
NSRange range = [phoneNumber rangeOfString:substring];
if (range.location == 0) {
NSString *completionString = nil;
if ([[theRecord ak_fullName] length] > 0) {
completionString = [NSString stringWithFormat:@"%@ (%@)",
phoneNumber, [theRecord ak_fullName]];
} else {
completionString = phoneNumber;
}
if (completionString != nil)
[completions addObject:completionString];
}
}
// Check if the substing matches email labelled as kEmailSIPLabel.
// Display completion as email_address (Display Name).
for (i = 0; i < [emails count]; ++i) {
if ([[emails labelAtIndex:i] caseInsensitiveCompare:kEmailSIPLabel]
!= NSOrderedSame)
continue;
NSString *anEmail = [emails valueAtIndex:i];
NSRange range = [anEmail rangeOfString:substring
options:NSCaseInsensitiveSearch];
if (range.location == 0) {
NSString *completionString = nil;
if ([[theRecord ak_fullName] length] > 0)
completionString = [NSString stringWithFormat:@"%@ (%@)",
anEmail, [theRecord ak_fullName]];
else
completionString = anEmail;
if (completionString != nil)
[completions addObject:completionString];
}
}
// Check for first name, last name or company name match.
// Determine the contact name including first and last names ordering.
// Skip if it's not the name match.
NSString *contactName = nil;
if (isPerson) {
NSString *firstNameFirst
= [NSString stringWithFormat:@"%@ %@", firstName, lastName];
NSString *lastNameFirst
= [NSString stringWithFormat:@"%@ %@", lastName, firstName];
NSRange firstNameFirstRange
= [firstNameFirst rangeOfString:substring
options:NSCaseInsensitiveSearch];
NSRange lastNameFirstRange
= [lastNameFirst rangeOfString:substring
options:NSCaseInsensitiveSearch];
NSRange firstNameRange
= [firstName rangeOfString:substring options:NSCaseInsensitiveSearch];
NSRange
lastNameRange = [lastName rangeOfString:substring
options:NSCaseInsensitiveSearch];
// Continue if the substing does not match person name prefix.
if (firstNameRange.location != 0 && lastNameRange.location != 0 &&
firstNameFirstRange.location != 0 && lastNameFirstRange.location != 0)
continue;
if ([firstName length] > 0 && [lastName length] > 0) {
// Determine the order of names in the full name the user is looking for.
if (firstNameFirstRange.location == 0) {
contactName = [NSString stringWithFormat:@"%@ %@", firstName, lastName];
} else {
contactName = [NSString stringWithFormat:@"%@ %@", lastName, firstName];
}
} else if ([firstName length] > 0) {
contactName = firstName;
} else if ([lastName length] > 0) {
contactName = lastName;
}
} else if (isCompany) {
// Continue if the substring does not match company name prefix.
NSRange companyNamePrefixRange
= [company rangeOfString:substring options:NSCaseInsensitiveSearch];
if (companyNamePrefixRange.location != 0)
continue;
if ([company length] > 0)
contactName = company;
}
if (contactName == nil)
continue;
// Add phone numbers. Display completion as Display Name <1234567>.
for (i = 0; i < [phones count]; ++i) {
NSString *phoneNumber = [phones valueAtIndex:i];
NSString *completionString = nil;
if (contactName != nil) {
completionString = [NSString stringWithFormat:@"%@ <%@>",
contactName, phoneNumber];
} else {
completionString = phoneNumber;
}
if (completionString != nil)
[completions addObject:completionString];
}
// Add SIP address from the email fields labelled as kEmailSIPLabel.
// Display completion as Display Name <email_address>
for (i = 0; i < [emails count]; ++i) {
if ([[emails labelAtIndex:i] caseInsensitiveCompare:kEmailSIPLabel]
!= NSOrderedSame)
continue;
NSString *anEmail = [emails valueAtIndex:i];
NSString *completionString = nil;
if (contactName != nil) {
completionString = [NSString stringWithFormat:@"%@ <%@>",
contactName, anEmail];
} else {
completionString = anEmail;
}
if (completionString != nil)
[completions addObject:completionString];
}
}
// Preserve string capitalization according to the user input.
if ([completions count] > 0) {
NSRange searchedStringRange
= [[completions objectAtIndex:0] rangeOfString:substring
options:NSCaseInsensitiveSearch];
if (searchedStringRange.location == 0) {
NSRange replaceRange = NSMakeRange(0, [substring length]);
NSString *newFirstElement
= [[completions objectAtIndex:0]
stringByReplacingCharactersInRange:replaceRange
withString:substring];
[completions replaceObjectAtIndex:0 withObject:newFirstElement];
}
}
// Set appropriate token style depending on the search success.
if ([completions count] > 0)
[tokenField setTokenStyle:NSRoundedTokenStyle];
else
[tokenField setTokenStyle:NSPlainTextTokenStyle];
return [[completions copy] autorelease];
}
// Converts input text to the array of dictionaries containing AKSIPURIs and
// phone labels (mobile, home, etc). Dictionary keys are AKURI and AKPhoneLabel.
// If there is no @ sign, the input is treated as a user part of the URI and
// host part will be nil.
- (id)tokenField:(NSTokenField *)tokenField
representedObjectForEditingString:(NSString *)editingString {
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
AKSIPURIFormatter *SIPURIFormatter
= [[[AKSIPURIFormatter alloc] init] autorelease];
[SIPURIFormatter setFormatsTelephoneNumbers:
[defaults boolForKey:kFormatTelephoneNumbers]];
[SIPURIFormatter setTelephoneNumberFormatterSplitsLastFourDigits:
[defaults boolForKey:kTelephoneNumberFormatterSplitsLastFourDigits]];
AKSIPURI *theURI = [SIPURIFormatter SIPURIFromString:editingString];
if (theURI == nil)
return nil;
ABAddressBook *AB = [ABAddressBook sharedAddressBook];
NSArray *recordsFound;
NSAssert(([[theURI user] length] > 0),
@"User part of the URI must not have zero length in this context");
ABSearchElement *phoneNumberMatch
= [ABPerson searchElementForProperty:kABPhoneProperty
label:nil
key:nil
value:[theURI user]
comparison:kABEqual];
ABSearchElement *SIPAddressMatch
= [ABPerson searchElementForProperty:kABEmailProperty
label:nil
key:nil
value:[theURI SIPAddress]
comparison:kABEqualCaseInsensitive];
NSString *displayedName = [theURI displayName];
if ([displayedName length] > 0) {
NSMutableArray *searchElements = [[[NSMutableArray alloc] init] autorelease];
// displayedName matches the first name.
ABSearchElement *firstNameMatch
= [ABPerson searchElementForProperty:kABFirstNameProperty
label:nil
key:nil
value:displayedName
comparison:kABEqualCaseInsensitive];
ABSearchElement *firstNameAndPhoneNumberMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
firstNameMatch,
phoneNumberMatch,
nil]];
[searchElements addObject:firstNameAndPhoneNumberMatch];
ABSearchElement *firstNameAndSIPAddressMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
firstNameMatch,
SIPAddressMatch,
nil]];
[searchElements addObject:firstNameAndSIPAddressMatch];
// displayedName matches the last name.
ABSearchElement *lastNameMatch
= [ABPerson searchElementForProperty:kABLastNameProperty
label:nil
key:nil
value:displayedName
comparison:kABEqualCaseInsensitive];
ABSearchElement *lastNameAndPhoneNumberMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
lastNameMatch,
phoneNumberMatch,
nil]];
[searchElements addObject:lastNameAndPhoneNumberMatch];
ABSearchElement *lastNameAndSIPAddressMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
lastNameMatch,
SIPAddressMatch,
nil]];
[searchElements addObject:lastNameAndSIPAddressMatch];
// Add person searches for all combination of displayedName components
// separated by space.
NSArray *displayedNameComponents
= [displayedName componentsSeparatedByString:@" "];
for (NSUInteger i = 0; i < [displayedNameComponents count] - 1; ++i) {
NSMutableString *firstPart = [[[NSMutableString alloc] init] autorelease];
NSMutableString *secondPart = [[[NSMutableString alloc] init] autorelease];
NSUInteger j;
for (j = 0; j <= i; ++j) {
if ([firstPart length] > 0)
[firstPart appendFormat:@" %@",
[displayedNameComponents objectAtIndex:j]];
else
[firstPart appendString:[displayedNameComponents objectAtIndex:j]];
}
for (j = i + 1; j < [displayedNameComponents count]; ++j) {
if ([secondPart length] > 0)
[secondPart appendFormat:@" %@",
[displayedNameComponents objectAtIndex:j]];
else
[secondPart appendString:[displayedNameComponents objectAtIndex:j]];
}
firstNameMatch
= [ABPerson searchElementForProperty:kABFirstNameProperty
label:nil
key:nil
value:firstPart
comparison:kABEqualCaseInsensitive];
lastNameMatch
= [ABPerson searchElementForProperty:kABLastNameProperty
label:nil
key:nil
value:secondPart
comparison:kABEqualCaseInsensitive];
ABSearchElement *fullNameAndPhoneNumberMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
firstNameMatch,
lastNameMatch,
phoneNumberMatch,
nil]];
[searchElements addObject:fullNameAndPhoneNumberMatch];
ABSearchElement *fullNameAndSIPAddressMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
firstNameMatch,
lastNameMatch,
SIPAddressMatch,
nil]];
[searchElements addObject:fullNameAndSIPAddressMatch];
// Swap the first and the last names.
firstNameMatch
= [ABPerson searchElementForProperty:kABFirstNameProperty
label:nil
key:nil
value:secondPart
comparison:kABEqualCaseInsensitive];
lastNameMatch
= [ABPerson searchElementForProperty:kABLastNameProperty
label:nil
key:nil
value:firstPart
comparison:kABEqualCaseInsensitive];
fullNameAndPhoneNumberMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
firstNameMatch,
lastNameMatch,
phoneNumberMatch,
nil]];
[searchElements addObject:fullNameAndPhoneNumberMatch];
fullNameAndSIPAddressMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
firstNameMatch,
lastNameMatch,
SIPAddressMatch,
nil]];
[searchElements addObject:fullNameAndSIPAddressMatch];
}
// Add organization search.
ABSearchElement *organizationMatch
= [ABPerson searchElementForProperty:kABOrganizationProperty
label:nil
key:nil
value:displayedName
comparison:kABEqualCaseInsensitive];
ABSearchElement *organizationAndPhoneNumberMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
organizationMatch,
phoneNumberMatch,
nil]];
[searchElements addObject:organizationAndPhoneNumberMatch];
ABSearchElement *organizationAndSIPAddressMatch
= [ABSearchElement searchElementForConjunction:kABSearchAnd
children:[NSArray arrayWithObjects:
organizationMatch,
SIPAddressMatch,
nil]];
[searchElements addObject:organizationAndSIPAddressMatch];
ABSearchElement *compoundMatch
= [ABSearchElement searchElementForConjunction:kABSearchOr
children:searchElements];
recordsFound = [AB recordsMatchingSearchElement:compoundMatch];
} else {
recordsFound = [AB recordsMatchingSearchElement:phoneNumberMatch];
}
NSMutableArray *callDestinations
= [[[NSMutableArray alloc] init] autorelease];
NSUInteger destinationIndex = 0;
if ([recordsFound count] > 0) {
ABRecord *theRecord = [recordsFound objectAtIndex:0];
if ([[theRecord ak_fullName] length] > 0)
[theURI setDisplayName:[theRecord ak_fullName]];
// Get phones.
AKTelephoneNumberFormatter *telephoneNumberFormatter
= [[[AKTelephoneNumberFormatter alloc] init] autorelease];
ABMultiValue *phones = [theRecord valueForProperty:kABPhoneProperty];
for (NSUInteger i = 0; i < [phones count]; ++i) {
NSString *phoneNumber = [phones valueAtIndex:i];
NSString *localizedPhoneLabel
= [AB ak_localizedLabel:[phones labelAtIndex:i]];
AKSIPURI *uri = [SIPURIFormatter SIPURIFromString:phoneNumber];
[uri setDisplayName:[theURI displayName]];
[callDestinations addObject:[NSDictionary dictionaryWithObjectsAndKeys:
uri, kURI,
localizedPhoneLabel, kPhoneLabel,
nil]];
// If we've met entered URI, store its index.
NSRange atSignRange = [phoneNumber rangeOfString:@"@"];
if (atSignRange.location == NSNotFound && [[theURI host] length] == 0) {
// No @ sign, treat as telephone number.
if ([[telephoneNumberFormatter telephoneNumberFromString:phoneNumber]
isEqualToString:
[telephoneNumberFormatter telephoneNumberFromString:[theURI user]]])
{
destinationIndex = [callDestinations count] - 1;
}
} else {
if ([phoneNumber isEqualToString:[theURI SIPAddress]]) {
destinationIndex = [callDestinations count] - 1;
}
}
}
// Get SIP addresses.
ABMultiValue *emails = [theRecord valueForProperty:kABEmailProperty];
for (NSUInteger i = 0; i < [emails count]; ++i) {
if ([[emails labelAtIndex:i] caseInsensitiveCompare:kEmailSIPLabel]
!= NSOrderedSame)
continue;
NSString *anEmail = [emails valueAtIndex:i];
NSString *localizedPhoneLabel = [AB ak_localizedLabel:kEmailSIPLabel];
AKSIPURI *uri = [SIPURIFormatter SIPURIFromString:anEmail];
[uri setDisplayName:[theURI displayName]];
[callDestinations addObject:[NSDictionary dictionaryWithObjectsAndKeys:
uri, kURI,
localizedPhoneLabel, kPhoneLabel,
nil]];
// If we've met entered URI, store its index.
if ([anEmail caseInsensitiveCompare:[theURI SIPAddress]] == NSOrderedSame) {
destinationIndex = [callDestinations count] - 1;
}
}
} else {
[callDestinations addObject:[NSDictionary dictionaryWithObjectsAndKeys:
theURI, kURI,
@"", kPhoneLabel, nil]];
}
// First URI in the array is the default call destination.
[self setCallDestinationURIIndex:destinationIndex];
return [[callDestinations copy] autorelease];
}
- (NSString *)tokenField:(NSTokenField *)tokenField
displayStringForRepresentedObject:(id)representedObject {
if (![representedObject isKindOfClass:[NSArray class]])
return nil;
AKSIPURI *uri
= [[representedObject objectAtIndex:[self callDestinationURIIndex]]
objectForKey:kURI];
NSString *returnString = nil;
if ([[uri displayName] length] > 0) {
returnString = [uri displayName];
} else if ([[uri host] length] > 0) {
NSAssert(([[uri user] length] > 0),
@"User part of the URI must not have zero length in this context");
returnString = [uri SIPAddress];
} else {
NSAssert(([[uri user] length] > 0),
@"User part of the URI must not have zero length in this context");
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if ([[uri user] ak_isTelephoneNumber] &&
[defaults boolForKey:kFormatTelephoneNumbers]) {
AKTelephoneNumberFormatter *formatter
= [[[AKTelephoneNumberFormatter alloc] init] autorelease];
[formatter setSplitsLastFourDigits:
[defaults boolForKey:kTelephoneNumberFormatterSplitsLastFourDigits]];
returnString = [formatter stringForObjectValue:[uri user]];
} else {
returnString = [uri user];
}
}
return returnString;
}
- (NSString *)tokenField:(NSTokenField *)tokenField
editingStringForRepresentedObject:(id)representedObject {
if (![representedObject isKindOfClass:[NSArray class]])
return nil;
AKSIPURI *uri
= [[representedObject objectAtIndex:[self callDestinationURIIndex]]
objectForKey:kURI];
NSAssert(([[uri user] length] > 0),
@"User part of the URI must not have zero length in this context");
NSString *returnString = nil;
if ([[uri displayName] length] > 0) {
if ([[uri host] length] > 0) {
returnString = [NSString stringWithFormat:@"%@ <%@>",
[uri displayName], [uri SIPAddress]];
} else {
returnString = [NSString stringWithFormat:@"%@ <%@>",
[uri displayName], [uri user]];
}
} else if ([[uri host] length] > 0) {
returnString = [uri SIPAddress];
} else {
returnString = [uri user];
}
return returnString;
}
- (BOOL)tokenField:(NSTokenField *)tokenField
hasMenuForRepresentedObject:(id)representedObject {
AKSIPURI *uri
= [[representedObject objectAtIndex:[self callDestinationURIIndex]]
objectForKey:kURI];
if ([representedObject isKindOfClass:[NSArray class]] &&
[[uri displayName] length] > 0)
return YES;
else
return NO;
}
- (NSMenu *)tokenField:(NSTokenField *)tokenField
menuForRepresentedObject:(id)representedObject {
NSMenu *tokenMenu = [[[NSMenu alloc] init] autorelease];
for (NSUInteger i = 0; i < [representedObject count]; ++i) {
AKSIPURI *uri = [[representedObject objectAtIndex:i] objectForKey:kURI];
NSString *phoneLabel
= [[representedObject objectAtIndex:i] objectForKey:kPhoneLabel];
NSMenuItem *menuItem = [[[NSMenuItem alloc] init] autorelease];
AKTelephoneNumberFormatter *formatter
= [[[AKTelephoneNumberFormatter alloc] init] autorelease];
[formatter setSplitsLastFourDigits:
[[NSUserDefaults standardUserDefaults]
boolForKey:kTelephoneNumberFormatterSplitsLastFourDigits]];
if ([[uri host] length] > 0) {
[menuItem setTitle:[NSString stringWithFormat:@"%@: %@",
phoneLabel, [uri SIPAddress]]];
} else if ([[uri user] ak_isTelephoneNumber]) {
[menuItem setTitle:[NSString stringWithFormat:@"%@: %@",
phoneLabel,
[formatter stringForObjectValue:[uri user]]]];
} else {
[menuItem setTitle:[NSString stringWithFormat:@"%@: %@",
phoneLabel, [uri user]]];
}
[menuItem setTag:i];
[menuItem setAction:@selector(changeCallDestinationURIIndex:)];
[tokenMenu addItem:menuItem];
}
[[tokenMenu itemWithTag:[self callDestinationURIIndex]] setState:NSOnState];
return tokenMenu;
}
- (NSArray *)tokenField:(NSTokenField *)tokenField
shouldAddObjects:(NSArray *)tokens
atIndex:(NSUInteger)index {
if (index > 0 && [tokenField tokenStyle] == NSRoundedTokenStyle) {
return nil;
} else {
return tokens;
}
}
@end