-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathBrowserExtensions.m
executable file
·965 lines (775 loc) · 29.4 KB
/
BrowserExtensions.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
//
// BrowserExtensions.m
// KnockKnock
//
#import "File.h"
#import "Utilities.h"
#import "BrowserExtensions.h"
#import "../Results/Extension.h"
#import <Security/Security.h>
//plugin name
#define PLUGIN_NAME @"Browser Extensions"
//plugin description
#define PLUGIN_DESCRIPTION NSLocalizedString(@"extensions hosted in the browser", "extensions hosted in the browser")
//plugin icon
#define PLUGIN_ICON @"browserIcon"
//plugin search directory
// ->safari
#define SAFARI_EXTENSION_DIRECTORY @"~/Library/Safari/Extensions/"
//safari's default location
#define SAFARI_DEFAULT_LOCATION @"/Applications/Safari.app"
//google chrome's base directory
#define CHROME_BASE_PROFILE_DIRECTORY @"~/Library/Application Support/Google/Chrome/"
//plugin preferences file
// ->chrome
#define CHROME_PREFERENCES_FILE @"~/Library/Application Support/Google/Chrome/Default/Preferences"
//plugin secure preferences file
// ->chrome
#define CHROME_SECURE_PREFERENCES_FILE @"~/Library/Application Support/Google/Chrome/Default/Secure Preferences"
//plugin search directory
// ->firefox
#define FIREFOX_EXTENSION_DIRECTORY @"~/Library/Application Support/Firefox/Profiles/"
//opera base directory
// ->contains preferences, extensions,e tc
#define OPERA_INFO_BASE_DIRECTORY @"~/Library/Application Support/com.operasoftware.Opera/"
@implementation BrowserExtensions
//init
// ->set name, description, etc
-(id)init
{
//super
self = [super init];
if(self)
{
//set name
self.name = PLUGIN_NAME;
//set description
self.description = PLUGIN_DESCRIPTION;
//set icon
self.icon = PLUGIN_ICON;
}
return self;
}
//scan for login items
-(void)scan
{
//installed browsers
NSArray* installedBrowsers = nil;
//dbg msg
//NSLog(@"%@: scanning", PLUGIN_NAME);
//get all installed browsers
installedBrowsers = [self getInstalledBrowsers];
//iterate over all browsers
// ->handle Safari, Chrome, and Firefox
for(NSString* installedBrowser in installedBrowsers)
{
//scan for Safari extensions
if(NSNotFound != [installedBrowser rangeOfString:@"Safari.app"].location)
{
//scan
[self scanExtensionsSafari:installedBrowser];
}
//scan for Chrome extensions
else if(NSNotFound != [installedBrowser rangeOfString:@"Google Chrome.app"].location)
{
//scan
[self scanExtensionsChrome:installedBrowser];
}
//scan for Firefox extensions
else if(NSNotFound != [installedBrowser rangeOfString:@"Firefox.app"].location)
{
//scan
[self scanExtensionsFirefox:installedBrowser];
}
//scan for Opera extensions
else if(NSNotFound != [installedBrowser rangeOfString:@"Opera.app"].location)
{
//scan
[self scanExtensionsOpera:installedBrowser];
}
}
return;
}
//get list of install browsers
-(NSArray*)getInstalledBrowsers
{
//installed browser
NSMutableArray* browsers = nil;
//installed browser IDs
CFArrayRef browserIDs = NULL;
//browser URL
CFURLRef browserURL = NULL;
//alloc browsers array
browsers = [NSMutableArray array];
//get list of browers
// macOS 12+ can use 'URLsForApplicationsToOpenURL'
if (@available(macOS 12.0, *)) {
//add each browser
for(NSURL* browser in [NSWorkspace.sharedWorkspace URLsForApplicationsToOpenURL:[NSURL URLWithString:PRODUCT_URL]])
{
//add
[browsers addObject:browser.path];
}
}
//get list of browers
// pre-macOS 12, use 'LSCopyAllHandlersForURLScheme' & 'LSFindApplicationForInfo'
else {
//get IDs of all installed browsers
// (or, well, things that can handle HTTPS)
browserIDs = LSCopyAllHandlersForURLScheme(CFSTR("https"));
//resolve browser ID to browser path
for(NSString* browserID in (__bridge NSArray *)browserIDs)
{
//resolve browser URL
if(STATUS_SUCCESS != LSFindApplicationForInfo(kLSUnknownCreator, (__bridge CFStringRef)(browserID), NULL, NULL, &browserURL))
{
//skip
continue;
}
//save browser URL
[browsers addObject:[(__bridge NSURL *)browserURL path]];
}
//release browser IDs
if(nil != browserIDs)
{
//release
CFRelease(browserIDs);
browserIDs = nil;
}
}
return browsers;
}
//scan for Safari extensions
// invokes pluginkit to enumerate extensions...
-(void)scanExtensionsSafari:(NSString*)browserPath
{
//output from pluginkit
NSData* taskOutput = nil;
//exec pluginkit for each type
// then invoke helper to parse/create extension objects
for(NSString* match in @[@"com.apple.Safari.extension", @"com.apple.Safari.content-blocker"])
{
//enumerate via pluginkit
taskOutput = execTask(PLUGIN_KIT, @[@"-mAvv", @"-p", match], NULL);
if(0 != taskOutput.length)
{
//parse output
[self parseSafariExtensions:taskOutput browserPath:browserPath];
}
}
return;
}
//parse the output from pluginkit
// create extension objects for any/all
-(void)parseSafariExtensions:(NSData*)extensions browserPath:(NSString*)browserPath
{
//extension info
NSMutableDictionary* extensionInfo = nil;
//Extension object
Extension* extensionObj = nil;
//split each time
// and parse, extracing name, path, etc...
for(NSString* line in [[[NSString alloc] initWithData:extensions encoding:NSUTF8StringEncoding] componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]])
{
//key
NSString* key = nil;
//value
NSString* value = nil;
//components
NSArray* components = nil;
//details
NSString* details = nil;
//split
components = [[line stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]] componentsSeparatedByString:@"="];
//init
if(nil == extensionInfo)
{
//init
extensionInfo = [NSMutableDictionary dictionary];
//save plugin
extensionInfo[KEY_RESULT_PLUGIN] = self;
//save browser path (i.e. Safari)
extensionInfo[KEY_EXTENSION_BROWSER] = browserPath;
}
//grab key
key = [components.firstObject stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
//grab value
value = [components.lastObject stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
//name
if(YES == [key isEqualToString:@"Display Name"])
{
//save
extensionInfo[KEY_RESULT_NAME] = value;
}
//path
else if(YES == [key isEqualToString:@"Path"])
{
//save
extensionInfo[KEY_RESULT_PATH] = value;
}
//uuid
else if(YES == [key isEqualToString:@"UUID"])
{
//save
extensionInfo[KEY_EXTENSION_ID] = value;
}
//have all three?
if( (nil != extensionInfo[KEY_RESULT_NAME]) &&
(nil != extensionInfo[KEY_RESULT_PATH]) &&
(nil != extensionInfo[KEY_EXTENSION_ID]) )
{
//grab details
// found in Info.plist -> 'NSHumanReadableDescription'
details = [NSDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"%@/Contents/Info.plist", extensionInfo[KEY_RESULT_PATH]]][@"NSHumanReadableDescription"];
if(nil != details)
{
//add
extensionInfo[KEY_EXTENSION_DETAILS] = details;
}
//create extension object
if(nil != (extensionObj = [[Extension alloc] initWithParams:extensionInfo]))
{
//process item
// save and report to UI
[super processItem:extensionObj];
}
//unset
// ...for next
extensionInfo = nil;
}
}
return;
}
//scan for Chrome extensions
-(void)scanExtensionsChrome:(NSString*)browserPath
{
//console user
NSString* currentUser = nil;
//all users
NSMutableDictionary* users = nil;
//home directory for user
NSString* userDirectory = nil;
//preference files
NSMutableArray* preferenceFiles = nil;
//profile directories
NSArray* profiles = nil;
//(current) profile directory
NSString* profileDirectory = nil;
//preferences
NSDictionary* preferences = nil;
//extensions
NSDictionary* extensions = nil;
//current extension
NSDictionary* extension = nil;
//current extension manifest
NSDictionary* manifest = nil;
//extension path
NSString* path = nil;
//extension info
NSMutableDictionary* extensionInfo = nil;
//Extension object
Extension* extensionObj = nil;
//alloc list for preference files
preferenceFiles = [NSMutableArray array];
//alloc users dictionary
users = [NSMutableDictionary dictionary];
//root?
// can scan all users
if(0 == geteuid())
{
//all
users = allUsers();
}
//just current user
else
{
//get current/console user
currentUser = getConsoleUser();
//get their home directory
userDirectory = NSHomeDirectoryForUser(currentUser);
//save
if( (0 != currentUser.length) &&
(0 != userDirectory.length) )
{
//current
users[currentUser] = @{USER_NAME:currentUser, USER_DIRECTORY:userDirectory};
}
}
//get profile files for all users
for(NSString* userID in users)
{
//add default ('Preferences')
[preferenceFiles addObject:[users[userID][USER_DIRECTORY] stringByAppendingPathComponent:[CHROME_PREFERENCES_FILE substringFromIndex:1]]];
//add default ('Secure Preferences')
[preferenceFiles addObject:[users[userID][USER_DIRECTORY] stringByAppendingPathComponent:[CHROME_SECURE_PREFERENCES_FILE substringFromIndex:1]]];
//get profile dirs
// 'Profile 1', etc...
profiles = directoryContents([users[userID][USER_DIRECTORY] stringByAppendingPathComponent:[CHROME_BASE_PROFILE_DIRECTORY substringFromIndex:1]], @"self BEGINSWITH 'Profile'");
//build and append full paths of preferences files to list
for(NSString* profile in profiles)
{
//init profile directory
profileDirectory = [users[userID][USER_DIRECTORY] stringByAppendingPathComponent:[CHROME_BASE_PROFILE_DIRECTORY substringFromIndex:1]];
//add default prefs
[preferenceFiles addObject:[NSString stringWithFormat:@"%@/%@/Preferences", profileDirectory, profile]];
//add secure prefs
[preferenceFiles addObject:[NSString stringWithFormat:@"%@/%@/Secure Preferences", profileDirectory, profile]];
}
}
//now process all preference files
// load/parse/extract extensions from each file
for(NSString* preferenceFile in preferenceFiles)
{
//skip non-existent preference files
if(YES != [[NSFileManager defaultManager] fileExistsAtPath:preferenceFile])
{
//skip
continue;
}
//load preferences
// ->wrap since we are serializing JSON
@try
{
//load prefs
preferences = [NSJSONSerialization JSONObjectWithData:[NSData dataWithContentsOfFile:preferenceFile] options:kNilOptions error:NULL];
}
//skip to next, on any exceptions
@catch(NSException *exception)
{
//err msg
//NSLog(@"ERROR: converting chrome pref's to JSON threw %@", exception);
//skip
continue;
}
//extract extensions
extensions = preferences[@"extensions"][@"settings"];
//iterate over all extensions
// ->skip disabled ones, etc
for(NSString* key in extensions)
{
//alloc extension info
extensionInfo = [NSMutableDictionary dictionary];
//extract current extension
extension = extensions[key];
//skip disabled ones
if(YES != [extension[@"state"] boolValue])
{
//skip
continue;
}
//skip extensions that are installed by default
// ->hope this is ok
if(YES == [extension[@"was_installed_by_default"] boolValue])
{
//skip
continue;
}
//skip extensions w/o paths
if(nil == extension[@"path"])
{
//skip
continue;
}
//save key as id
extensionInfo[KEY_EXTENSION_ID] = key;
//extact path
// ->sometimes its a full path
if(YES == [[NSFileManager defaultManager] fileExistsAtPath:extension[@"path"]])
{
//extract full path
path = extension[@"path"];
}
//extract path
// ->generally have to build it
else
{
//build path
path = [NSString stringWithFormat:@"%@/Extensions/%@", [preferenceFile stringByDeletingLastPathComponent], extension[@"path"]];
//skip paths that don't exist
if(YES != [[NSFileManager defaultManager] fileExistsAtPath:path])
{
//skip
continue;
}
}
//save path
extensionInfo[KEY_RESULT_PATH] = path;
//extract manifest
// ->contains name, etc
manifest = extension[@"manifest"];
//skip blank names
if(nil == manifest[@"name"])
{
//skip
continue;
}
//extract/save name
extensionInfo[KEY_RESULT_NAME] = manifest[@"name"];
//save any details (description)
if(nil != manifest[@"description"])
{
//save
extensionInfo[KEY_EXTENSION_DETAILS] = manifest[@"description"];
}
//save browser path (i.e. Chrome)
extensionInfo[KEY_EXTENSION_BROWSER] = browserPath;
//save plugin
extensionInfo[KEY_RESULT_PLUGIN] = self;
//create Extension object for launch item
// ->skip those that err out for any reason
if(nil == (extensionObj = [[Extension alloc] initWithParams:extensionInfo]))
{
//skip
continue;
}
//process item
// ->save and report to UI
[super processItem:extensionObj];
}//for all extensions
}//for all profile files
bail:
return;
}
//scan for Firefox extensions
-(void)scanExtensionsFirefox:(NSString*)browserPath
{
//console user
NSString* currentUser = nil;
//users
NSMutableDictionary* users = nil;
//home directory for user
NSString* userDirectory = nil;
//Firefox profiles
NSArray* profiles = nil;
//path to extensions
NSString* extensionsFile = nil;
//list of extension files
NSMutableArray* extensionFiles = nil;
//the extensions
NSDictionary* extensions = nil;
//list of extension IDs
// ->prevents dupes
NSMutableArray* extensionIDs = nil;
//default locale
NSDictionary* defaultLocale = nil;
//extension path
NSMutableString* path = nil;
//extension info
NSMutableDictionary* extensionInfo = nil;
//Extension object
Extension* extensionObj = nil;
//init extension IDs array
extensionIDs = [NSMutableArray array];
//alloc users dictionary
users = [NSMutableDictionary dictionary];
//root?
// can scan all users
if(0 == geteuid())
{
//all
users = allUsers();
}
//just current user
else
{
//get current/console user
currentUser = getConsoleUser();
//get their home directory
userDirectory = NSHomeDirectoryForUser(currentUser);
//save
if( (0 != currentUser.length) &&
(0 != userDirectory.length) )
{
//current
users[currentUser] = @{USER_NAME:currentUser, USER_DIRECTORY:userDirectory};
}
}
//get profile files for all users
for(NSString* userID in users)
{
//get user profiles
profiles = directoryContents([users[userID][USER_DIRECTORY] stringByAppendingPathComponent:[FIREFOX_EXTENSION_DIRECTORY substringFromIndex:1]], nil);
//iterate over all addons and extensions files in profile directories
//->extact all addons and extensions
for(NSString* profile in profiles)
{
//init extension files array
extensionFiles = [NSMutableArray array];
//init extension info dictionary
extensionInfo = [NSMutableDictionary dictionary];
//init path to first extensions (addons.json) file
extensionsFile = [NSString stringWithFormat:@"%@/%@/addons.json", [users[userID][USER_DIRECTORY] stringByAppendingPathComponent:[FIREFOX_EXTENSION_DIRECTORY substringFromIndex:1]], profile];
if(YES == [[NSFileManager defaultManager] fileExistsAtPath:extensionsFile])
{
//save
[extensionFiles addObject:extensionsFile];
}
//init path to second extensions (extensions.json) file
extensionsFile = [NSString stringWithFormat:@"%@/%@/extensions.json", [users[userID][USER_DIRECTORY] stringByAppendingPathComponent:[FIREFOX_EXTENSION_DIRECTORY substringFromIndex:1]], profile];
if(YES == [[NSFileManager defaultManager] fileExistsAtPath:extensionsFile])
{
//save
[extensionFiles addObject:extensionsFile];
}
//process both files
for(NSString* extensionFile in extensionFiles)
{
//load extensions
// ->wrap since we are serializing JSON
@try
{
//load em
// ->extension files, under 'addons' key
extensions = [NSJSONSerialization JSONObjectWithData:[NSData dataWithContentsOfFile:extensionFile] options:kNilOptions error:NULL][@"addons"];
}
//catch any exceptions
// ->just try next
@catch(NSException *exception)
{
//next
continue;
}
//parse out all extensions
for(NSDictionary* extension in extensions)
{
//ignore dups
if(YES == [extensionIDs containsObject:extension[@"id"]])
{
//skip
continue;
}
//extract/save extension ID
extensionInfo[KEY_EXTENSION_ID] = extension[@"id"];
//extract/save path, name, details
// ->case: addons.json file
if(YES == [[extensionFile lastPathComponent] isEqualToString:@"addons.json"])
{
//extract path
path = [NSMutableString stringWithFormat:@"%@/extensions/%@.xpi", [extensionFile stringByDeletingLastPathComponent], extension[@"id"]];
//skip invalid/not found paths
if(YES != [[NSFileManager defaultManager] fileExistsAtPath:path])
{
//skip
continue;
}
//save path
extensionInfo[KEY_RESULT_PATH] = path;
//skip blank names
if(nil == extension[@"name"])
{
//skip
continue;
}
//extract/save name
extensionInfo[KEY_RESULT_NAME] = extension[@"name"];
//extract/save details
if(nil != extension[@"description"])
{
//save
extensionInfo[KEY_EXTENSION_DETAILS] = extension[@"description"];
}
}
//extract/save path, name, details
// ->case: extensions.json file
else
{
//extract path
path = [NSMutableString stringWithFormat:@"%@/extensions/%@", [extensionFile stringByDeletingLastPathComponent], extension[@"id"]];
//skip invalid/not found paths
// ->note: also checks for extensions that end in .xpi (to account for newer versions of firefox)
if(YES != [[NSFileManager defaultManager] fileExistsAtPath:path])
{
//create .xpi version
[path appendString:@".xpi"];
//check this variation too
if(YES != [[NSFileManager defaultManager] fileExistsAtPath:path])
{
//skip
continue;
}
}
//save path
extensionInfo[KEY_RESULT_PATH] = path;
//extract default locale
defaultLocale = extension[@"defaultLocale"];
//skip nil defaultLocales
if(nil == defaultLocale)
{
//skip
continue;
}
//skip blank names
if(nil == defaultLocale[@"name"])
{
//skip
continue;
}
//extract/save name
extensionInfo[KEY_RESULT_NAME] = defaultLocale[@"name"];
//extract/save details
if(nil != defaultLocale[@"description"])
{
//save
extensionInfo[KEY_EXTENSION_DETAILS] = defaultLocale[@"description"];
}
}
//save extension ID
// ->prevents dups (since multiple files are being parsed)
[extensionIDs addObject:extensionInfo[KEY_EXTENSION_ID]];
//save browser path (i.e. Firefox)
extensionInfo[KEY_EXTENSION_BROWSER] = browserPath;
//save plugin
extensionInfo[KEY_RESULT_PLUGIN] = self;
//create Extension object for launch item
// ->skip those that err out for any reason
if(nil == (extensionObj = [[Extension alloc] initWithParams:extensionInfo]))
{
//skip
continue;
}
//process item
// ->save and report to UI
[super processItem:extensionObj];
}//for all extension in file
}//for all extension files
}//for all profiles
}//for all users
return;
}
//scan for Opera extensions
// note: this seems identical to chrome!
// so updates to that should go here too?
-(void)scanExtensionsOpera:(NSString*)browserPath
{
//preferences file
NSString* preferenceFile = nil;
//extensions
NSDictionary* extensions = nil;
//preferences
NSDictionary* preferences = nil;
//extension info
NSMutableDictionary* extensionInfo = nil;
//current extension
NSDictionary* extension = nil;
//current extension manifest
NSDictionary* manifest = nil;
//extension path
NSString* path = nil;
//Extension object
Extension* extensionObj = nil;
//build path to preferences
preferenceFile = [NSString stringWithFormat:@"%@/Preferences", [OPERA_INFO_BASE_DIRECTORY stringByExpandingTildeInPath]];
//make sure preference file exists
if(YES != [[NSFileManager defaultManager] fileExistsAtPath:preferenceFile])
{
//bail
goto bail;
}
//load preferences
// ->wrap since we are serializing JSON
@try
{
//load prefs
preferences = [NSJSONSerialization JSONObjectWithData:[NSData dataWithContentsOfFile:preferenceFile] options:kNilOptions error:NULL];
}
//skip to next, on any exceptions
@catch(NSException *exception)
{
//bail
goto bail;
}
//extract extensions
extensions = preferences[@"extensions"][@"settings"];
//iterate over all extensions
// ->skip disabled ones, etc
for(NSString* key in extensions)
{
//alloc extension info
extensionInfo = [NSMutableDictionary dictionary];
//extract current extension
extension = extensions[key];
//skip black-listed ones
if(YES == [extensions[@"blacklist"] boolValue])
{
//skip
continue;
}
//skip disabled ones
if(YES != [extension[@"state"] boolValue])
{
//skip
continue;
}
//skip extensions that are installed by default
// ->hope this is ok
if(YES == [extension[@"was_installed_by_default"] boolValue])
{
//skip
continue;
}
//skip extensions w/o paths
if(nil == extension[@"path"])
{
//skip
continue;
}
//save key as id
extensionInfo[KEY_EXTENSION_ID] = key;
//extact path
// ->sometimes its a full path
if(YES == [[NSFileManager defaultManager] fileExistsAtPath:extension[@"path"]])
{
//extract full path
path = extension[@"path"];
}
//extract path
// ->generally have to build it
else
{
//build path
path = [NSString stringWithFormat:@"%@/Extensions/%@", [OPERA_INFO_BASE_DIRECTORY stringByExpandingTildeInPath], extension[@"path"]];
//skip paths that don't exist
if(YES != [[NSFileManager defaultManager] fileExistsAtPath:path])
{
//skip
continue;
}
}
//save path
extensionInfo[KEY_RESULT_PATH] = path;
//extract manifest
// ->contains name, etc
manifest = extension[@"manifest"];
//skip blank names
if(nil == manifest[@"name"])
{
//skip
continue;
}
//extract/save name
extensionInfo[KEY_RESULT_NAME] = manifest[@"name"];
//save any details (description)
if(nil != manifest[@"description"])
{
//save
extensionInfo[KEY_EXTENSION_DETAILS] = manifest[@"description"];
}
//save browser path (i.e. Chrome)
extensionInfo[KEY_EXTENSION_BROWSER] = browserPath;
//save plugin
extensionInfo[KEY_RESULT_PLUGIN] = self;
//create Extension object for launch item
// ->skip those that err out for any reason
if(nil == (extensionObj = [[Extension alloc] initWithParams:extensionInfo]))
{
//skip
continue;
}
//process item
// ->save and report to UI
[super processItem:extensionObj];
}//for all extensions
bail:
return;
}
@end