-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSettings.x
744 lines (650 loc) · 46.9 KB
/
Settings.x
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
#import "Settings.h"
%hook YTSettingsGroupData
- (NSArray<NSNumber *> *)orderedCategories {
if (self.type != 1)
return %orig;
NSMutableArray *mutableCategories = %orig.mutableCopy;
[mutableCategories insertObject:@(GonerinoSection) atIndex:0];
return mutableCategories.copy;
}
%end
%hook YTAppSettingsPresentationData
+ (NSArray *)settingsCategoryOrder {
NSArray *order = %orig;
NSMutableArray *mutableOrder = [order mutableCopy];
NSUInteger insertIndex = [order indexOfObject:@(1)];
if (insertIndex != NSNotFound) {
[mutableOrder insertObject:@(GonerinoSection) atIndex:insertIndex + 1];
}
return mutableOrder;
}
%end
%hook YTSettingsSectionItemManager
%new
- (void)updateGonerinoSectionWithEntry:(id)entry {
YTSettingsViewController *delegate = [self valueForKey:@"_settingsViewControllerDelegate"];
NSMutableArray *sectionItems = [NSMutableArray array];
SECTION_HEADER(@"Gonerino Settings");
NSUInteger channelCount = [[ChannelManager sharedInstance] blockedChannels].count;
YTSettingsSectionItem *manageChannels = [%c(YTSettingsSectionItem)
itemWithTitle:@"Manage Channels"
titleDescription:[NSString stringWithFormat:@"%lu blocked channel%@", (unsigned long)channelCount,
channelCount == 1 ? @"" : @"s"]
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
NSMutableArray *rows = [NSMutableArray array];
[rows
addObject:
[%c(YTSettingsSectionItem)
itemWithTitle:@"Add Channel"
titleDescription:@"Block a new channel"
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
YTSettingsViewController *settingsVC =
[self valueForKey:@"_settingsViewControllerDelegate"];
UIAlertController *alertController = [UIAlertController
alertControllerWithTitle:@"Add Channel"
message:@"Enter the "
@"channel name to "
@"block"
preferredStyle:UIAlertControllerStyleAlert];
[alertController
addTextFieldWithConfigurationHandler:^(UITextField *textField) {
textField.placeholder = @"Channel Name";
}];
[alertController
addAction:
[UIAlertAction
actionWithTitle:@"Add"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction *action) {
NSString *channelName =
alertController.textFields.firstObject
.text;
if (channelName.length > 0) {
[[ChannelManager sharedInstance]
addBlockedChannel:channelName];
[self reloadGonerinoSection];
UIImpactFeedbackGenerator *generator =
[[UIImpactFeedbackGenerator alloc]
initWithStyle:
UIImpactFeedbackStyleMedium];
[generator prepare];
[generator impactOccurred];
[[%c(YTToastResponderEvent)
eventWithMessage:
[NSString stringWithFormat:
@"A"
@"d"
@"d"
@"e"
@"d"
@" "
@"%"
@"@",
channelName]
firstResponder:settingsVC] send];
}
}]];
[alertController
addAction:[UIAlertAction
actionWithTitle:@"Cancel"
style:UIAlertActionStyleCancel
handler:nil]];
[settingsVC presentViewController:alertController
animated:YES
completion:nil];
return YES;
}]];
for (NSString *channelName in [[ChannelManager sharedInstance] blockedChannels]) {
[rows
addObject:
[%c(YTSettingsSectionItem)
itemWithTitle:channelName
titleDescription:nil
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
YTSettingsViewController *settingsVC =
[self valueForKey:@"_settingsViewControllerDelegate"];
UIAlertController *alertController = [UIAlertController
alertControllerWithTitle:@"Delete Channel"
message:[NSString
stringWithFormat:@"Are you "
@"sure "
@"you "
@"want to "
@"delete "
@"'%@'?",
channelName]
preferredStyle:UIAlertControllerStyleAlert];
[alertController
addAction:
[UIAlertAction
actionWithTitle:@"Delete"
style:UIAlertActionStyleDestructive
handler:^(UIAlertAction *action) {
[[ChannelManager sharedInstance]
removeBlockedChannel:channelName];
[self reloadGonerinoSection];
UIImpactFeedbackGenerator *generator =
[[UIImpactFeedbackGenerator alloc]
initWithStyle:
UIImpactFeedbackStyleMedium];
[generator prepare];
[generator impactOccurred];
[[%c(YTToastResponderEvent)
eventWithMessage:
[NSString stringWithFormat:
@"D"
@"e"
@"l"
@"e"
@"t"
@"e"
@"d"
@" "
@"%"
@"@",
channelName]
firstResponder:settingsVC] send];
}]];
[alertController
addAction:[UIAlertAction
actionWithTitle:@"Cancel"
style:UIAlertActionStyleCancel
handler:nil]];
[settingsVC presentViewController:alertController
animated:YES
completion:nil];
return YES;
}]];
}
YTSettingsViewController *settingsVC = [self valueForKey:@"_settingsViewControllerDelegate"];
YTSettingsPickerViewController *picker = [[%c(YTSettingsPickerViewController) alloc]
initWithNavTitle:@"Manage Channels"
pickerSectionTitle:nil
rows:rows
selectedItemIndex:NSNotFound
parentResponder:[self parentResponder]];
if ([settingsVC respondsToSelector:@selector(navigationController)]) {
UINavigationController *nav = settingsVC.navigationController;
[nav pushViewController:picker animated:YES];
}
return YES;
}];
[sectionItems addObject:manageChannels];
NSUInteger videoCount = [[VideoManager sharedInstance] blockedVideos].count;
YTSettingsSectionItem *manageVideos = [%c(YTSettingsSectionItem)
itemWithTitle:@"Manage Videos"
titleDescription:[NSString stringWithFormat:@"%lu blocked video%@", (unsigned long)videoCount,
videoCount == 1 ? @"" : @"s"]
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
NSArray *blockedVideos = [[VideoManager sharedInstance] blockedVideos];
if (blockedVideos.count == 0) {
YTSettingsViewController *settingsVC =
[self valueForKey:@"_settingsViewControllerDelegate"];
[[%c(YTToastResponderEvent) eventWithMessage:@"No blocked videos"
firstResponder:settingsVC] send];
return YES;
}
NSMutableArray *rows = [NSMutableArray array];
[rows addObject:[%c(YTSettingsSectionItem)
itemWithTitle:@"\t"
titleDescription:@"Blocked videos"
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
return NO;
}]];
for (NSDictionary *videoInfo in blockedVideos) {
[rows
addObject:
[%c(YTSettingsSectionItem)
itemWithTitle:videoInfo[@"channel"] ?: @"Unknown Channel"
titleDescription:videoInfo[@"title"] ?: @"Unknown Title"
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
YTSettingsViewController *settingsVC =
[self valueForKey:@"_settingsViewControllerDelegate"];
UIAlertController *alertController = [UIAlertController
alertControllerWithTitle:@"Delete Video"
message:[NSString
stringWithFormat:
@"Are you sure you want "
@"to delete '%@'?",
videoInfo[@"title"]]
preferredStyle:UIAlertControllerStyleAlert];
[alertController
addAction:
[UIAlertAction
actionWithTitle:@"Delete"
style:UIAlertActionStyleDestructive
handler:^(UIAlertAction *action) {
[[VideoManager sharedInstance]
removeBlockedVideo:videoInfo
[@"id"]];
[self reloadGonerinoSection];
UIImpactFeedbackGenerator *generator =
[[UIImpactFeedbackGenerator alloc]
initWithStyle:
UIImpactFeedbackStyleMedium];
[generator prepare];
[generator impactOccurred];
[[%c(YTToastResponderEvent)
eventWithMessage:
[NSString
stringWithFormat:
@"Deleted %@",
videoInfo[@"title"]]
firstResponder:settingsVC] send];
}]];
[alertController
addAction:[UIAlertAction
actionWithTitle:@"Cancel"
style:UIAlertActionStyleCancel
handler:nil]];
[settingsVC presentViewController:alertController
animated:YES
completion:nil];
return YES;
}]];
}
YTSettingsViewController *settingsVC = [self valueForKey:@"_settingsViewControllerDelegate"];
YTSettingsPickerViewController *picker = [[%c(YTSettingsPickerViewController) alloc]
initWithNavTitle:@"Manage Videos"
pickerSectionTitle:nil
rows:rows
selectedItemIndex:NSNotFound
parentResponder:[self parentResponder]];
if ([settingsVC respondsToSelector:@selector(navigationController)]) {
UINavigationController *nav = settingsVC.navigationController;
[nav pushViewController:picker animated:YES];
}
return YES;
}];
[sectionItems addObject:manageVideos];
NSUInteger wordCount = [[WordManager sharedInstance] blockedWords].count;
YTSettingsSectionItem *manageWords = [%c(YTSettingsSectionItem)
itemWithTitle:@"Manage Words"
titleDescription:[NSString stringWithFormat:@"%lu blocked word%@", (unsigned long)wordCount,
wordCount == 1 ? @"" : @"s"]
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
NSMutableArray *rows = [NSMutableArray array];
[rows
addObject:
[%c(YTSettingsSectionItem)
itemWithTitle:@"Add Word"
titleDescription:@"Block a new word or phrase"
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
YTSettingsViewController *settingsVC =
[self valueForKey:@"_settingsViewControllerDelegate"];
UIAlertController *alertController = [UIAlertController
alertControllerWithTitle:@"Add Word"
message:@"Enter a word or phrase to block"
preferredStyle:UIAlertControllerStyleAlert];
[alertController
addTextFieldWithConfigurationHandler:^(UITextField *textField) {
textField.placeholder = @"Word or phrase";
}];
[alertController
addAction:
[UIAlertAction
actionWithTitle:@"Add"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction *action) {
NSString *word = alertController.textFields
.firstObject.text;
if (word.length > 0) {
[[WordManager sharedInstance]
addBlockedWord:word];
[self reloadGonerinoSection];
UIImpactFeedbackGenerator *generator =
[[UIImpactFeedbackGenerator alloc]
initWithStyle:
UIImpactFeedbackStyleMedium];
[generator prepare];
[generator impactOccurred];
[[%c(YTToastResponderEvent)
eventWithMessage:
[NSString stringWithFormat:
@"Added %@", word]
firstResponder:settingsVC] send];
}
}]];
[alertController
addAction:[UIAlertAction
actionWithTitle:@"Cancel"
style:UIAlertActionStyleCancel
handler:nil]];
[settingsVC presentViewController:alertController
animated:YES
completion:nil];
return YES;
}]];
for (NSString *word in [[WordManager sharedInstance] blockedWords]) {
[rows
addObject:
[%c(YTSettingsSectionItem)
itemWithTitle:word
titleDescription:nil
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
YTSettingsViewController *settingsVC =
[self valueForKey:@"_settingsViewControllerDelegate"];
UIAlertController *alertController = [UIAlertController
alertControllerWithTitle:@"Delete Word"
message:[NSString
stringWithFormat:
@"Are you sure you want "
@"to delete '%@'?",
word]
preferredStyle:UIAlertControllerStyleAlert];
[alertController
addAction:
[UIAlertAction
actionWithTitle:@"Delete"
style:UIAlertActionStyleDestructive
handler:^(UIAlertAction *action) {
[[WordManager sharedInstance]
removeBlockedWord:word];
[self reloadGonerinoSection];
UIImpactFeedbackGenerator *generator =
[[UIImpactFeedbackGenerator alloc]
initWithStyle:
UIImpactFeedbackStyleMedium];
[generator prepare];
[generator impactOccurred];
[[%c(YTToastResponderEvent)
eventWithMessage:
[NSString
stringWithFormat:
@"Deleted %@", word]
firstResponder:settingsVC] send];
}]];
[alertController
addAction:[UIAlertAction
actionWithTitle:@"Cancel"
style:UIAlertActionStyleCancel
handler:nil]];
[settingsVC presentViewController:alertController
animated:YES
completion:nil];
return YES;
}]];
}
YTSettingsViewController *settingsVC = [self valueForKey:@"_settingsViewControllerDelegate"];
YTSettingsPickerViewController *picker = [[%c(YTSettingsPickerViewController) alloc]
initWithNavTitle:@"Manage Words"
pickerSectionTitle:nil
rows:rows
selectedItemIndex:NSNotFound
parentResponder:[self parentResponder]];
if ([settingsVC respondsToSelector:@selector(navigationController)]) {
UINavigationController *nav = settingsVC.navigationController;
[nav pushViewController:picker animated:YES];
}
return YES;
}];
[sectionItems addObject:manageWords];
YTSettingsSectionItem *blockPeopleWatched = [%c(YTSettingsSectionItem)
switchItemWithTitle:@"Block 'People also watched this video'"
titleDescription:@"Remove 'People also watched this video' suggestions"
accessibilityIdentifier:nil
switchOn:[[NSUserDefaults standardUserDefaults] boolForKey:@"GonerinoPeopleWatched"]
switchBlock:^BOOL(YTSettingsCell *cell, BOOL enabled) {
[[NSUserDefaults standardUserDefaults] setBool:enabled forKey:@"GonerinoPeopleWatched"];
return YES;
}
settingItemId:0];
[sectionItems addObject:blockPeopleWatched];
YTSettingsSectionItem *blockMightLike = [%c(YTSettingsSectionItem)
switchItemWithTitle:@"Block 'You might also like this'"
titleDescription:@"Remove 'You might also like this' suggestions"
accessibilityIdentifier:nil
switchOn:[[NSUserDefaults standardUserDefaults] boolForKey:@"GonerinoMightLike"]
switchBlock:^BOOL(YTSettingsCell *cell, BOOL enabled) {
[[NSUserDefaults standardUserDefaults] setBool:enabled forKey:@"GonerinoMightLike"];
return YES;
}
settingItemId:0];
[sectionItems addObject:blockMightLike];
SECTION_HEADER(@"Manage Settings");
YTSettingsSectionItem *exportSettings = [%c(YTSettingsSectionItem)
itemWithTitle:@"Export Settings"
titleDescription:@"Export settings to a plist file"
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
YTSettingsViewController *settingsVC = [self valueForKey:@"_settingsViewControllerDelegate"];
NSMutableDictionary *settings = [NSMutableDictionary dictionary];
settings[@"blockedChannels"] = [[ChannelManager sharedInstance] blockedChannels];
settings[@"blockedVideos"] = [[VideoManager sharedInstance] blockedVideos];
settings[@"blockedWords"] = [[WordManager sharedInstance] blockedWords];
settings[@"blockPeopleWatched"] =
@([[NSUserDefaults standardUserDefaults] boolForKey:@"GonerinoPeopleWatched"]);
settings[@"blockMightLike"] =
@([[NSUserDefaults standardUserDefaults] boolForKey:@"GonerinoMightLike"]);
NSURL *tempFileURL =
[NSURL fileURLWithPath:[NSTemporaryDirectory()
stringByAppendingPathComponent:@"gonerino_settings.plist"]];
[settings writeToURL:tempFileURL atomically:YES];
isImportOperation = NO;
UIDocumentPickerViewController *picker =
[[UIDocumentPickerViewController alloc] initForExportingURLs:@[tempFileURL]];
picker.delegate = (id<UIDocumentPickerDelegate>)self;
[settingsVC presentViewController:picker animated:YES completion:nil];
return YES;
}];
[sectionItems addObject:exportSettings];
YTSettingsSectionItem *importSettings = [%c(YTSettingsSectionItem)
itemWithTitle:@"Import Settings"
titleDescription:@"Import settings from a plist file"
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
YTSettingsViewController *settingsVC = [self valueForKey:@"_settingsViewControllerDelegate"];
isImportOperation = YES;
UIDocumentPickerViewController *picker = [[UIDocumentPickerViewController alloc]
initForOpeningContentTypes:@[[UTType typeWithIdentifier:@"com.apple.property-list"]]];
picker.delegate = (id<UIDocumentPickerDelegate>)self;
[settingsVC presentViewController:picker animated:YES completion:nil];
return YES;
}];
[sectionItems addObject:importSettings];
SECTION_HEADER(@"About");
[sectionItems
addObject:[%c(YTSettingsSectionItem) itemWithTitle:@"GitHub"
titleDescription:@"View source code and report issues"
accessibilityIdentifier:nil
detailTextBlock:nil
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
return [%c(YTUIUtils)
openURL:[NSURL URLWithString:@"https://github.com/"
@"castdrian/Gonerino"]];
}]];
[sectionItems
addObject:[%c(YTSettingsSectionItem) itemWithTitle:@"Version"
titleDescription:nil
accessibilityIdentifier:nil
detailTextBlock:^NSString *() { return [NSString stringWithFormat:@"v%@", TWEAK_VERSION]; }
selectBlock:^BOOL(YTSettingsCell *cell, NSUInteger arg1) {
return [%c(YTUIUtils)
openURL:[NSURL URLWithString:@"https://github.com/castdrian/Gonerino/releases"]];
}]];
if ([delegate respondsToSelector:@selector(setSectionItems:
forCategory:title:icon:titleDescription:headerHidden:)]) {
YTIIcon *icon = [%c(YTIIcon) new];
icon.iconType = YT_FILTER;
[delegate setSectionItems:sectionItems
forCategory:GonerinoSection
title:@"Gonerino"
icon:icon
titleDescription:nil
headerHidden:NO];
} else {
[delegate setSectionItems:sectionItems
forCategory:GonerinoSection
title:@"Gonerino"
titleDescription:nil
headerHidden:NO];
}
}
- (void)updateSectionForCategory:(NSUInteger)category withEntry:(id)entry {
if (category == GonerinoSection) {
[self updateGonerinoSectionWithEntry:entry];
return;
}
%orig;
}
%new
- (UITableView *)findTableViewInView:(UIView *)view {
if ([view isKindOfClass:[UITableView class]]) {
return (UITableView *)view;
}
for (UIView *subview in view.subviews) {
UITableView *tableView = [self findTableViewInView:subview];
if (tableView) {
return tableView;
}
}
return nil;
}
%new
- (void)reloadGonerinoSection {
dispatch_async(dispatch_get_main_queue(), ^{
YTSettingsViewController *delegate = [self valueForKey:@"_settingsViewControllerDelegate"];
if ([delegate isKindOfClass:%c(YTSettingsViewController)]) {
[self updateGonerinoSectionWithEntry:nil];
UITableView *tableView = [self findTableViewInView:delegate.view];
if (tableView) {
[tableView beginUpdates];
NSIndexSet *sectionSet = [NSIndexSet indexSetWithIndex:GonerinoSection];
[tableView reloadSections:sectionSet withRowAnimation:UITableViewRowAnimationAutomatic];
[tableView endUpdates];
}
}
});
}
%new
- (void)documentPicker:(UIDocumentPickerViewController *)controller didPickDocumentsAtURLs:(NSArray<NSURL *> *)urls {
if (urls.count == 0)
return;
YTSettingsViewController *settingsVC = [self valueForKey:@"_settingsViewControllerDelegate"];
NSURL *url = urls.firstObject;
if (isImportOperation) {
[url startAccessingSecurityScopedResource];
NSError *error = nil;
NSData *data = [NSData dataWithContentsOfURL:url options:0 error:&error];
[url stopAccessingSecurityScopedResource];
if (!data || error) {
[[%c(YTToastResponderEvent) eventWithMessage:@"Failed to read settings file"
firstResponder:settingsVC] send];
return;
}
NSDictionary *settings = [NSPropertyListSerialization propertyListWithData:data
options:NSPropertyListImmutable
format:NULL
error:&error];
if (!settings || error) {
[[%c(YTToastResponderEvent) eventWithMessage:@"Invalid settings file format"
firstResponder:settingsVC] send];
return;
}
void (^continueImport)(void) = ^{
NSArray *words = settings[@"blockedWords"];
if (words) {
[[WordManager sharedInstance] setBlockedWords:words];
}
NSNumber *peopleWatched = settings[@"blockPeopleWatched"];
if (peopleWatched) {
[[NSUserDefaults standardUserDefaults] setBool:[peopleWatched boolValue]
forKey:@"GonerinoPeopleWatched"];
}
NSNumber *mightLike = settings[@"blockMightLike"];
if (mightLike) {
[[NSUserDefaults standardUserDefaults] setBool:[mightLike boolValue] forKey:@"GonerinoMightLike"];
}
[[NSUserDefaults standardUserDefaults] synchronize];
[self reloadGonerinoSection];
[[%c(YTToastResponderEvent) eventWithMessage:@"Settings imported successfully"
firstResponder:settingsVC] send];
};
NSArray *channels = settings[@"blockedChannels"];
if (channels) {
[[ChannelManager sharedInstance] setBlockedChannels:[NSMutableArray arrayWithArray:channels]];
}
NSArray *videos = settings[@"blockedVideos"];
if (videos) {
if ([videos isKindOfClass:[NSArray class]]) {
BOOL isValidFormat = YES;
for (id videoEntry in videos) {
if (![videoEntry isKindOfClass:[NSDictionary class]] ||
![videoEntry[@"id"] isKindOfClass:[NSString class]] ||
![videoEntry[@"title"] isKindOfClass:[NSString class]] ||
![videoEntry[@"channel"] isKindOfClass:[NSString class]] || [videoEntry count] != 3) {
isValidFormat = NO;
break;
}
}
if (isValidFormat) {
[[VideoManager sharedInstance] setBlockedVideos:videos];
continueImport();
} else {
[[%c(YTToastResponderEvent)
eventWithMessage:@"Format outdated, blocked videos will not be imported"
firstResponder:settingsVC] send];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)),
dispatch_get_main_queue(), ^{ continueImport(); });
}
} else {
[[%c(YTToastResponderEvent)
eventWithMessage:@"Format outdated, blocked videos will not be imported"
firstResponder:settingsVC] send];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)),
dispatch_get_main_queue(), ^{ continueImport(); });
}
} else {
continueImport();
}
} else {
NSMutableDictionary *settings = [NSMutableDictionary dictionary];
settings[@"blockedChannels"] = [[ChannelManager sharedInstance] blockedChannels];
settings[@"blockedVideos"] = [[VideoManager sharedInstance] blockedVideos];
settings[@"blockedWords"] = [[WordManager sharedInstance] blockedWords];
settings[@"blockPeopleWatched"] =
@([[NSUserDefaults standardUserDefaults] boolForKey:@"GonerinoPeopleWatched"]);
settings[@"blockMightLike"] = @([[NSUserDefaults standardUserDefaults] boolForKey:@"GonerinoMightLike"]);
[settings writeToURL:url atomically:YES];
[[%c(YTToastResponderEvent) eventWithMessage:@"Settings exported successfully"
firstResponder:settingsVC] send];
}
}
%new
- (void)documentPickerWasCancelled:(UIDocumentPickerViewController *)controller {
YTSettingsViewController *settingsVC = [self valueForKey:@"_settingsViewControllerDelegate"];
NSString *message = isImportOperation ? @"Import cancelled" : @"Export cancelled";
[[%c(YTToastResponderEvent) eventWithMessage:message firstResponder:settingsVC] send];
}
%end
%hook YTSettingsViewController
- (void)loadWithModel:(id)model {
%orig;
if ([self respondsToSelector:@selector(updateSectionForCategory:withEntry:)]) {
[(YTSettingsSectionItemManager *)[self valueForKey:@"_sectionItemManager"] updateGonerinoSectionWithEntry:nil];
}
}
%end
%ctor {
%init;
}