CCPhotos.m 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844
  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. tableMetadata *metadata;
  32. NSMutableArray *selectedMetadatas;
  33. CCSectionDataSourceMetadata *sectionDataSource;
  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. selectedMetadatas = [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)[selectedMetadatas 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. [selectedMetadatas addObject:metadata];
  178. } else {
  179. effect.hidden = YES;
  180. checked.hidden = YES;
  181. [selectedMetadatas removeObject:metadata];
  182. }
  183. // Title
  184. self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)[selectedMetadatas 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 (tableMetadata *metadata in selectedMetadatas) {
  231. NSString *fileNamePath = [CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView];
  232. if ([CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView]) {
  233. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image]) {
  234. NSData *data = [NSData dataWithData:UIImageJPEGRepresentation([UIImage imageWithContentsOfFile:fileNamePath], 0.9)];
  235. [dataToShare addObject:data];
  236. }
  237. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video]) {
  238. [dataToShare addObject:[NSURL fileURLWithPath:fileNamePath]];
  239. }
  240. }
  241. }
  242. if ([dataToShare count] > 0) {
  243. UIActivityViewController* activityViewController = [[UIActivityViewController alloc] initWithActivityItems:dataToShare applicationActivities:nil];
  244. // iPad
  245. activityViewController.popoverPresentationController.barButtonItem = self.navigationItem.rightBarButtonItems.lastObject;
  246. self.navigationItem.leftBarButtonItem.enabled = NO;
  247. self.navigationItem.rightBarButtonItem.enabled = NO;
  248. [self presentViewController:activityViewController animated:YES completion:^{
  249. [activityViewController setCompletionWithItemsHandler:^(NSString *activityType, BOOL completed, NSArray *returnedItems, NSError *activityError) {
  250. self.navigationItem.leftBarButtonItem.enabled = YES;
  251. self.navigationItem.rightBarButtonItem.enabled = YES;
  252. [self editingModeNO];
  253. if (completed) {
  254. [self.collectionView reloadData];
  255. }
  256. }];
  257. }];
  258. }
  259. }
  260. #pragma --------------------------------------------------------------------------------------------
  261. #pragma mark ===== Download =====
  262. #pragma--------------------------------------------------------------------------------------------
  263. - (void)triggerProgressTask:(NSNotification *)notification
  264. {
  265. //NSDictionary *dict = notification.userInfo;
  266. //float progress = [[dict valueForKey:@"progress"] floatValue];
  267. }
  268. - (void)downloadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector errorMessage:(NSString *)errorMessage errorCode:(NSInteger)errorCode
  269. {
  270. if (errorCode == 0) {
  271. NSIndexPath *indexPath;
  272. BOOL existsIcon = NO;
  273. if (fileID) {
  274. existsIcon = [[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:fileID fileNameView:fileName]];
  275. indexPath = [sectionDataSource.fileIDIndexPath objectForKey:fileID];
  276. }
  277. if ([self indexPathIsValid:indexPath] && existsIcon) {
  278. UICollectionViewCell *cell = [self.collectionView cellForItemAtIndexPath:indexPath];
  279. if (cell) {
  280. UIImageView *imageView = (UIImageView *)[cell viewWithTag:100];
  281. UIVisualEffectView *effect = [cell viewWithTag:200];
  282. UIImageView *checked = [cell viewWithTag:300];
  283. imageView.image = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:fileID fileNameView:fileName]];
  284. effect.hidden = YES;
  285. checked.hidden = YES;
  286. }
  287. }
  288. } else {
  289. [appDelegate messageNotification:@"_download_selected_files_" description:@"_error_download_photobrowser_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  290. }
  291. }
  292. #pragma --------------------------------------------------------------------------------------------
  293. #pragma mark ===== Delete =====
  294. #pragma--------------------------------------------------------------------------------------------
  295. - (void)deleteFile
  296. {
  297. NSInteger numDelete = selectedMetadatas.count;
  298. __block NSInteger cont = 0;
  299. OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:nil metadataNet:nil withUser:appDelegate.activeUser withUserID:appDelegate.activeUserID withPassword:appDelegate.activePassword withUrl:appDelegate.activeUrl];
  300. for (tableMetadata *metadata in selectedMetadatas) {
  301. [self.fileIDHide addObject:metadata.fileID];
  302. [ocNetworking deleteFileOrFolder:metadata.fileName serverUrl:[[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID] success:^{
  303. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID] clearDateReadDirectoryID:metadata.directoryID];
  304. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  305. [[NCManageDatabase sharedInstance] deletePhotosWithFileID:metadata.fileID];
  306. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID] error:nil];
  307. if (++cont == numDelete) {
  308. [self reloadDatasource];
  309. }
  310. } failure:^(NSString *message, NSInteger errorCode) {
  311. [self.fileIDHide removeObject:metadata.fileID];
  312. if (++cont == numDelete) {
  313. [self reloadDatasource];
  314. }
  315. }];
  316. }
  317. [self editingModeNO];
  318. }
  319. - (void)deleteSelectedFiles
  320. {
  321. if ([selectedMetadatas count] == 0)
  322. return;
  323. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  324. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
  325. style:UIAlertActionStyleDestructive
  326. handler:^(UIAlertAction *action) {
  327. [self deleteFile];
  328. }]];
  329. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
  330. style:UIAlertActionStyleCancel
  331. handler:^(UIAlertAction *action) {
  332. [alertController dismissViewControllerAnimated:YES completion:nil];
  333. }]];
  334. alertController.popoverPresentationController.barButtonItem = self.navigationItem.rightBarButtonItems.firstObject;
  335. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  336. [alertController.view layoutIfNeeded];
  337. [self presentViewController:alertController animated:YES completion:NULL];
  338. }
  339. #pragma --------------------------------------------------------------------------------------------
  340. #pragma mark ==== Download Thumbnail ====
  341. #pragma --------------------------------------------------------------------------------------------
  342. - (void)downloadThumbnail:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl indexPath:(NSIndexPath *)indexPath
  343. {
  344. OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:nil metadataNet:nil withUser:appDelegate.activeUser withUserID:appDelegate.activeUserID withPassword:appDelegate.activePassword withUrl:appDelegate.activeUrl];
  345. [ocNetworking downloadThumbnailWithDimOfThumbnail:@"m" fileID:metadata.fileID fileNamePath:[CCUtility returnFileNamePathFromFileName:metadata.fileName serverUrl:serverUrl activeUrl:appDelegate.activeUrl] fileNameView:metadata.fileNameView success:^{
  346. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]] && [self indexPathIsValid:indexPath]) {
  347. [self.collectionView reloadItemsAtIndexPaths:@[indexPath]];
  348. }
  349. } failure:^(NSString *message, NSInteger errorCode) {
  350. }];
  351. }
  352. #pragma --------------------------------------------------------------------------------------------
  353. #pragma mark ==== Change Start directory ====
  354. #pragma --------------------------------------------------------------------------------------------
  355. - (void)moveServerUrlTo:(NSString *)serverUrlTo title:(NSString *)title
  356. {
  357. NSString *oldStartDirectoryPhotosTab = [[NCManageDatabase sharedInstance] getAccountStartDirectoryPhotosTab:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
  358. if (![serverUrlTo isEqualToString:oldStartDirectoryPhotosTab]) {
  359. // Save Start Directory
  360. [[NCManageDatabase sharedInstance] setAccountStartDirectoryPhotosTab:serverUrlTo];
  361. // search PhotoVideo with new start directory
  362. [self searchPhotoVideo];
  363. }
  364. }
  365. - (void)selectStartDirectoryPhotosTab
  366. {
  367. UINavigationController* navigationController = [[UIStoryboard storyboardWithName:@"CCMove" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMove"];
  368. CCMove *viewController = (CCMove *)navigationController.topViewController;
  369. viewController.delegate = self;
  370. viewController.move.title = NSLocalizedString(@"_select_dir_photos_tab_", nil);
  371. viewController.tintColor = [NCBrandColor sharedInstance].brandText;
  372. viewController.barTintColor = [NCBrandColor sharedInstance].brand;
  373. viewController.tintColorTitle = [NCBrandColor sharedInstance].brandText;
  374. viewController.networkingOperationQueue = appDelegate.netQueue;
  375. viewController.hideCreateFolder = YES;
  376. // E2EE
  377. viewController.includeDirectoryE2EEncryption = NO;
  378. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  379. [self presentViewController:navigationController animated:YES completion:nil];
  380. }
  381. #pragma --------------------------------------------------------------------------------------------
  382. #pragma mark ==== Search Photo/Video ====
  383. #pragma --------------------------------------------------------------------------------------------
  384. - (void)searchSuccessFailure:(CCMetadataNet *)metadataNet metadatas:(NSArray *)metadatas message:(NSString *)message errorCode:(NSInteger)errorCode
  385. {
  386. isSearchMode = NO;
  387. if (![metadataNet.account isEqualToString:appDelegate.activeAccount] || errorCode != 0) {
  388. [self reloadDatasource];
  389. } else {
  390. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  391. [[NCManageDatabase sharedInstance] createTablePhotos:metadatas];
  392. dispatch_async(dispatch_get_main_queue(), ^{
  393. [self reloadDatasource];
  394. });
  395. // Update date
  396. [[NCManageDatabase sharedInstance] setAccountDateSearchContentTypeImageVideo:[NSDate date]];
  397. // Save etag
  398. [saveEtagForStartDirectory setObject:metadataNet.etag forKey:metadataNet.serverUrl];
  399. });
  400. }
  401. }
  402. - (void)searchPhotoVideo
  403. {
  404. // test
  405. if (appDelegate.activeAccount.length == 0 || isSearchMode)
  406. return;
  407. // WAITING FOR d:creationdate
  408. //
  409. // tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
  410. // account.dateSearchContentTypeImageVideo
  411. NSString *startDirectory = [[NCManageDatabase sharedInstance] getAccountStartDirectoryPhotosTab:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
  412. OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:self metadataNet:nil withUser:appDelegate.activeUser withUserID:appDelegate.activeUserID withPassword:appDelegate.activePassword withUrl:appDelegate.activeUrl];
  413. [ocNetworking readFile:nil serverUrl:startDirectory account:appDelegate.activeAccount success:^(tableMetadata *metadata) {
  414. if (![metadata.etag isEqualToString:[saveEtagForStartDirectory objectForKey:startDirectory]] || sectionDataSource.allRecordsDataSource.count == 0) {
  415. isSearchMode = YES;
  416. [self editingModeNO];
  417. // Clear all Hardcoded
  418. [self.fileIDHide removeAllObjects];
  419. [self.addMetadatasFromUpload removeAllObjects];
  420. [[CCActions sharedInstance] search:startDirectory fileName:@"" etag:metadata.etag depth:@"infinity" date:[NSDate distantPast] contenType:@[@"image/%", @"video/%"] selector:selectorSearchContentType delegate:self];
  421. } else {
  422. [self reloadDatasource];
  423. }
  424. } failure:^(NSString *message, NSInteger errorCode) {
  425. }];
  426. }
  427. #pragma --------------------------------------------------------------------------------------------
  428. #pragma mark ==== Datasource ====
  429. #pragma --------------------------------------------------------------------------------------------
  430. - (void)reloadDatasource
  431. {
  432. // test
  433. if (appDelegate.activeAccount.length == 0) {
  434. return;
  435. }
  436. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  437. NSArray *metadatas = [[NCManageDatabase sharedInstance] getTablePhotosWithAddMetadatasFromUpload:self.addMetadatasFromUpload];
  438. sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:metadatas listProgressMetadata:nil groupByField:@"date" fileIDHide:self.fileIDHide activeAccount:appDelegate.activeAccount];
  439. dispatch_async(dispatch_get_main_queue(), ^{
  440. if (isEditMode)
  441. [self setUINavigationBarSelected];
  442. else
  443. [self setUINavigationBarDefault];
  444. [self.collectionView reloadData];
  445. });
  446. });
  447. }
  448. - (void)editingModeYES
  449. {
  450. [self.collectionView setAllowsMultipleSelection:true];
  451. isEditMode = true;
  452. [selectedMetadatas removeAllObjects];
  453. [self setUINavigationBarSelected];
  454. [self.collectionView reloadData];
  455. }
  456. - (void)editingModeNO
  457. {
  458. [self.collectionView setAllowsMultipleSelection:false];
  459. isEditMode = false;
  460. [selectedMetadatas removeAllObjects];
  461. [self setUINavigationBarDefault];
  462. [self.collectionView reloadData];
  463. }
  464. #pragma --------------------------------------------------------------------------------------------
  465. #pragma mark ==== Collection ====
  466. #pragma --------------------------------------------------------------------------------------------
  467. - (BOOL)indexPathIsValid:(NSIndexPath *)indexPath
  468. {
  469. return indexPath.section < [self numberOfSectionsInCollectionView:self.collectionView] && indexPath.row < [self collectionView:self.collectionView numberOfItemsInSection:indexPath.section];
  470. }
  471. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
  472. {
  473. return [[sectionDataSource.sectionArrayRow allKeys] count];
  474. }
  475. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
  476. {
  477. return [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]] count];
  478. }
  479. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
  480. {
  481. UIInterfaceOrientation orientationOnLunch = [[UIApplication sharedApplication] statusBarOrientation];
  482. if (orientationOnLunch == UIInterfaceOrientationPortrait)
  483. return CGSizeMake(collectionView.frame.size.width / 5.1f, collectionView.frame.size.width / 5.1f);
  484. else
  485. return CGSizeMake(collectionView.frame.size.width / 7.1f, collectionView.frame.size.width / 7.1f);
  486. }
  487. -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section
  488. {
  489. if ([sectionDataSource.sections count] - 1 == section)
  490. return CGSizeMake(collectionView.frame.size.width, 50);
  491. return CGSizeZero;
  492. }
  493. - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
  494. {
  495. if (kind == UICollectionElementKindSectionHeader) {
  496. UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"header" forIndexPath:indexPath];
  497. //headerView.backgroundColor = COLOR_GROUPBY_BAR_NO_BLUR;
  498. [self getGeoLocationForSection:indexPath.section];
  499. UILabel *titleLabel = (UILabel *)[headerView viewWithTag:100];
  500. titleLabel.textColor = [UIColor blackColor];
  501. if (sectionDataSource.sections.count > indexPath.section)
  502. titleLabel.text = [CCUtility getTitleSectionDate:[sectionDataSource.sections objectAtIndex:indexPath.section]];
  503. return headerView;
  504. }
  505. if (kind == UICollectionElementKindSectionFooter) {
  506. UICollectionReusableView *footerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"footer" forIndexPath:indexPath];
  507. UILabel *titleLabel = (UILabel *)[footerView viewWithTag:100];
  508. titleLabel.textColor = [UIColor grayColor];
  509. titleLabel.text = [NSString stringWithFormat:@"%lu %@, %lu %@", (long)sectionDataSource.image, NSLocalizedString(@"photo", nil), (long)sectionDataSource.video, NSLocalizedString(@"_video_", nil)];
  510. return footerView;
  511. }
  512. return nil;
  513. }
  514. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  515. {
  516. UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
  517. UIImageView *imageView = (UIImageView *)[cell viewWithTag:100];
  518. UIVisualEffectView *effect = [cell viewWithTag:200];
  519. UIImageView *checked = [cell viewWithTag:300];
  520. checked.image = [UIImage imageNamed:@"checked"];
  521. NSArray *metadatasForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]];
  522. if ([metadatasForKey count] > indexPath.row) {
  523. NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
  524. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  525. // Image
  526. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]]) {
  527. // insert Image
  528. imageView.image = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  529. } else {
  530. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@", metadata.directoryID]];
  531. // Thumbnail not present
  532. if (directory.e2eEncrypted) {
  533. imageView.image = [UIImage imageNamed:@"file_photo_encrypted"];
  534. } else {
  535. imageView.image = [UIImage imageNamed:@"file_photo"];
  536. if (metadata.thumbnailExists) {
  537. [self downloadThumbnail:metadata serverUrl:directory.serverUrl indexPath:indexPath];
  538. }
  539. }
  540. }
  541. // Cheched
  542. if (cell.selected) {
  543. checked.hidden = NO;
  544. effect.hidden = NO;
  545. effect.alpha = 0.4;
  546. } else {
  547. checked.hidden = YES;
  548. effect.hidden = YES;
  549. }
  550. }
  551. return cell;
  552. }
  553. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
  554. {
  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. metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  559. if (isEditMode) {
  560. [self cellSelect:YES indexPath:indexPath metadata:metadata];
  561. } else {
  562. if ([self shouldPerformSegue])
  563. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  564. }
  565. }
  566. }
  567. - (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath
  568. {
  569. // test
  570. if (isEditMode == NO)
  571. return;
  572. NSArray *metadatasForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]];
  573. if ([metadatasForKey count] > indexPath.row) {
  574. NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
  575. metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  576. [self cellSelect:NO indexPath:indexPath metadata:metadata];
  577. }
  578. }
  579. #pragma --------------------------------------------------------------------------------------------
  580. #pragma mark ===== Navigation ====
  581. #pragma --------------------------------------------------------------------------------------------
  582. - (BOOL)shouldPerformSegue
  583. {
  584. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground)
  585. return NO;
  586. // Not in first plain ? exit
  587. if (self.view.window == NO)
  588. return NO;
  589. // Collapsed but in first plain in detail exit
  590. if (self.splitViewController.isCollapsed)
  591. if (self.detailViewController.isViewLoaded && self.detailViewController.view.window)
  592. return NO;
  593. // check if metadata is invalidated
  594. if ([[NCManageDatabase sharedInstance] isTableInvalidated:metadata]) {
  595. return NO;
  596. }
  597. // ok perform segue
  598. return YES;
  599. }
  600. -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  601. {
  602. id controller = segue.destinationViewController;
  603. if ([controller isKindOfClass:[UINavigationController class]]) {
  604. UINavigationController *navigationController = controller;
  605. self.detailViewController = (CCDetail *)navigationController.topViewController;
  606. } else {
  607. self.detailViewController = segue.destinationViewController;
  608. }
  609. NSMutableArray *allRecordsDataSourceImagesVideos = [NSMutableArray new];
  610. for (NSString *fileID in sectionDataSource.allFileID) {
  611. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  612. [allRecordsDataSourceImagesVideos addObject:metadata];
  613. }
  614. self.detailViewController.dataSourceImagesVideos = allRecordsDataSourceImagesVideos;
  615. self.detailViewController.metadataDetail = metadata;
  616. self.detailViewController.dateFilterQuery = metadata.date;
  617. [self.detailViewController setTitle:metadata.fileName];
  618. }
  619. @end