123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023 |
- //
- // CCMedia.m
- // Nextcloud iOS
- //
- // Created by Marino Faggiana on 29/07/15.
- // Copyright (c) 2017 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- #import "CCMedia.h"
- #import "AppDelegate.h"
- #import "CCManageAutoUpload.h"
- #import "TOScrollBar.h"
- #import "NCBridgeSwift.h"
- @interface CCMedia () <NCSelectDelegate>
- {
- AppDelegate *appDelegate;
- NSMutableArray *selectedMetadatas;
- CCSectionDataSourceMetadata *sectionDataSource;
-
- BOOL filterTypeFileImage;
- BOOL filterTypeFileVideo;
-
- BOOL isSearchMode;
- BOOL isEditMode;
-
- TOScrollBar *scrollBar;
- NSMutableDictionary *saveEtagForStartDirectory;
-
- // Fix Crash Thumbnail + collectionView ReloadData ?
- NSInteger counterThumbnail;
- BOOL collectionViewReloadDataInProgress;
-
- // Remenu
- REMenu *menu;
- REMenuItem *menuSelectMediaFolder;
- REMenuItem *menuFilterImage;
- REMenuItem *menuFilterVideo;
- REMenuItem *menuSelectItems;
- }
- @end
- @implementation CCMedia
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Init =====
- #pragma --------------------------------------------------------------------------------------------
- - (id)initWithCoder:(NSCoder *)aDecoder
- {
- if (self = [super initWithCoder:aDecoder]) {
-
- appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:@"NotificationProgressTask" object:nil];
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:@"changeTheming" object:nil];
-
- appDelegate.activeMedia = self;
- }
-
- return self;
- }
- - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
- {
- self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
-
- if (self) {
-
- appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
- }
-
- return self;
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== View =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)viewDidLoad
- {
- [super viewDidLoad];
-
- saveEtagForStartDirectory = [NSMutableDictionary new];
- selectedMetadatas = [NSMutableArray new];
- self.addMetadatasFromUpload = [NSMutableArray new];
-
- // empty Data Source
- self.collectionView.emptyDataSetDelegate = self;
- self.collectionView.emptyDataSetSource = self;
- // scroll bar
- scrollBar = [TOScrollBar new];
- [self.collectionView to_addScrollBar:scrollBar];
-
- scrollBar.handleTintColor = [NCBrandColor sharedInstance].brand;
- scrollBar.handleWidth = 20;
- scrollBar.handleMinimiumHeight = 20;
- scrollBar.trackWidth = 0;
- scrollBar.edgeInset = 12;
-
- // Query data source
- [self queryDatasourceWithReloadData:YES];
- }
- - (void)viewWillAppear:(BOOL)animated
- {
- [super viewWillAppear:animated];
-
- // Color
- [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
- [appDelegate aspectTabBar:self.tabBarController.tabBar hidden:NO];
-
- // Plus Button
- [appDelegate plusButtonVisibile:true];
- }
- - (void)viewDidAppear:(BOOL)animated
- {
- [super viewDidAppear:animated];
-
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.001 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
- [self reloadDatasource:nil action:k_action_NULL];
- });
- }
- - (void)viewSafeAreaInsetsDidChange
- {
- [super viewSafeAreaInsetsDidChange];
-
- self.collectionView.contentInset = self.view.safeAreaInsets;
- }
- - (void)changeTheming
- {
- if (self.isViewLoaded && self.view.window)
- [appDelegate changeTheming:self];
-
- scrollBar.handleTintColor = [NCBrandColor sharedInstance].brand;
-
- [self.collectionView reloadData];
- }
- - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
- {
- [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
-
- [menu close];
-
- // Before rotation
-
- [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
-
- 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))) {
-
- // Portrait
-
- } else {
-
- // Landscape
- }
-
- [self.collectionView reloadData];
- }];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Gestione Grafica Window =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)openMenu
- {
- if (menu.isOpen) {
-
- [menu close];
-
- } else {
-
- [self createReMainMenu];
- [menu showFromNavigationController:self.navigationController];
-
- // Backgroun reMenu & (Gesture)
- [self createReMenuBackgroundView:menu];
-
- self.singleFingerTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(openMenu)];
- [self.reMenuBackgroundView addGestureRecognizer:_singleFingerTap];
- }
- }
- - (void)createReMenuBackgroundView:(REMenu *)menu
- {
- CGFloat safeAreaBottom = 0;
- CGFloat safeAreaTop = 0;
- CGFloat statusBar = 0;
-
- if (@available(iOS 11, *)) {
- safeAreaTop = [UIApplication sharedApplication].delegate.window.safeAreaInsets.top;
- safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
- }
- if ([UIApplication sharedApplication].isStatusBarHidden) {
- statusBar = 13;
- }
-
- CGFloat computeNavigationBarOffset = [menu computeNavigationBarOffset];
- UIViewController *rootController = [[[[UIApplication sharedApplication]delegate] window] rootViewController];
- CGRect globalPositionMenu = [menu.menuView convertRect:menu.menuView.bounds toView:rootController.view];
-
- self.reMenuBackgroundView = [UIView new];
- self.reMenuBackgroundView.backgroundColor = [UIColor colorWithWhite:0 alpha:0.5];
- self.reMenuBackgroundView.frame = CGRectMake(0, computeNavigationBarOffset, globalPositionMenu.size.width, rootController.view.frame.size.height);
-
- [UIView animateWithDuration:0.2 animations:^{
-
- CGFloat minimum = safeAreaBottom + self.tabBarController.tabBar.frame.size.height;
- CGFloat y = rootController.view.frame.size.height - menu.menuView.frame.size.height - globalPositionMenu.origin.y + statusBar;
-
- if (y>minimum) {
-
- self.reMenuBackgroundView.frame = CGRectMake(0, rootController.view.frame.size.height, globalPositionMenu.size.width, - y);
- [self.tabBarController.view addSubview:self.reMenuBackgroundView];
- }
- }];
- }
- - (void)createReMainMenu
- {
- menuSelectItems = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_select_", nil)subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"select"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
- if ([sectionDataSource.allRecordsDataSource count] > 0) {
- [self editingModeYES];
- }
- }];
-
- menuSelectMediaFolder = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_select_media_folder_", nil)subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folderMedia"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
- [self selectStartDirectoryPhotosTab];
- }];
-
- if (filterTypeFileImage) {
- menuFilterImage = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_media_viewimage_show_", nil)subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"imageno"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
- filterTypeFileImage = NO;
- [self reloadDatasource:nil action:k_action_NULL];
- }];
- } else {
- menuFilterImage = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_media_viewimage_hide_", nil)subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"imageyes"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
- filterTypeFileImage = YES;
- [self reloadDatasource:nil action:k_action_NULL];
- }];
- }
-
- if (filterTypeFileVideo) {
- menuFilterVideo = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_media_viewvideo_show_", nil)subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"videono"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
- filterTypeFileVideo = NO;
- [self reloadDatasource:nil action:k_action_NULL];
- }];
- } else {
- menuFilterVideo = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_media_viewvideo_hide_", nil)subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"videoyes"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
- filterTypeFileVideo = YES;
- [self reloadDatasource:nil action:k_action_NULL];
- }];
- }
-
- // REMENU --------------------------------------------------------------------------------------------------------------
-
- menu = [[REMenu alloc] initWithItems:@[menuSelectItems, menuSelectMediaFolder, menuFilterImage, menuFilterVideo]];
-
- menu.imageOffset = CGSizeMake(5, -1);
-
- menu.separatorOffset = CGSizeMake(50.0, 0.0);
- menu.imageOffset = CGSizeMake(0, 0);
- menu.waitUntilAnimationIsComplete = NO;
-
- menu.separatorHeight = 0.5;
- menu.separatorColor = [NCBrandColor sharedInstance].seperator;
-
- menu.backgroundColor = [NCBrandColor sharedInstance].backgroundView;
- menu.textColor = [UIColor blackColor];
- menu.textAlignment = NSTextAlignmentLeft;
- menu.textShadowColor = nil;
- menu.textOffset = CGSizeMake(50, 0.0);
- menu.font = [UIFont systemFontOfSize:14.0];
-
- menu.highlightedBackgroundColor = [[NCBrandColor sharedInstance] getColorSelectBackgrond];
- menu.highlightedSeparatorColor = nil;
- menu.highlightedTextColor = [UIColor blackColor];
- menu.highlightedTextShadowColor = nil;
- menu.highlightedTextShadowOffset = CGSizeMake(0, 0);
-
- menu.subtitleTextColor = [UIColor colorWithWhite:0.425 alpha:1];
- menu.subtitleTextAlignment = NSTextAlignmentLeft;
- menu.subtitleTextShadowColor = nil;
- menu.subtitleTextShadowOffset = CGSizeMake(0, 0.0);
- menu.subtitleTextOffset = CGSizeMake(50, 0.0);
- menu.subtitleFont = [UIFont systemFontOfSize:12.0];
-
- menu.subtitleHighlightedTextColor = [UIColor lightGrayColor];
- menu.subtitleHighlightedTextShadowColor = nil;
- menu.subtitleHighlightedTextShadowOffset = CGSizeMake(0, 0);
-
- menu.borderWidth = 0.3;
- menu.borderColor = [UIColor lightGrayColor];
-
- menu.animationDuration = 0.2;
- menu.closeAnimationDuration = 0.2;
-
- menu.bounce = NO;
-
- __weak typeof(self) weakSelf = self;
- [menu setClosePreparationBlock:^{
-
- // Backgroun reMenu (Gesture)
- [weakSelf.reMenuBackgroundView removeFromSuperview];
- [weakSelf.reMenuBackgroundView removeGestureRecognizer:weakSelf.singleFingerTap];
- }];
- }
- - (void)setUINavigationBarDefault
- {
- [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
-
- // curront folder search
- NSString *directory = [[NCManageDatabase sharedInstance] getAccountStartDirectoryMediaTabView:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
- NSString *home = [CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl];
- NSString *folder = @"";
- if (home.length > 0) {
- folder = [directory stringByReplacingOccurrencesOfString:home withString:@""];
- }
-
- // Title
- NSString *title;
- if (folder.length == 0) {
- title = NSLocalizedString(@"_media_", nil);
- } else {
- title = [NSString stringWithFormat:@"%@: %@", NSLocalizedString(@"_media_", nil), [folder substringFromIndex:1]];
- }
-
- self.navigationItem.titleView = nil;
- self.navigationItem.title = title;
-
- if (isSearchMode) {
- [CCGraphics addImageToTitle:title colorTitle:[NCBrandColor sharedInstance].brandText imageTitle:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"load"] multiplier:2 color:[NCBrandColor sharedInstance].brandText] imageRight:NO navigationItem:self.navigationItem];
- }
-
- // Button Item RIGHT
- UIBarButtonItem *buttonMore = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"navigationControllerMenu"] style:UIBarButtonItemStylePlain target:self action:@selector(openMenu)];
-
- self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonMore, nil];
- self.navigationItem.leftBarButtonItems = nil;
- }
- - (void)setUINavigationBarSelected
- {
- UIBarButtonItem *buttonDelete = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"delete"] style:UIBarButtonItemStylePlain target:self action:@selector(deleteSelectedFiles)];
- // UIBarButtonItem *buttonOpenIn = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"openFile"] style:UIBarButtonItemStylePlain target:self action:@selector(openSelectedFiles)];
-
- UIBarButtonItem *cancelButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(editingModeNO)];
-
- self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:cancelButton, nil];
- self.navigationItem.leftBarButtonItems = [[NSArray alloc] initWithObjects:buttonDelete, nil];
-
- // Title
- self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)[selectedMetadatas count], (unsigned long)[sectionDataSource.allRecordsDataSource count]];
- }
- - (void)cellSelect:(BOOL)select indexPath:(NSIndexPath *)indexPath metadata:(tableMetadata *)metadata
- {
- UICollectionViewCell *cell = [self.collectionView cellForItemAtIndexPath:indexPath];
- UIVisualEffectView *effect = [cell viewWithTag:200];
- UIImageView *checked = [cell viewWithTag:300];
-
- if (select) {
- effect.hidden = NO;
- effect.alpha = 0.4;
- checked.hidden = NO;
- [selectedMetadatas addObject:metadata];
-
- } else {
- effect.hidden = YES;
- checked.hidden = YES;
- [selectedMetadatas removeObject:metadata];
- }
-
- // Title
- self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)[selectedMetadatas count], (unsigned long)[sectionDataSource.allRecordsDataSource count]];
- }
- - (void)scrollToTop
- {
- [self.collectionView setContentOffset:CGPointMake(0, - self.collectionView.contentInset.top) animated:NO];
- }
- - (void)getGeoLocationForSection:(NSInteger)section
- {
- NSString *addLocation = @"";
-
- NSArray *fileIDsForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]];
-
- for (NSString *fileID in fileIDsForKey) {
-
- tableLocalFile *localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
-
- if ([localFile.exifLatitude floatValue] > 0 || [localFile.exifLongitude floatValue] > 0) {
-
- NSString *location = [[NCManageDatabase sharedInstance] getLocationFromGeoLatitude:localFile.exifLatitude longitude:localFile.exifLongitude];
-
- addLocation = [NSString stringWithFormat:@"%@, %@", addLocation, location];
-
- }
- }
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ==== DZNEmptyDataSetSource Methods ====
- #pragma --------------------------------------------------------------------------------------------
- - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
- {
- return [NCBrandColor sharedInstance].backgroundView;
- }
- - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
- {
- return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"mediaNoRecord"] multiplier:1 color:[NCBrandColor sharedInstance].graySoft];
- }
- - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
- {
- NSString *text;
-
- if (isSearchMode) {
- text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_search_in_progress_", nil)];
- } else {
- text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_tutorial_photo_view_", nil)];
- }
-
- NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:[UIColor lightGrayColor]};
-
- return [[NSAttributedString alloc] initWithString:text attributes:attributes];
- }
- /*
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== openSelectedFiles =====
- #pragma--------------------------------------------------------------------------------------------
- - (void)openSelectedFiles
- {
- NSMutableArray *dataToShare = [[NSMutableArray alloc] init];
-
- for (tableMetadata *metadata in selectedMetadatas) {
-
- NSString *fileNamePath = [CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView];
-
- if ([CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView]) {
-
- if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image]) {
-
- NSData *data = [NSData dataWithData:UIImageJPEGRepresentation([UIImage imageWithContentsOfFile:fileNamePath], 0.9)];
- [dataToShare addObject:data];
- }
-
- if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video]) {
-
- [dataToShare addObject:[NSURL fileURLWithPath:fileNamePath]];
- }
- }
- }
-
- if ([dataToShare count] > 0) {
-
- UIActivityViewController* activityViewController = [[UIActivityViewController alloc] initWithActivityItems:dataToShare applicationActivities:nil];
-
- // iPad
- activityViewController.popoverPresentationController.barButtonItem = self.navigationItem.rightBarButtonItems.lastObject;
-
- self.navigationItem.leftBarButtonItem.enabled = NO;
- self.navigationItem.rightBarButtonItem.enabled = NO;
-
- [self presentViewController:activityViewController animated:YES completion:^{
-
- [activityViewController setCompletionWithItemsHandler:^(NSString *activityType, BOOL completed, NSArray *returnedItems, NSError *activityError) {
-
- self.navigationItem.leftBarButtonItem.enabled = YES;
- self.navigationItem.rightBarButtonItem.enabled = YES;
-
- [self editingModeNO];
- if (completed) {
- [self.collectionView reloadData];
- }
- }];
- }];
- }
- }
- */
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Download =====
- #pragma--------------------------------------------------------------------------------------------
- - (void)triggerProgressTask:(NSNotification *)notification
- {
- }
- - (void)downloadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector errorMessage:(NSString *)errorMessage errorCode:(NSInteger)errorCode
- {
- if (errorCode == 0) {
-
- tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
- if (metadata == nil || metadata.account != appDelegate.activeAccount) {
- return;
- }
- NSIndexPath *indexPath;
- BOOL existsIcon = NO;
-
- if (fileID) {
- existsIcon = [[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:fileID fileNameView:fileName]];
- indexPath = [sectionDataSource.fileIDIndexPath objectForKey:fileID];
- }
-
- if ([self indexPathIsValid:indexPath] && existsIcon) {
-
- UICollectionViewCell *cell = [self.collectionView cellForItemAtIndexPath:indexPath];
-
- if (cell) {
- UIImageView *imageView = (UIImageView *)[cell viewWithTag:100];
- UIVisualEffectView *effect = [cell viewWithTag:200];
- UIImageView *checked = [cell viewWithTag:300];
-
- imageView.image = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:fileID fileNameView:fileName]];
- effect.hidden = YES;
- checked.hidden = YES;
- }
- }
-
- } else {
-
- [appDelegate messageNotification:@"_download_selected_files_" description:@"_error_download_photobrowser_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
- }
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Delete =====
- #pragma--------------------------------------------------------------------------------------------
- - (void)deleteFile:(NSArray *)metadatas e2ee:(BOOL)e2ee
- {
- [[NCMainCommon sharedInstance ] deleteFileWithMetadatas:metadatas e2ee:false serverUrl:@"" folderFileID:@"" completion:^(NSInteger errorCode, NSString *message) {
- [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:nil fileID:nil action:k_action_NULL];
- }];
-
- [self editingModeNO];
- }
- - (void)deleteSelectedFiles
- {
- if ([selectedMetadatas count] == 0)
- return;
-
- UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
-
- [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
- style:UIAlertActionStyleDestructive
- handler:^(UIAlertAction *action) {
- [self deleteFile:selectedMetadatas e2ee:false];
- }]];
-
- [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
- style:UIAlertActionStyleCancel
- handler:^(UIAlertAction *action) {
- }]];
-
- alertController.popoverPresentationController.barButtonItem = self.navigationItem.leftBarButtonItems.firstObject;
-
- if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
- [alertController.view layoutIfNeeded];
-
- [self presentViewController:alertController animated:YES completion:NULL];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ==== Download Thumbnail ====
- #pragma --------------------------------------------------------------------------------------------
- - (void)downloadThumbnail:(tableMetadata *)metadata indexPath:(NSIndexPath *)indexPath
- {
- counterThumbnail++;
-
- CGFloat width = [[NCUtility sharedInstance] getScreenWidthForPreview];
- CGFloat height = [[NCUtility sharedInstance] getScreenHeightForPreview];
-
- [[OCNetworking sharedManager] downloadPreviewWithAccount:appDelegate.activeAccount metadata:metadata withWidth:width andHeight:height completion:^(NSString *account, NSString *message, NSInteger errorCode) {
-
- counterThumbnail--;
- if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount] && [[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]] && [self indexPathIsValid:indexPath] && !collectionViewReloadDataInProgress) {
- [self.collectionView reloadItemsAtIndexPaths:@[indexPath]];
- }
- }];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ==== Change Start directory ====
- #pragma --------------------------------------------------------------------------------------------
- - (void)dismissSelectWithServerUrl:(NSString *)serverUrl metadata:(tableMetadata *)metadata type:(NSString *)type
- {
- if ([type isEqualToString:@"mediaFolder"]) {
-
- NSString *oldStartDirectoryMediaTabView = [[NCManageDatabase sharedInstance] getAccountStartDirectoryMediaTabView:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
-
- if (![serverUrl isEqualToString:oldStartDirectoryMediaTabView]) {
-
- // Save Start Directory
- [[NCManageDatabase sharedInstance] setAccountStartDirectoryMediaTabView:serverUrl];
-
- // search PhotoVideo with new start directory
- [self searchPhotoVideo];
- }
- }
- }
- - (void)selectStartDirectoryPhotosTab
- {
- UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCSelect" bundle:nil] instantiateInitialViewController];
- NCSelect *viewController = (NCSelect *)navigationController.topViewController;
-
- viewController.delegate = self;
- viewController.hideButtonCreateFolder = true;
- viewController.selectFile = false;
- viewController.includeDirectoryE2EEncryption = false;
- viewController.includeImages = false;
- viewController.type = @"mediaFolder";
- viewController.titleButtonDone = NSLocalizedString(@"_select_", nil);
- viewController.layoutViewSelect = k_layout_view_move;
-
- [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
- [self presentViewController:navigationController animated:YES completion:nil];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ==== Search Photo/Video ====
- #pragma --------------------------------------------------------------------------------------------
- - (void)searchPhotoVideo
- {
- // test
- if (appDelegate.activeAccount.length == 0 || isSearchMode)
- return;
-
- // WAITING FOR d:creationdate
- //
- // tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
- // account.dateSearchContentTypeImageVideo
-
- NSString *startDirectory = [[NCManageDatabase sharedInstance] getAccountStartDirectoryMediaTabView:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
-
- [[OCNetworking sharedManager] readFileWithAccount:appDelegate.activeAccount serverUrl:startDirectory fileName:nil completion:^(NSString *account, tableMetadata *metadata, NSString *message, NSInteger errorCode) {
- if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount]) {
-
- if (![metadata.etag isEqualToString:[saveEtagForStartDirectory objectForKey:startDirectory]] || sectionDataSource.allRecordsDataSource.count == 0) {
-
- isSearchMode = YES;
- [self editingModeNO];
-
- [[OCNetworking sharedManager] searchWithAccount:appDelegate.activeAccount fileName:@"" serverUrl:startDirectory contentType:@[@"image/%", @"video/%"] date:[NSDate distantPast] depth:@"infinity" completion:^(NSString *account, NSArray *metadatas, NSString *message, NSInteger errorCode) {
-
- isSearchMode = NO;
- if (errorCode == 0 && [appDelegate.activeAccount isEqualToString:account]) {
-
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
-
- // Clear all Hardcoded new foto/video from CCNetworking
- [self.addMetadatasFromUpload removeAllObjects];
-
- [[NCManageDatabase sharedInstance] createTablePhotos:metadatas account:account];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [self reloadDatasource:nil action:k_action_NULL];
- });
-
- // Update date
- [[NCManageDatabase sharedInstance] setAccountDateSearchContentTypeImageVideo:[NSDate date]];
- // Save etag
- [saveEtagForStartDirectory setObject:metadata.etag forKey:metadata.serverUrl];
- });
-
- } else {
- [self reloadDatasource:nil action:k_action_NULL];
- }
- }];
-
- } else {
- if (errorCode != 0) {
- NSLog(@"[LOG] Search error.");
- } else {
- NSLog(@"[LOG] It has been changed user during networking process, error.");
- }
-
- [self reloadDatasource:nil action:k_action_NULL];
- }
- } else if (errorCode != 0) {
- NSLog(@"[LOG] Read file error.");
- } else {
- NSLog(@"[LOG] It has been changed user during networking process, error.");
- }
- }];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ==== Datasource ====
- #pragma --------------------------------------------------------------------------------------------
- - (void)reloadDatasource:(NSString *)fileID action:(NSInteger)action
- {
- // test
- if (appDelegate.activeAccount.length == 0 || self.view.window == nil) {
- return;
- }
-
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- collectionViewReloadDataInProgress = YES;
- CCSectionDataSourceMetadata *sectionDataSourceTemp = [self queryDatasourceWithReloadData:NO];
- dispatch_async(dispatch_get_main_queue(), ^{
-
- if (isEditMode)
- [self setUINavigationBarSelected];
- else
- [self setUINavigationBarDefault];
-
- sectionDataSource = sectionDataSourceTemp;
- [self.collectionView reloadData];
-
- [self.collectionView performBatchUpdates:^{} completion:^(BOOL finished) {
- collectionViewReloadDataInProgress = NO;
- }];
- });
- });
- }
- - (CCSectionDataSourceMetadata *)queryDatasourceWithReloadData:(BOOL)withReloadData
- {
- // test
- if (appDelegate.activeAccount.length == 0) {
- return nil;
- }
-
- CCSectionDataSourceMetadata *sectionDataSourceTemp = [CCSectionDataSourceMetadata new];
-
- NSArray *metadatas = [[NCManageDatabase sharedInstance] getTablePhotosWithAddMetadatasFromUpload:self.addMetadatasFromUpload account:appDelegate.activeAccount];
- sectionDataSourceTemp = [CCSectionMetadata creataDataSourseSectionMetadata:metadatas listProgressMetadata:nil groupByField:@"date" filterFileID:appDelegate.filterFileID filterTypeFileImage:filterTypeFileImage filterTypeFileVideo:filterTypeFileVideo activeAccount:appDelegate.activeAccount];
-
- if (withReloadData) {
- sectionDataSource = sectionDataSourceTemp;
- [self.collectionView reloadData];
- }
-
- return sectionDataSourceTemp;
- }
- - (void)editingModeYES
- {
- [self.collectionView setAllowsMultipleSelection:true];
- isEditMode = true;
- [selectedMetadatas removeAllObjects];
- [self setUINavigationBarSelected];
- collectionViewReloadDataInProgress = YES;
- [self.collectionView reloadData];
- [self.collectionView performBatchUpdates:^{} completion:^(BOOL finished) {
- collectionViewReloadDataInProgress = NO;
- }];
- }
- - (void)editingModeNO
- {
- [self.collectionView setAllowsMultipleSelection:false];
- isEditMode = false;
- [selectedMetadatas removeAllObjects];
- [self setUINavigationBarDefault];
-
- collectionViewReloadDataInProgress = YES;
- [self.collectionView reloadData];
- [self.collectionView performBatchUpdates:^{} completion:^(BOOL finished) {
- collectionViewReloadDataInProgress = NO;
- }];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ==== Collection ====
- #pragma --------------------------------------------------------------------------------------------
- - (BOOL)indexPathIsValid:(NSIndexPath *)indexPath
- {
- return indexPath.section < [self numberOfSectionsInCollectionView:self.collectionView] && indexPath.row < [self collectionView:self.collectionView numberOfItemsInSection:indexPath.section];
- }
- - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
- {
- return [[sectionDataSource.sectionArrayRow allKeys] count];
- }
- - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
- {
- return [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]] count];
- }
- - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
- {
- UIInterfaceOrientation orientationOnLunch = [[UIApplication sharedApplication] statusBarOrientation];
-
- if (orientationOnLunch == UIInterfaceOrientationPortrait)
- return CGSizeMake(collectionView.frame.size.width / 5.1f, collectionView.frame.size.width / 5.1f);
- else
- return CGSizeMake(collectionView.frame.size.width / 7.1f, collectionView.frame.size.width / 7.1f);
- }
- -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section
- {
- if ([sectionDataSource.sections count] - 1 == section)
- return CGSizeMake(collectionView.frame.size.width, 50);
-
- return CGSizeZero;
- }
- - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
- {
- if (kind == UICollectionElementKindSectionHeader) {
-
- UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"header" forIndexPath:indexPath];
-
- //headerView.backgroundColor = COLOR_GROUPBY_BAR_NO_BLUR;
-
- [self getGeoLocationForSection:indexPath.section];
-
- UILabel *titleLabel = (UILabel *)[headerView viewWithTag:100];
- titleLabel.textColor = [UIColor blackColor];
- if (sectionDataSource.sections.count > indexPath.section)
- titleLabel.text = [CCUtility getTitleSectionDate:[sectionDataSource.sections objectAtIndex:indexPath.section]];
- return headerView;
- }
-
- if (kind == UICollectionElementKindSectionFooter) {
-
- UICollectionReusableView *footerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"footer" forIndexPath:indexPath];
-
- UILabel *titleLabel = (UILabel *)[footerView viewWithTag:100];
- titleLabel.textColor = [UIColor grayColor];
- titleLabel.text = [NSString stringWithFormat:@"%lu %@, %lu %@", (long)sectionDataSource.image, NSLocalizedString(@"photo", nil), (long)sectionDataSource.video, NSLocalizedString(@"_video_", nil)];
-
- return footerView;
- }
-
- return nil;
- }
- - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
- {
- UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
- UIImageView *imageView = (UIImageView *)[cell viewWithTag:100];
- UIVisualEffectView *effect = [cell viewWithTag:200];
- UIImageView *checkedOverlay = [cell viewWithTag:300];
- checkedOverlay.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"checkedYes"] multiplier:2 color:[NCBrandColor sharedInstance].brand];
-
- UIImageView *videoOverlay = [cell viewWithTag:400];
- videoOverlay.image = [UIImage imageNamed:@"VideoOverlay"];
- NSArray *metadatasForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]];
-
- if ([metadatasForKey count] > indexPath.row) {
-
- NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
- tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
-
- // Image
- if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]]) {
-
- // insert Image
- imageView.image = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
-
- } else {
-
- imageView.image = [UIImage imageNamed:@"file_photo"];
- if (metadata.hasPreview == 1 && ![CCUtility fileProviderStorageIconExists:metadata.fileID fileNameView:metadata.fileNameView]) {
- [self downloadThumbnail:metadata indexPath:indexPath];
- }
- }
-
- // Cheched Overlay
- if (cell.selected) {
- checkedOverlay.hidden = NO;
- effect.hidden = NO;
- effect.alpha = 0.4;
- } else {
- checkedOverlay.hidden = YES;
- effect.hidden = YES;
- }
-
- // Video Overlay
- if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video]) {
- videoOverlay.hidden = NO;
- } else {
- videoOverlay.hidden = YES;
- }
- }
-
- return cell;
- }
- - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
- {
- NSArray *metadatasForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]];
-
- if ([metadatasForKey count] > indexPath.row) {
-
- NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
- self.metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
-
- if (isEditMode) {
-
- [self cellSelect:YES indexPath:indexPath metadata:self.metadata];
-
- } else {
-
- if ([self shouldPerformSegue])
- [self performSegueWithIdentifier:@"segueDetail" sender:self];
- }
- }
- }
- - (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath
- {
- // test
- if (isEditMode == NO)
- return;
-
- NSArray *metadatasForKey = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]];
-
- if ([metadatasForKey count] > indexPath.row) {
-
- NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
- self.metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
-
- [self cellSelect:NO indexPath:indexPath metadata:self.metadata];
- }
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Navigation ====
- #pragma --------------------------------------------------------------------------------------------
- - (BOOL)shouldPerformSegue
- {
- if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground)
- return NO;
-
- // Not in first plain ? exit
- if (self.view.window == NO)
- return NO;
-
- // Collapsed but in first plain in detail exit
- if (self.splitViewController.isCollapsed)
- if (self.detailViewController.isViewLoaded && self.detailViewController.view.window)
- return NO;
-
- // check if metadata is invalidated
- if ([[NCManageDatabase sharedInstance] isTableInvalidated:self.metadata]) {
- return NO;
- }
-
- // ok perform segue
- return YES;
- }
- -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
- {
- id controller = segue.destinationViewController;
-
- if ([controller isKindOfClass:[UINavigationController class]]) {
- UINavigationController *navigationController = controller;
- self.detailViewController = (CCDetail *)navigationController.topViewController;
- } else {
- self.detailViewController = segue.destinationViewController;
- }
-
- NSMutableArray *photoDataSource = [NSMutableArray new];
-
- for (NSString *fileID in sectionDataSource.allFileID) {
- tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:fileID];
- if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
- [photoDataSource addObject:metadata];
- }
-
- self.detailViewController.photoDataSource = photoDataSource;
- self.detailViewController.metadataDetail = self.metadata;
- self.detailViewController.dateFilterQuery = self.metadata.date;
-
- [self.detailViewController setTitle:self.metadata.fileName];
- }
- @end
|