-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGSAppDelegate.m
85 lines (69 loc) · 2.2 KB
/
GSAppDelegate.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
//
// AppDelegate.m
// Gisties
//
// Created by Michael Schrag on 2/15/09.
// Copyright 2009 m Dimension Technology. All rights reserved.
//
#import "GSAppDelegate.h"
#import "GSGisty.h"
#import "GSSaveToGitHubOperation.h"
#import "GSLoadFromGitHubOperation.h"
@implementation GSAppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
_syncQueue = [[NSOperationQueue alloc] init];
NSDocumentController *controller = [NSDocumentController sharedDocumentController];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *gistiesFolder = [GSGist gistiesFolder];
NSArray *gistyPaths = [fileManager directoryContentsAtPath:gistiesFolder];
int gistyCount = 0;
for (NSString *gistyPath in gistyPaths) {
if ([[gistyPath pathExtension] isEqualToString:@"gisty"]) {
NSURL *gistyURL = [[NSURL alloc] initFileURLWithPath:[gistiesFolder stringByAppendingPathComponent:gistyPath] isDirectory:YES];
GSGisty *gisty = [controller openDocumentWithContentsOfURL:gistyURL display:YES];
GSGist *gist = [gisty gist];
if ([gist temporary]) {
NSLog(@"temporary %@", [gist gistyFile]);
}
[gistyURL release];
gistyCount ++;
}
}
if (gistyCount == 0) {
NSError *error;
[controller openUntitledDocumentAndDisplay:YES error:&error];
}
}
- (BOOL)windowShouldClose:(id)window {
return [super windowShouldClose:window];
}
- (void)canCloseDocumentWithDelegate:(id)delegate shouldCloseSelector:(SEL)shouldCloseSelector contextInfo:(void *)contextInfo {
NSLog(@"test");
}
- (void)dealloc {
[_syncQueue release];
[super dealloc];
}
- (void)loadFromGitHub:(GSGist *)gist {
GSLoadFromGitHubOperation *operation = [[GSLoadFromGitHubOperation alloc] initWithGist:gist];
[_syncQueue addOperation:operation];
[operation release];
}
- (void)saveToGitHub:(GSGist *)gist {
GSSaveToGitHubOperation *operation = [[GSSaveToGitHubOperation alloc] initWithGist:gist];
[_syncQueue addOperation:operation];
[operation release];
}
- (NSString *)gitPath {
return @"/usr/local/bin/git";
}
- (NSString *)userName {
return @"mschrag";
}
- (NSString *)token {
return @"f2d384017505e6aad154d70b56cf0ad9";
}
- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender {
return NO;
}
@end