aka RedditBar, Mac OS X menu bar reddit client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AppDelegate.m 9.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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, lastFullName;
  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. lastFullName = nil;
  43. currentState = [[StateModel alloc] init];
  44. [self defaultPreferences];
  45. [self loadPreferences];
  46. [self reloadListWithOptions];
  47. }
  48. -(void)defaultPreferences {
  49. NSUserDefaults *store = [NSUserDefaults standardUserDefaults];
  50. NSMutableDictionary *appDefaults = [NSMutableDictionary dictionaryWithObject:@"" forKey:@"username"];
  51. [appDefaults setValue:@"" forKey:@"modhash"];
  52. [appDefaults setValue:[NSNumber numberWithBool:YES] forKey:@"subscriptions"];
  53. [appDefaults setValue:[NSNumber numberWithInt:10] forKey:@"length"];
  54. [store registerDefaults:appDefaults];
  55. }
  56. -(void)savePreferences {
  57. NSUserDefaults *store = [NSUserDefaults standardUserDefaults];
  58. [store setObject:currentState.username forKey:@"username"];
  59. [store setObject:currentState.modhash forKey:@"modhash"];
  60. [store setBool:currentState.useSubscriptions forKey:@"subscriptions"];
  61. [store setObject:currentState.subreddits forKey:@"subreddits"];
  62. [store setInteger:currentState.length forKey:@"length"];
  63. [store synchronize];
  64. }
  65. -(void)loadPreferences {
  66. NSUserDefaults *store = [NSUserDefaults standardUserDefaults];
  67. [store synchronize];
  68. [currentState setUsername:[store stringForKey:@"username"]];
  69. [currentState setModhash:[store stringForKey:@"modhash"]];
  70. [currentState setUseSubscriptions:[store boolForKey:@"subscriptions"]];
  71. [currentState setSubreddits:[store arrayForKey:@"subreddits"]];
  72. [currentState setLength:[store integerForKey:@"length"]];
  73. }
  74. -(void)reloadListNotAuthenticatedCallback {
  75. [firstMenuItem setTitle:NSLocalizedString(@"Login Error!", @"Statusitem when API is not authenticated")];
  76. [self clearMenuItems];
  77. [firstMenuItem setHidden:NO];
  78. }
  79. -(void)reloadListHasFrontpageCallback:(NSArray *)items {
  80. [self reloadListHasXCallback:items ErrorMessage:NSLocalizedString(@"Error reading Frontpage!", @"Status api Read error")];
  81. }
  82. -(void)reloadListHasSubredditsCallback:(NSArray *)items {
  83. [self reloadListHasXCallback:items ErrorMessage:NSLocalizedString(@"Error reading Subreddits!", @"Status api read error")];
  84. }
  85. -(void)reloadListHasXCallback:(NSArray *)items ErrorMessage:(NSString*)error {
  86. if (items == nil) {
  87. [firstMenuItem setTitle:error];
  88. [self clearMenuItems];
  89. [firstMenuItem setHidden:NO];
  90. return;
  91. }
  92. lastFullName = [items objectAtIndex:[items count] - 1]; // last link fullname is at end of array
  93. items = [items subarrayWithRange:NSMakeRange(0, [items count] - 1)]; // Remove last item
  94. redditItems = items;
  95. [self clearMenuItems];
  96. [firstMenuItem setHidden:YES];
  97. [self putItemArrayInMenu:redditItems];
  98. }
  99. -(void)reloadListIsAuthenticatedCallback {
  100. if (currentState.useSubscriptions) {
  101. [NSThread detachNewThreadSelector:@selector(readFrontpage:) toTarget:api withObject:self];
  102. } else {
  103. [api setSubreddits:currentState.subreddits];
  104. [NSThread detachNewThreadSelector:@selector(readSubreddits:) toTarget:api withObject:self];
  105. }
  106. }
  107. -(void)reloadListWithOptions {
  108. if ([currentState.modhash isEqualToString:@""]) {
  109. [firstMenuItem setTitle:NSLocalizedString(@"Not logged in!", @"Statusitem when no modhash is stored")];
  110. [self clearMenuItems];
  111. [firstMenuItem setHidden:NO];
  112. [self showPreferences:nil];
  113. return;
  114. }
  115. api = [[Reddit alloc] initWithUsername:currentState.username Modhash:currentState.modhash Length:currentState.length];
  116. [NSThread detachNewThreadSelector:@selector(isAuthenticatedNewModhash:) toTarget:api withObject:self];
  117. }
  118. - (IBAction)reloadCompleteList:(id)sender {
  119. [firstMenuItem setTitle:NSLocalizedString(@"Loading...", @"Statusitem when user clicks reload")];
  120. [self clearMenuItems];
  121. [firstMenuItem setHidden:NO];
  122. lastFullName = nil; // reload from start
  123. [self reloadListWithOptions];
  124. }
  125. - (IBAction)reloadNextList:(id)sender {
  126. [firstMenuItem setTitle:NSLocalizedString(@"Loading...", nil)];
  127. [self clearMenuItems];
  128. [firstMenuItem setHidden:NO];
  129. [self reloadListWithOptions];
  130. }
  131. -(IBAction)linkToOpen:(id)sender {
  132. NSString *title = [(NSMenuItem *)sender title];
  133. if ([title isEqualToString:NSLocalizedString(@"Link...", nil)]) {
  134. for (NSUInteger i = 0; i < [menuItems count]; i++) {
  135. NSMenuItem *item = [menuItems objectAtIndex:i];
  136. NSMenu *submenu = item.submenu;
  137. if ((submenu != nil) && (sender == [submenu itemAtIndex:0])) {
  138. RedditItem *rItem = [redditItems objectAtIndex:i];
  139. [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[rItem link]]];
  140. break;
  141. }
  142. }
  143. } else if ([title isEqualToString:NSLocalizedString(@"Comments...", nil)]) {
  144. for (NSUInteger i = 0; i < [menuItems count]; i++) {
  145. NSMenuItem *item = [menuItems objectAtIndex:i];
  146. NSMenu *submenu = item.submenu;
  147. if ((submenu != nil) && (sender == [submenu itemAtIndex:1])) {
  148. RedditItem *rItem = [redditItems objectAtIndex:i];
  149. [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[rItem comments]]];
  150. break;
  151. }
  152. }
  153. } else {
  154. for (NSUInteger i = 0; i < [menuItems count]; i++) {
  155. NSMenuItem *item = [menuItems objectAtIndex:i];
  156. if (sender == item) {
  157. RedditItem *rItem = [redditItems objectAtIndex:i];
  158. [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[rItem link]]];
  159. [statusMenu removeItem:[menuItems objectAtIndex:i]];
  160. break;
  161. }
  162. }
  163. }
  164. }
  165. -(void)clearMenuItems {
  166. if (menuItems != nil) {
  167. for (NSUInteger i = 0; i < [menuItems count]; i++) {
  168. [statusMenu removeItem:[menuItems objectAtIndex:i]];
  169. }
  170. menuItems = nil;
  171. }
  172. }
  173. -(void)putItemArrayInMenu:(NSArray *)array {
  174. NSMutableArray *items = [NSMutableArray arrayWithCapacity:array.count];
  175. for (NSUInteger i = 0; i < [array count]; i++) {
  176. NSMenuItem *item = [self prepareItemForMenu:[array objectAtIndex:i]];
  177. [items addObject:item];
  178. [statusMenu insertItem:item atIndex:i];
  179. }
  180. menuItems = items;
  181. }
  182. -(NSMenuItem *)prepareItemForMenu:(RedditItem *)reddit {
  183. NSMenuItem *item = [[NSMenuItem alloc] init];
  184. [item setTitle:reddit.name];
  185. if (![reddit.name isEqualToString:reddit.fullName])
  186. [item setToolTip:reddit.fullName];
  187. if (reddit.isSelf) {
  188. [item setAction:@selector(linkToOpen:)];
  189. [item setKeyEquivalent:@""];
  190. } else {
  191. NSMenu *submenu = [[NSMenu alloc] init];
  192. [submenu addItemWithTitle:NSLocalizedString(@"Link...", @"Link item") action:@selector(linkToOpen:) keyEquivalent:@""];
  193. [submenu addItemWithTitle:NSLocalizedString(@"Comments...", @"comment item") action:@selector(linkToOpen:) keyEquivalent:@""];
  194. [item setSubmenu:submenu];
  195. }
  196. return item;
  197. }
  198. -(IBAction)showPreferences:(id)sender {
  199. [NSApp activateIgnoringOtherApps:YES];
  200. prefWindow = [[PrefController alloc] initWithWindowNibName:@"Prefs"];
  201. [prefWindow setParent:self];
  202. [prefWindow setState:currentState];
  203. [prefWindow showWindow:self];
  204. }
  205. -(IBAction)showAbout:(id)sender {
  206. [NSApp activateIgnoringOtherApps:YES];
  207. [application orderFrontStandardAboutPanel:self];
  208. }
  209. -(void)prefReturnName:(NSString *)name Modhash:(NSString *)modhash subscriptions:(Boolean)subscriptions subreddits:(NSString *)subreddits length:(NSInteger)length {
  210. currentState.username = name;
  211. currentState.modhash = modhash;
  212. currentState.useSubscriptions = subscriptions;
  213. currentState.subreddits = [subreddits componentsSeparatedByString: @"\n"];
  214. currentState.length = length;
  215. [self savePreferences];
  216. [self reloadListWithOptions];
  217. }
  218. @end