-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO_AppDelegate.m
542 lines (444 loc) · 17.5 KB
/
TODO_AppDelegate.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
//
// TODO_AppDelegate.m
// TODO
//
// Created by ?? ? on 4/9/09.
// Copyright __MyCompanyName__ 2009 . All rights reserved.
//
#import "TODO_AppDelegate.h"
#import <CommonCrypto/CommonDigest.h>
#import "Task.h"
#import "TaskList.h"
#import "Note.h"
#import "Predicate.h"
@implementation TODO_AppDelegate
static NSString *apiKey = @"5a98a85fa1591ea18410784a2fd97669";
static NSString *token = @"";
@synthesize isLoading, statusText;
/**
Returns the support folder for the application, used to store the Core Data
store file. This code uses a folder named "TODO" for
the content, either in the NSApplicationSupportDirectory location or (if the
former cannot be found), the system's temporary directory.
*/
- (NSString *)applicationSupportFolder {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
NSString *basePath = ([paths count] > 0) ? [paths objectAtIndex:0] : NSTemporaryDirectory();
return [basePath stringByAppendingPathComponent:@"TODO"];
}
/**
Creates, retains, and returns the managed object model for the application
by merging all of the models found in the application bundle.
*/
- (NSManagedObjectModel *)managedObjectModel {
if (managedObjectModel != nil) {
return managedObjectModel;
}
managedObjectModel = [[NSManagedObjectModel mergedModelFromBundles:nil] retain];
return managedObjectModel;
}
/**
Returns the persistent store coordinator for the application. This
implementation will create and return a coordinator, having added the
store for the application to it. (The folder for the store is created,
if necessary.)
*/
- (NSPersistentStoreCoordinator *) persistentStoreCoordinator {
if (persistentStoreCoordinator != nil) {
return persistentStoreCoordinator;
}
NSFileManager *fileManager;
NSString *applicationSupportFolder = nil;
NSURL *url;
NSError *error;
fileManager = [NSFileManager defaultManager];
applicationSupportFolder = [self applicationSupportFolder];
if ( ![fileManager fileExistsAtPath:applicationSupportFolder isDirectory:NULL] ) {
[fileManager createDirectoryAtPath:applicationSupportFolder attributes:nil];
}
url = [NSURL fileURLWithPath: [applicationSupportFolder stringByAppendingPathComponent: @"TODO.xml"]];
persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel: [self managedObjectModel]];
if (![persistentStoreCoordinator addPersistentStoreWithType:NSXMLStoreType configuration:nil URL:url options:nil error:&error]){
[[NSApplication sharedApplication] presentError:error];
}
return persistentStoreCoordinator;
}
/**
Returns the managed object context for the application (which is already
bound to the persistent store coordinator for the application.)
*/
- (NSManagedObjectContext *) managedObjectContext {
if (managedObjectContext != nil) {
return managedObjectContext;
}
NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator];
if (coordinator != nil) {
managedObjectContext = [[NSManagedObjectContext alloc] init];
[managedObjectContext setPersistentStoreCoordinator: coordinator];
}
return managedObjectContext;
}
/**
Returns the NSUndoManager for the application. In this case, the manager
returned is that of the managed object context for the application.
*/
- (NSUndoManager *)windowWillReturnUndoManager:(NSWindow *)window {
return [[self managedObjectContext] undoManager];
}
/**
Performs the save action for the application, which is to send the save:
message to the application's managed object context. Any encountered errors
are presented to the user.
*/
- (IBAction) saveAction:(id)sender {
NSError *error = nil;
if (![[self managedObjectContext] save:&error]) {
[[NSApplication sharedApplication] presentError:error];
}
}
/**
Implementation of the applicationShouldTerminate: method, used here to
handle the saving of changes in the application managed object context
before the application terminates.
*/
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender {
NSError *error;
int reply = NSTerminateNow;
if (managedObjectContext != nil) {
if ([managedObjectContext commitEditing]) {
if ([managedObjectContext hasChanges] && ![managedObjectContext save:&error]) {
// This error handling simply presents error information in a panel with an
// "Ok" button, which does not include any attempt at error recovery (meaning,
// attempting to fix the error.) As a result, this implementation will
// present the information to the user and then follow up with a panel asking
// if the user wishes to "Quit Anyway", without saving the changes.
// Typically, this process should be altered to include application-specific
// recovery steps.
BOOL errorResult = [[NSApplication sharedApplication] presentError:error];
if (errorResult == YES) {
reply = NSTerminateCancel;
}
else {
int alertReturn = NSRunAlertPanel(nil, @"Could not save changes while quitting. Quit anyway?" , @"Quit anyway", @"Cancel", nil);
if (alertReturn == NSAlertAlternateReturn) {
reply = NSTerminateCancel;
}
}
}
}
else {
reply = NSTerminateCancel;
}
}
return reply;
}
/**
Implementation of dealloc, to release the retained variables.
*/
- (void) dealloc {
[managedObjectContext release], managedObjectContext = nil;
[persistentStoreCoordinator release], persistentStoreCoordinator = nil;
[managedObjectModel release], managedObjectModel = nil;
[super dealloc];
}
- (void) awakeFromNib
{
// sort task table with its title name
NSSortDescriptor *sortDescriptor = [[[NSSortDescriptor alloc] initWithKey:@"title" ascending:YES] autorelease];
NSArray *descriptors = [NSArray arrayWithObject:sortDescriptor];
[todoTableView setSortDescriptors: descriptors];
}
- (NSString *) createMD5String:(NSString *)orig {
const char *test_cstr = [orig UTF8String];
unsigned char md5_result[CC_MD5_DIGEST_LENGTH];
CC_MD5(test_cstr, strlen(test_cstr), md5_result);
char md5cstring[CC_MD5_DIGEST_LENGTH*2];
for (int i = 0; i < CC_MD5_DIGEST_LENGTH; i++) {
sprintf(md5cstring+i*2, "%02x", md5_result[i]);
}
return [NSString stringWithCString:md5cstring length:CC_MD5_DIGEST_LENGTH*2];
}
-(BOOL)tableView:(NSTableView *)tableView keyDown:(NSEvent *)theEvent
{
NSString *text = [theEvent characters];
if ([text isEqualToString:@" "])
{
if ([hudwindow isVisible]) {
[hudwindow orderOut:self];
} else {
[hudwindow orderFront:self];
}
return YES;
}
return NO;
}
-(BOOL)panelWindow:(NSPanel *)panelWindow keyDown:(NSEvent *)theEvent
{
NSString *text = [theEvent characters];
if ([text isEqualToString:@" "])
{
if ([hudwindow isVisible]) {
[hudwindow orderOut:self];
} else {
[hudwindow orderFront:self];
}
return YES;
}
return NO;
}
- (NSString *) createRtmQuery:(NSDictionary *)params
{
NSString *secret = @"b16393df7a139ec4";
NSArray *keys = [[params allKeys] sortedArrayUsingSelector:@selector(compare:)];
NSMutableString *signature = [NSMutableString stringWithString:secret];
// prepare api_sig
for (NSString *key in keys)
{
NSString *val = [params objectForKey:key];
[signature appendString:key];
[signature appendString:val];
}
NSString *apiSig = [self createMD5String:signature];
// prepare query
NSMutableArray *pairs = [NSMutableArray arrayWithCapacity:5];
[pairs addObject:[@"api_sig=" stringByAppendingString:apiSig]];
for (NSString *key in keys)
{
NSString *val = [params objectForKey:key];
[pairs addObject:[NSString stringWithFormat:@"%@=%@", key, val]];
}
return [pairs componentsJoinedByString:@"&"];
}
- (NSXMLElement *) performQuery:(NSString *)query
{
BOOL asHTML = NO;
NSURL *url = [NSURL URLWithString:query];
NSError *error = nil;
int options = (asHTML) ? NSXMLDocumentTidyHTML : 0;
NSXMLDocument *document = [[[NSXMLDocument alloc]
initWithContentsOfURL:url options:options error:&error] autorelease];
return [document rootElement];
}
- (void) updateRtmTasks:(TaskList *)list
{
NSManagedObjectContext *context = [self managedObjectContext];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithCapacity:5];
[params setObject:apiKey forKey:@"api_key"];
[params setObject:[[list listid] stringValue] forKey:@"list_id"];
[params setObject:@"rtm.tasks.getList" forKey:@"method"];
[params setObject:token forKey:@"auth_token"];
NSString *requestURL = [@"http://api.rememberthemilk.com/services/rest/?"
stringByAppendingString:[self createRtmQuery:params]];
NSXMLElement *rootElement = [self performQuery:requestURL];
NSArray *taskseriesArray = [rootElement nodesForXPath:@"/rsp/tasks/list/taskseries" error:nil];
for (NSXMLElement *taskseries in taskseriesArray)
{
Task *taskEntity = [NSEntityDescription insertNewObjectForEntityForName:@"Task"
inManagedObjectContext:context];
taskEntity.title = [[taskseries attributeForName:@"name"] stringValue];
taskEntity.taskid = [NSNumber numberWithLongLong:[[[taskseries attributeForName:@"id"] stringValue] longLongValue]];
taskEntity.tags = [[[[[taskseries elementsForName:@"tags"] lastObject] children]
valueForKey:@"stringValue"] componentsJoinedByString:@","];
NSXMLElement *task = [[NSXMLElement alloc]
initWithXMLString:[[taskseries childAtIndex:3] XMLString] error:nil];
if ([task attributeForName:@"due"])
{
NSDateFormatter *df = [[[NSDateFormatter alloc] init] autorelease];
[df setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss'Z'"];
NSDate *date = [df dateFromString:[[task attributeForName:@"due"] stringValue]];
taskEntity.due = date;
}
int pri = [[[task attributeForName:@"priority"] stringValue] intValue];
taskEntity.priority = [NSNumber numberWithInt:(pri==0?0:4-pri)];
taskEntity.completed = [[task attributeForName:@"completed"] stringValue];
taskEntity.time = [[task attributeForName:@"estimate"] stringValue];
taskEntity.tasklist = list;
NSXMLElement *notes = [[NSXMLElement alloc]
initWithXMLString:[[taskseries childAtIndex:2] XMLString] error:nil];
for (NSXMLElement *note in [notes children])
{
Note *noteEntity = [NSEntityDescription insertNewObjectForEntityForName:@"Note"
inManagedObjectContext:context];
noteEntity.content = [note stringValue];
noteEntity.task = taskEntity;
}
}
}
/**
Get all tasks from RTM irrelevant to list
*/
- (void) updateAllTasks
{
NSManagedObjectContext *context = [self managedObjectContext];
NSFetchRequest *req = [[NSFetchRequest alloc] init];
[req setEntity:[NSEntityDescription entityForName:@"TaskList" inManagedObjectContext:context]];
for (TaskList *list in [context executeFetchRequest:req error:nil])
{
NSLog(@"GETTING: %@", [list listname]);
self.statusText = [NSString stringWithFormat:@"GETTING: %@", [list listname]];
[statusField display];
// do not get task if list is 'All Tasks'
if (![[list listname] isEqualTo:@"All Tasks"])
{
[self updateRtmTasks:list];
}
}
NSLog(@"Complete: update all tasks");
self.statusText = @"Complete: update all tasks";
[statusField display];
}
- (void) updateAllLists
{
NSManagedObjectContext *context = [self managedObjectContext];
// get lists
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithCapacity:5];
[params setObject:apiKey forKey:@"api_key"];
[params setObject:@"rtm.lists.getList" forKey:@"method"];
[params setObject:token forKey:@"auth_token"];
NSString *requestURL = [@"http://api.rememberthemilk.com/services/rest/?"
stringByAppendingString:[self createRtmQuery:params]];
NSXMLElement *rootElement = [self performQuery:requestURL];
// register lists
for (NSXMLElement *list in [rootElement nodesForXPath:@"/rsp/lists/list" error:nil])
{
NSNumber *listid = [NSNumber numberWithLongLong:[[[list attributeForName:@"id"] stringValue] longLongValue]];
TaskList *taskListEntity = [NSEntityDescription
insertNewObjectForEntityForName:@"TaskList"
inManagedObjectContext:context];
taskListEntity.listid = listid;
taskListEntity.listname = [[list attributeForName:@"name"] stringValue];
}
NSLog(@"Complete: update all lists");
self.statusText = @"Complete: update all lists";
[statusField display];
}
- (void) updateAllPredicates
{
NSManagedObjectContext *context = [self managedObjectContext];
NSFetchRequest *req = [[NSFetchRequest alloc] init];
[req setEntity:[NSEntityDescription entityForName:@"TaskList" inManagedObjectContext:context]];
for (TaskList *list in [context executeFetchRequest:req error:nil])
{
Predicate *predicateEntity = [NSEntityDescription
insertNewObjectForEntityForName:@"Predicate"
inManagedObjectContext:context];
predicateEntity.title = list.listname;
predicateEntity.isSmartList = NO;
if ([list.listname isEqualToString:@"All Tasks"])
{
predicateEntity.predicateString = @"";
} else {
predicateEntity.predicateString = [[@"(tasklist.listname = '" stringByAppendingString:list.listname]
stringByAppendingString:@"')"];
}
}
NSLog(@"Complete: update all predicates");
self.statusText = @"Complete: update all predicates";
[statusField display];
}
- (IBAction) completeTask:(id)sender
{
// TODO: implement this method!
// 1. get the selected task
// 2. fill the 'completed'-field of selected tasks
}
- (IBAction) updateAllListsAndTasks:(id)sender
{
self.isLoading = YES;
// first, remove all lists and tasks
NSManagedObjectContext *context = [self managedObjectContext];
NSLog(@"Delete all tasks");
self.statusText = @"Delete all tasks";
[statusField display];
NSFetchRequest *req = [[NSFetchRequest alloc] init];
[req setEntity:[NSEntityDescription entityForName:@"Task" inManagedObjectContext:context]];
for (Task *task in [context executeFetchRequest:req error:nil])
{
[context deleteObject:task];
}
NSLog(@"Delete all tasklists");
self.statusText = @"Delete all tasklists";
[statusField display];
req = [[NSFetchRequest alloc] init];
[req setEntity:[NSEntityDescription entityForName:@"TaskList" inManagedObjectContext:context]];
for (TaskList *list in [context executeFetchRequest:req error:nil])
{
[context deleteObject:list];
}
NSLog(@"Delete all predicates");
self.statusText = @"Delete all predicates";
[statusField display];
req = [[NSFetchRequest alloc] init];
[req setEntity:[NSEntityDescription entityForName:@"Predicate" inManagedObjectContext:context]];
for (Predicate *pred in [context executeFetchRequest:req error:nil])
{
if (!pred.isSmartList) [context deleteObject:pred];
}
// get lists and tasks
[context processPendingChanges];
[self updateAllLists];
[context processPendingChanges];
[self updateAllTasks];
[context processPendingChanges];
[self updateAllPredicates];
[context processPendingChanges];
self.isLoading = NO;
}
/**
This function is called after initiating application
This function tries to get token when there is no available one.
*/
- (void)applicationDidFinishLaunching:(NSNotification *)notification
{
token = [[NSUserDefaults standardUserDefaults] objectForKey:@"myToken"];
if (token) {
NSLog(@"Token is found in defaults: %@", token);
} else {
// Get frob
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithCapacity:5];
[params setObject:apiKey forKey:@"api_key"];
[params setObject:@"rtm.auth.getFrob" forKey:@"method"];
NSString *requestURL = [@"http://api.rememberthemilk.com/services/rest/?"
stringByAppendingString:[self createRtmQuery:params]];
NSXMLElement *rootElement = [self performQuery:requestURL];
NSArray *linkNodes = [rootElement nodesForXPath:@"//frob" error:nil];
NSString *frob = [[linkNodes objectAtIndex:0] stringValue];
NSLog(@"frob is %@", frob);
// authorizer URL
params = [NSMutableDictionary dictionaryWithCapacity:5];
[params setObject:apiKey forKey:@"api_key"];
[params setObject:@"read" forKey:@"perms"];
[params setObject:frob forKey:@"frob"];
requestURL = [@"http://www.rememberthemilk.com/services/auth/?"
stringByAppendingString:[self createRtmQuery:params]];
/* WAIT HERE FOR USER TO AUTHORIZE! */
NSRunAlertPanel(@"Authorize me!", requestURL, @"OK", NULL, NULL);
// get token
params = [NSMutableDictionary dictionaryWithCapacity:5];
[params setObject:apiKey forKey:@"api_key"];
[params setObject:@"rtm.auth.getToken" forKey:@"method"];
[params setObject:frob forKey:@"frob"];
requestURL = [@"http://api.rememberthemilk.com/services/rest/?"
stringByAppendingString:[self createRtmQuery:params]];
rootElement = [self performQuery:requestURL];
linkNodes = [rootElement nodesForXPath:@"//token" error:nil];
NSString *token = [[linkNodes objectAtIndex:0] stringValue];
NSLog(@"token is %@", token);
// Save token
if (token)
{
[[NSUserDefaults standardUserDefaults] setObject:token forKey:@"myToken"];
[[NSUserDefaults standardUserDefaults] synchronize];
} else {
NSLog(@"Error: couldn't get token");
NSLog(@"query is %@", requestURL);
}
[self updateAllListsAndTasks:self];
// stamp the time of last sync
[[NSUserDefaults standardUserDefaults]
setObject:[[NSCalendarDate calendarDate] description]
forKey:@"lastupdate"];
}
NSLog(@"now: %@", [[NSCalendarDate calendarDate] description]);
}
@end