CCPhotos.m 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867
  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 () <CCActionsDownloadThumbnailDelegate>
  29. {
  30. AppDelegate *appDelegate;
  31. tableMetadata *_metadata;
  32. NSMutableArray *selectedMetadatas;
  33. NSMutableArray *fileIDHide;
  34. CCSectionDataSourceMetadata *sectionDataSource;
  35. CCHud *hud;
  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. selectedMetadatas = [NSMutableArray new];
  69. fileIDHide = [NSMutableArray new];
  70. saveEtagForStartDirectory = [NSMutableDictionary new];
  71. hud = [[CCHud alloc] initWithView:[[[UIApplication sharedApplication] delegate] window]];
  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. if(!_isSearchMode && !_isEditMode)
  94. [self reloadDatasource];
  95. }
  96. - (void)viewSafeAreaInsetsDidChange
  97. {
  98. [super viewSafeAreaInsetsDidChange];
  99. self.collectionView.contentInset = self.view.safeAreaInsets;
  100. }
  101. - (void)changeTheming
  102. {
  103. if (self.isViewLoaded && self.view.window)
  104. [appDelegate changeTheming:self];
  105. scrollBar.handleTintColor = [NCBrandColor sharedInstance].brand;
  106. if(!_isSearchMode && !_isEditMode)
  107. [self.collectionView reloadData];
  108. }
  109. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  110. {
  111. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  112. // Before rotation
  113. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  114. 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))) {
  115. // Portrait
  116. } else {
  117. // Landscape
  118. }
  119. }];
  120. }
  121. #pragma --------------------------------------------------------------------------------------------
  122. #pragma mark ===== Gestione Grafica Window =====
  123. #pragma --------------------------------------------------------------------------------------------
  124. - (void)setUINavigationBarDefault
  125. {
  126. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  127. // curront folder search
  128. NSString *directory = [[NCManageDatabase sharedInstance] getAccountStartDirectoryPhotosTab:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
  129. NSString *home = [CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl];
  130. NSString *folder = @"";
  131. if (home.length > 0) {
  132. folder = [directory stringByReplacingOccurrencesOfString:home withString:@""];
  133. }
  134. // Title
  135. self.navigationItem.titleView = nil;
  136. if (folder.length == 0) {
  137. self.navigationItem.title = NSLocalizedString(@"_photo_camera_", nil);
  138. } else {
  139. self.navigationItem.title = [NSString stringWithFormat:@"%@: %@", NSLocalizedString(@"_photo_camera_", nil), [folder substringFromIndex:1]];
  140. }
  141. if (_isSearchMode) {
  142. [CCGraphics addImageToTitle:self.navigationItem.title colorTitle:[NCBrandColor sharedInstance].brandText imageTitle:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"load"] multiplier:2 color:[NCBrandColor sharedInstance].brandText] navigationItem:self.navigationItem];
  143. }
  144. // Button Item
  145. UIImage *icon;
  146. icon = [UIImage imageNamed:@"select"];
  147. UIBarButtonItem *buttonSelect = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(editingModeYES)];
  148. icon = [UIImage imageNamed:@"folderPhotos"];
  149. UIBarButtonItem *buttonStartDirectoryPhotosTab = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(selectStartDirectoryPhotosTab)];
  150. if ([sectionDataSource.allRecordsDataSource count] > 0) {
  151. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonSelect, nil];
  152. } else {
  153. self.navigationItem.rightBarButtonItems = nil;
  154. }
  155. self.navigationItem.leftBarButtonItems = [[NSArray alloc] initWithObjects:buttonStartDirectoryPhotosTab, nil];
  156. }
  157. - (void)setUINavigationBarSelected
  158. {
  159. UIImage *icon;
  160. icon = [UIImage imageNamed:@"delete"];
  161. UIBarButtonItem *buttonDelete = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(deleteSelectedFiles)];
  162. icon = [UIImage imageNamed:@"openFile"];
  163. UIBarButtonItem *buttonOpenWith = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(openSelectedFiles)];
  164. UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(editingModeNO)];
  165. self.navigationItem.leftBarButtonItem = leftButton;
  166. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonDelete, buttonOpenWith, nil];
  167. // Title
  168. self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)[selectedMetadatas count], (unsigned long)[sectionDataSource.allRecordsDataSource count]];
  169. }
  170. - (void)cellSelect:(BOOL)select indexPath:(NSIndexPath *)indexPath metadata:(tableMetadata *)metadata
  171. {
  172. UICollectionViewCell *cell = [self.collectionView cellForItemAtIndexPath:indexPath];
  173. UIVisualEffectView *effect = [cell viewWithTag:200];
  174. UIImageView *checked = [cell viewWithTag:300];
  175. if (select) {
  176. effect.hidden = NO;
  177. effect.alpha = 0.4;
  178. checked.hidden = NO;
  179. [selectedMetadatas addObject:metadata];
  180. } else {
  181. effect.hidden = YES;
  182. checked.hidden = YES;
  183. [selectedMetadatas removeObject:metadata];
  184. }
  185. // Title
  186. self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)[selectedMetadatas count], (unsigned long)[sectionDataSource.allRecordsDataSource count]];
  187. }
  188. - (void)scrollToTop
  189. {
  190. [self.collectionView setContentOffset:CGPointMake(0, - self.collectionView.contentInset.top) animated:NO];
  191. }
  192. - (void)getGeoLocationForSection:(NSInteger)section
  193. {
  194. NSString *addLocation = @"";
  195. NSArray *fileIDsForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]];
  196. for (NSString *fileID in fileIDsForKey) {
  197. tableLocalFile *localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  198. if ([localFile.exifLatitude floatValue] > 0 || [localFile.exifLongitude floatValue] > 0) {
  199. NSString *location = [[NCManageDatabase sharedInstance] getLocationFromGeoLatitude:localFile.exifLatitude longitude:localFile.exifLongitude];
  200. addLocation = [NSString stringWithFormat:@"%@, %@", addLocation, location];
  201. }
  202. }
  203. }
  204. #pragma --------------------------------------------------------------------------------------------
  205. #pragma mark ==== DZNEmptyDataSetSource Methods ====
  206. #pragma --------------------------------------------------------------------------------------------
  207. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  208. {
  209. return [NCBrandColor sharedInstance].backgroundView;
  210. }
  211. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  212. {
  213. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"photosNoRecord"] multiplier:2 color:[NCBrandColor sharedInstance].graySoft];
  214. }
  215. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  216. {
  217. NSString *text;
  218. if (_isSearchMode) {
  219. text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_search_in_progress_", nil)];
  220. } else {
  221. text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_tutorial_photo_view_", nil)];
  222. }
  223. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:[UIColor lightGrayColor]};
  224. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  225. }
  226. #pragma --------------------------------------------------------------------------------------------
  227. #pragma mark ===== openSelectedFiles =====
  228. #pragma--------------------------------------------------------------------------------------------
  229. - (void)openSelectedFiles
  230. {
  231. NSMutableArray *dataToShare = [[NSMutableArray alloc] init];
  232. for (tableMetadata *metadata in selectedMetadatas) {
  233. NSString *fileNamePath = [CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView];
  234. if ([CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView]) {
  235. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image]) {
  236. NSData *data = [NSData dataWithData:UIImageJPEGRepresentation([UIImage imageWithContentsOfFile:fileNamePath], 0.9)];
  237. [dataToShare addObject:data];
  238. }
  239. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video]) {
  240. [dataToShare addObject:[NSURL fileURLWithPath:fileNamePath]];
  241. }
  242. }
  243. }
  244. if ([dataToShare count] > 0) {
  245. UIActivityViewController* activityViewController = [[UIActivityViewController alloc] initWithActivityItems:dataToShare applicationActivities:nil];
  246. // iPad
  247. activityViewController.popoverPresentationController.barButtonItem = self.navigationItem.rightBarButtonItems.lastObject;
  248. self.navigationItem.leftBarButtonItem.enabled = NO;
  249. self.navigationItem.rightBarButtonItem.enabled = NO;
  250. [self presentViewController:activityViewController animated:YES completion:^{
  251. [activityViewController setCompletionWithItemsHandler:^(NSString *activityType, BOOL completed, NSArray *returnedItems, NSError *activityError) {
  252. self.navigationItem.leftBarButtonItem.enabled = YES;
  253. self.navigationItem.rightBarButtonItem.enabled = YES;
  254. [self editingModeNO];
  255. if (completed) {
  256. [self.collectionView reloadData];
  257. }
  258. }];
  259. }];
  260. }
  261. }
  262. #pragma --------------------------------------------------------------------------------------------
  263. #pragma mark ===== Download =====
  264. #pragma--------------------------------------------------------------------------------------------
  265. - (void)downloadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector errorMessage:(NSString *)errorMessage errorCode:(NSInteger)errorCode
  266. {
  267. if (errorCode == 0) {
  268. NSIndexPath *indexPath;
  269. BOOL existsIcon = NO;
  270. if (fileID) {
  271. existsIcon = [[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:fileID fileNameView:fileName]];
  272. indexPath = [sectionDataSource.fileIDIndexPath objectForKey:fileID];
  273. }
  274. if ([self indexPathIsValid:indexPath] && existsIcon) {
  275. UICollectionViewCell *cell = [self.collectionView cellForItemAtIndexPath:indexPath];
  276. if (cell) {
  277. UIImageView *imageView = (UIImageView *)[cell viewWithTag:100];
  278. UIVisualEffectView *effect = [cell viewWithTag:200];
  279. UIImageView *checked = [cell viewWithTag:300];
  280. imageView.image = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:fileID fileNameView:fileName]];
  281. effect.hidden = YES;
  282. checked.hidden = YES;
  283. }
  284. }
  285. } else {
  286. [appDelegate messageNotification:@"_download_selected_files_" description:@"_error_download_photobrowser_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  287. }
  288. }
  289. #pragma --------------------------------------------------------------------------------------------
  290. #pragma mark ===== Delete =====
  291. #pragma--------------------------------------------------------------------------------------------
  292. - (void)deleteFile
  293. {
  294. NSInteger numDelete = selectedMetadatas.count;
  295. __block NSInteger cont = 0;
  296. for (tableMetadata *metadata in selectedMetadatas) {
  297. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  298. //
  299. [[NCManageDatabase sharedInstance] setPhotosStatusWithFileID:metadata.fileID status:k_metadataStatusHide];
  300. OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:nil metadataNet:nil withUser:appDelegate.activeUser withUserID:appDelegate.activeUserID withPassword:appDelegate.activePassword withUrl:appDelegate.activeUrl];
  301. [ocNetworking deleteFileOrFolder:metadata.fileName serverUrl:serverUrl success:^{
  302. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID] clearDateReadDirectoryID:metadata.directoryID];
  303. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  304. [[NCManageDatabase sharedInstance] deletePhotosWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  305. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID] error:nil];
  306. if (++cont == numDelete) {
  307. [self reloadDatasource];
  308. }
  309. [fileIDHide addObject:metadata.fileID];
  310. } failure:^(NSString *message, NSInteger errorCode) {
  311. [[NCManageDatabase sharedInstance] setPhotosStatusWithFileID:metadata.fileID status:k_metadataStatusNormal];
  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 Delegate ====
  341. #pragma --------------------------------------------------------------------------------------------
  342. - (void)downloadThumbnailSuccessFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  343. {
  344. // Check Active Account
  345. if (![metadataNet.account isEqualToString:appDelegate.activeAccount])
  346. return;
  347. if (errorCode == 0) {
  348. NSIndexPath *indexPath = [sectionDataSource.fileIDIndexPath objectForKey:metadataNet.fileID];
  349. if ([self indexPathIsValid:indexPath]) {
  350. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadataNet.fileID fileNameView:metadataNet.fileNameView]])
  351. [self.collectionView reloadItemsAtIndexPaths:@[indexPath]];
  352. }
  353. }
  354. }
  355. - (void)triggerProgressTask:(NSNotification *)notification
  356. {
  357. //NSDictionary *dict = notification.userInfo;
  358. //float progress = [[dict valueForKey:@"progress"] floatValue];
  359. }
  360. #pragma --------------------------------------------------------------------------------------------
  361. #pragma mark ==== Change Start directory ====
  362. #pragma --------------------------------------------------------------------------------------------
  363. - (void)moveServerUrlTo:(NSString *)serverUrlTo title:(NSString *)title
  364. {
  365. NSString *oldStartDirectoryPhotosTab = [[NCManageDatabase sharedInstance] getAccountStartDirectoryPhotosTab:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
  366. if (![serverUrlTo isEqualToString:oldStartDirectoryPhotosTab]) {
  367. // Save Start Directory
  368. [[NCManageDatabase sharedInstance] setAccountStartDirectoryPhotosTab:serverUrlTo];
  369. // search PhotoVideo with new start directory
  370. [self searchPhotoVideo];
  371. }
  372. }
  373. - (void)selectStartDirectoryPhotosTab
  374. {
  375. UINavigationController* navigationController = [[UIStoryboard storyboardWithName:@"CCMove" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMove"];
  376. CCMove *viewController = (CCMove *)navigationController.topViewController;
  377. viewController.delegate = self;
  378. viewController.move.title = NSLocalizedString(@"_select_dir_photos_tab_", nil);
  379. viewController.tintColor = [NCBrandColor sharedInstance].brandText;
  380. viewController.barTintColor = [NCBrandColor sharedInstance].brand;
  381. viewController.tintColorTitle = [NCBrandColor sharedInstance].brandText;
  382. viewController.networkingOperationQueue = appDelegate.netQueue;
  383. viewController.hideCreateFolder = YES;
  384. // E2EE
  385. viewController.includeDirectoryE2EEncryption = NO;
  386. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  387. [self presentViewController:navigationController animated:YES completion:nil];
  388. }
  389. #pragma --------------------------------------------------------------------------------------------
  390. #pragma mark ==== Search Photo/Video ====
  391. #pragma --------------------------------------------------------------------------------------------
  392. - (void)searchSuccessFailure:(CCMetadataNet *)metadataNet metadatas:(NSArray *)metadatas message:(NSString *)message errorCode:(NSInteger)errorCode
  393. {
  394. // Check Active Account
  395. if (![metadataNet.account isEqualToString:appDelegate.activeAccount]) {
  396. return;
  397. }
  398. if (errorCode == 0) {
  399. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  400. [[NCManageDatabase sharedInstance] createTablePhotos:metadatas];
  401. _isSearchMode = NO;
  402. dispatch_async(dispatch_get_main_queue(), ^{
  403. [self reloadDatasource];
  404. });
  405. // Update date
  406. [[NCManageDatabase sharedInstance] setAccountDateSearchContentTypeImageVideo:[NSDate date]];
  407. // Save etag
  408. [saveEtagForStartDirectory setObject:metadataNet.etag forKey:metadataNet.serverUrl];
  409. });
  410. } else {
  411. _isSearchMode = NO;
  412. [self reloadDatasource];
  413. }
  414. }
  415. - (void)searchPhotoVideo
  416. {
  417. // test
  418. if (appDelegate.activeAccount.length == 0 || _isSearchMode || _isEditMode)
  419. return;
  420. // WAITING FOR d:creationdate
  421. //
  422. // tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
  423. // account.dateSearchContentTypeImageVideo
  424. NSString *startDirectory = [[NCManageDatabase sharedInstance] getAccountStartDirectoryPhotosTab:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
  425. OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:self metadataNet:nil withUser:appDelegate.activeUser withUserID:appDelegate.activeUserID withPassword:appDelegate.activePassword withUrl:appDelegate.activeUrl];
  426. [ocNetworking readFile:nil serverUrl:startDirectory account:appDelegate.activeAccount success:^(tableMetadata *metadata) {
  427. if (![metadata.etag isEqualToString:[saveEtagForStartDirectory objectForKey:startDirectory]] || sectionDataSource.allRecordsDataSource.count == 0) {
  428. [[CCActions sharedInstance] search:startDirectory fileName:@"" etag:metadata.etag depth:@"infinity" date:[NSDate distantPast] contenType:@[@"image/%", @"video/%"] selector:selectorSearchContentType delegate:self];
  429. [self editingModeNO];
  430. _isSearchMode = YES;
  431. } else {
  432. [self reloadDatasource];
  433. }
  434. } failure:^(NSString *message, NSInteger errorCode) {
  435. [self reloadDatasource];
  436. }];
  437. }
  438. #pragma --------------------------------------------------------------------------------------------
  439. #pragma mark ==== Datasource ====
  440. #pragma --------------------------------------------------------------------------------------------
  441. - (void)reloadDatasource
  442. {
  443. @synchronized(self) {
  444. // test
  445. if (appDelegate.activeAccount.length == 0) {
  446. return;
  447. }
  448. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  449. NSArray *metadatas = [[NCManageDatabase sharedInstance] getTablePhotos];
  450. sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:metadatas listProgressMetadata:nil groupByField:@"date" fileIDHide:fileIDHide activeAccount:appDelegate.activeAccount];
  451. dispatch_async(dispatch_get_main_queue(), ^{
  452. if (_isEditMode)
  453. [self setUINavigationBarSelected];
  454. else
  455. [self setUINavigationBarDefault];
  456. [self.collectionView reloadData];
  457. });
  458. });
  459. }
  460. }
  461. - (void)editingModeYES
  462. {
  463. [self.collectionView setAllowsMultipleSelection:true];
  464. _isEditMode = true;
  465. [self setUINavigationBarSelected];
  466. [self.collectionView reloadData];
  467. }
  468. - (void)editingModeNO
  469. {
  470. [self.collectionView setAllowsMultipleSelection:false];
  471. _isEditMode = false;
  472. [selectedMetadatas removeAllObjects];
  473. [self setUINavigationBarDefault];
  474. [self.collectionView reloadData];
  475. }
  476. #pragma --------------------------------------------------------------------------------------------
  477. #pragma mark ==== Collection ====
  478. #pragma --------------------------------------------------------------------------------------------
  479. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
  480. {
  481. return [[sectionDataSource.sectionArrayRow allKeys] count];
  482. }
  483. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
  484. {
  485. return [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]] count];
  486. }
  487. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
  488. {
  489. UIInterfaceOrientation orientationOnLunch = [[UIApplication sharedApplication] statusBarOrientation];
  490. if (orientationOnLunch == UIInterfaceOrientationPortrait)
  491. return CGSizeMake(collectionView.frame.size.width / 5.1f, collectionView.frame.size.width / 5.1f);
  492. else
  493. return CGSizeMake(collectionView.frame.size.width / 7.1f, collectionView.frame.size.width / 7.1f);
  494. }
  495. -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section
  496. {
  497. if ([sectionDataSource.sections count] - 1 == section)
  498. return CGSizeMake(collectionView.frame.size.width, 50);
  499. return CGSizeZero;
  500. }
  501. - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
  502. {
  503. if (kind == UICollectionElementKindSectionHeader) {
  504. UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"header" forIndexPath:indexPath];
  505. //headerView.backgroundColor = COLOR_GROUPBY_BAR_NO_BLUR;
  506. [self getGeoLocationForSection:indexPath.section];
  507. UILabel *titleLabel = (UILabel *)[headerView viewWithTag:100];
  508. titleLabel.textColor = [UIColor blackColor];
  509. if (sectionDataSource.sections.count > indexPath.section)
  510. titleLabel.text = [CCUtility getTitleSectionDate:[sectionDataSource.sections objectAtIndex:indexPath.section]];
  511. return headerView;
  512. }
  513. if (kind == UICollectionElementKindSectionFooter) {
  514. UICollectionReusableView *footerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"footer" forIndexPath:indexPath];
  515. UILabel *titleLabel = (UILabel *)[footerView viewWithTag:100];
  516. titleLabel.textColor = [UIColor grayColor];
  517. titleLabel.text = [NSString stringWithFormat:@"%lu %@, %lu %@", (long)sectionDataSource.image, NSLocalizedString(@"photo", nil), (long)sectionDataSource.video, NSLocalizedString(@"_video_", nil)];
  518. return footerView;
  519. }
  520. return nil;
  521. }
  522. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  523. {
  524. UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
  525. UIImageView *imageView = (UIImageView *)[cell viewWithTag:100];
  526. UIVisualEffectView *effect = [cell viewWithTag:200];
  527. UIImageView *checked = [cell viewWithTag:300];
  528. checked.image = [UIImage imageNamed:@"checked"];
  529. NSArray *metadatasForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]];
  530. if ([metadatasForKey count] > indexPath.row) {
  531. NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
  532. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  533. // Image
  534. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]]) {
  535. // insert Image
  536. imageView.image = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  537. } else {
  538. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@", metadata.directoryID]];
  539. // Thumbnail not present
  540. if (directory.e2eEncrypted) {
  541. imageView.image = [UIImage imageNamed:@"file_photo_encrypted"];
  542. } else {
  543. imageView.image = [UIImage imageNamed:@"file_photo"];
  544. if (metadata.thumbnailExists)
  545. [[CCActions sharedInstance] downloadTumbnail:metadata delegate:self];
  546. }
  547. }
  548. // Cheched
  549. if (cell.selected) {
  550. checked.hidden = NO;
  551. effect.hidden = NO;
  552. effect.alpha = 0.4;
  553. } else {
  554. checked.hidden = YES;
  555. effect.hidden = YES;
  556. }
  557. }
  558. return cell;
  559. }
  560. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
  561. {
  562. NSArray *metadatasForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]];
  563. if ([metadatasForKey count] > indexPath.row) {
  564. NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
  565. _metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  566. if (_isEditMode) {
  567. [self cellSelect:YES indexPath:indexPath metadata:_metadata];
  568. } else {
  569. if ([self shouldPerformSegue])
  570. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  571. }
  572. }
  573. }
  574. - (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath
  575. {
  576. // test
  577. if (_isEditMode == NO)
  578. return;
  579. NSArray *metadatasForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]];
  580. if ([metadatasForKey count] > indexPath.row) {
  581. NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
  582. _metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  583. [self cellSelect:NO indexPath:indexPath metadata:_metadata];
  584. }
  585. }
  586. - (BOOL)indexPathIsValid:(NSIndexPath *)indexPath
  587. {
  588. if (!indexPath)
  589. return NO;
  590. NSInteger section = indexPath.section;
  591. NSInteger row = indexPath.row;
  592. NSInteger lastSectionIndex = [self numberOfSectionsInCollectionView:self.collectionView] - 1;
  593. if (section > lastSectionIndex || lastSectionIndex < 0)
  594. return NO;
  595. NSInteger rowCount = [self.collectionView numberOfItemsInSection:indexPath.section] - 1;
  596. if (rowCount < 0)
  597. return NO;
  598. return row <= rowCount;
  599. }
  600. #pragma --------------------------------------------------------------------------------------------
  601. #pragma mark ===== Navigation ====
  602. #pragma --------------------------------------------------------------------------------------------
  603. - (BOOL)shouldPerformSegue
  604. {
  605. // Test
  606. // Background ? exit
  607. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground)
  608. return NO;
  609. // Not in first plain ? exit
  610. if (self.view.window == NO)
  611. return NO;
  612. // Collapsed but in first plain in detail exit
  613. if (self.splitViewController.isCollapsed)
  614. if (self.detailViewController.isViewLoaded && self.detailViewController.view.window)
  615. return NO;
  616. // ok perform segue
  617. return YES;
  618. }
  619. -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  620. {
  621. id controller = segue.destinationViewController;
  622. if ([controller isKindOfClass:[UINavigationController class]]) {
  623. UINavigationController *navigationController = controller;
  624. self.detailViewController = (CCDetail *)navigationController.topViewController;
  625. } else {
  626. self.detailViewController = segue.destinationViewController;
  627. }
  628. NSMutableArray *allRecordsDataSourceImagesVideos = [[NSMutableArray alloc] init];
  629. for (NSString *fileID in sectionDataSource.allEtag) {
  630. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
  631. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])
  632. [allRecordsDataSourceImagesVideos addObject:metadata];
  633. }
  634. self.detailViewController.dataSourceImagesVideos = allRecordsDataSourceImagesVideos;
  635. self.detailViewController.metadataDetail = _metadata;
  636. self.detailViewController.dateFilterQuery = _metadata.date;
  637. [self.detailViewController setTitle:_metadata.fileName];
  638. }
  639. @end