-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathWCChatHistory.m
560 lines (357 loc) · 15.5 KB
/
WCChatHistory.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
//
// WCChatHistory.m
// WiredClient
//
// Created by Rafaël Warnault on 20/05/12.
// Copyright (c) 2012 Read-Write.fr. All rights reserved.
//
#import "WCChatHistory.h"
#import "WCApplicationController.h"
#import "WCPublicChat.h"
@interface WCChatHistory (Private)
- (void)_expandAllGroups;
- (void)_reloadWebView;
- (void)chatHistoryBundleAddedNotification:(NSNotification *)notification;
- (NSArray *)_selectedArtivesForFolderPath:(NSString *)path;
@end
@implementation WCChatHistory (Private)
- (void)_expandAllGroups {
[_historyOutlineView expandItem:[_historyOutlineView itemAtRow:1]];
[_historyOutlineView expandItem:[_historyOutlineView itemAtRow:0]];
}
- (NSArray *)_selectedArtivesForFolderPath:(NSString *)path {
if([path containsSubstring:@"PrivateChatHistory.WiredHistory"])
return [[[[WCApplicationController sharedController] logController] privateChatHistoryBundle] archivesInFolderWithName:[path lastPathComponent]];
else if([path containsSubstring:@"PublicChatHistory.WiredHistory"])
return [[[[WCApplicationController sharedController] logController] publicChatHistoryBundle] archivesInFolderWithName:[path lastPathComponent]];
return nil;
}
- (void)_reloadWebView {
NSInteger selectedRow;
WebArchive *archive;
NSString *archivePath;
NSData *data;
if(!_selectedArchives) {
[[_detailWebView mainFrame] loadHTMLString:@"" baseURL:[NSURL URLWithString:@"about:blank"]];
return;
}
selectedRow = [_detailsTableView selectedRow];
if(selectedRow == -1) {
[[_detailWebView mainFrame] loadHTMLString:@"" baseURL:[NSURL URLWithString:@"about:blank"]];
return;
}
archivePath = [_filteredArchives objectAtIndex:selectedRow];
data = [NSData dataWithContentsOfFile:archivePath];
if ([[archivePath pathExtension] isEqualToString:@"webarchive"]) {
archive = [[WebArchive alloc] initWithData:data];
if(archive)
[[_detailWebView mainFrame] loadArchive:archive];
else
[[_detailWebView mainFrame] loadHTMLString:@"" baseURL:[NSURL URLWithString:@"about:blank"]];
[archive release];
}
else if ([[archivePath pathExtension] isEqualToString:@"plist"]) {
NSMutableAttributedString *attrString = [NSMutableAttributedString attributedString];
NSArray *messages = [NSKeyedUnarchiver unarchiveObjectWithData:data];
for(NSDictionary *message in messages) {
NSMutableAttributedString *line = [NSMutableAttributedString attributedString];
NSString *nick = [message valueForKey:@"nick"];
NSAttributedString *messageString = [message valueForKey:@"message"];
NSString *timestamp = [message valueForKey:@"timestamp"];
[line appendAttributedString:[NSAttributedString attributedStringWithString:timestamp]];
[line appendAttributedString:[NSAttributedString attributedStringWithString:@" - "]];
[line appendAttributedString:[NSAttributedString attributedStringWithString:nick]];
[line appendAttributedString:[NSAttributedString attributedStringWithString:@": "]];
[line appendAttributedString:messageString];
[line appendAttributedString:[NSAttributedString attributedStringWithString:@"\n"]];
[attrString appendAttributedString:line];
}
NSDictionary *documentAttributes = @{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType};
NSData *htmlData = [attrString dataFromRange:NSMakeRange(0, attrString.length) documentAttributes:documentAttributes error:NULL];
NSString *htmlString = [[NSString alloc] initWithData:htmlData encoding:NSUTF8StringEncoding];
[[_detailWebView mainFrame] loadHTMLString:htmlString baseURL:nil];
}
}
- (void)chatHistoryBundleAddedNotification:(NSNotification *)notification {
[_detailsTableView deselectAll:self];
[_historyOutlineView deselectAll:self];
[[[[WCApplicationController sharedController] logController] publicChatHistoryBundle] reloadData];
[[[[WCApplicationController sharedController] logController] privateChatHistoryBundle] reloadData];
[_historyOutlineView reloadData];
[self _expandAllGroups];
}
@end
@implementation WCChatHistory
#pragma mark -
+ (id)chatHistory {
static WCChatHistory *sharedHistory;
if(!sharedHistory)
sharedHistory = [[self alloc] init];
return sharedHistory;
}
#pragma mark -
- (id)init {
self = [super initWithWindowNibName:@"History"];
if(self != nil) {
NSString *chatLogPath;
chatLogPath = [[WCApplicationController sharedController] chatLogsPath];
_categories = [[NSArray alloc] initWithObjects:
NSLS(@"PUBLIC CHATS", @"Chat History sidebar category"),
NSLS(@"PRIVATE CHATS", @"Chat History sidebar category"),
nil];
_filteredArchives = [[NSMutableArray alloc] init];
[self window];
}
return self;
}
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
[_categories release];
[_selectedArchives release];
[_filteredArchives release];
[super dealloc];
}
- (void)windowDidLoad {
[super windowDidLoad];
[self _expandAllGroups];
// [_detailsTableView setDefaultSortOrder:WISortAscending];
// [_detailsTableView setHighlightedTableColumn:[[_detailsTableView tableColumns] lastObject] sortOrder:WISortAscending];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(chatHistoryBundleAddedNotification:)
name:WIChatHistoryBundleAddedNotification
object:nil];
}
#pragma mark -
- (IBAction)clear:(id)sender {
NSAlert *alert = [NSAlert alertWithMessageText:NSLS(@"Clear History", @"Clear chat history title")
defaultButton:@"OK"
alternateButton:NSLS(@"Cancel", @"Clear chat history button") otherButton:nil
informativeTextWithFormat:NSLS(@"Are you sure to clear your entire chat history ? This operation is not cancellable.", @"Clear chat history message")];
[alert beginSheetModalForWindow:[_detailsTableView window]
modalDelegate:self
didEndSelector:@selector(clearAlertDidEnd:returnCode:contextInfo:)
contextInfo:nil];
}
- (void)clearAlertDidEnd:(NSAlert *)alert returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo {
if(returnCode == NSModalResponseOK) {
[[[[WCApplicationController sharedController] logController] publicChatHistoryBundle] clearHistory];
[[[[WCApplicationController sharedController] logController] privateChatHistoryBundle] clearHistory];
[[_detailWebView mainFrame] loadHTMLString:@"" baseURL:[NSURL URLWithString:@"about:blank"]];
}
}
- (IBAction)exportAsWebArchive:(id)sender {
}
- (IBAction)search:(id)sender {
WebArchive *archive;
NSString *searchString;
NSString *nick;
NSString *server;
NSString *date;
NSString *archiveString;
NSArray *components;
NSError *error;
if(_selectedArchives) {
searchString = [_searchField stringValue];
if([searchString length] <= 0) {
[_filteredArchives setArray:_selectedArchives];
[_detailsTableView reloadData];
return;
}
[_filteredArchives removeAllObjects];
for(NSString *archivePath in _selectedArchives) {
archive = [[WebArchive alloc] initWithData:[NSData dataWithContentsOfFile:archivePath]];
components = [[[archivePath lastPathComponent] stringByDeletingPathExtension] componentsSeparatedByString:@"-"];
nick = [components objectAtIndex:0];
server = [components objectAtIndex:1];
date = [[NSDate dateWithTimeIntervalSince1970:[[components objectAtIndex:2] doubleValue]] description];
archiveString = [NSString stringWithContentsOfFile:archivePath encoding:NSASCIIStringEncoding error:&error];
if([nick containsSubstring:searchString]) {
[_filteredArchives addObject:archivePath];
continue;
}
if([server containsSubstring:searchString]) {
[_filteredArchives addObject:archivePath];
continue;
}
if([date containsSubstring:searchString]) {
[_filteredArchives addObject:archivePath];
continue;
}
if([archiveString containsSubstring:searchString]) {
[_filteredArchives addObject:archivePath];
continue;
}
}
[_detailsTableView reloadData];
} else {
}
}
- (IBAction)revealInFinder:(id)sender {
NSString *archivePath = [_filteredArchives objectAtIndex:[_detailsTableView selectedRow]];
[[NSWorkspace sharedWorkspace] selectFile:archivePath
inFileViewerRootedAtPath:[archivePath stringByDeletingLastPathComponent]];
}
#pragma mark -
-(BOOL)validateToolbarItem:(NSToolbarItem *)toolbarItem {
BOOL enable;
enable = NO;
if ([toolbarItem action] == @selector(search:)) {
enable = (_selectedArchives != nil);
} else if ([toolbarItem action] == @selector(revealInFinder:)) {
enable = (_filteredArchives != nil) && ([_detailsTableView selectedRow] != -1);
} else if ([toolbarItem action] == @selector(clear:)) {
enable = YES;
} else if ([toolbarItem action] == @selector(exportAsWebArchive:)) {
enable = (_filteredArchives != nil) && ([_detailsTableView selectedRow] != -1);
}
return enable;
}
#pragma mark -
- (NSInteger)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item {
NSInteger count = 0;
if(item == nil) {
count = [_categories count];
} else if([_categories containsObject:item]) {
if([item isEqualTo:NSLS(@"PUBLIC CHATS", @"Chat History sidebar category")]) {
count = [[[[[WCApplicationController sharedController] logController] publicChatHistoryBundle] folders] count];
} else if([item isEqualTo:NSLS(@"PRIVATE CHATS", @"Chat History sidebar category")]) {
count = [[[[[WCApplicationController sharedController] logController] privateChatHistoryBundle] folders] count];
}
}
return count;
}
- (id)outlineView:(NSOutlineView *)outlineView child:(NSInteger)index ofItem:(id)item {
id value;
if(item == nil) {
value = [_categories objectAtIndex:index];
} else if([_categories containsObject:item]) {
if([item isEqualTo:NSLS(@"PUBLIC CHATS", @"Chat History sidebar category")]) {
value = [[[[[WCApplicationController sharedController] logController] publicChatHistoryBundle] folders] objectAtIndex:index];
} else if([item isEqualTo:NSLS(@"PRIVATE CHATS", @"Chat History sidebar category")]) {
value = [[[[[WCApplicationController sharedController] logController] privateChatHistoryBundle] folders] objectAtIndex:index];
}
}
return value;
}
- (id)outlineView:(NSOutlineView *)outlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item {
id value = nil;
if(item == nil) {
return nil;
} else if(![_categories containsObject:item]) {
value = [item lastPathComponent];
} else {
value = item;
}
return value;
}
- (BOOL)outlineView:(NSOutlineView *)outlineView shouldSelectItem:(id)item {
return (item == nil) ? NO : ![_categories containsObject:item];
}
- (BOOL)outlineView:(NSOutlineView *)outlineView isGroupItem:(id)item {
return (item == nil) ? YES : [_categories containsObject:item];
}
- (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item {
return (item == nil) ? YES : [_categories containsObject:item];
}
- (void)outlineViewSelectionDidChange:(NSNotification *)notification {
NSString *item = [[notification object] itemAtRow:[_historyOutlineView selectedRow]];
if(![_categories containsObject:item]) {
if(_selectedArchives)
[_selectedArchives release]; _selectedArchives = nil;
if(_filteredArchives)
[_filteredArchives release]; _filteredArchives = nil;
_filteredArchives = [[NSMutableArray alloc] init];
_selectedArchives = [[self _selectedArtivesForFolderPath:item] retain];
[_filteredArchives addObjectsFromArray:_selectedArchives];
[_detailsTableView reloadData];
[self _reloadWebView];
return;
}
if(_selectedArchives)
[_selectedArchives release]; _selectedArchives = nil;
[_detailsTableView reloadData];
[self _reloadWebView];
}
#pragma mark -
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView {
return (_filteredArchives == nil) ? 0 : [_filteredArchives count];
}
- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
NSString *item;
NSArray *components;
if(row == -1)
return nil;
item = [_filteredArchives objectAtIndex:row];
components = [[[item lastPathComponent] stringByDeletingPathExtension] componentsSeparatedByString:@"-"];
if([[tableColumn identifier] isEqualToString:@"Nick"])
return [components objectAtIndex:0];
else if([[tableColumn identifier] isEqualToString:@"Server"])
return [components objectAtIndex:1];
else if([[tableColumn identifier] isEqualToString:@"Date"])
return [NSDate dateWithTimeIntervalSince1970:[[components objectAtIndex:2] doubleValue]];
return nil;
}
- (void)tableViewSelectionDidChange:(NSNotification *)notification {
[self _reloadWebView];
}
- (void)tableView:(NSTableView *)tableView didClickTableColumn:(NSTableColumn *)tableColumn {
__block NSArray *components1, *components2, *sortedArray;;
__block NSString *identifier, *string1, *string2;
__block NSDate *date1, *date2;
[_detailsTableView setHighlightedTableColumn:tableColumn];
identifier = [tableColumn identifier];
sortedArray = [_filteredArchives sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) {
NSComparisonResult result;
id tmpObj;
tmpObj = obj1;
if([_detailsTableView sortOrder] == WISortAscending) {
obj1 = obj2;
obj2 = tmpObj;
}
components1 = [[[obj1 lastPathComponent] stringByDeletingPathExtension] componentsSeparatedByString:@"-"];
components2 = [[[obj2 lastPathComponent] stringByDeletingPathExtension] componentsSeparatedByString:@"-"];
if([identifier isEqualToString:@"Nick"]) {
string1 = [components1 objectAtIndex:0];
string2 = [components2 objectAtIndex:0];
result = [string1 compare:string2];
} else if([identifier isEqualToString:@"Server"]) {
string1 = [components1 objectAtIndex:1];
string2 = [components2 objectAtIndex:1];
result = [string1 compare:string2];
} else if([identifier isEqualToString:@"Date"]) {
date1 = [NSDate dateWithTimeIntervalSince1970:[[components1 objectAtIndex:2] doubleValue]];
date2 = [NSDate dateWithTimeIntervalSince1970:[[components2 objectAtIndex:2] doubleValue]];
result = [date2 compare:date1];
}
return result;
}];
[_filteredArchives setArray:sortedArray];
[_detailsTableView reloadData];
}
#pragma mark -
- (CGFloat)splitView:(NSSplitView *)splitView constrainMinCoordinate:(CGFloat)proposedMin ofSubviewAt:(NSInteger)offset {
if(splitView == _historySplitView)
return proposedMin + 140.0;
else if(splitView == _detailsSplitView)
return proposedMin + 40.0;
return proposedMin;
}
- (CGFloat)splitView:(NSSplitView *)splitView constrainMaxCoordinate:(CGFloat)proposedMax ofSubviewAt:(NSInteger)offset {
if(splitView == _historySplitView)
return 200.0;
else if(splitView == _detailsSplitView)
return proposedMax - 40.0;
return proposedMax;
}
- (BOOL)splitView:(NSSplitView *)splitView shouldAdjustSizeOfSubview:(NSView *)view {
if(splitView == _historySplitView) {
if(view == [[splitView subviews] objectAtIndex:1])
return YES;
} else if(splitView == _detailsSplitView) {
if(view == [[splitView subviews] objectAtIndex:1])
return YES;
}
return NO;
}
@end