forked from SelfControlApp/selfcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ThunderbirdPreferenceParser.m
executable file
·211 lines (174 loc) · 9.02 KB
/
ThunderbirdPreferenceParser.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
//
// ThunderbirdPreferenceParser.m
// SelfControl
//
// Created by Charlie Stigler on 2/17/09.
// Copyright 2009 Eyebeam.
// This file is part of SelfControl.
//
// SelfControl is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#import "ThunderbirdPreferenceParser.h"
NSString* const kThunderbirdSupportFolderPath = @"~/Library/Thunderbird";
@implementation ThunderbirdPreferenceParser
+ (NSString*)pathToSupportFolder {
return [kThunderbirdSupportFolderPath stringByExpandingTildeInPath];
}
+ (BOOL)thunderbirdIsInstalled {
NSString* profilesIniPath = [[self pathToSupportFolder] stringByAppendingPathComponent: @"profiles.ini"];
return [[NSFileManager defaultManager] isReadableFileAtPath: profilesIniPath];
}
+ (NSString*)pathToDefaultProfile {
NSString* profilesIniPath = [[self pathToSupportFolder] stringByAppendingPathComponent: @"profiles.ini"];
if(![[NSFileManager defaultManager] isReadableFileAtPath: profilesIniPath])
return nil;
NSString* profilesIniContents = [NSString stringWithContentsOfFile: profilesIniPath];
NSScanner* profilesIniScanner = [NSScanner scannerWithString: profilesIniContents];
NSMutableArray* profiles = [NSMutableArray arrayWithCapacity: 1];
[profilesIniScanner scanUpToString: @"[Profile" intoString: NULL];
[profilesIniScanner scanUpToCharactersFromSet: [NSCharacterSet newlineCharacterSet]
intoString: NULL];
if([profilesIniScanner isAtEnd])
return nil;
do { // for each profile...
NSString* subString;
NSMutableDictionary* profile = [NSMutableDictionary dictionaryWithCapacity: 4];
[profilesIniScanner scanUpToString: @"\n\n"
intoString: &subString];
NSScanner* subStringScanner = [NSScanner scannerWithString: subString];
while(![subStringScanner isAtEnd]) { // scan for more attributes
NSString* key;
// Read in the key and value
[subStringScanner scanUpToCharactersFromSet: [NSCharacterSet characterSetWithCharactersInString: @"="]
intoString: &key];
[subStringScanner scanCharactersFromSet: [NSCharacterSet characterSetWithCharactersInString: @"="]
intoString: NULL];
// deal with each possible attribute
if([key isEqual: @"Name"]) {
NSString* profileName;
[subStringScanner scanUpToCharactersFromSet: [NSCharacterSet newlineCharacterSet]
intoString: &profileName];
[profile setObject: profileName forKey: @"Name"];
}
else if([key isEqual: @"IsRelative"]) {
int isRelative = 1;
[subStringScanner scanInt: &isRelative];
[profile setObject: [NSNumber numberWithInt: isRelative] forKey: @"IsRelative"];
}
else if([key isEqual: @"Default"]) {
int isDefault = 0;
[subStringScanner scanInt: &isDefault];
[profile setObject: [NSNumber numberWithInt: isDefault] forKey: @"Default"];
}
else if([key isEqual: @"Path"]) {
NSString* path;
[subStringScanner scanUpToCharactersFromSet: [NSCharacterSet newlineCharacterSet]
intoString: &path];
[profile setObject: path forKey: @"Path"];
}
}
[profiles addObject: profile]; // add the profile into the array of profiles
} while(![profilesIniScanner isAtEnd]);
NSDictionary* defaultProfile = nil;
for(int i = 0; i < [profiles count]; i++) {
NSDictionary* p = [profiles objectAtIndex: i];
if([[p objectForKey: @"Default"] isEqual: [NSNumber numberWithInt: 1]]) {
defaultProfile = p;
break;
}
if([[p objectForKey: @"Name"] isEqual: @"default"])
defaultProfile = p;
}
if(defaultProfile == nil) {
defaultProfile = [profiles objectAtIndex: 0];
}
if(defaultProfile == nil)
return nil;
NSString* pathToProfile = [defaultProfile objectForKey: @"Path"];
if(pathToProfile == nil)
return nil;
if([[defaultProfile objectForKey: @"IsRelative"] isEqual: [NSNumber numberWithInt: 0]])
return [pathToProfile stringByStandardizingPath];
else
return [[[self pathToSupportFolder] stringByAppendingPathComponent: pathToProfile] stringByStandardizingPath];
}
+ (NSString*)pathToPrefsJsFile {
NSString* pathToDefaultProfile = [self pathToDefaultProfile];
if(pathToDefaultProfile == nil)
return nil;
return [pathToDefaultProfile stringByAppendingPathComponent: @"prefs.js"];
}
+ (NSArray*)incomingHostnames {
NSString* pathToPrefsJsFile = [self pathToPrefsJsFile];
if(pathToPrefsJsFile == nil)
return [NSArray array];
if(![[NSFileManager defaultManager] isReadableFileAtPath: pathToPrefsJsFile])
return [NSArray array];
// NSArray* prefsJsLines = [[NSString stringWithContentsOfFile: pathToPrefsJsFile] componentsSeparatedByCharactersInSet: [NSCharacterSet newlineCharacterSet]];
// The old implementation of this was better. The new one misses alternative
// line breaks like \r. 10.4 doesn't have a componentSeparatedByCharactersInSet
// method though, so this'll have to do.
NSArray* prefsJsLines = [[NSString stringWithContentsOfFile: pathToPrefsJsFile] componentsSeparatedByString: @"\n"];
NSMutableArray* hostnames = [NSMutableArray arrayWithCapacity: 10];
for(int i = 0; i < [prefsJsLines count]; i++) {
NSString* line = [prefsJsLines objectAtIndex: i];
// All of the asterisks are necessary for globbing so that any amount of
// whitespace will work.
if([line isLike: @"*user_pref(*\"mail.server.server*.hostname\"*,*\"*\"*)*;*"]) {
NSArray* parts = [line componentsSeparatedByString: @"\""];
// If the hostname is "Local Folders", it's a special Thunderbird thing,
// and obviously not something we can block.
if([parts count] >= 4 && ![[parts objectAtIndex: 3] isEqual: @"Local Folders"]) {
[hostnames addObject: [[parts objectAtIndex: 3] stringByAppendingString: @":110"]];
}
}
else if([line isLike: @"*user_pref(*\"mail.server.server*.port\"*,*)*;*"]) {
NSArray* parts = [line componentsSeparatedByString: @","];
parts = [[parts objectAtIndex: 1] componentsSeparatedByString: @")"];
int portNumber = [[[parts objectAtIndex: 0] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] intValue];
NSString* alteredHost = [[[hostnames objectAtIndex: ([hostnames count] - 1)] componentsSeparatedByString: @":"] objectAtIndex: 0];
alteredHost = [alteredHost stringByAppendingFormat: @":%d", portNumber];
[hostnames replaceObjectAtIndex: ([hostnames count] - 1) withObject: alteredHost];
}
}
return hostnames;
}
+ (NSArray*)outgoingHostnames {
NSString* pathToPrefsJsFile = [self pathToPrefsJsFile];
if(pathToPrefsJsFile == nil)
return [NSArray array];
if(![[NSFileManager defaultManager] isReadableFileAtPath: pathToPrefsJsFile])
return [NSArray array];
NSArray* prefsJsLines = [[NSString stringWithContentsOfFile: pathToPrefsJsFile] componentsSeparatedByString: @"\n"];
NSMutableArray* hostnames = [NSMutableArray arrayWithCapacity: 10];
for(int i = 0; i < [prefsJsLines count]; i++) {
NSString* line = [prefsJsLines objectAtIndex: i];
if([line isLike: @"*user_pref(*\"mail.smtpserver.smtp*.hostname\"*,*\"*\"*)*;*"]) {
NSArray* parts = [line componentsSeparatedByString: @"\""];
if([parts count] >= 4 && ![[parts objectAtIndex: 3] isEqual: @"Local Folders"]) {
[hostnames addObject: [[parts objectAtIndex: 3] stringByAppendingString: @":25"]];
}
}
// If there's a port number, add it to the last added hostname. Yes, it could
// technically be associated with a different hostname, but only if the user
// was manually editing the preferences file and changed it stupidly.
else if([line isLike: @"*user_pref(*\"mail.smtpserver.smtp*.port\"*,*)*;*"]) {
NSArray* parts = [line componentsSeparatedByString: @","];
parts = [[parts objectAtIndex: 1] componentsSeparatedByString: @")"];
int portNumber = [[[parts objectAtIndex: 0] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] intValue];
NSString* alteredHost = [[[hostnames objectAtIndex: ([hostnames count] - 1)] componentsSeparatedByString: @":"] objectAtIndex: 0];
alteredHost = [alteredHost stringByAppendingFormat: @":%d", portNumber];
[hostnames replaceObjectAtIndex: ([hostnames count] - 1) withObject: alteredHost];
}
}
return hostnames;
}
@end