PhotoViewController.m 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. //
  2. // PhotoViewController.m
  3. // DBRoulette
  4. //
  5. // Created by Brian Smith on 7/7/10.
  6. // Copyright 2010 Dropbox, Inc. All rights reserved.
  7. //
  8. #import "PhotoViewController.h"
  9. #import <DropboxSDK/DropboxSDK.h>
  10. #import <stdlib.h>
  11. @interface PhotoViewController () <DBRestClientDelegate>
  12. - (NSString*)photoPath;
  13. - (void)didPressRandomPhoto;
  14. - (void)loadRandomPhoto;
  15. - (void)displayError;
  16. - (void)setWorking:(BOOL)isWorking;
  17. @property (nonatomic, readonly) DBRestClient* restClient;
  18. @end
  19. @implementation PhotoViewController
  20. - (void)viewDidLoad {
  21. [super viewDidLoad];
  22. self.title = @"Random Photo";
  23. [nextButton addTarget:self action:@selector(didPressRandomPhoto)
  24. forControlEvents:UIControlEventTouchUpInside];
  25. }
  26. - (void)viewDidUnload {
  27. [super viewDidUnload];
  28. self.imageView = nil;
  29. self.nextButton = nil;
  30. self.activityIndicator = nil;
  31. }
  32. - (void)dealloc {
  33. [imageView release];
  34. [nextButton release];
  35. [activityIndicator release];
  36. [photoPaths release];
  37. [photosHash release];
  38. [currentPhotoPath release];
  39. [restClient release];
  40. [super dealloc];
  41. }
  42. - (void)viewWillAppear:(BOOL)animated {
  43. [super viewWillAppear:animated];
  44. if (!working && !imageView.image) {
  45. [self didPressRandomPhoto];
  46. }
  47. }
  48. - (void)viewWillDisappear:(BOOL)animated {
  49. [restClient release];
  50. restClient = nil;
  51. }
  52. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
  53. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
  54. return toInterfaceOrientation == UIInterfaceOrientationPortrait;
  55. } else {
  56. return YES;
  57. }
  58. }
  59. @synthesize imageView;
  60. @synthesize nextButton;
  61. @synthesize activityIndicator;
  62. #pragma mark DBRestClientDelegate methods
  63. - (void)restClient:(DBRestClient*)client loadedMetadata:(DBMetadata*)metadata {
  64. [photosHash release];
  65. photosHash = [metadata.hash retain];
  66. NSArray* validExtensions = [NSArray arrayWithObjects:@"jpg", @"jpeg", nil];
  67. NSMutableArray* newPhotoPaths = [NSMutableArray new];
  68. for (DBMetadata* child in metadata.contents) {
  69. NSString* extension = [[child.path pathExtension] lowercaseString];
  70. if (!child.isDirectory && [validExtensions indexOfObject:extension] != NSNotFound) {
  71. [newPhotoPaths addObject:child.path];
  72. }
  73. }
  74. [photoPaths release];
  75. photoPaths = newPhotoPaths;
  76. [self loadRandomPhoto];
  77. }
  78. - (void)restClient:(DBRestClient*)client metadataUnchangedAtPath:(NSString*)path {
  79. [self loadRandomPhoto];
  80. }
  81. - (void)restClient:(DBRestClient*)client loadMetadataFailedWithError:(NSError*)error {
  82. NSLog(@"restClient:loadMetadataFailedWithError: %@", [error localizedDescription]);
  83. [self displayError];
  84. [self setWorking:NO];
  85. }
  86. - (void)restClient:(DBRestClient*)client loadedThumbnail:(NSString*)destPath {
  87. [self setWorking:NO];
  88. imageView.image = [UIImage imageWithContentsOfFile:destPath];
  89. }
  90. - (void)restClient:(DBRestClient*)client loadThumbnailFailedWithError:(NSError*)error {
  91. [self setWorking:NO];
  92. [self displayError];
  93. }
  94. #pragma mark private methods
  95. - (void)didPressRandomPhoto {
  96. [self setWorking:YES];
  97. NSString *photosRoot = nil;
  98. if ([DBSession sharedSession].root == kDBRootDropbox) {
  99. photosRoot = @"/Photos";
  100. } else {
  101. photosRoot = @"/";
  102. }
  103. [self.restClient loadMetadata:photosRoot withHash:photosHash];
  104. }
  105. - (void)loadRandomPhoto {
  106. if ([photoPaths count] == 0) {
  107. NSString *msg = nil;
  108. if ([DBSession sharedSession].root == kDBRootDropbox) {
  109. msg = @"Put .jpg photos in your Photos folder to use DBRoulette!";
  110. } else {
  111. msg = @"Put .jpg photos in your app's App folder to use DBRoulette!";
  112. }
  113. [[[[UIAlertView alloc]
  114. initWithTitle:@"No Photos!" message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil]
  115. autorelease]
  116. show];
  117. [self setWorking:NO];
  118. } else {
  119. NSString* photoPath;
  120. if ([photoPaths count] == 1) {
  121. photoPath = [photoPaths objectAtIndex:0];
  122. if ([photoPath isEqual:currentPhotoPath]) {
  123. [[[[UIAlertView alloc]
  124. initWithTitle:@"No More Photos" message:@"You only have one photo to display."
  125. delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil]
  126. autorelease]
  127. show];
  128. [self setWorking:NO];
  129. return;
  130. }
  131. } else {
  132. // Find a random photo that is not the current photo
  133. do {
  134. srandom((unsigned int)time(NULL));
  135. NSInteger index = random() % [photoPaths count];
  136. photoPath = [photoPaths objectAtIndex:index];
  137. } while ([photoPath isEqual:currentPhotoPath]);
  138. }
  139. [currentPhotoPath release];
  140. currentPhotoPath = [photoPath retain];
  141. [self.restClient loadThumbnail:currentPhotoPath ofSize:@"iphone_bestfit" intoPath:[self photoPath]];
  142. }
  143. }
  144. - (NSString*)photoPath {
  145. return [NSTemporaryDirectory() stringByAppendingPathComponent:@"photo.jpg"];
  146. }
  147. - (void)displayError {
  148. [[[[UIAlertView alloc]
  149. initWithTitle:@"Error Loading Photo" message:@"There was an error loading your photo."
  150. delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil]
  151. autorelease]
  152. show];
  153. }
  154. - (void)setWorking:(BOOL)isWorking {
  155. if (working == isWorking) return;
  156. working = isWorking;
  157. if (working) {
  158. [activityIndicator startAnimating];
  159. } else {
  160. [activityIndicator stopAnimating];
  161. }
  162. nextButton.enabled = !working;
  163. }
  164. - (DBRestClient*)restClient {
  165. if (restClient == nil) {
  166. restClient = [[DBRestClient alloc] initWithSession:[DBSession sharedSession]];
  167. restClient.delegate = self;
  168. }
  169. return restClient;
  170. }
  171. @end