-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathMPMainController.m
More file actions
418 lines (346 loc) · 13.7 KB
/
Copy pathMPMainController.m
File metadata and controls
418 lines (346 loc) · 13.7 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
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
//
// MPMainController.m
// MacDown 3000
//
// 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>
// Temporarily disabled - will upgrade Sparkle to 2.8.1 later
// #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";
typedef void (^MPOpenPendingFileCompletion)(NSDocument *document);
NS_INLINE NSWindow *MPWindowForDocument(NSDocument *document)
{
for (NSWindowController *controller in document.windowControllers)
{
if (controller.window)
return controller.window;
}
return document.windowForSheet;
}
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;
// Copy bundled Images directory alongside the file for relative image paths
NSURL *imagesSource = [[NSBundle mainBundle] URLForResource:@"Images"
withExtension:nil];
if (imagesSource)
{
NSURL *imagesTarget = [NSURL fileURLWithPathComponents:@[NSTemporaryDirectory(),
@"Images"]];
[manager removeItemAtURL:imagesTarget error:NULL];
[manager copyItemAtURL:imagesSource toURL:imagesTarget error:NULL];
}
NSDocumentController *c = [NSDocumentController sharedDocumentController];
[c openDocumentWithContentsOfURL:target display:YES
completionHandler:MPDocumentOpenCompletionEmpty];
}
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:MPDocumentOpenCompletionEmpty];
}
- (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");
}
- (IBAction)openGitHub:(id)sender
{
NSURL *url = [NSURL URLWithString:@"https://github.com/schuyler/macdown3000"];
[[NSWorkspace sharedWorkspace] openURL:url];
}
#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;
}
- (BOOL)applicationSupportsSecureRestorableState:(NSApplication *)app
{
return YES;
}
- (void)applicationDidBecomeActive:(NSNotification *)notification
{
[self openPendingPipedContent];
[self openPendingFiles];
treat();
}
#if 0 // Temporarily disabled - will upgrade Sparkle to 2.8.1 later
#pragma mark - SUUpdaterDelegate
- (NSString *)feedURLStringForUpdater:(SUUpdater *)updater
{
if (self.preferences.updateIncludesPreReleases)
return [NSBundle mainBundle].infoDictionary[@"SUBetaFeedURL"];
return [NSBundle mainBundle].infoDictionary[@"SUFeedURL"];
}
#endif
#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
{
NSArray *paths = [self.preferences.filesToOpen copy];
if (!paths.count)
return;
self.preferences.filesToOpen = nil;
[self.preferences synchronize];
NSDocumentController *c = [NSDocumentController sharedDocumentController];
[NSWindow setAllowsAutomaticWindowTabbing:YES];
[self openPendingFilePaths:paths index:0 tabbedToWindow:nil
documentController:c];
}
- (void)openPendingFilePaths:(NSArray *)paths index:(NSUInteger)index
tabbedToWindow:(NSWindow *)tabWindow
documentController:(NSDocumentController *)controller
{
if (index >= paths.count)
return;
[self openPendingFileAtPath:paths[index] documentController:controller
completion:^(NSDocument *document) {
NSWindow *window = MPWindowForDocument(document);
NSWindow *nextTabWindow = tabWindow ?: window;
if (tabWindow && window && window != tabWindow)
{
tabWindow.tabbingMode = NSWindowTabbingModePreferred;
window.tabbingMode = NSWindowTabbingModePreferred;
[tabWindow addTabbedWindow:window ordered:NSWindowAbove];
[tabWindow makeKeyAndOrderFront:nil];
}
[self openPendingFilePaths:paths index:index + 1
tabbedToWindow:nextTabWindow
documentController:controller];
}];
}
- (void)openPendingFileAtPath:(NSString *)path
documentController:(NSDocumentController *)controller
completion:(MPOpenPendingFileCompletion)completion
{
NSURL *url = [NSURL fileURLWithPath:path];
if ([url checkResourceIsReachableAndReturnError:NULL])
{
[controller openDocumentWithContentsOfURL:url display:YES
completionHandler:^(
NSDocument *document, BOOL wasOpen, NSError *error) {
if (completion)
completion(document);
}];
return;
}
NSDocument *document = [controller createNewEmptyDocumentForURL:url
display:YES
error:NULL];
if (completion)
completion(document);
}
- (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