-
Notifications
You must be signed in to change notification settings - Fork 30
/
ATLApplicationListControllerBase.m
645 lines (557 loc) · 17.5 KB
/
ATLApplicationListControllerBase.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
#import <Foundation/Foundation.h>
#import "ATLApplicationListControllerBase.h"
#import "CoreServices.h"
#import "LSApplicationProxy+AltList.h"
#import "ATLApplicationSubtitleSwitchCell.h"
#import "ATLApplicationSubtitleCell.h"
@interface UIImage (Private)
+ (instancetype)_applicationIconImageForBundleIdentifier:(NSString*)bundleIdentifier format:(int)format scale:(CGFloat)scale;
@end
@implementation ATLApplicationListControllerBase
- (instancetype)init
{
self = [super init];
_placeholderAppIcon = [UIImage _applicationIconImageForBundleIdentifier:@"com.apple.WebSheet" format:0 scale:[UIScreen mainScreen].scale];
if (dispatch_queue_attr_make_with_qos_class != NULL)
{
dispatch_queue_attr_t qos = dispatch_queue_attr_make_with_qos_class(DISPATCH_QUEUE_SERIAL, DISPATCH_QUEUE_PRIORITY_BACKGROUND, -1);
_iconLoadQueue = dispatch_queue_create("com.opa334.AltList.IconLoadQueue", qos);
}
_altListBundle = [NSBundle bundleForClass:[ATLApplicationListControllerBase class]];
[[LSApplicationWorkspace defaultWorkspace] addObserver:self];
return self;
}
- (instancetype)initWithSections:(NSArray<ATLApplicationSection*>*)applicationSections
{
self = [self init];
_applicationSections = applicationSections;
return self;
}
- (void)dealloc
{
[[LSApplicationWorkspace defaultWorkspace] removeObserver:self];
}
- (void)viewDidLoad
{
[super viewDidLoad];
PSSpecifier* specifier = [self specifier];
NSNumber* useSearchBarNum = [specifier propertyForKey:@"useSearchBar"];
if(useSearchBarNum)
{
self.useSearchBar = [useSearchBarNum boolValue];
}
if(self.useSearchBar)
{
NSNumber* hideSearchBarWhileScrollingNum = [specifier propertyForKey:@"hideSearchBarWhileScrolling"]; // only on ios 11 and up
if(hideSearchBarWhileScrollingNum)
{
self.hideSearchBarWhileScrolling = [hideSearchBarWhileScrollingNum boolValue];
}
NSNumber* includeIdentifiersInSearchNum = [specifier propertyForKey:@"includeIdentifiersInSearch"];
if(includeIdentifiersInSearchNum)
{
self.includeIdentifiersInSearch = [includeIdentifiersInSearchNum boolValue];
}
}
[self _setUpSearchBar];
}
// UITableViewDelegate
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if(self.hideAlphabeticSectionHeaders)
{
PSSpecifier* specifier = [self specifierAtIndex:[self indexOfGroup:section]];
if([[specifier propertyForKey:@"isLetterSection"] boolValue])
{
return 0.00000000001;
}
}
return [super tableView:tableView heightForHeaderInSection:section];
}
- (NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
if(self.hideAlphabeticSectionHeaders)
{
PSSpecifier* specifier = [self specifierAtIndex:[self indexOfGroup:section]];
if([[specifier propertyForKey:@"isLetterSection"] boolValue])
{
return nil;
}
}
return [super tableView:tableView titleForHeaderInSection:section];
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
if(self.alphabeticIndexingEnabled)
{
PSSpecifier* specifier = [self specifierAtIndex:[self indexOfGroup:section]];
if([[specifier propertyForKey:@"isLetterSection"] boolValue] || [[specifier propertyForKey:@"isFirstLetterSection"] boolValue])
{
return 0.00000000001;
}
}
return [super tableView:tableView heightForFooterInSection:section];
}
- (NSString*)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
if(self.hideAlphabeticSectionHeaders)
{
PSSpecifier* specifier = [self specifierAtIndex:[self indexOfGroup:section]];
if([[specifier propertyForKey:@"isLetterSection"] boolValue])
{
return nil;
}
}
return [super tableView:tableView titleForFooterInSection:section];
}
- (NSArray<NSString*>*)sectionIndexTitlesForTableView:(UITableView *)tableView
{
if(self.alphabeticIndexingEnabled)
{
NSMutableArray* firstLetters = [_specifiersByLetter allKeys].mutableCopy;
[firstLetters sortUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
if([firstLetters.firstObject isEqualToString:@"#"])
{
// if there is a section for applications that don't start with a letter, move it to the bottom
[firstLetters removeObjectAtIndex:0];
[firstLetters addObject:@"#"];
}
return firstLetters;
}
return nil;
}
// UITableViewDelegate end
// LSApplicationWorkspaceObserverProtocol
- (void)applicationsDidInstall:(id)arg1
{
dispatch_async(dispatch_get_main_queue(), ^(void){
[self reloadApplications];
});
}
- (void)applicationsDidUninstall:(id)arg1
{
dispatch_async(dispatch_get_main_queue(), ^(void){
[self reloadApplications];
});
}
// LSApplicationWorkspaceObserverProtocol end
- (void)setAlphabeticIndexingEnabled:(BOOL)enabled
{
if(_applicationSections.count == 1)
{
_alphabeticIndexingEnabled = enabled;
return;
}
_alphabeticIndexingEnabled = NO;
}
- (void)_setUpSearchBar
{
if(self.useSearchBar)
{
_searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
_searchController.searchResultsUpdater = self;
if (@available(iOS 9.1, *)) _searchController.obscuresBackgroundDuringPresentation = NO;
if (@available(iOS 11.0, *))
{
if(@available(iOS 13.0, *))
{
_searchController.hidesNavigationBarDuringPresentation = YES;
}
else
{
_searchController.hidesNavigationBarDuringPresentation = NO;
}
self.navigationItem.searchController = _searchController;
self.navigationItem.hidesSearchBarWhenScrolling = self.hideSearchBarWhileScrolling;
}
else
{
self.table.tableHeaderView = _searchController.searchBar;
[self.table setContentOffset:CGPointMake(0,44) animated:NO];
}
}
}
- (void)updateSearchResultsForSearchController:(UISearchController *)searchController
{
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
_searchKey = searchController.searchBar.text;
dispatch_async(dispatch_get_main_queue(), ^(void){
[self reloadSpecifiers];
});
});
}
- (void)_loadSectionsFromSpecifier
{
NSArray* plistSections = [[self specifier] propertyForKey:@"sections"];
if(plistSections)
{
NSMutableArray* applicationSectionsM = [NSMutableArray new];
[plistSections enumerateObjectsUsingBlock:^(NSDictionary* dict, NSUInteger idx, BOOL *stop)
{
if(![dict isKindOfClass:[NSDictionary class]]) return;
ATLApplicationSection* section = [ATLApplicationSection applicationSectionWithDictionary:dict];
[applicationSectionsM addObject:section];
}];
_applicationSections = applicationSectionsM.copy;
}
else
{
_applicationSections = @[[[ATLApplicationSection alloc] initNonCustomSectionWithType:SECTION_TYPE_VISIBLE]];
}
}
- (void)_populateSections
{
NSArray<LSApplicationProxy*>* allInstalledApplications = [[LSApplicationWorkspace defaultWorkspace] atl_allInstalledApplications];
[_applicationSections enumerateObjectsUsingBlock:^(ATLApplicationSection* section, NSUInteger idx, BOOL *stop)
{
[section populateFromAllApplications:allInstalledApplications];
}];
}
- (void)loadPreferences { }
- (void)savePreferences { }
- (void)prepareForPopulatingSections
{
NSNumber* showIdentifiersAsSubtitleNum = [[self specifier] propertyForKey:@"showIdentifiersAsSubtitle"];
if(showIdentifiersAsSubtitleNum)
{
self.showIdentifiersAsSubtitle = [showIdentifiersAsSubtitleNum boolValue];
}
NSNumber* alphabeticIndexingEnabledNum = [[self specifier] propertyForKey:@"alphabeticIndexingEnabled"];
self.alphabeticIndexingEnabled = [alphabeticIndexingEnabledNum boolValue];
if(self.alphabeticIndexingEnabled)
{
NSNumber* hideAlphabeticSectionHeadersNum = [[self specifier] propertyForKey:@"hideAlphabeticSectionHeaders"];
self.hideAlphabeticSectionHeaders = [hideAlphabeticSectionHeadersNum boolValue];
}
NSString* localizationBundlePathString = [[self specifier] propertyForKey:@"localizationBundlePath"];
if(localizationBundlePathString)
{
self.localizationBundle = [NSBundle bundleWithPath:localizationBundlePathString];
}
}
- (NSString*)localizedStringForString:(NSString*)string
{
if(self.localizationBundle)
{
NSString* localizedString = [self.localizationBundle localizedStringForKey:string value:nil table:nil];
if(localizedString)
{
return localizedString;
}
}
if(!_altListBundle)
{
return string;
}
return [_altListBundle localizedStringForKey:string value:string table:nil];
}
- (PSCellType)cellTypeForApplicationCells
{
return PSStaticTextCell;
}
- (Class)customCellClassForCellType:(PSCellType)cellType
{
if([self shouldShowSubtitles])
{
if(cellType == PSSwitchCell)
{
return [ATLApplicationSubtitleSwitchCell class];
}
else
{
return [ATLApplicationSubtitleCell class];
}
}
return nil;
}
- (Class)detailControllerClassForSpecifierOfApplicationProxy:(LSApplicationProxy*)applicationProxy
{
return nil;
}
- (SEL)getterForSpecifierOfApplicationProxy:(LSApplicationProxy*)applicationProxy
{
return nil;
}
- (SEL)setterForSpecifierOfApplicationProxy:(LSApplicationProxy*)applicationProxy
{
return nil;
}
- (PSSpecifier*)createSpecifierForApplicationProxy:(LSApplicationProxy*)applicationProxy
{
SEL setter = [self setterForSpecifierOfApplicationProxy:applicationProxy];
SEL getter = [self getterForSpecifierOfApplicationProxy:applicationProxy];
PSCellType cellType = [self cellTypeForApplicationCells];
PSSpecifier* specifier = [PSSpecifier preferenceSpecifierNamed:[applicationProxy atl_nameToDisplay]
target:self
set:setter
get:getter
detail:nil
cell:cellType
edit:nil];
NSString* bundleIdentifier = applicationProxy.atl_bundleIdentifier;
specifier.identifier = bundleIdentifier;
[specifier setProperty:bundleIdentifier forKey:@"applicationIdentifier"];
[specifier setProperty:_placeholderAppIcon forKey:@"iconImage"];
Class customCellClass = [self customCellClassForCellType:cellType];
if(customCellClass)
{
[specifier setProperty:customCellClass forKey:@"cellClass"];
}
Class detailControllerClass = [self detailControllerClassForSpecifierOfApplicationProxy:applicationProxy];
if(detailControllerClass)
{
specifier.detailControllerClass = detailControllerClass;
}
if(_iconLoadQueue)
{
UITableView* tableView = [self valueForKey:@"_table"];
dispatch_async(_iconLoadQueue, ^{
//usleep(1000 * 500); // (test delay for debugging)
UIImage* iconImage = [UIImage _applicationIconImageForBundleIdentifier:applicationProxy.atl_bundleIdentifier format:0 scale:[UIScreen mainScreen].scale];
dispatch_async(dispatch_get_main_queue(), ^{
[specifier setProperty:iconImage forKey:@"iconImage"];
if([self containsSpecifier:specifier])
{
NSIndexPath* specifierIndexPath = [self indexPathForIndex:[self indexOfSpecifier:specifier]];
if([[tableView indexPathsForVisibleRows] containsObject:specifierIndexPath])
{
dispatch_async(dispatch_get_main_queue(), ^{
if(!_isReloadingSpecifiers)
{
[self reloadSpecifier:specifier];
}
});
}
}
});
});
}
else
{
UIImage* iconImage = [UIImage _applicationIconImageForBundleIdentifier:applicationProxy.atl_bundleIdentifier format:0 scale:[UIScreen mainScreen].scale];
[specifier setProperty:iconImage forKey:@"iconImage"];
}
[specifier setProperty:@YES forKey:@"enabled"];
return specifier;
}
- (BOOL)shouldHideApplicationSpecifiers
{
if(_searchKey)
{
return ![_searchKey isEqualToString:@""];
}
return NO;
}
- (BOOL)shouldHideApplicationSpecifier:(PSSpecifier*)specifier
{
BOOL nameMatch = [specifier.name rangeOfString:_searchKey options:NSCaseInsensitiveSearch range:NSMakeRange(0, [specifier.name length]) locale:[NSLocale currentLocale]].location != NSNotFound;
BOOL identifierMatch = NO;
if(self.includeIdentifiersInSearch)
{
NSString* applicationID = [specifier propertyForKey:@"applicationIdentifier"];
identifierMatch = [applicationID rangeOfString:_searchKey options:NSCaseInsensitiveSearch].location != NSNotFound;
}
return !identifierMatch && !nameMatch;
}
- (BOOL)shouldShowSubtitles
{
if(self.showIdentifiersAsSubtitle)
{
return YES;
}
return NO;
}
- (NSString*)subtitleForApplicationWithIdentifier:(NSString*)applicationID
{
if(self.showIdentifiersAsSubtitle)
{
return applicationID;
}
return nil;
}
- (NSString*)_subtitleForSpecifier:(PSSpecifier*)specifier
{
return [self subtitleForApplicationWithIdentifier:[specifier propertyForKey:@"applicationIdentifier"]];
}
- (NSArray*)createSpecifiersForApplicationSection:(ATLApplicationSection*)section
{
NSMutableArray* sectionSpecifiers = [NSMutableArray new];
[section.applicationsInSection enumerateObjectsUsingBlock:^(LSApplicationProxy* appProxy, NSUInteger idx, BOOL *stop)
{
PSSpecifier* appSpecifier = [self createSpecifierForApplicationProxy:appProxy];
if(appSpecifier)
{
[sectionSpecifiers addObject:appSpecifier];
}
}];
return sectionSpecifiers;
}
- (void)populateSpecifiersByLetter
{
_specifiersByLetter = [NSMutableDictionary new];
[_specifiers enumerateObjectsUsingBlock:^(PSSpecifier* specifier, NSUInteger idx, BOOL *stop)
{
NSString* trimmedName = [specifier.name stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
// RTL/LTR characters, WhatsApp has an LTR character in front of it's name
trimmedName = [trimmedName stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"\u200E\u200F"]];
NSString* firstLetter = @"#";
if(trimmedName.length > 0)
{
unichar firstLetterChar = [trimmedName.uppercaseString characterAtIndex:0];
if(firstLetterChar >= 'A' && firstLetterChar <= 'Z')
{
firstLetter = [NSString stringWithFormat:@"%c", firstLetterChar];
}
}
NSMutableArray* letterSpecifiers = [_specifiersByLetter objectForKey:firstLetter];
if(!letterSpecifiers)
{
letterSpecifiers = [NSMutableArray new];
[_specifiersByLetter setObject:letterSpecifiers forKey:firstLetter];
}
[letterSpecifiers addObject:specifier];
}];
}
- (NSMutableArray*)specifiersGroupedByLetters
{
BOOL firstSpecifier = YES;
NSMutableArray* letterGroupedSpecifiers = [NSMutableArray new];
for(char c = 'A'; c <= 'Z'+1; c++)
{
NSString* cString;
if(c == ('Z'+1))
{
// Anything that doesn't start with a letter should be at the bottom
cString = @"#";
}
else
{
cString = [NSString stringWithFormat:@"%c", c];
}
NSMutableArray* letterSpecifiers = [_specifiersByLetter objectForKey:cString];
if(letterSpecifiers)
{
PSSpecifier* groupSpecifier = [PSSpecifier emptyGroupSpecifier];
if(firstSpecifier && self.hideAlphabeticSectionHeaders)
{
groupSpecifier.name = [self localizedStringForString:@"Applications"];
[groupSpecifier setProperty:@YES forKey:@"isFirstLetterSection"];
}
else
{
groupSpecifier.name = cString;
[groupSpecifier setProperty:@YES forKey:@"isLetterSection"];
}
[letterGroupedSpecifiers addObject:groupSpecifier];
[letterGroupedSpecifiers addObjectsFromArray:letterSpecifiers];
firstSpecifier = NO;
}
}
return letterGroupedSpecifiers;
}
- (PSSpecifier*)createGroupSpecifierForApplicationSection:(ATLApplicationSection*)section
{
PSSpecifier* groupSpecifier = [PSSpecifier emptyGroupSpecifier];
groupSpecifier.name = [self localizedStringForString:section.sectionName];
return groupSpecifier;
}
- (void)reloadApplications
{
_allSpecifiers = nil;
[self reloadSpecifiers];
}
- (void)reloadSpecifiers
{
_isReloadingSpecifiers = YES;
[super reloadSpecifiers];
_isReloadingSpecifiers = NO;
}
- (NSMutableArray*)specifiers
{
if(!_specifiers)
{
[self loadPreferences];
if(!_applicationSections)
{
[self _loadSectionsFromSpecifier];
}
if(!_allSpecifiers)
{
[self prepareForPopulatingSections];
[self _populateSections];
_allSpecifiers = [NSMutableArray new];
[_applicationSections enumerateObjectsUsingBlock:^(ATLApplicationSection* section, NSUInteger idx, BOOL *stop)
{
PSSpecifier* groupSpecifier = [self createGroupSpecifierForApplicationSection:section];
NSArray* specifiersForSection = [self createSpecifiersForApplicationSection:section];
if(specifiersForSection && specifiersForSection.count > 0)
{
if(!self.alphabeticIndexingEnabled)
{
[_allSpecifiers addObject:groupSpecifier];
}
[_allSpecifiers addObjectsFromArray:specifiersForSection];
}
}];
}
if(![self shouldHideApplicationSpecifiers])
{
_specifiers = _allSpecifiers;
}
else
{
_specifiers = [NSMutableArray new];
[_allSpecifiers enumerateObjectsWithOptions:NSEnumerationReverse usingBlock:^(PSSpecifier* specifier, NSUInteger idx, BOOL *stop)
{
if(specifier.cellType != PSGroupCell)
{
// hide specifiers that should be hidden
if([self shouldHideApplicationSpecifier:specifier])
{
return;
}
}
else
{
// hide empty sections
if(_specifiers.count == 0)
{
return;
}
PSSpecifier* firstSpecifier = _specifiers.firstObject;
if(firstSpecifier.cellType == PSGroupCell)
{
return;
}
}
[_specifiers insertObject:specifier atIndex:0];
}];
}
if(self.alphabeticIndexingEnabled)
{
[self populateSpecifiersByLetter];
_specifiers = [self specifiersGroupedByLetters];
}
}
return _specifiers;
}
- (PSSpecifier*)specifierForApplicationWithIdentifier:(NSString*)applicationID
{
__block PSSpecifier* specifierToReturn;
[_specifiers enumerateObjectsUsingBlock:^(PSSpecifier* specifier, NSUInteger idx, BOOL *stop)
{
NSString* specifierApplicationID = [specifier propertyForKey:@"applicationIdentifier"];
if([applicationID isEqualToString:specifierApplicationID])
{
specifierToReturn = specifier;
*stop = YES;
}
}];
return specifierToReturn;
}
- (NSIndexPath*)indexPathForApplicationWithIdentifier:(NSString*)applicationID
{
PSSpecifier* specifier = [self specifierForApplicationWithIdentifier:applicationID];
return [self indexPathForIndex:[self indexOfSpecifier:specifier]];
}
@end