-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathMPMainController.m
More file actions
349 lines (290 loc) · 11.4 KB
/
Copy pathMPMainController.m
File metadata and controls
349 lines (290 loc) · 11.4 KB
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
//
// MPMainController.m
// MacDown
//
// Created by Tzu-ping Chung on 7/06/2014.
// Copyright (c) 2014 Tzu-ping Chung . All rights reserved.
//
#import "MPMainController.h"
#import <MASPreferences/MASPreferencesWindowController.h>
#import <Sparkle/SUUpdater.h>
#import "MPGlobals.h"
#import "MPUtilities.h"
#import "NSDocumentController+Document.h"
#import "NSUserDefaults+Suite.h"
#import "MPPreferences.h"
#import "MPGeneralPreferencesViewController.h"
#import "MPMarkdownPreferencesViewController.h"
#import "MPEditorPreferencesViewController.h"
#import "MPHtmlPreferencesViewController.h"
#import "MPTerminalPreferencesViewController.h"
#import "MPDocument.h"
static NSString * const kMPTreatLastSeenStampKey = @"treatLastSeenStamp";
NS_INLINE void MPOpenBundledFile(NSString *resource, NSString *extension)
{
NSURL *source = [[NSBundle mainBundle] URLForResource:resource
withExtension:extension];
NSString *filename = source.absoluteString.lastPathComponent;
NSURL *target = [NSURL fileURLWithPathComponents:@[NSTemporaryDirectory(),
filename]];
BOOL ok = NO;
NSFileManager *manager = [NSFileManager defaultManager];
[manager removeItemAtURL:target error:NULL];
ok = [manager copyItemAtURL:source toURL:target error:NULL];
if (!ok)
return;
NSDocumentController *c = [NSDocumentController sharedDocumentController];
[c openDocumentWithContentsOfURL:target display:YES completionHandler:
^(NSDocument *document, BOOL wasOpen, NSError *error) {
if (!document || wasOpen || error)
return;
NSRect frame = [NSScreen mainScreen].visibleFrame;
for (NSWindowController *wc in document.windowControllers)
[wc.window setFrame:frame display:YES];
}];
}
NS_INLINE void treat()
{
NSDictionary *info = MPGetDataMap(@"treats");
NSString *name = info[@"name"];
if (![NSUserName().lowercaseString hasPrefix:name]
&& ![NSFullUserName().lowercaseString hasPrefix:name])
return;
NSDictionary *data = info[@"data"];
NSCalendar *calendar = [NSCalendar currentCalendar];
NSCalendarUnit unit =
NSCalendarUnitDay | NSCalendarUnitMonth | NSCalendarUnitYear;
NSDateComponents *comps = [calendar components:unit fromDate:[NSDate date]];
NSString *key =
[NSString stringWithFormat:@"%02ld%02ld", comps.month, comps.day];
if (!data[key]) // No matching treat.
return;
NSString *stamp = [NSString stringWithFormat:@"%ld%02ld%02ld",
comps.year, comps.month, comps.day];
// User has seen this treat today.
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if ([[defaults objectForKey:kMPTreatLastSeenStampKey] isEqual:stamp])
return;
[defaults setObject:stamp forKey:kMPTreatLastSeenStampKey];
NSArray *components = @[NSTemporaryDirectory(), key];
NSURL *url = [NSURL fileURLWithPathComponents:components];
[data[key] writeToURL:url atomically:NO];
// Make sure this is opened last and immediately visible.
NSDocumentController *c = [NSDocumentController sharedDocumentController];
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
[c openDocumentWithContentsOfURL:url display:YES
completionHandler:MPDocumentOpenCompletionEmpty];
}];
}
@interface MPMainController ()
@property (readonly) NSWindowController *preferencesWindowController;
@end
@implementation MPMainController
@synthesize preferencesWindowController = _preferencesWindowController;
- (void)applicationDidFinishLaunching:(NSNotification *)notification
{
[[NSAppleEventManager sharedAppleEventManager]
setEventHandler:self
andSelector:@selector(openUrlSchemeAppleEvent:withReplyEvent:)
forEventClass:kInternetEventClass andEventID:kAEGetURL];
}
// Open a file from a browser with url of the form :
// "x-macdown://open?url=file:///path/to/a/file&line=123&column=45"
- (void)openUrlSchemeAppleEvent:(NSAppleEventDescriptor *)event
withReplyEvent:(NSAppleEventDescriptor *)reply
{
NSString *urlString = [[event paramDescriptorForKeyword:keyDirectObject] stringValue];
if (!urlString) {
return;
}
NSURL *url = [[NSURL alloc] initWithString:urlString];
if (!url) {
return;
}
NSURLComponents *urlComponents = [NSURLComponents componentsWithURL:url
resolvingAgainstBaseURL:NO];
if (!urlComponents) {
return;
}
NSString *host = urlComponents.host;
if (!host || ![host isEqualToString:@"open"]) {
return;
}
NSArray *queryItems = urlComponents.queryItems;
if (!queryItems) {
return;
}
NSString *fileParam = [self valueForKey:@"url" fromQueryItems:queryItems];
if (!fileParam) {
return;
}
// FIXME: Could not figure out how to place the insertion point at a given
// line and column.
/* Unused */ NSString *lineParam = [self valueForKey:@"line"
fromQueryItems:queryItems];
/* Unused */ NSString *columnParam = [self valueForKey:@"column"
fromQueryItems:queryItems];
NSLog(@"%@:%@:%@", fileParam, lineParam, columnParam);
NSURL *target = [NSURL URLWithString:fileParam];
if (!target) {
return;
}
NSDocumentController *c = [NSDocumentController sharedDocumentController];
[c openDocumentWithContentsOfURL:target display:YES completionHandler:
^(NSDocument *document, BOOL wasOpen, NSError *error) {
if (!document || wasOpen || error)
return;
NSRect frame = [NSScreen mainScreen].visibleFrame;
for (NSWindowController *wc in document.windowControllers)
[wc.window setFrame:frame display:YES];
}];
}
- (NSString *)valueForKey:(NSString *)key fromQueryItems:(NSArray *)queryItems
{
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name=%@", key];
NSURLQueryItem *queryItem = [[queryItems filteredArrayUsingPredicate:predicate] firstObject];
return queryItem.value;
}
- (MPPreferences *)preferences
{
return [MPPreferences sharedInstance];
}
- (NSWindowController *)preferencesWindowController
{
if (!_preferencesWindowController)
{
NSArray *vcs = @[
[[MPGeneralPreferencesViewController alloc] init],
[[MPMarkdownPreferencesViewController alloc] init],
[[MPEditorPreferencesViewController alloc] init],
[[MPHtmlPreferencesViewController alloc] init],
[[MPTerminalPreferencesViewController alloc] init],
];
NSString *title = NSLocalizedString(@"Preferences",
@"Preferences window title.");
typedef MASPreferencesWindowController WC;
_preferencesWindowController =
[[WC alloc] initWithViewControllers:vcs title:title];
}
return _preferencesWindowController;
}
- (IBAction)showPreferencesWindow:(id)sender
{
[self.preferencesWindowController showWindow:nil];
}
- (IBAction)showHelp:(id)sender
{
MPOpenBundledFile(@"help", @"md");
}
- (IBAction)showContributing:(id)sender
{
MPOpenBundledFile(@"contribute", @"md");
}
#pragma mark - Override
- (instancetype)init
{
self = [super init];
if (!self)
return self;
NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
[center addObserver:self selector:@selector(showFirstLaunchTips)
name:MPDidDetectFreshInstallationNotification
object:self.preferences];
[self copyFiles];
return self;
}
#pragma mark - NSApplicationDelegate
- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender
{
if (self.preferences.filesToOpen.count || self.preferences.pipedContentFileToOpen)
return NO;
return !self.preferences.supressesUntitledDocumentOnLaunch;
}
- (void)applicationDidBecomeActive:(NSNotification *)notification
{
[self openPendingPipedContent];
[self openPendingFiles];
treat();
}
#pragma mark - SUUpdaterDelegate
- (NSString *)feedURLStringForUpdater:(SUUpdater *)updater
{
if (self.preferences.updateIncludesPreReleases)
return [NSBundle mainBundle].infoDictionary[@"SUBetaFeedURL"];
return [NSBundle mainBundle].infoDictionary[@"SUFeedURL"];
}
#pragma mark - Private
- (void)copyFiles
{
NSFileManager *manager = [NSFileManager defaultManager];
NSString *root = MPDataDirectory(nil);
if (![manager fileExistsAtPath:root])
{
[manager createDirectoryAtPath:root
withIntermediateDirectories:YES attributes:nil error:NULL];
}
NSBundle *bundle = [NSBundle mainBundle];
for (NSString *key in @[kMPStylesDirectoryName, kMPThemesDirectoryName])
{
NSURL *dirSource = [bundle URLForResource:key withExtension:@""];
NSURL *dirTarget = [NSURL fileURLWithPath:MPDataDirectory(key)];
// If the directory doesn't exist, just copy the whole thing.
if (![manager fileExistsAtPath:dirTarget.path])
{
[manager copyItemAtURL:dirSource toURL:dirTarget error:NULL];
continue;
}
// Check for existence of each file and copy if it's not there.
NSArray *contents = [manager contentsOfDirectoryAtURL:dirSource
includingPropertiesForKeys:nil options:0
error:NULL];
for (NSURL *fileSource in contents)
{
NSString *name = fileSource.lastPathComponent;
NSURL *fileTarget = [dirTarget URLByAppendingPathComponent:name];
if (![manager fileExistsAtPath:fileTarget.path])
[manager copyItemAtURL:fileSource toURL:fileTarget error:NULL];
}
}
}
- (void)openPendingFiles
{
NSDocumentController *c = [NSDocumentController sharedDocumentController];
for (NSString *path in self.preferences.filesToOpen)
{
NSURL *url = [NSURL fileURLWithPath:path];
if ([url checkResourceIsReachableAndReturnError:NULL])
{
[c openDocumentWithContentsOfURL:url display:YES
completionHandler:MPDocumentOpenCompletionEmpty];
}
else
{
[c createNewEmptyDocumentForURL:url display:YES error:NULL];
}
}
self.preferences.filesToOpen = nil;
[self.preferences synchronize];
}
- (void)openPendingPipedContent {
NSDocumentController *c = [NSDocumentController sharedDocumentController];
if (self.preferences.pipedContentFileToOpen) {
NSURL *pipedContentFileToOpenURL = [NSURL fileURLWithPath:self.preferences.pipedContentFileToOpen];
NSError *readPipedContentError;
NSString *pipedContentString = [NSString stringWithContentsOfURL:pipedContentFileToOpenURL encoding:NSUTF8StringEncoding error:&readPipedContentError];
NSError *openDocumentError;
MPDocument *document = (MPDocument *)[c openUntitledDocumentAndDisplay:YES error:&openDocumentError];
if (document && openDocumentError == nil && readPipedContentError == nil) {
document.markdown = pipedContentString;
}
self.preferences.pipedContentFileToOpen = nil;
[self.preferences synchronize];
}
}
#pragma mark - Notification handler
- (void)showFirstLaunchTips
{
[self showHelp:nil];
[self showContributing:nil];
}
@end