-
Notifications
You must be signed in to change notification settings - Fork 0
/
WMManager.m
327 lines (252 loc) · 8.21 KB
/
WMManager.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
//
// WMManager.m
// Widget Manager
//
// Created by Marc Charbonneau on 3/14/06.
// Copyright 2006 __MyCompanyName__. All rights reserved.
//
#import <Security/Security.h>
#import "WMManager.h"
#import "WMWidget.h"
static NSString *fileUtilityPath = nil;
static AuthorizationRef authorizationRef = NULL;
@interface WMManager (Private)
- (NSArray *)_widgetFilePaths;
- (BOOL)_checkAuthentication;
- (BOOL)_authenticatedFileMove:(NSString *)source destination:(NSString *)destination;
- (BOOL)_authenticatedFileRecycle:(NSString *)source;
@end
#pragma mark -
@implementation WMManager
#pragma mark API
+ (id)sharedManager;
{
static id sharedManager = nil;
if ( !sharedManager )
sharedManager = [[self alloc] init];
return sharedManager;
}
- (void)scan;
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSMutableArray *widgets = [NSMutableArray array];
NSArray *files = [self _widgetFilePaths];
NSEnumerator *enumerator = [files objectEnumerator];
NSString *filepath;
while ( filepath = [enumerator nextObject] )
{
WMWidget *widget = [WMWidget widgetWithPath:filepath];
if ( widget != nil )
{
[widgets addObject:widget];
}
}
[_widgets release];
_widgets = [widgets copy];
[pool release];
}
- (void)enableWidget:(WMWidget *)widget;
{
NSFileManager *manager = [NSFileManager defaultManager];
NSString *destination = [[widget path] stringByDeletingPathExtension];
NSString *filePath = [widget path];
BOOL result = NO;
if ( ![manager isDeletableFileAtPath:filePath] && [manager fileExistsAtPath:filePath] )
{
result = [self _authenticatedFileMove:filePath destination:destination];
}
else
{
result = [manager movePath:filePath toPath:destination handler:nil];
}
if ( !result )
{
NSString *title = NSLocalizedStringFromTableInBundle( @"Could not enable Widget", nil, [NSBundle bundleForClass:[self class]], @"" );
NSString *msg = NSLocalizedStringFromTableInBundle( @"You may not have permission to modify the file, or it may be locked.", nil, [NSBundle bundleForClass:[self class]], @"" );
NSRunAlertPanel( title, msg, nil, nil, nil );
}
}
- (void)disableWidget:(WMWidget *)widget;
{
NSFileManager *manager = [NSFileManager defaultManager];
NSString *destination = [[widget path] stringByAppendingPathExtension:@"disabled"];
NSString *filePath = [widget path];
BOOL result = NO;
if ( ![manager isDeletableFileAtPath:filePath] && [manager fileExistsAtPath:filePath] )
{
result = [self _authenticatedFileMove:filePath destination:destination];
}
else
{
result = [manager movePath:filePath toPath:destination handler:nil];
}
if ( !result )
{
NSString *title = NSLocalizedStringFromTableInBundle( @"Could not disable Widget", nil, [NSBundle bundleForClass:[self class]], @"" );
NSString *msg = NSLocalizedStringFromTableInBundle( @"You may not have permission to modify the file, or it may be locked.", nil, [NSBundle bundleForClass:[self class]], @"" );
NSRunAlertPanel( title, msg, nil, nil, nil );
}
}
- (void)installWidget:(WMWidget *)widget;
{
NSFileManager *manager = [NSFileManager defaultManager];
NSString *folder = [@"~/Library/Widgets" stringByExpandingTildeInPath];
NSString *destination = [folder stringByAppendingPathComponent:[[widget path] lastPathComponent]];
// Create the directory if it doesn't exist.
if ( ![manager fileExistsAtPath:folder] )
{
[manager createDirectoryAtPath:folder attributes:nil];
}
if ( [manager fileExistsAtPath:destination] )
{
[manager removeFileAtPath:destination handler:nil];
}
if ( ![manager copyPath:[widget path] toPath:destination handler:nil] )
{
NSString *title = NSLocalizedStringFromTableInBundle( @"Could not copy file", nil, [NSBundle bundleForClass:[self class]], @"" );
NSString *msg = NSLocalizedStringFromTableInBundle( @"The disk may be full, or folder permissions may be incorrect.", nil, [NSBundle bundleForClass:[self class]], @"" );
NSRunAlertPanel( title, msg, nil, nil, nil );
}
}
- (void)removeWidget:(WMWidget *)widget;
{
NSFileManager *manager = [NSFileManager defaultManager];
NSString *filePath = [widget path];
BOOL result = NO;
if ( ![manager isDeletableFileAtPath:filePath] && [manager fileExistsAtPath:filePath] )
{
result = [self _authenticatedFileRecycle:filePath];
}
else
{
NSArray *files = [NSArray arrayWithObject:[filePath lastPathComponent]];
NSString *folder = [filePath stringByDeletingLastPathComponent];
NSInteger tag;
result = [[NSWorkspace sharedWorkspace] performFileOperation:NSWorkspaceRecycleOperation source:folder destination:@"" files:files tag:&tag];
}
if ( !result )
{
NSString *title = NSLocalizedStringFromTableInBundle( @"Could not move file to Trash", nil, [NSBundle bundleForClass:[self class]], @"" );
NSString *msg = NSLocalizedStringFromTableInBundle( @"You may not have permission to modify the file, or it may be locked.", nil, [NSBundle bundleForClass:[self class]], @"" );
NSRunAlertPanel( title, msg, nil, nil, nil );
}
}
- (NSInteger)widgetsCount;
{
return [[self widgets] count];
}
- (NSInteger)enabledWidgetsCount;
{
NSPredicate *filter = [NSPredicate predicateWithFormat:@"SELF.isEnabled == TRUE"];
NSArray *array = [[self widgets] filteredArrayUsingPredicate:filter];
return [array count];
}
#pragma mark Accessor Methods
- (NSArray *)widgets;
{
NSArray *widgets = _widgets;
if ( [self filter] != nil )
{
widgets = [_widgets filteredArrayUsingPredicate:[self filter]];
}
if ( [self sort] != nil )
{
widgets = [widgets sortedArrayUsingDescriptors:[NSArray arrayWithObject:[self sort]]];
}
return widgets;
}
- (NSPredicate *)filter;
{
return _filter;
}
- (NSSortDescriptor *)sort;
{
return _sort;
}
- (void)setFilter:(NSPredicate *)aPredicate;
{
if ( _filter != aPredicate )
{
[_filter release];
_filter = [aPredicate retain];
}
}
- (void)setSort:(NSSortDescriptor *)sortDescriptor;
{
if ( _sort != sortDescriptor )
{
[_sort release];
_sort = [sortDescriptor retain];
}
}
#pragma mark NSObject Overrides
+ (void)initialize;
{
fileUtilityPath = [[[NSBundle bundleForClass:self] pathForResource:@"WMFileUtility" ofType:@""] retain];
}
- (void)dealloc;
{
[_widgets release];
[self setFilter:nil];
[self setSort:nil];
[super dealloc];
}
@end
#pragma mark -
@implementation WMManager (Private)
- (NSArray *)_widgetFilePaths;
{
NSMutableArray *widgetPaths = [NSMutableArray array];
NSArray *searchPaths = [NSArray arrayWithObjects:@"/Library/Widgets", [@"~/Library/Widgets" stringByExpandingTildeInPath], nil];
NSEnumerator *enumerator = [searchPaths objectEnumerator];
NSString *searchPath;
while ( searchPath = [enumerator nextObject] )
{
NSArray *contents = [[NSFileManager defaultManager] directoryContentsAtPath:searchPath];
NSString *filename;
NSInteger index;
for ( index = 0; index < [contents count]; index++ )
{
filename = [contents objectAtIndex:index];
// I could check the path extention here, but I don't think it's
// even worth the effort.
[widgetPaths addObject:[searchPath stringByAppendingPathComponent:filename]];
}
}
return widgetPaths;
}
- (BOOL)_checkAuthentication;
{
OSStatus status = noErr;
if ( authorizationRef == NULL )
{
status = AuthorizationCreate( NULL, kAuthorizationEmptyEnvironment, kAuthorizationFlagDefaults, &authorizationRef );
}
return ( status == noErr );
}
- (BOOL)_authenticatedFileMove:(NSString *)source destination:(NSString *)destination;
{
if ( ![self _checkAuthentication] )
return NO;
char *path = (char *)[fileUtilityPath UTF8String];
char *args[4];
args[0] = (char *)[@"move" UTF8String];
args[1] = (char *)[[source stringByStandardizingPath] UTF8String];
args[2] = (char *)[[destination stringByStandardizingPath] UTF8String];
args[3] = NULL;
OSStatus status = AuthorizationExecuteWithPrivileges( authorizationRef, path, 0, args, NULL );
return ( status == noErr );
}
- (BOOL)_authenticatedFileRecycle:(NSString *)source;
{
if ( ![self _checkAuthentication] )
return NO;
char *path = (char *)[fileUtilityPath UTF8String];
char *args[3];
args[0] = (char *)[@"recycle" UTF8String];
args[1] = (char *)[[source stringByStandardizingPath] UTF8String];
args[2] = NULL;
OSStatus status = AuthorizationExecuteWithPrivileges( authorizationRef, path, 0, args, NULL );
return ( status == noErr );
}
@end