aka RedditBar, Mac OS X menu bar reddit client
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

AppDelegate.m 9.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. /*
  2. * AppDelegate.m
  3. *
  4. * Copyright (c) 2013, Thomas Buck <xythobuz@xythobuz.de>
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. *
  10. * - Redistributions of source code must retain the above copyright notice,
  11. * this list of conditions and the following disclaimer.
  12. *
  13. * - Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  19. * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  20. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
  21. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  22. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  23. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  24. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  25. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  26. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  27. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. #import "AppDelegate.h"
  30. @implementation AppDelegate
  31. @synthesize statusMenu, statusItem, statusImage, statusHighlightImage, prefWindow, currentState, application, api, firstMenuItem, menuItems, redditItems;
  32. - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
  33. statusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSSquareStatusItemLength];
  34. NSBundle *bundle = [NSBundle mainBundle];
  35. statusImage = [[NSImage alloc] initWithContentsOfFile:[bundle pathForResource:@"icon" ofType:@"png"]];
  36. statusHighlightImage = [[NSImage alloc] initWithContentsOfFile:[bundle pathForResource:@"icon-alt" ofType:@"png"]];
  37. [statusItem setImage:statusImage];
  38. [statusItem setAlternateImage:statusHighlightImage];
  39. [statusItem setMenu:statusMenu];
  40. [statusItem setToolTip:NSLocalizedString(@"RedditBar", @"Main Menuitem Tooltip")];
  41. [statusItem setHighlightMode:YES];
  42. currentState = [[StateModel alloc] init];
  43. [self defaultPreferences];
  44. [self loadPreferences];
  45. [self reloadListWithOptions];
  46. }
  47. -(void)defaultPreferences {
  48. NSUserDefaults *store = [NSUserDefaults standardUserDefaults];
  49. NSMutableDictionary *appDefaults = [NSMutableDictionary dictionaryWithObject:@"" forKey:@"username"];
  50. [appDefaults setValue:@"" forKey:@"modhash"];
  51. [appDefaults setValue:[NSNumber numberWithBool:YES] forKey:@"subscriptions"];
  52. [appDefaults setValue:[NSNumber numberWithInt:10] forKey:@"length"];
  53. [store registerDefaults:appDefaults];
  54. }
  55. -(void)savePreferences {
  56. NSUserDefaults *store = [NSUserDefaults standardUserDefaults];
  57. [store setObject:currentState.username forKey:@"username"];
  58. [store setObject:currentState.modhash forKey:@"modhash"];
  59. [store setBool:currentState.useSubscriptions forKey:@"subscriptions"];
  60. [store setObject:currentState.subreddits forKey:@"subreddits"];
  61. [store setInteger:currentState.length forKey:@"length"];
  62. [store synchronize];
  63. }
  64. -(void)loadPreferences {
  65. NSUserDefaults *store = [NSUserDefaults standardUserDefaults];
  66. [store synchronize];
  67. [currentState setUsername:[store stringForKey:@"username"]];
  68. [currentState setModhash:[store stringForKey:@"modhash"]];
  69. [currentState setUseSubscriptions:[store boolForKey:@"subscriptions"]];
  70. [currentState setSubreddits:[store arrayForKey:@"subreddits"]];
  71. [currentState setLength:[store integerForKey:@"length"]];
  72. }
  73. -(void)reloadListNotAuthenticatedCallback {
  74. [firstMenuItem setTitle:NSLocalizedString(@"Login Error!", @"Statusitem when API is not authenticated")];
  75. [self clearMenuItems];
  76. [firstMenuItem setHidden:NO];
  77. }
  78. -(void)reloadListHasFrontpageCallback:(NSArray *)items {
  79. if (items == nil) {
  80. [firstMenuItem setTitle:NSLocalizedString(@"Error reading Frontpage!", @"Status api Read error")];
  81. [self clearMenuItems];
  82. [firstMenuItem setHidden:NO];
  83. return;
  84. }
  85. redditItems = items;
  86. [self clearMenuItems];
  87. [firstMenuItem setHidden:YES];
  88. [self putItemArrayInMenu:redditItems];
  89. }
  90. -(void)reloadListHasSubredditsCallback:(NSArray *)items {
  91. if (items == nil) {
  92. [firstMenuItem setTitle:NSLocalizedString(@"Error reading Subreddits!", @"Status api read error")];
  93. [self clearMenuItems];
  94. [firstMenuItem setHidden:NO];
  95. return;
  96. }
  97. redditItems = items;
  98. [self clearMenuItems];
  99. [firstMenuItem setHidden:YES];
  100. [self putItemArrayInMenu:redditItems];
  101. }
  102. -(void)reloadListIsAuthenticatedCallback {
  103. if (currentState.useSubscriptions) {
  104. [NSThread detachNewThreadSelector:@selector(readFrontpage:) toTarget:api withObject:self];
  105. } else {
  106. [api setSubreddits:currentState.subreddits];
  107. [NSThread detachNewThreadSelector:@selector(readSubreddits:) toTarget:api withObject:self];
  108. }
  109. }
  110. -(void)reloadListWithOptions {
  111. if ([currentState.modhash isEqualToString:@""]) {
  112. [firstMenuItem setTitle:NSLocalizedString(@"Not logged in!", @"Statusitem when no modhash is stored")];
  113. [self clearMenuItems];
  114. [firstMenuItem setHidden:NO];
  115. [self showPreferences:nil];
  116. return;
  117. }
  118. api = [[Reddit alloc] initWithUsername:currentState.username Modhash:currentState.modhash Length:currentState.length];
  119. [NSThread detachNewThreadSelector:@selector(isAuthenticatedNewModhash:) toTarget:api withObject:self];
  120. }
  121. -(IBAction)linkToOpen:(id)sender {
  122. NSString *title = [(NSMenuItem *)sender title];
  123. if ([title isEqualToString:NSLocalizedString(@"Link...", nil)]) {
  124. for (NSUInteger i = 0; i < [menuItems count]; i++) {
  125. NSMenuItem *item = [menuItems objectAtIndex:i];
  126. NSMenu *submenu = item.submenu;
  127. if (submenu != nil) {
  128. if (sender == [submenu itemAtIndex:0]) {
  129. RedditItem *rItem = [redditItems objectAtIndex:i];
  130. [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[rItem link]]];
  131. return;
  132. }
  133. }
  134. }
  135. } else if ([title isEqualToString:NSLocalizedString(@"Comments...", nil)]) {
  136. for (NSUInteger i = 0; i < [menuItems count]; i++) {
  137. NSMenuItem *item = [menuItems objectAtIndex:i];
  138. NSMenu *submenu = item.submenu;
  139. if (submenu != nil) {
  140. if (sender == [submenu itemAtIndex:1]) {
  141. RedditItem *rItem = [redditItems objectAtIndex:i];
  142. [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[rItem comments]]];
  143. return;
  144. }
  145. }
  146. }
  147. } else {
  148. for (NSUInteger i = 0; i < [menuItems count]; i++) {
  149. NSMenuItem *item = [menuItems objectAtIndex:i];
  150. if (sender == item) {
  151. RedditItem *rItem = [redditItems objectAtIndex:i];
  152. [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[rItem link]]];
  153. [statusMenu removeItem:[menuItems objectAtIndex:i]];
  154. return;
  155. }
  156. }
  157. }
  158. }
  159. -(void)clearMenuItems {
  160. if (menuItems != nil) {
  161. for (NSUInteger i = 0; i < [menuItems count]; i++) {
  162. [statusMenu removeItem:[menuItems objectAtIndex:i]];
  163. }
  164. menuItems = nil;
  165. }
  166. }
  167. -(void)putItemArrayInMenu:(NSArray *)array {
  168. NSMutableArray *items = [NSMutableArray arrayWithCapacity:array.count];
  169. for (NSUInteger i = 0; i < [array count]; i++) {
  170. RedditItem *reddit = [array objectAtIndex:i];
  171. NSMenuItem *item = [[NSMenuItem alloc] init];
  172. [item setTitle:reddit.name];
  173. if (![reddit.name isEqualToString:reddit.fullName])
  174. [item setToolTip:reddit.fullName];
  175. if (reddit.isSelf) {
  176. [item setAction:@selector(linkToOpen:)];
  177. [item setKeyEquivalent:@""];
  178. } else {
  179. NSMenu *submenu = [[NSMenu alloc] init];
  180. [submenu addItemWithTitle:NSLocalizedString(@"Link...", @"Link item") action:@selector(linkToOpen:) keyEquivalent:@""];
  181. [submenu addItemWithTitle:NSLocalizedString(@"Comments...", @"comment item") action:@selector(linkToOpen:) keyEquivalent:@""];
  182. [item setSubmenu:submenu];
  183. }
  184. [items addObject:item];
  185. [statusMenu insertItem:item atIndex:i];
  186. }
  187. menuItems = items;
  188. }
  189. -(IBAction)showPreferences:(id)sender {
  190. [NSApp activateIgnoringOtherApps:YES];
  191. prefWindow = [[PrefController alloc] initWithWindowNibName:@"Prefs"];
  192. [prefWindow setParent:self];
  193. [prefWindow setState:currentState];
  194. [prefWindow showWindow:self];
  195. }
  196. -(IBAction)showAbout:(id)sender {
  197. [NSApp activateIgnoringOtherApps:YES];
  198. [application orderFrontStandardAboutPanel:self];
  199. }
  200. -(void)prefReturnName:(NSString *)name Modhash:(NSString *)modhash subscriptions:(Boolean)subscriptions subreddits:(NSString *)subreddits length:(NSInteger)length {
  201. currentState.username = name;
  202. currentState.modhash = modhash;
  203. currentState.useSubscriptions = subscriptions;
  204. currentState.subreddits = [subreddits componentsSeparatedByString: @"\n"];
  205. currentState.length = length;
  206. [self savePreferences];
  207. [self reloadListWithOptions];
  208. }
  209. @end