CCPhotos.m 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810
  1. //
  2. // CCPhotos.m
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 29/07/15.
  6. // Copyright (c) 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "CCPhotos.h"
  24. #import "AppDelegate.h"
  25. #import "CCManageAutoUpload.h"
  26. #import "TOScrollBar.h"
  27. #import "NCBridgeSwift.h"
  28. @interface CCPhotos ()
  29. {
  30. AppDelegate *appDelegate;
  31. NSMutableArray *selectedFilesID;
  32. CCSectionDataSourceMetadata *sectionDataSource;
  33. NSString *saveDirectoryID, *saveServerUrl;
  34. BOOL isSearchMode;
  35. BOOL isEditMode;
  36. TOScrollBar *scrollBar;
  37. NSMutableDictionary *saveEtagForStartDirectory;
  38. }
  39. @end
  40. @implementation CCPhotos
  41. #pragma --------------------------------------------------------------------------------------------
  42. #pragma mark ===== Init =====
  43. #pragma --------------------------------------------------------------------------------------------
  44. - (id)initWithCoder:(NSCoder *)aDecoder
  45. {
  46. if (self = [super initWithCoder:aDecoder]) {
  47. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  48. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:@"NotificationProgressTask" object:nil];
  49. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:@"changeTheming" object:nil];
  50. appDelegate.activePhotos = self;
  51. }
  52. return self;
  53. }
  54. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
  55. {
  56. self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
  57. if (self) {
  58. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  59. }
  60. return self;
  61. }
  62. #pragma --------------------------------------------------------------------------------------------
  63. #pragma mark ===== View =====
  64. #pragma --------------------------------------------------------------------------------------------
  65. - (void)viewDidLoad
  66. {
  67. [super viewDidLoad];
  68. saveEtagForStartDirectory = [NSMutableDictionary new];
  69. selectedFilesID = [NSMutableArray new];
  70. self.fileIDHide = [NSMutableArray new];
  71. self.addMetadatasFromUpload = [NSMutableArray new];
  72. // empty Data Source
  73. self.collectionView.emptyDataSetDelegate = self;
  74. self.collectionView.emptyDataSetSource = self;
  75. // scroll bar
  76. scrollBar = [TOScrollBar new];
  77. [self.collectionView to_addScrollBar:scrollBar];
  78. scrollBar.handleTintColor = [NCBrandColor sharedInstance].brand;
  79. scrollBar.handleWidth = 20;
  80. scrollBar.handleMinimiumHeight = 20;
  81. scrollBar.trackWidth = 0;
  82. scrollBar.edgeInset = 12;
  83. }
  84. // Apparirà
  85. - (void)viewWillAppear:(BOOL)animated
  86. {
  87. [super viewWillAppear:animated];
  88. // Color
  89. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  90. [appDelegate aspectTabBar:self.tabBarController.tabBar hidden:NO];
  91. // Plus Button
  92. [appDelegate plusButtonVisibile:true];
  93. [self reloadDatasource];
  94. }
  95. - (void)viewSafeAreaInsetsDidChange
  96. {
  97. [super viewSafeAreaInsetsDidChange];
  98. self.collectionView.contentInset = self.view.safeAreaInsets;
  99. }
  100. - (void)changeTheming
  101. {
  102. if (self.isViewLoaded && self.view.window)
  103. [appDelegate changeTheming:self];
  104. scrollBar.handleTintColor = [NCBrandColor sharedInstance].brand;
  105. [self.collectionView reloadData];
  106. }
  107. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  108. {
  109. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  110. // Before rotation
  111. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  112. if (self.view.frame.size.width == ([[UIScreen mainScreen] bounds].size.width*([[UIScreen mainScreen] bounds].size.width<[[UIScreen mainScreen] bounds].size.height))+([[UIScreen mainScreen] bounds].size.height*([[UIScreen mainScreen] bounds].size.width>[[UIScreen mainScreen] bounds].size.height))) {
  113. // Portrait
  114. } else {
  115. // Landscape
  116. }
  117. }];
  118. }
  119. #pragma --------------------------------------------------------------------------------------------
  120. #pragma mark ===== Gestione Grafica Window =====
  121. #pragma --------------------------------------------------------------------------------------------
  122. - (void)setUINavigationBarDefault
  123. {
  124. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  125. // curront folder search
  126. NSString *directory = [[NCManageDatabase sharedInstance] getAccountStartDirectoryPhotosTab:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
  127. NSString *home = [CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl];
  128. NSString *folder = @"";
  129. if (home.length > 0) {
  130. folder = [directory stringByReplacingOccurrencesOfString:home withString:@""];
  131. }
  132. // Title
  133. self.navigationItem.titleView = nil;
  134. if (folder.length == 0) {
  135. self.navigationItem.title = NSLocalizedString(@"_photo_camera_", nil);
  136. } else {
  137. self.navigationItem.title = [NSString stringWithFormat:@"%@: %@", NSLocalizedString(@"_photo_camera_", nil), [folder substringFromIndex:1]];
  138. }
  139. if (isSearchMode) {
  140. [CCGraphics addImageToTitle:self.navigationItem.title colorTitle:[NCBrandColor sharedInstance].brandText imageTitle:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"load"] multiplier:2 color:[NCBrandColor sharedInstance].brandText] navigationItem:self.navigationItem];
  141. }
  142. // Button Item
  143. UIImage *icon;
  144. icon = [UIImage imageNamed:@"select"];
  145. UIBarButtonItem *buttonSelect = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(editingModeYES)];
  146. icon = [UIImage imageNamed:@"folderPhotos"];
  147. UIBarButtonItem *buttonStartDirectoryPhotosTab = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(selectStartDirectoryPhotosTab)];
  148. if ([sectionDataSource.allRecordsDataSource count] > 0) {
  149. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonSelect, nil];
  150. } else {
  151. self.navigationItem.rightBarButtonItems = nil;
  152. }
  153. self.navigationItem.leftBarButtonItems = [[NSArray alloc] initWithObjects:buttonStartDirectoryPhotosTab, nil];
  154. }
  155. - (void)setUINavigationBarSelected
  156. {
  157. UIImage *icon;
  158. icon = [UIImage imageNamed:@"delete"];
  159. UIBarButtonItem *buttonDelete = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(deleteSelectedFiles)];
  160. icon = [UIImage imageNamed:@"openFile"];
  161. UIBarButtonItem *buttonOpenWith = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(openSelectedFiles)];
  162. UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(editingModeNO)];
  163. self.navigationItem.leftBarButtonItem = leftButton;
  164. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonDelete, buttonOpenWith, nil];
  165. // Title
  166. self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)[selectedFilesID count], (unsigned long)[sectionDataSource.allRecordsDataSource count]];
  167. }
  168. - (void)cellSelect:(BOOL)select indexPath:(NSIndexPath *)indexPath metadata:(tableMetadata *)metadata
  169. {
  170. UICollectionViewCell *cell = [self.collectionView cellForItemAtIndexPath:indexPath];
  171. UIVisualEffectView *effect = [cell viewWithTag:200];
  172. UIImageView *checked = [cell viewWithTag:300];
  173. if (select) {
  174. effect.hidden = NO;
  175. effect.alpha = 0.4;
  176. checked.hidden = NO;
  177. [selectedFilesID addObject:metadata.fileID];
  178. } else {
  179. effect.hidden = YES;
  180. checked.hidden = YES;
  181. [selectedFilesID removeObject:metadata.fileID];
  182. }
  183. // Title
  184. self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)[selectedFilesID count], (unsigned long)[sectionDataSource.allRecordsDataSource count]];
  185. }
  186. - (void)scrollToTop
  187. {
  188. [self.collectionView setContentOffset:CGPointMake(0, - self.collectionView.contentInset.top) animated:NO];
  189. }
  190. - (void)getGeoLocationForSection:(NSInteger)section
  191. {
  192. NSString *addLocation = @"";
  193. NSArray *fileIDsForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]];
  194. for (NSString *fileID in fileIDsForKey) {
  195. tableLocalFile *localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  196. if ([localFile.exifLatitude floatValue] > 0 || [localFile.exifLongitude floatValue] > 0) {
  197. NSString *location = [[NCManageDatabase sharedInstance] getLocationFromGeoLatitude:localFile.exifLatitude longitude:localFile.exifLongitude];
  198. addLocation = [NSString stringWithFormat:@"%@, %@", addLocation, location];
  199. }
  200. }
  201. }
  202. #pragma --------------------------------------------------------------------------------------------
  203. #pragma mark ==== DZNEmptyDataSetSource Methods ====
  204. #pragma --------------------------------------------------------------------------------------------
  205. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  206. {
  207. return [NCBrandColor sharedInstance].backgroundView;
  208. }
  209. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  210. {
  211. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"photosNoRecord"] multiplier:2 color:[NCBrandColor sharedInstance].graySoft];
  212. }
  213. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  214. {
  215. NSString *text;
  216. if (isSearchMode) {
  217. text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_search_in_progress_", nil)];
  218. } else {
  219. text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_tutorial_photo_view_", nil)];
  220. }
  221. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:[UIColor lightGrayColor]};
  222. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  223. }
  224. #pragma --------------------------------------------------------------------------------------------
  225. #pragma mark ===== openSelectedFiles =====
  226. #pragma--------------------------------------------------------------------------------------------
  227. - (void)openSelectedFiles
  228. {
  229. NSMutableArray *dataToShare = [[NSMutableArray alloc] init];
  230. for (NSString *fileID in selectedFilesID) {
  231. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  232. NSString *fileNamePath = [CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView];
  233. if ([CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView]) {
  234. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image]) {
  235. NSData *data = [NSData dataWithData:UIImageJPEGRepresentation([UIImage imageWithContentsOfFile:fileNamePath], 0.9)];
  236. [dataToShare addObject:data];
  237. }
  238. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video]) {
  239. [dataToShare addObject:[NSURL fileURLWithPath:fileNamePath]];
  240. }
  241. }
  242. }
  243. if ([dataToShare count] > 0) {
  244. UIActivityViewController* activityViewController = [[UIActivityViewController alloc] initWithActivityItems:dataToShare applicationActivities:nil];
  245. // iPad
  246. activityViewController.popoverPresentationController.barButtonItem = self.navigationItem.rightBarButtonItems.lastObject;
  247. self.navigationItem.leftBarButtonItem.enabled = NO;
  248. self.navigationItem.rightBarButtonItem.enabled = NO;
  249. [self presentViewController:activityViewController animated:YES completion:^{
  250. [activityViewController setCompletionWithItemsHandler:^(NSString *activityType, BOOL completed, NSArray *returnedItems, NSError *activityError) {
  251. self.navigationItem.leftBarButtonItem.enabled = YES;
  252. self.navigationItem.rightBarButtonItem.enabled = YES;
  253. [self editingModeNO];
  254. if (completed) {
  255. [self.collectionView reloadData];
  256. }
  257. }];
  258. }];
  259. }
  260. }
  261. #pragma --------------------------------------------------------------------------------------------
  262. #pragma mark ===== Download =====
  263. #pragma--------------------------------------------------------------------------------------------
  264. - (void)triggerProgressTask:(NSNotification *)notification
  265. {
  266. //NSDictionary *dict = notification.userInfo;
  267. //float progress = [[dict valueForKey:@"progress"] floatValue];
  268. }
  269. - (void)downloadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector errorMessage:(NSString *)errorMessage errorCode:(NSInteger)errorCode
  270. {
  271. if (errorCode == 0) {
  272. NSIndexPath *indexPath;
  273. BOOL existsIcon = NO;
  274. if (fileID) {
  275. existsIcon = [[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:fileID fileNameView:fileName]];
  276. indexPath = [sectionDataSource.fileIDIndexPath objectForKey:fileID];
  277. }
  278. if ([self indexPathIsValid:indexPath] && existsIcon) {
  279. UICollectionViewCell *cell = [self.collectionView cellForItemAtIndexPath:indexPath];
  280. if (cell) {
  281. UIImageView *imageView = (UIImageView *)[cell viewWithTag:100];
  282. UIVisualEffectView *effect = [cell viewWithTag:200];
  283. UIImageView *checked = [cell viewWithTag:300];
  284. imageView.image = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:fileID fileNameView:fileName]];
  285. effect.hidden = YES;
  286. checked.hidden = YES;
  287. }
  288. }
  289. } else {
  290. [appDelegate messageNotification:@"_download_selected_files_" description:@"_error_download_photobrowser_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  291. }
  292. }
  293. #pragma --------------------------------------------------------------------------------------------
  294. #pragma mark ===== Delete =====
  295. #pragma--------------------------------------------------------------------------------------------
  296. - (void)deleteFile:(NSArray *)filesID e2ee:(BOOL)e2ee
  297. {
  298. [[NCMainCommon sharedInstance ] deleteFileWithFilesID:filesID e2ee:false serverUrl:@"" folderFileID:@"" classActive:self completion:^(NSInteger errorCode, NSString *message) {
  299. [self reloadDatasource];
  300. [self editingModeNO];
  301. }];
  302. }
  303. - (void)deleteSelectedFiles
  304. {
  305. if ([selectedFilesID count] == 0)
  306. return;
  307. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  308. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
  309. style:UIAlertActionStyleDestructive
  310. handler:^(UIAlertAction *action) {
  311. [self deleteFile:selectedFilesID e2ee:false];
  312. }]];
  313. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
  314. style:UIAlertActionStyleCancel
  315. handler:^(UIAlertAction *action) {
  316. [alertController dismissViewControllerAnimated:YES completion:nil];
  317. }]];
  318. alertController.popoverPresentationController.barButtonItem = self.navigationItem.rightBarButtonItems.firstObject;
  319. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  320. [alertController.view layoutIfNeeded];
  321. [self presentViewController:alertController animated:YES completion:NULL];
  322. }
  323. #pragma --------------------------------------------------------------------------------------------
  324. #pragma mark ==== Download Thumbnail ====
  325. #pragma --------------------------------------------------------------------------------------------
  326. - (void)downloadThumbnail:(tableMetadata *)metadata indexPath:(NSIndexPath *)indexPath
  327. {
  328. if (![saveDirectoryID isEqualToString:metadata.directoryID]) {
  329. saveDirectoryID = metadata.directoryID;
  330. saveServerUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  331. if (!saveServerUrl)
  332. return;
  333. }
  334. OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:nil metadataNet:nil withUser:appDelegate.activeUser withUserID:appDelegate.activeUserID withPassword:appDelegate.activePassword withUrl:appDelegate.activeUrl];
  335. [ocNetworking downloadThumbnailWithDimOfThumbnail:@"m" fileID:metadata.fileID fileNamePath:[CCUtility returnFileNamePathFromFileName:metadata.fileName serverUrl:saveServerUrl activeUrl:appDelegate.activeUrl] fileNameView:metadata.fileNameView completion:^(NSString *message, NSInteger errorCode) {
  336. if (errorCode == 0 && [[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]] && [self indexPathIsValid:indexPath]) {
  337. [self.collectionView reloadItemsAtIndexPaths:@[indexPath]];
  338. }
  339. }];
  340. }
  341. #pragma --------------------------------------------------------------------------------------------
  342. #pragma mark ==== Change Start directory ====
  343. #pragma --------------------------------------------------------------------------------------------
  344. - (void)moveServerUrlTo:(NSString *)serverUrlTo title:(NSString *)title
  345. {
  346. NSString *oldStartDirectoryPhotosTab = [[NCManageDatabase sharedInstance] getAccountStartDirectoryPhotosTab:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
  347. if (![serverUrlTo isEqualToString:oldStartDirectoryPhotosTab]) {
  348. // Save Start Directory
  349. [[NCManageDatabase sharedInstance] setAccountStartDirectoryPhotosTab:serverUrlTo];
  350. // search PhotoVideo with new start directory
  351. [self searchPhotoVideo];
  352. }
  353. }
  354. - (void)selectStartDirectoryPhotosTab
  355. {
  356. UINavigationController* navigationController = [[UIStoryboard storyboardWithName:@"CCMove" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMove"];
  357. CCMove *viewController = (CCMove *)navigationController.topViewController;
  358. viewController.delegate = self;
  359. viewController.move.title = NSLocalizedString(@"_select_dir_photos_tab_", nil);
  360. viewController.tintColor = [NCBrandColor sharedInstance].brandText;
  361. viewController.barTintColor = [NCBrandColor sharedInstance].brand;
  362. viewController.tintColorTitle = [NCBrandColor sharedInstance].brandText;
  363. viewController.networkingOperationQueue = appDelegate.netQueue;
  364. viewController.hideCreateFolder = YES;
  365. // E2EE
  366. viewController.includeDirectoryE2EEncryption = NO;
  367. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  368. [self presentViewController:navigationController animated:YES completion:nil];
  369. }
  370. #pragma --------------------------------------------------------------------------------------------
  371. #pragma mark ==== Search Photo/Video ====
  372. #pragma --------------------------------------------------------------------------------------------
  373. - (void)searchSuccessFailure:(CCMetadataNet *)metadataNet metadatas:(NSArray *)metadatas message:(NSString *)message errorCode:(NSInteger)errorCode
  374. {
  375. isSearchMode = NO;
  376. if (![metadataNet.account isEqualToString:appDelegate.activeAccount] || errorCode != 0) {
  377. [self reloadDatasource];
  378. } else {
  379. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  380. [[NCManageDatabase sharedInstance] createTablePhotos:metadatas];
  381. dispatch_async(dispatch_get_main_queue(), ^{
  382. [self reloadDatasource];
  383. });
  384. // Update date
  385. [[NCManageDatabase sharedInstance] setAccountDateSearchContentTypeImageVideo:[NSDate date]];
  386. // Save etag
  387. [saveEtagForStartDirectory setObject:metadataNet.etag forKey:metadataNet.serverUrl];
  388. });
  389. }
  390. }
  391. - (void)searchPhotoVideo
  392. {
  393. // test
  394. if (appDelegate.activeAccount.length == 0 || isSearchMode)
  395. return;
  396. // WAITING FOR d:creationdate
  397. //
  398. // tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
  399. // account.dateSearchContentTypeImageVideo
  400. NSString *startDirectory = [[NCManageDatabase sharedInstance] getAccountStartDirectoryPhotosTab:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
  401. OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:self metadataNet:nil withUser:appDelegate.activeUser withUserID:appDelegate.activeUserID withPassword:appDelegate.activePassword withUrl:appDelegate.activeUrl];
  402. [ocNetworking readFile:nil serverUrl:startDirectory account:appDelegate.activeAccount success:^(tableMetadata *metadata) {
  403. if (![metadata.etag isEqualToString:[saveEtagForStartDirectory objectForKey:startDirectory]] || sectionDataSource.allRecordsDataSource.count == 0) {
  404. isSearchMode = YES;
  405. [self editingModeNO];
  406. // Clear all Hardcoded
  407. [self.fileIDHide removeAllObjects];
  408. [self.addMetadatasFromUpload removeAllObjects];
  409. [[CCActions sharedInstance] search:startDirectory fileName:@"" etag:metadata.etag depth:@"infinity" date:[NSDate distantPast] contenType:@[@"image/%", @"video/%"] selector:selectorSearchContentType delegate:self];
  410. } else {
  411. [self reloadDatasource];
  412. }
  413. } failure:^(NSString *message, NSInteger errorCode) {
  414. }];
  415. }
  416. #pragma --------------------------------------------------------------------------------------------
  417. #pragma mark ==== Datasource ====
  418. #pragma --------------------------------------------------------------------------------------------
  419. - (void)reloadDatasource
  420. {
  421. // test
  422. if (appDelegate.activeAccount.length == 0) {
  423. return;
  424. }
  425. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  426. NSArray *metadatas = [[NCManageDatabase sharedInstance] getTablePhotosWithAddMetadatasFromUpload:self.addMetadatasFromUpload];
  427. sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:metadatas listProgressMetadata:nil groupByField:@"date" fileIDHide:self.fileIDHide activeAccount:appDelegate.activeAccount];
  428. dispatch_async(dispatch_get_main_queue(), ^{
  429. if (isEditMode)
  430. [self setUINavigationBarSelected];
  431. else
  432. [self setUINavigationBarDefault];
  433. [self.collectionView reloadData];
  434. });
  435. });
  436. }
  437. - (void)editingModeYES
  438. {
  439. [self.collectionView setAllowsMultipleSelection:true];
  440. isEditMode = true;
  441. [selectedFilesID removeAllObjects];
  442. [self setUINavigationBarSelected];
  443. [self.collectionView reloadData];
  444. }
  445. - (void)editingModeNO
  446. {
  447. [self.collectionView setAllowsMultipleSelection:false];
  448. isEditMode = false;
  449. [selectedFilesID removeAllObjects];
  450. [self setUINavigationBarDefault];
  451. [self.collectionView reloadData];
  452. }
  453. #pragma --------------------------------------------------------------------------------------------
  454. #pragma mark ==== Collection ====
  455. #pragma --------------------------------------------------------------------------------------------
  456. - (BOOL)indexPathIsValid:(NSIndexPath *)indexPath
  457. {
  458. return indexPath.section < [self numberOfSectionsInCollectionView:self.collectionView] && indexPath.row < [self collectionView:self.collectionView numberOfItemsInSection:indexPath.section];
  459. }
  460. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
  461. {
  462. return [[sectionDataSource.sectionArrayRow allKeys] count];
  463. }
  464. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
  465. {
  466. return [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]] count];
  467. }
  468. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
  469. {
  470. UIInterfaceOrientation orientationOnLunch = [[UIApplication sharedApplication] statusBarOrientation];
  471. if (orientationOnLunch == UIInterfaceOrientationPortrait)
  472. return CGSizeMake(collectionView.frame.size.width / 5.1f, collectionView.frame.size.width / 5.1f);
  473. else
  474. return CGSizeMake(collectionView.frame.size.width / 7.1f, collectionView.frame.size.width / 7.1f);
  475. }
  476. -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section
  477. {
  478. if ([sectionDataSource.sections count] - 1 == section)
  479. return CGSizeMake(collectionView.frame.size.width, 50);
  480. return CGSizeZero;
  481. }
  482. - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
  483. {
  484. if (kind == UICollectionElementKindSectionHeader) {
  485. UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"header" forIndexPath:indexPath];
  486. //headerView.backgroundColor = COLOR_GROUPBY_BAR_NO_BLUR;
  487. [self getGeoLocationForSection:indexPath.section];
  488. UILabel *titleLabel = (UILabel *)[headerView viewWithTag:100];
  489. titleLabel.textColor = [UIColor blackColor];
  490. if (sectionDataSource.sections.count > indexPath.section)
  491. titleLabel.text = [CCUtility getTitleSectionDate:[sectionDataSource.sections objectAtIndex:indexPath.section]];
  492. return headerView;
  493. }
  494. if (kind == UICollectionElementKindSectionFooter) {
  495. UICollectionReusableView *footerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"footer" forIndexPath:indexPath];
  496. UILabel *titleLabel = (UILabel *)[footerView viewWithTag:100];
  497. titleLabel.textColor = [UIColor grayColor];
  498. titleLabel.text = [NSString stringWithFormat:@"%lu %@, %lu %@", (long)sectionDataSource.image, NSLocalizedString(@"photo", nil), (long)sectionDataSource.video, NSLocalizedString(@"_video_", nil)];
  499. return footerView;
  500. }
  501. return nil;
  502. }
  503. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  504. {
  505. UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
  506. UIImageView *imageView = (UIImageView *)[cell viewWithTag:100];
  507. UIVisualEffectView *effect = [cell viewWithTag:200];
  508. UIImageView *checked = [cell viewWithTag:300];
  509. checked.image = [UIImage imageNamed:@"checked"];
  510. NSArray *metadatasForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]];
  511. if ([metadatasForKey count] > indexPath.row) {
  512. NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
  513. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  514. // Image
  515. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]]) {
  516. // insert Image
  517. imageView.image = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  518. } else {
  519. imageView.image = [UIImage imageNamed:@"file_photo"];
  520. if (metadata.thumbnailExists) {
  521. [self downloadThumbnail:metadata indexPath:indexPath];
  522. }
  523. }
  524. // Cheched
  525. if (cell.selected) {
  526. checked.hidden = NO;
  527. effect.hidden = NO;
  528. effect.alpha = 0.4;
  529. } else {
  530. checked.hidden = YES;
  531. effect.hidden = YES;
  532. }
  533. }
  534. return cell;
  535. }
  536. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
  537. {
  538. NSArray *metadatasForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]];
  539. if ([metadatasForKey count] > indexPath.row) {
  540. NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
  541. self.metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  542. if (isEditMode) {
  543. [self cellSelect:YES indexPath:indexPath metadata:self.metadata];
  544. } else {
  545. if ([self shouldPerformSegue])
  546. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  547. }
  548. }
  549. }
  550. - (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath
  551. {
  552. // test
  553. if (isEditMode == NO)
  554. return;
  555. NSArray *metadatasForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]];
  556. if ([metadatasForKey count] > indexPath.row) {
  557. NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
  558. self.metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  559. [self cellSelect:NO indexPath:indexPath metadata:self.metadata];
  560. }
  561. }
  562. #pragma --------------------------------------------------------------------------------------------
  563. #pragma mark ===== Navigation ====
  564. #pragma --------------------------------------------------------------------------------------------
  565. - (BOOL)shouldPerformSegue
  566. {
  567. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground)
  568. return NO;
  569. // Not in first plain ? exit
  570. if (self.view.window == NO)
  571. return NO;
  572. // Collapsed but in first plain in detail exit
  573. if (self.splitViewController.isCollapsed)
  574. if (self.detailViewController.isViewLoaded && self.detailViewController.view.window)
  575. return NO;
  576. // check if metadata is invalidated
  577. if ([[NCManageDatabase sharedInstance] isTableInvalidated:self.metadata]) {
  578. return NO;
  579. }
  580. // ok perform segue
  581. return YES;
  582. }
  583. -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  584. {
  585. id controller = segue.destinationViewController;
  586. if ([controller isKindOfClass:[UINavigationController class]]) {
  587. UINavigationController *navigationController = controller;
  588. self.detailViewController = (CCDetail *)navigationController.topViewController;
  589. } else {
  590. self.detailViewController = segue.destinationViewController;
  591. }
  592. NSMutableArray *allRecordsDataSourceImagesVideos = [NSMutableArray new];
  593. for (NSString *fileID in sectionDataSource.allFileID) {
  594. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  595. [allRecordsDataSourceImagesVideos addObject:metadata];
  596. }
  597. self.detailViewController.dataSourceImagesVideos = allRecordsDataSourceImagesVideos;
  598. self.detailViewController.metadataDetail = self.metadata;
  599. self.detailViewController.dateFilterQuery = self.metadata.date;
  600. [self.detailViewController setTitle:self.metadata.fileName];
  601. }
  602. @end