257 lines
9 KiB
Objective-C
257 lines
9 KiB
Objective-C
//
|
|
// Controller.m
|
|
// Twittia 2
|
|
//
|
|
// Created by Jeena on 15.04.10.
|
|
// Licence: BSD (see attached LICENCE.txt file).
|
|
//
|
|
|
|
#import "Controller.h"
|
|
#import "NewTweetWindow.h"
|
|
#import "TweetModel.h"
|
|
|
|
|
|
@implementation Controller
|
|
|
|
@synthesize timelineView, timelineViewWindow, mentionsView, mentionsViewWindow, globalHotkeyMenuItem, viewDelegate;
|
|
@synthesize logoLayer;
|
|
@synthesize twittiaOauthView, accessToken;
|
|
|
|
- (void)awakeFromNib {
|
|
|
|
[self initHotKeys];
|
|
|
|
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
|
|
[nc addObserver:self
|
|
selector:@selector(openNewTweetWindow:)
|
|
name:@"openNewTweetWindow"
|
|
object:nil];
|
|
[nc addObserver:self
|
|
selector:@selector(sendTweet:)
|
|
name:@"sendTweet"
|
|
object:nil];
|
|
[nc addObserver:self
|
|
selector:@selector(authentificationSucceded:)
|
|
name:@"authentificationSucceded"
|
|
object:nil];
|
|
[nc addObserver:self
|
|
selector:@selector(getTweetUpdates:)
|
|
name:@"getTweetUpdates"
|
|
object:nil];
|
|
|
|
NSAppleEventManager *appleEventManager = [NSAppleEventManager sharedAppleEventManager];
|
|
[appleEventManager setEventHandler:self
|
|
andSelector:@selector(handleGetURLEvent:withReplyEvent:)
|
|
forEventClass:kInternetEventClass
|
|
andEventID:kAEGetURL];
|
|
|
|
viewDelegate = [[ViewDelegate alloc] init];
|
|
|
|
|
|
accessToken = [[AccessToken alloc] init];
|
|
|
|
//accessToken.accessToken = nil;
|
|
if (!accessToken.accessToken) {
|
|
[self initOauth];
|
|
} else {
|
|
[self initWebViews];
|
|
}
|
|
}
|
|
|
|
- (void)initOauth {
|
|
NSString *path = [[NSBundle mainBundle] resourcePath];
|
|
NSURL *url = [NSURL fileURLWithPath:path];
|
|
NSString *index_string = [NSString stringWithContentsOfFile:[NSString stringWithFormat:@"%@/index_oauth.html", path] encoding:NSUTF8StringEncoding error:nil];
|
|
|
|
|
|
twittiaOauthView = [[WebView alloc] init];
|
|
viewDelegate.twittiaOauthView = twittiaOauthView;
|
|
[[twittiaOauthView mainFrame] loadHTMLString:index_string baseURL:url];
|
|
[twittiaOauthView setFrameLoadDelegate:viewDelegate];
|
|
[twittiaOauthView setPolicyDelegate:viewDelegate];
|
|
[twittiaOauthView setUIDelegate:viewDelegate];
|
|
[[twittiaOauthView windowScriptObject] setValue:self forKey:@"controller"];
|
|
}
|
|
|
|
- (void)initHotKeys {
|
|
|
|
NSInteger newTweetKey = kVK_ANSI_T; // http://boredzo.org/blog/archives/2007-05-22/virtual-key-codes
|
|
NSInteger newTweetModifierKey = controlKey + cmdKey + optionKey; // cmdKey 256, shitfKey 512, optionKey 2048, controlKey 4096
|
|
|
|
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
|
|
NSInteger defaultsNewTweetKey = (NSInteger)[defaults integerForKey:@"newTweetKey"];
|
|
|
|
if ([defaults objectForKey:@"newTweetKey"] != nil) {
|
|
newTweetKey = defaultsNewTweetKey;
|
|
} else {
|
|
[defaults setInteger:newTweetKey forKey:@"newTweetKey"];
|
|
}
|
|
|
|
NSInteger defaultsNewTweetModifierKey = (NSInteger)[defaults integerForKey:@"newTweetModifierKey"];
|
|
if ([defaults objectForKey:@"newTweetModifierKey"] != nil) {
|
|
newTweetModifierKey = defaultsNewTweetModifierKey;
|
|
} else {
|
|
[defaults setInteger:newTweetModifierKey forKey:@"newTweetModifierKey"];
|
|
}
|
|
|
|
[defaults synchronize];
|
|
|
|
NSUInteger cocoaModifiers = 0;
|
|
if (newTweetModifierKey & shiftKey) cocoaModifiers = cocoaModifiers | NSShiftKeyMask;
|
|
if (newTweetModifierKey & optionKey) cocoaModifiers = cocoaModifiers | NSAlternateKeyMask;
|
|
if (newTweetModifierKey & controlKey) cocoaModifiers = cocoaModifiers | NSControlKeyMask;
|
|
if (newTweetModifierKey & cmdKey) cocoaModifiers = cocoaModifiers | NSCommandKeyMask;
|
|
|
|
[globalHotkeyMenuItem setKeyEquivalent:[Constants stringFromVirtualKeyCode:newTweetKey]];
|
|
[globalHotkeyMenuItem setKeyEquivalentModifierMask:cocoaModifiers];
|
|
|
|
/* CARBON from http://github.com/Xjs/drama-button/blob/carbon/Drama_ButtonAppDelegate.m */
|
|
|
|
EventTypeSpec eventType;
|
|
eventType.eventClass = kEventClassKeyboard;
|
|
eventType.eventKind = kEventHotKeyPressed;
|
|
|
|
InstallApplicationEventHandler(&handler, 1, &eventType, NULL, NULL);
|
|
|
|
EventHotKeyID g_HotKeyID;
|
|
g_HotKeyID.id = 1;
|
|
|
|
EventHotKeyRef g_HotKeyRef;
|
|
|
|
RegisterEventHotKey(newTweetKey, newTweetModifierKey, g_HotKeyID, GetApplicationEventTarget(), 0, &g_HotKeyRef);
|
|
|
|
/* end CARBON */
|
|
}
|
|
|
|
- (void)authentificationSucceded:(id)sender {
|
|
[self initWebViews];
|
|
}
|
|
|
|
- (void)initWebViews {
|
|
|
|
NSString *path = [[NSBundle mainBundle] resourcePath];
|
|
NSURL *url = [NSURL fileURLWithPath:path];
|
|
NSString *index_string = [NSString stringWithContentsOfFile:[NSString stringWithFormat:@"%@/index.html", path] encoding:NSUTF8StringEncoding error:nil];
|
|
|
|
viewDelegate.timelineView = timelineView;
|
|
[[timelineView mainFrame] loadHTMLString:index_string baseURL:url];
|
|
[timelineView setFrameLoadDelegate:viewDelegate];
|
|
[timelineView setPolicyDelegate:viewDelegate];
|
|
[timelineView setUIDelegate:viewDelegate];
|
|
[[timelineView windowScriptObject] setValue:self forKey:@"controller"];
|
|
|
|
viewDelegate.mentionsView = mentionsView;
|
|
[[mentionsView mainFrame] loadHTMLString:index_string baseURL:url];
|
|
[mentionsView setFrameLoadDelegate:viewDelegate];
|
|
[mentionsView setPolicyDelegate:viewDelegate];
|
|
[mentionsView setUIDelegate:viewDelegate];
|
|
[[mentionsView windowScriptObject] setValue:self forKey:@"controller"];
|
|
|
|
[logoLayer removeFromSuperview];
|
|
}
|
|
|
|
+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector {
|
|
return NO;
|
|
}
|
|
|
|
+ (BOOL)isKeyExcludedFromWebScript:(const char *)name {
|
|
return NO;
|
|
}
|
|
|
|
|
|
#pragma mark Notifications
|
|
|
|
- (IBAction)openNewTweetWindow:(id)sender {
|
|
[NSApp activateIgnoringOtherApps:YES];
|
|
[[NSDocumentController sharedDocumentController] openUntitledDocumentAndDisplay:YES error:nil];
|
|
}
|
|
|
|
- (void)openNewTweetWindowInReplyTo:(NSString *)userName statusId:(NSString *)statusId {
|
|
[NSApp activateIgnoringOtherApps:YES];
|
|
NewTweetWindow *newTweet = (NewTweetWindow *)[[NSDocumentController sharedDocumentController] openUntitledDocumentAndDisplay:YES error:nil];
|
|
[newTweet inReplyTo:userName statusId:statusId];
|
|
}
|
|
|
|
- (void)openNewTweetWindowWithString:(NSString *)aString {
|
|
[NSApp activateIgnoringOtherApps:YES];
|
|
|
|
NSRange range = [aString rangeOfString:@"oauth_token"];
|
|
|
|
if (range.length > 0) {
|
|
[twittiaOauthView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"twittia_oauth.requestAccessToken('%@')", aString]];
|
|
} else {
|
|
NewTweetWindow *newTweet = (NewTweetWindow *)[[NSDocumentController sharedDocumentController] openUntitledDocumentAndDisplay:YES error:nil];
|
|
[newTweet withString:aString];
|
|
}
|
|
|
|
}
|
|
|
|
- (void)handleGetURLEvent:(NSAppleEventDescriptor *)event withReplyEvent:(NSAppleEventDescriptor *)replyEvent {
|
|
NSString *text = [[[event paramDescriptorForKeyword:keyDirectObject] stringValue] substringFromIndex:8];
|
|
[self openNewTweetWindowWithString:[text stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
|
|
}
|
|
|
|
- (IBAction)sendTweet:(id)sender {
|
|
TweetModel *tweet = (TweetModel *)[sender object];
|
|
NSString *func = [NSString stringWithFormat:@"twittia_instance.sendNewTweet(\"%@\", \"%@\")", [tweet.text stringByReplacingOccurrencesOfString:@"\"" withString:@"\\\""], tweet.inReplyTostatusId];
|
|
[timelineView stringByEvaluatingJavaScriptFromString:func];
|
|
}
|
|
|
|
- (NSString *)pluginURL {
|
|
NSFileManager *fileManager = [NSFileManager defaultManager];
|
|
NSString *pathToPlugin = [@"~/Library/Application Support/Twittia/Plugin.js" stringByExpandingTildeInPath];
|
|
if([fileManager fileExistsAtPath:pathToPlugin]) {
|
|
return [NSString stringWithFormat:@"%@", [NSURL fileURLWithPath:pathToPlugin]];
|
|
}
|
|
return nil;
|
|
}
|
|
|
|
- (void)unreadMentions:(NSInteger)count {
|
|
if (![mentionsViewWindow isVisible] && count > 0) {
|
|
[timelineViewWindow setTitle:[NSString stringWithFormat:@"Twittia (@%i)", count]];
|
|
[[[NSApplication sharedApplication] dockTile] setBadgeLabel:[NSString stringWithFormat:@"%i", count]];
|
|
} else {
|
|
[timelineViewWindow setTitle:[NSString stringWithFormat:@"Twittia"]];
|
|
[[[NSApplication sharedApplication] dockTile] setBadgeLabel:nil];
|
|
[mentionsView stringByEvaluatingJavaScriptFromString:@"twittia_instance.unread_mentions = 0;"];
|
|
}
|
|
}
|
|
|
|
- (void)openURL:(NSString *)url {
|
|
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:url]];
|
|
}
|
|
|
|
- (void)storeAccessToken:(NSString *)_accessToken secret:(NSString *)secret userId:(NSString *)userId andScreenName:(NSString *)screenName
|
|
{
|
|
self.accessToken.accessToken = _accessToken;
|
|
self.accessToken.secret = secret;
|
|
self.accessToken.userId = userId;
|
|
self.accessToken.screenName = screenName;
|
|
|
|
[timelineViewWindow makeKeyAndOrderFront:self];
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:@"authentificationSucceded" object:nil];
|
|
}
|
|
|
|
// Mentions window has been visible
|
|
- (void)windowDidBecomeKey:(NSNotification *)notification {
|
|
if ([notification object] == mentionsViewWindow) {
|
|
[self unreadMentions:0];
|
|
}
|
|
}
|
|
|
|
- (void)getTweetUpdates:(id)sender {
|
|
[timelineView stringByEvaluatingJavaScriptFromString:@"twittia_instance.getNewData(true)"];
|
|
[mentionsView stringByEvaluatingJavaScriptFromString:@"twittia_instance.getNewData(true)"];
|
|
}
|
|
|
|
|
|
/* CARBON */
|
|
|
|
OSStatus handler(EventHandlerCallRef nextHandler, EventRef theEvent, void* userData)
|
|
{
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:@"openNewTweetWindow" object:nil];
|
|
return noErr;
|
|
}
|
|
|
|
@end
|