-
Notifications
You must be signed in to change notification settings - Fork 0
/
AlienNoteImporter.m
executable file
·654 lines (535 loc) · 25.4 KB
/
AlienNoteImporter.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
//
// AlienNoteImporter.m
// Notation
//
// Created by Zachary Schneirov on 11/15/06.
/*Copyright (c) 2010, Zachary Schneirov. All rights reserved.
This file is part of Notational Velocity.
Notational Velocity 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.
Notational Velocity 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 Notational Velocity. If not, see <http://www.gnu.org/licenses/>. */
#import "AlienNoteImporter.h"
#import "StickiesDocument.h"
#import "BlorPasswordRetriever.h"
#import "URLGetter.h"
#import "GlobalPrefs.h"
#import "AttributedPlainText.h"
#import "NSData_transformations.h"
#import "NSCollection_utils.h"
#import "NSString_NV.h"
#import "NSFileManager_NV.h"
#import "NotationPrefs.h"
#import "NotationController.h"
#import "NoteObject.h"
NSString *PasswordWasRetrievedFromKeychainKey = @"PasswordRetrievedFromKeychain";
NSString *RetrievedPasswordKey = @"RetrievedPassword";
NSString *ShouldImportCreationDates = @"ShouldImportCreationDates";
@interface AlienNoteImporter (Private)
- (NSArray*)_importStickies:(NSString*)filename;
- (NSArray*)_importBlorNotes:(NSString*)filename;
- (NSArray*)_importTSVFile:(NSString*)filename;
- (NSArray*)_importCSVFile:(NSString*)filename;
- (NSArray*)_importDelimitedFile:(NSString*)filename withDelimiter:(NSString*)delimiter;
@end
@implementation AlienNoteImporter
- (id)init {
if ([super init]) {
shouldGrabCreationDates = NO;
documentSettings = [[NSMutableDictionary alloc] init];
}
return self;
}
+ (void)importBlorOrHelpFilesIfNecessaryIntoNotation:(NotationController*)notation {
GlobalPrefs *prefsController = [GlobalPrefs defaultPrefs];
NotationPrefs *prefs = [prefsController notationPrefs];
if (![prefsController triedToImportBlor] && [prefs firstTimeUsed]) {
AlienNoteImporter *importer = [AlienNoteImporter importerWithPath:[AlienNoteImporter blorPath]];
NSArray *noteArray = [importer importedNotes];
if ([noteArray count] > 0) {
NSLog(@"importing BLOR");
NSData *passData = [[[importer documentSettings] objectForKey:RetrievedPasswordKey] dataUsingEncoding:NSUTF8StringEncoding];
BOOL shouldStoreInKeychain = [[[importer documentSettings] objectForKey:PasswordWasRetrievedFromKeychainKey] boolValue];
[prefs setPassphraseData:passData inKeychain:shouldStoreInKeychain];
[prefs setDoesEncryption:YES];
[notation addNotes:noteArray];
} else {
//add localized RTF help notes (how do we handle initializing a new NV copy when the owner just wants to re-sync from web? they will get new help notes each time?)
NSArray *paths = [[NSBundle mainBundle] pathsForResourcesOfType:@"nvhelp" inDirectory:nil];
NSArray *helpNotes = [[[[AlienNoteImporter alloc] initWithStoragePaths:paths] autorelease] importedNotes];
if ([helpNotes count] > 0) {
[notation addNotes:helpNotes];
[[notation delegate] notation:notation revealNote:[helpNotes lastObject] options:NVEditNoteToReveal];
}
}
[prefsController setBlorImportAttempted:YES];
}
}
+ (AlienNoteImporter *)importerWithPath:(NSString*)path {
AlienNoteImporter *importer = [[AlienNoteImporter alloc] initWithStoragePath:path];
return [importer autorelease];
}
+ (NSString*)blorPath {
NSDictionary *oldDict = [[NSUserDefaults standardUserDefaults] persistentDomainForName:@"com.scrod.notationalvelocity"];
NSString *blorPath = [oldDict objectForKey:@"DatabaseLocation"];
if (!blorPath) {
NSLog(@"Couldn't read old defaults--reverting to default location in prefs directory");
blorPath = [NSString stringWithFormat:@"%@/Library/Preferences/%@", NSHomeDirectory(), @"NotationalDatabase.blor"];
}
return blorPath;
}
- (id)initWithStoragePaths:(NSArray*)filenames {
if ([self init]) {
if ((source = [filenames retain])) {
importerSelector = @selector(notesWithPaths:);
} else {
return nil;
}
}
return self;
}
- (id)initWithStoragePath:(NSString*)filename {
if ([self init]) {
if ((source = [filename retain])) {
//auto-detect based on bundle/extension/metadata
NSDictionary *pathAttributes = [[NSFileManager defaultManager] fileAttributesAtPath:filename traverseLink:YES];
if ([[filename pathExtension] caseInsensitiveCompare:@"rtfd"] != NSOrderedSame &&
[[pathAttributes objectForKey:NSFileType] isEqualToString:NSFileTypeDirectory]) {
importerSelector = @selector(notesInDirectory:);
} else {
importerSelector = @selector(notesInFile:);
}
} else {
return nil;
}
}
return self;
}
- (void)dealloc {
[documentSettings release];
[source release];
[super dealloc];
}
+ (NSBundle *)PDFKitBundle {
static NSBundle *PDFKitBundle = nil;
if (PDFKitBundle == nil) {
NSString *PDFKitPath = @"/System/Library/Frameworks/Quartz.framework/Frameworks/PDFKit.framework";
if (![[NSFileManager defaultManager] fileExistsAtPath:PDFKitPath]) {
NSLog(@"Couldn't find PDFKit.framework");
return nil;
}
PDFKitBundle = [NSBundle bundleWithPath:PDFKitPath];
if (![PDFKitBundle load]) {
NSLog(@"Couldn't load PDFKit.framework");
}
}
return PDFKitBundle;
}
+ (Class)PDFDocClass {
static Class PDFDocClass = nil;
if (PDFDocClass == nil) {
PDFDocClass = [[self PDFKitBundle] classNamed:@"PDFDocument"];
if (PDFDocClass == nil) {
NSLog(@"Couldn't find PDFDocument class in PDFKit.framework");
}
}
return PDFDocClass;
}
- (NSDictionary*)documentSettings {
return documentSettings;
}
- (NSView*)accessoryView {
if (!importAccessoryView) {
if (![NSBundle loadNibNamed:@"ImporterAccessory" owner:self]) {
NSLog(@"Failed to load ImporterAccessory.nib");
NSBeep();
return nil;
}
}
return importAccessoryView;
}
- (void)openPanelDidEnd:(NSOpenPanel *)panel returnCode:(int)returnCode contextInfo:(void *)contextInfo {
id delegate = (id)contextInfo;
if (delegate && [delegate respondsToSelector:@selector(noteImporter:importedNotes:)]) {
if (returnCode == NSOKButton) {
shouldGrabCreationDates = [grabCreationDatesButton state] == NSOnState;
[[NSUserDefaults standardUserDefaults] setBool:shouldGrabCreationDates forKey:ShouldImportCreationDates];
NSArray *notes = [self notesWithPaths:[panel filenames]];
if (notes && [notes count])
[delegate noteImporter:self importedNotes:notes];
else
NSRunAlertPanel(NSLocalizedString(@"None of the selected files could be imported.",nil),
NSLocalizedString(@"Please choose other files.",nil), NSLocalizedString(@"OK",nil),nil,nil);
}
} else {
NSLog(@"Where's my note importing delegate?");
NSBeep();
}
[self release];
}
- (void)importNotesFromDialogAroundWindow:(NSWindow*)mainWindow receptionDelegate:(id)receiver {
NSOpenPanel *openPanel = [NSOpenPanel openPanel];
[openPanel setCanChooseFiles:YES];
[openPanel setAllowsMultipleSelection:YES];
[openPanel setCanChooseDirectories:YES];
[openPanel setPrompt:NSLocalizedString(@"Import",@"title of button in import dialog")];
[openPanel setTitle:NSLocalizedString(@"Import Notes",@"title of import dialog")];
[openPanel setMessage:NSLocalizedString(@"Select files and folders from which to import notes.",@"import dialog message")];
[openPanel setAccessoryView:[self accessoryView]];
[grabCreationDatesButton setState:[[NSUserDefaults standardUserDefaults] boolForKey:ShouldImportCreationDates]];
[self retain];
[openPanel beginSheetForDirectory:nil file:nil types:nil modalForWindow:mainWindow modalDelegate:self
didEndSelector:@selector(openPanelDidEnd:returnCode:contextInfo:) contextInfo:receiver];
}
- (void)URLGetter:(URLGetter*)getter returnedDownloadedFile:(NSString*)filename {
BOOL foundNotes = NO;
if ([receptionDelegate respondsToSelector:@selector(noteImporter:importedNotes:)]) {
if (filename) {
NSArray *notes = [self notesInFile:filename];
if ([notes count]) {
NSMutableAttributedString *content = [[[GlobalPrefs defaultPrefs] pastePreservesStyle] ? [[[notes lastObject] contentString] mutableCopy] :
[[NSMutableAttributedString alloc] initWithString:[[[notes lastObject] contentString] string]] autorelease];
if ([[[content string] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] length]) {
//only add string if it has at least one non-whitespace character
NSUInteger prefixedSourceLength = [[content prefixWithSourceString:[[getter url] absoluteString]] length];
[content santizeForeignStylesForImporting];
[[notes lastObject] setContentString:content];
if ([getter userData]) [[notes lastObject] setTitleString:[getter userData]];
//prefixing should push existing selections forward:
NSRange selRange = [[notes lastObject] lastSelectedRange];
if (selRange.length && prefixedSourceLength)
[[notes lastObject] setSelectedRange:NSMakeRange(selRange.location + prefixedSourceLength, selRange.length)];
[receptionDelegate noteImporter:self importedNotes:notes];
foundNotes = YES;
}
}
}
if (!foundNotes) {
//no notes recovered from downloaded file--just add the URL as a string?
NSString *urlString = [[getter url] absoluteString];
if (urlString) {
NSMutableAttributedString *newString = [[[NSMutableAttributedString alloc] initWithString:urlString] autorelease];
[newString santizeForeignStylesForImporting];
NoteObject *noteObject = [[NoteObject alloc] initWithNoteBody:newString title:[getter userData] ? [getter userData] : urlString
delegate:nil format:SingleDatabaseFormat labels:nil];
[receptionDelegate noteImporter:self importedNotes:[NSArray arrayWithObject:noteObject]];
[noteObject autorelease];
}
}
} else {
NSLog(@"Where's my note importing delegate?");
NSBeep();
}
[getter release];
[self release];
}
- (void)importURLInBackground:(NSURL*)aURL linkTitle:(NSString*)linkTitle receptionDelegate:(id)receiver {
receptionDelegate = receiver;
[self retain];
(void)[[URLGetter alloc] initWithURL:aURL delegate:self userData:linkTitle];
}
- (NSArray*)importedNotes {
if (!importerSelector) return nil;
return [self performSelector:importerSelector withObject:source];
}
- (NSArray*)notesWithPaths:(NSArray*)paths {
if ([paths isKindOfClass:[NSArray class]]) {
NSMutableArray *array = [NSMutableArray array];
NSFileManager *fileMan = [NSFileManager defaultManager];
unsigned int i;
for (i=0; i<[paths count]; i++) {
NSString *path = [paths objectAtIndex:i];
NSArray *notes = nil;
NSDictionary *pathAttributes = [fileMan fileAttributesAtPath:path traverseLink:YES];
if ([[path pathExtension] caseInsensitiveCompare:@"rtfd"] != NSOrderedSame &&
[[pathAttributes objectForKey:NSFileType] isEqualToString:NSFileTypeDirectory]) {
notes = [self notesInDirectory:path];
} else {
notes = [self notesInFile:path];
}
if (notes)
[array addObjectsFromArray:notes];
}
return array;
} else {
NSLog(@"notesWithPaths: has the wrong kind of object!");
}
return nil;
}
//auto-detect based on file type/extension/header
//if unable to find, revert to spotlight importer
- (NoteObject*)noteWithFile:(NSString*)filename {
//RTF, Text, Word, HTML, and anything else we can do without too much effort
NSString *extension = [[filename pathExtension] lowercaseString];
NSDictionary *attributes = [[NSFileManager defaultManager] fileAttributesAtPath:filename traverseLink:YES];
unsigned long fileType = [[attributes objectForKey:NSFileHFSTypeCode] unsignedLongValue];
NSString *sourceIdentifierString = nil;
NSMutableAttributedString *attributedStringFromData = nil;
if (fileType == HTML_TYPE_ID || [extension isEqualToString:@"htm"] || [extension isEqualToString:@"html"] || [extension isEqualToString:@"shtml"]) {
//should convert to text with markdown here
attributedStringFromData = [[NSMutableAttributedString alloc] initWithHTML:[NSData uncachedDataFromFile:filename]
options:[NSDictionary optionsDictionaryWithTimeout:10.0] documentAttributes:NULL];
} else if (fileType == RTF_TYPE_ID || [extension isEqualToString:@"rtf"] || [extension isEqualToString:@"nvhelp"] || [extension isEqualToString:@"rtx"]) {
attributedStringFromData = [[NSMutableAttributedString alloc] initWithRTF:[NSData uncachedDataFromFile:filename] documentAttributes:NULL];
} else if (fileType == RTFD_TYPE_ID || [extension isEqualToString:@"rtfd"]) {
NSFileWrapper *wrapper = [[[NSFileWrapper alloc] initWithPath:filename] autorelease];
if ([[attributes objectForKey:NSFileType] isEqualToString:NSFileTypeDirectory])
attributedStringFromData = [[NSMutableAttributedString alloc] initWithRTFDFileWrapper:wrapper documentAttributes:NULL];
else
attributedStringFromData = [[NSMutableAttributedString alloc] initWithRTFD:[NSData uncachedDataFromFile:filename] documentAttributes:NULL];
} else if (fileType == WORD_DOC_TYPE_ID || [extension isEqualToString:@"doc"]) {
attributedStringFromData = [[NSMutableAttributedString alloc] initWithDocFormat:[NSData uncachedDataFromFile:filename] documentAttributes:NULL];
} else if ([extension isEqualToString:@"docx"] || [extension isEqualToString:@"webarchive"]) {
//make it guess for us, but if it's a webarchive we'll get the URL
NSData *data = [NSData uncachedDataFromFile:filename];
NSString *path = [data pathURLFromWebArchive];
attributedStringFromData = [[NSMutableAttributedString alloc] initWithData:data options:nil documentAttributes:NULL error:NULL];
if ([path length] > 0 && [attributedStringFromData length] > 0)
sourceIdentifierString = path;
} else if (fileType == PDF_TYPE_ID || [extension isEqualToString:@"pdf"]) {
//try PDFKit loading lazily
@try {
Class PdfDocClass = [[self class] PDFDocClass];
if (PdfDocClass != Nil) {
id doc = [[PdfDocClass alloc] initWithURL:[NSURL fileURLWithPath:filename]];
if (doc) {
//this method reliably crashes in 64-bit Leopard, and sometimes elsewhere as well
id sel = [doc performSelector:@selector(selectionForEntireDocument)];
if (sel) {
attributedStringFromData = [[NSMutableAttributedString alloc] initWithAttributedString:[sel attributedString]];
//maybe we could check pages and boundsForPage: to try to determine where a line was soft-wrapped in the document?
} else {
NSLog(@"Couldn't get entire doc selection for PDF");
}
[doc autorelease];
} else {
NSLog(@"Couldn't parse data into PDF");
}
} else {
NSLog(@"No PDFDocument!");
}
} @catch (NSException *e) {
NSLog(@"Error importing PDF %@ (%@, %@)", filename, [e name], [e reason]);
}
} else if (fileType == TEXT_TYPE_ID || [extension isEqualToString:@"txt"] || [extension isEqualToString:@"text"] ||
[filename UTIOfFileConformsToType:@"public.plain-text"]) {
NSMutableString *stringFromData = [NSMutableString newShortLivedStringFromFile:filename];
if (stringFromData) {
attributedStringFromData = [[NSMutableAttributedString alloc] initWithString:stringFromData
attributes:[[GlobalPrefs defaultPrefs] noteBodyAttributes]];
[stringFromData release];
}
}
// else {
//try spotlight importer if on 10.4
//}
if (attributedStringFromData) {
[attributedStringFromData trimLeadingWhitespace];
[attributedStringFromData removeAttachments];
NSString *processedFilename = [[filename lastPathComponent] stringByDeletingPathExtension];
NSUInteger bodyLoc = 0, prefixedSourceLength = 0;
NSString *title = [[attributedStringFromData string] syntheticTitleAndSeparatorWithContext:NULL bodyLoc:&bodyLoc maxTitleLen:36];
//if the synthetic title (generally the first line of the content) is shorter than the filename itself, just use the filename as the title
//(or if this is a special case and we know the filename should be used)
if ([processedFilename length] > [title length] || [extension isEqualToString:@"nvhelp"] || [title isAMachineDirective] ||
[title isEqualToString:NSLocalizedString(@"Untitled Note", @"Title of a nameless note")]) {
title = processedFilename;
bodyLoc = 0;
} else {
title = [title stringByAppendingFormat:@" (%@)", processedFilename];
}
if ([sourceIdentifierString length])
prefixedSourceLength = [[attributedStringFromData prefixWithSourceString:sourceIdentifierString] length];
[attributedStringFromData santizeForeignStylesForImporting];
[attributedStringFromData autorelease];
//transfer any openmeta tags associated with this file as tags for the new note
NSArray *openMetaTags = [[NSFileManager defaultManager] getOpenMetaTagsAtFSPath:[filename fileSystemRepresentation]];
//we do not also use filename as uniqueFilename, as we are only importing--not taking ownership
NoteObject *noteObject = [[NoteObject alloc] initWithNoteBody:attributedStringFromData title:title delegate:nil
format:SingleDatabaseFormat labels:[openMetaTags componentsJoinedByString:@" "]];
if (noteObject) {
if (bodyLoc > 0 && [attributedStringFromData length] >= bodyLoc + prefixedSourceLength) [noteObject setSelectedRange:NSMakeRange(prefixedSourceLength, bodyLoc)];
if (shouldGrabCreationDates) {
[noteObject setDateAdded:CFDateGetAbsoluteTime((CFDateRef)[attributes objectForKey:NSFileCreationDate])];
}
[noteObject setDateModified:CFDateGetAbsoluteTime((CFDateRef)[attributes objectForKey:NSFileModificationDate])];
return [noteObject autorelease];
} else {
NSLog(@"couldn't generate note object from imported attributed string??");
}
}
return nil;
}
- (NSArray*)notesInDirectory:(NSString*)filename {
//recurse through all subdirectories calling notesInFile where appropriate and collecting arrays into one
//NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:filename];
NSArray *filenames = [[NSFileManager defaultManager] directoryContentsAtPath:filename];
NSEnumerator *enumerator = [filenames objectEnumerator];
NSMutableArray *array = [NSMutableArray array];
NSString *curObject = nil;
NSFileManager *fileMan = [NSFileManager defaultManager];
while ((curObject = [enumerator nextObject])) {
NSAutoreleasePool *innerPool = [[NSAutoreleasePool alloc] init];
NSString *itemPath = [filename stringByAppendingPathComponent:curObject];
if ([[[fileMan fileAttributesAtPath:itemPath traverseLink:YES] objectForKey:NSFileType] isEqualToString:NSFileTypeRegular]) {
NSArray *notes = [self notesInFile:itemPath];
if (notes)
[array addObjectsFromArray:notes];
}
[innerPool release];
}
return array;
}
- (NSArray*)notesInFile:(NSString*)filename {
NSString *extension = [[filename pathExtension] lowercaseString];
if ([extension isEqualToString:@"blor"]) {
return [self _importBlorNotes:filename];
} else if ([[filename lastPathComponent] isEqualToString:@"StickiesDatabase"]) {
return [self _importStickies:filename];
} else if ([extension isEqualToString:@"tsv"]) {
return [self _importTSVFile:filename];
} else if ([extension isEqualToString:@"csv"]) {
return [self _importCSVFile:filename];
} else {
NoteObject *note = [self noteWithFile:filename];
if (note)
return [NSArray arrayWithObject:note];
}
return nil;
}
@end
@implementation AlienNoteImporter (Private)
- (NSArray*)_importStickies:(NSString*)filename {
NSMutableArray *stickyNotes = nil;
NS_DURING
NSData *stickyData = [NSData uncachedDataFromFile:filename];
NSUnarchiver *unarchiver = [[NSUnarchiver alloc] initForReadingWithData:stickyData];
[unarchiver decodeClassName:@"Document" asClassName:@"StickiesDocument"];
stickyNotes = [[unarchiver decodeObject] retain];
[unarchiver release];
NS_HANDLER
stickyNotes = nil;
NSLog(@"Error parsing stickies database: %@", [localException reason]);
NS_ENDHANDLER
if (stickyNotes && [stickyNotes isKindOfClass:[NSMutableArray class]]) {
NSMutableArray *notes = [NSMutableArray arrayWithCapacity:[stickyNotes count]];
unsigned int i;
for (i=0; i<[stickyNotes count]; i++) {
StickiesDocument *doc = [stickyNotes objectAtIndex:i];
if ([doc isKindOfClass:[StickiesDocument class]]) {
NSMutableAttributedString *attributedString = [[[NSMutableAttributedString alloc] initWithRTFD:[doc RTFDData] documentAttributes:NULL] autorelease];
[attributedString removeAttachments];
[attributedString santizeForeignStylesForImporting];
NSString *syntheticTitle = [attributedString trimLeadingSyntheticTitle];
NoteObject *noteObject = [[[NoteObject alloc] initWithNoteBody:attributedString title:syntheticTitle
delegate:nil format:SingleDatabaseFormat labels:nil] autorelease];
if (noteObject) {
[noteObject setDateAdded:CFDateGetAbsoluteTime((CFDateRef)[doc creationDate])];
[noteObject setDateModified:CFDateGetAbsoluteTime((CFDateRef)[doc modificationDate])];
[notes addObject:noteObject];
} else {
NSLog(@"couldn't generate note object from sticky note??");
}
} else {
NSLog(@"Sticky document is wrong: %@", [doc description]);
}
}
[stickyNotes release];
return notes;
} else {
NSLog(@"Sticky notes array is wrong: %@", [stickyNotes description]);
}
return nil;
}
- (NSArray*)_importBlorNotes:(NSString*)filename {
BlorPasswordRetriever *retriever = [[[BlorPasswordRetriever alloc] initWithBlor:filename] autorelease];
NSData *keyData = [retriever validPasswordHashData];
if (!keyData) {
NSLog(@"Couldn't get a valid pass-key to decrypt the blor!");
return nil;
}
[documentSettings setObject:[NSNumber numberWithBool:[retriever canRetrieveFromKeychain]]
forKey:PasswordWasRetrievedFromKeychainKey];
[documentSettings setObject:[retriever originalPasswordString] forKey:RetrievedPasswordKey];
NSDictionary *dbAttrs = [[NSFileManager defaultManager] fileAttributesAtPath:filename traverseLink:YES];
NSDate *creationDate = [dbAttrs objectForKey:NSFileCreationDate];
NSDate *modificationDate = [dbAttrs objectForKey:NSFileModificationDate];
CFAbsoluteTime creationTime = CFAbsoluteTimeGetCurrent();
CFAbsoluteTime modificationTime = creationTime;
if (creationDate) creationTime = CFDateGetAbsoluteTime((CFDateRef)creationDate);
if (modificationDate) modificationTime = CFDateGetAbsoluteTime((CFDateRef)modificationDate);
//iterate over notes with blorenumerator and return array
BlorNoteEnumerator *enumerator = [[BlorNoteEnumerator alloc] initWithBlor:filename passwordHashData:keyData];
if (!enumerator) {
NSLog(@"couldn't initialize blor note enumerator!");
return nil;
}
NSMutableArray *array = [NSMutableArray array];
NoteObject *note = nil;
unsigned int count = 0;
while ((note = [enumerator nextNote])) {
count ++;
[array addObject:note];
[note setDateAdded:(creationTime += 1.0)];
[note setDateModified:(modificationTime += 1.0)];
}
if (count != [enumerator suspectedNoteCount]) {
NSLog(@"read notes (%d) != stated note count (%d)!", count, [enumerator suspectedNoteCount]);
}
[enumerator release];
return array;
}
- (NSArray*)_importTSVFile:(NSString*)filename {
return [self _importDelimitedFile:filename withDelimiter:@"\t"];
}
- (NSArray*)_importCSVFile:(NSString*)filename {
return [self _importDelimitedFile:filename withDelimiter:@","];
}
- (NSArray*)_importDelimitedFile:(NSString*)filename withDelimiter:(NSString*)delimiter {
NSMutableString *contents = [NSMutableString newShortLivedStringFromFile:filename];
if (!contents) return nil;
// normalize newlines
[contents replaceOccurrencesOfString:@"\r\n" withString:@"\n" options:0 range:NSMakeRange(0, [contents length])];
[contents replaceOccurrencesOfString:@"\r" withString:@"\n" options:0 range:NSMakeRange(0, [contents length])];
NSMutableArray *notes = [NSMutableArray array];
NSArray *lines = [contents componentsSeparatedByString:@"\n"];
NSEnumerator *en = [lines objectEnumerator];
NSString *curLine;
CFAbsoluteTime now = CFAbsoluteTimeGetCurrent();
// Assume first entry in line is note title and any other entries go in the note body
while ((curLine = [en nextObject])) {
NSArray *fields = [curLine componentsSeparatedByString:delimiter];
NSUInteger count = [fields count];
if (count > 1) {
NSMutableString *s = [NSMutableString string];
NSUInteger i;
for (i = 1; i < count; ++i) {
NSString *entry = [fields objectAtIndex:i];
if ([entry length] > 0)
[s appendString:[NSString stringWithFormat:@"%@\n", entry]];
}
if (0 == [s length])
continue;
NSString *title = [fields objectAtIndex:0];
NSMutableAttributedString *attributedBody = [[[NSMutableAttributedString alloc] initWithString:s attributes:[[GlobalPrefs defaultPrefs] noteBodyAttributes]] autorelease];
[attributedBody addLinkAttributesForRange:NSMakeRange(0, [attributedBody length])];
[attributedBody addStrikethroughNearDoneTagsForRange:NSMakeRange(0, [attributedBody length])];
NoteObject *note = [[[NoteObject alloc] initWithNoteBody:attributedBody title:title delegate:nil format:SingleDatabaseFormat labels:nil] autorelease];
if (note) {
now += 1.0; //to ensure a consistent sort order
[note setDateAdded:now];
[note setDateModified:now];
[notes addObject:note];
}
}
}
[contents release];
return (notes);
}
@end