Browse Source

Update directory

Marino Faggiana 7 năm trước cách đây
mục cha
commit
18c5dc6746
2 tập tin đã thay đổi với 1355 bổ sung0 xóa
  1. 55 0
      iOSClient/Photos/CCPhotos.h
  2. 1300 0
      iOSClient/Photos/CCPhotos.m

+ 55 - 0
iOSClient/Photos/CCPhotos.h

@@ -0,0 +1,55 @@
+//
+//  CCPhotos.h
+//  Crypto Cloud Technology Nextcloud
+//
+//  Created by Marino Faggiana on 29/07/15.
+//  Copyright (c) 2017 TWS. All rights reserved.
+//
+//  Author Marino Faggiana <m.faggiana@twsweb.it>
+//
+//  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 <UIKit/UIKit.h>
+#import <Photos/Photos.h>
+#import <ImageIO/ImageIO.h>
+
+#import "UIScrollView+EmptyDataSet.h"
+#import "OCErrorMsg.h"
+#import "TWMessageBarManager.h"
+#import "UINavigationController+CCProgress.h"
+#import "CCManageLocation.h"
+#import "CCDetail.h"
+#import "CCUtility.h"
+#import "CCManageAsset.h"
+#import "CCManageAutoUpload.h"
+#import "CCSection.h"
+#import "CCHud.h"
+#import "OCNetworking.h"
+
+@class tableMetadata;
+
+@interface CCPhotos: UICollectionViewController <UICollectionViewDataSource, UICollectionViewDelegate, UIActionSheetDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate, CCManageLocationDelegate, PHPhotoLibraryChangeObserver, OCNetworkingDelegate>
+
+@property (nonatomic, weak) CCDetail *detailViewController;
+@property (nonatomic, strong) PHFetchResult *assetsFetchResult;
+
+- (BOOL)checkIfLocationIsEnabled;
+
+- (void)downloadFileSuccess:(tableMetadata *)metadata;
+- (void)downloadFileFailure:(NSInteger)errorCode;
+
+- (void)reloadDatasourceForced;
+
+@end

+ 1300 - 0
iOSClient/Photos/CCPhotos.m

@@ -0,0 +1,1300 @@
+//
+//  CCPhotos.m
+//  Crypto Cloud Technology Nextcloud
+//
+//  Created by Marino Faggiana on 29/07/15.
+//  Copyright (c) 2017 TWS. All rights reserved.
+//
+//  Author Marino Faggiana <m.faggiana@twsweb.it>
+//
+//  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 "CCPhotos.h"
+#import "AppDelegate.h"
+#import "NCBridgeSwift.h"
+
+@interface CCPhotos () <CCActionsDeleteDelegate, CCActionsDownloadThumbnailDelegate>
+{
+    tableMetadata *_metadata;
+
+    BOOL _cellEditing;
+    NSMutableArray *_queueMetadatas;
+    NSMutableArray *_selectedMetadatas;
+    NSUInteger _numSelectedMetadatas;
+    
+    CCSectionDataSourceMetadata *_sectionDataSource;
+    
+    CCHud *_hud;
+}
+@end
+
+@implementation CCPhotos
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark ===== Init =====
+#pragma --------------------------------------------------------------------------------------------
+
+-  (id)initWithCoder:(NSCoder *)aDecoder
+{
+    if (self = [super initWithCoder:aDecoder])  {
+        
+        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(initStateAutoUpload:) name:@"initStateAutoUpload" object:nil];
+        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(setupAutoUploadFull) name:@"setupAutoUploadFull" object:nil];
+        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:@"NotificationProgressTask" object:nil];
+        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:@"changeTheming" object:nil];
+        
+        app.activePhotos = self;
+    }
+    
+    return self;
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark ===== View =====
+#pragma --------------------------------------------------------------------------------------------
+
+- (void)viewDidLoad
+{
+    [super viewDidLoad];
+    
+    _queueMetadatas = [[NSMutableArray alloc] init];
+    _selectedMetadatas = [[NSMutableArray alloc] init];
+    _hud = [[CCHud alloc] initWithView:[[[UIApplication sharedApplication] delegate] window]];
+    
+    // empty Data Source
+    self.collectionView.emptyDataSetDelegate = self;
+    self.collectionView.emptyDataSetSource = self;
+    
+    [self reloadDatasource];
+}
+
+// Apparirà
+- (void)viewWillAppear:(BOOL)animated
+{
+    [super viewWillAppear:animated];
+    
+    // Color
+    [app aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
+    [app aspectTabBar:self.tabBarController.tabBar hidden:NO];
+    
+    // Plus Button
+    [app plusButtonVisibile:true];
+}
+
+// E' arrivato
+- (void)viewDidAppear:(BOOL)animated
+{
+    [super viewDidAppear:animated];
+    
+    [self reloadDatasource];
+}
+
+- (void)changeTheming
+{
+    if (self.isViewLoaded && self.view.window)
+        [app changeTheming:self];
+    
+    [self.collectionView reloadData];
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark ===== Gestione Grafica Window =====
+#pragma --------------------------------------------------------------------------------------------
+
+- (void)setUINavigationBarDefault
+{
+    [app aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
+    
+    // select
+    UIImage *icon = [UIImage imageNamed:@"seleziona"];
+    UIBarButtonItem *buttonSelect = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(collectionSelectYES)];
+    
+    if ([_sectionDataSource.allRecordsDataSource count] > 0) {
+        
+        self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonSelect, nil];
+        
+    } else {
+        
+        self.navigationItem.rightBarButtonItems = nil;
+    }
+    
+    self.navigationItem.leftBarButtonItem = nil;
+    
+    // Title
+    self.navigationItem.title = NSLocalizedString(@"_photo_camera_", nil);
+}
+
+- (void)setUINavigationBarSelected
+{
+    UIImage *icon;
+    
+    icon = [UIImage imageNamed:@"deleteSelectedFiles"];
+    UIBarButtonItem *buttonDelete = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(deleteSelectedFiles)];
+    
+    icon = [UIImage imageNamed:@"openSelectedFiles"];
+    UIBarButtonItem *buttonOpenWith = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(openSelectedFiles)];
+    
+    UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(reloadCollection)];
+    
+    self.navigationItem.leftBarButtonItem = leftButton;
+    self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonDelete, buttonOpenWith, nil];
+    
+    // Title
+    self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)[_selectedMetadatas count], (unsigned long)[_sectionDataSource.allRecordsDataSource count]];
+}
+
+- (void)collectionSelect:(BOOL)edit
+{
+    [self.collectionView setAllowsMultipleSelection:edit];
+    
+    _cellEditing = edit;
+    
+    if (edit)
+        [self setUINavigationBarSelected];
+    else
+        [self setUINavigationBarDefault];
+}
+
+- (void)collectionSelectYES
+{
+    [self collectionSelect:YES];
+}
+
+- (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 ==== Photo Library Change Observer ====
+#pragma --------------------------------------------------------------------------------------------
+
+- (void)photoLibraryDidChange:(PHChange *)changeInfo
+{
+    /*
+     PHFetchResultChangeDetails *collectionChanges = [changeInfo changeDetailsForFetchResult:self.assetsFetchResult];
+     
+     if (collectionChanges) {
+     
+     self.assetsFetchResult = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum | PHAssetCollectionTypeAlbum subtype:PHAssetCollectionSubtypeAny options:nil];
+     
+     dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void) {
+     [self uploadNewAssets];
+     });
+     }
+     */
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark ==== DZNEmptyDataSetSource Methods ====
+#pragma --------------------------------------------------------------------------------------------
+
+- (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
+{
+    return [UIColor whiteColor];
+}
+
+- (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
+{
+    return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"photosNoRecord"] color:[NCBrandColor sharedInstance].brand];
+}
+
+- (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
+{
+    NSString *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];
+}
+
+- (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
+{
+    NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
+    paragraph.lineBreakMode = NSLineBreakByWordWrapping;
+    paragraph.alignment = NSTextAlignmentCenter;
+    NSString *text;
+    tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
+    
+    if (account.autoUpload)
+        text = [NSString stringWithFormat:@"%@", @"\n\n\n\n"];
+    else
+        text = [NSString stringWithFormat:@"\n%@\n", NSLocalizedString(@"_tutorial_autoupload_view_", nil)];
+    
+    NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0], NSForegroundColorAttributeName: [UIColor lightGrayColor], NSParagraphStyleAttributeName: paragraph};
+
+    return [[NSAttributedString alloc] initWithString:text attributes:attributes];
+}
+
+- (UIImage *)buttonImageForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state
+{
+    tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
+            
+    if (!account.autoUpload) {
+    
+        UIImage *buttonImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"button"] color:[NCBrandColor sharedInstance].brand];
+        
+        return [CCUtility drawText:NSLocalizedString(@"_activate_autoupload_", nil) inImage:buttonImage colorText:[UIColor whiteColor]];
+        
+    } else return nil;
+}
+
+- (void)emptyDataSetDidTapButton:(UIScrollView *)scrollView
+{    
+    CCManageAutoUpload *viewController = [[CCManageAutoUpload alloc] initWithNibName:nil bundle:nil];
+    UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
+    
+    [navigationController setModalPresentationStyle:UIModalPresentationFullScreen];
+    [self presentViewController:navigationController animated:YES completion:nil];
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark ===== openSelectedFiles =====
+#pragma--------------------------------------------------------------------------------------------
+
+- (void)openSelectedFiles
+{
+    NSMutableArray *dataToShare = [[NSMutableArray alloc] init];
+    
+    for (tableMetadata *metadata in _selectedMetadatas) {
+    
+        NSString *fileNamePath = [NSTemporaryDirectory() stringByAppendingString:metadata.fileNamePrint];
+        
+        [[NSFileManager defaultManager] linkItemAtPath:[NSString stringWithFormat:@"%@/%@", app.directoryUser, metadata.fileID] toPath:fileNamePath error:nil];
+        
+        if ([[NSFileManager defaultManager] fileExistsAtPath:fileNamePath]) {
+            
+            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;
+                
+                if (completed) {
+                    
+                    [dataToShare enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
+                        
+                        if ([obj isKindOfClass:[UIImage class]])
+                            [[NCManageDatabase sharedInstance] setAccountAutoUploadDateAssetType:PHAssetMediaTypeImage assetDate:[NSDate date]];
+                        
+                        if ([obj isKindOfClass:[NSURL class]])
+                            [[NCManageDatabase sharedInstance] setAccountAutoUploadDateAssetType:PHAssetMediaTypeVideo assetDate:[NSDate date]];
+                    }];
+                    
+                    [self performSelector:@selector(reloadCollection) withObject:nil];
+                }
+            }];
+        }];
+    }
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark ===== Download =====
+#pragma--------------------------------------------------------------------------------------------
+
+- (void)downloadFileFailure:(NSInteger)errorCode
+{
+    [app messageNotification:@"_download_selected_files_" description:@"_error_download_photobrowser_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
+}
+
+- (void)downloadFileSuccess:(tableMetadata *)metadata
+{
+    NSIndexPath *indexPath;
+    BOOL existsIcon = NO;
+    
+    if (metadata.fileID) {
+        existsIcon = [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID]];
+        indexPath = [_sectionDataSource.fileIDIndexPath objectForKey:metadata.fileID];
+    }
+    
+    if (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:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID]];
+            effect.hidden = YES;
+            checked.hidden = YES;
+            
+            [app.icoImagesCache setObject:imageView.image forKey:metadata.fileID];
+        }
+    }
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark ===== Delete =====
+#pragma--------------------------------------------------------------------------------------------
+
+- (void)deleteFileOrFolderFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
+{
+    [self deleteFileOrFolderSuccess:metadataNet];
+}
+
+- (void)deleteFileOrFolderSuccess:(CCMetadataNet *)metadataNet
+{
+    [_queueMetadatas removeObject:metadataNet.selector];
+    
+    if ([_queueMetadatas count] == 0) {
+        
+        [_hud hideHud];
+
+        if ([_selectedMetadatas count] > 0) {
+            
+            [_selectedMetadatas removeObjectAtIndex:0];
+            
+            if ([_selectedMetadatas count] > 0) {
+                
+                [self deleteFileOrFolder:[_selectedMetadatas objectAtIndex:0] numFile:[_selectedMetadatas count] ofFile:_numSelectedMetadatas];
+                
+            } else {
+                
+                [self reloadDatasource];
+            }
+            
+        } else {
+            
+            [self reloadDatasource];
+        }
+    }
+}
+
+- (void)deleteFileOrFolder:(tableMetadata *)metadata numFile:(NSInteger)numFile ofFile:(NSInteger)ofFile
+{
+    
+    if (metadata.cryptated) {
+        [_queueMetadatas addObject:selectorDeleteCrypto];
+        [_queueMetadatas addObject:selectorDeletePlist];
+    } else {
+        [_queueMetadatas addObject:selectorDelete];
+    }
+    
+    [[CCActions sharedInstance] deleteFileOrFolder:metadata delegate:self];
+
+    [_hud visibleHudTitle:[NSString stringWithFormat:NSLocalizedString(@"_delete_file_n_", nil), ofFile - numFile + 1, ofFile] mode:MBProgressHUDModeIndeterminate color:nil];
+}
+
+- (void)deleteSelectedFiles
+{
+    [_queueMetadatas removeAllObjects];
+    
+    _numSelectedMetadatas = [_selectedMetadatas count];
+    
+    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 deleteFileOrFolder:[_selectedMetadatas objectAtIndex:0] numFile:[_selectedMetadatas count] ofFile:_numSelectedMetadatas];
+                                                       }]];
+    
+    [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
+                                                         style:UIAlertActionStyleCancel
+                                                       handler:^(UIAlertAction *action) {
+                                                           [alertController dismissViewControllerAnimated:YES completion:nil];
+                                                       }]];
+    
+    alertController.popoverPresentationController.barButtonItem = self.navigationItem.rightBarButtonItems.firstObject;
+    
+    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
+        [alertController.view layoutIfNeeded];
+    
+    [self presentViewController:alertController animated:YES completion:NULL];
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark ==== Download Thumbnail Delegate ====
+#pragma --------------------------------------------------------------------------------------------
+
+- (void)downloadThumbnailSuccess:(CCMetadataNet *)metadataNet
+{
+    NSIndexPath *indexPath = [_sectionDataSource.fileIDIndexPath objectForKey:metadataNet.fileID];
+    
+    if (indexPath && [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadataNet.fileID]])
+        [self.collectionView reloadItemsAtIndexPaths:@[indexPath]];
+}
+
+- (void)triggerProgressTask:(NSNotification *)notification
+{
+    NSDictionary *dict = notification.userInfo;
+    float progress = [[dict valueForKey:@"progress"] floatValue];
+    
+    if (progress == 0)
+        [self.navigationController cancelCCProgress];
+    else
+        [self.navigationController setCCProgressPercentage:progress*100 andTintColor:[NCBrandColor sharedInstance].navigationBarProgress];
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark ==== Collection ====
+#pragma --------------------------------------------------------------------------------------------
+
+- (void)reloadDatasourceForced
+{
+    [CCSectionMetadata removeAllObjectsSectionDataSource:_sectionDataSource];
+    [self reloadDatasource];
+}
+
+- (void)reloadDatasource
+{
+    // test
+    if (app.activeAccount.length == 0)
+        return;
+    
+    NSString *autoUploadPath = [[NCManageDatabase sharedInstance] getAccountAutoUploadPath:app.activeUrl];
+    
+    if (_sectionDataSource) {
+        
+        dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
+            
+            NSArray *metadatas = [[NCManageDatabase sharedInstance] getTableMetadatasPhotosWithServerUrl:autoUploadPath];
+            
+            _sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:metadatas listProgressMetadata:nil groupByField:@"date" replaceDateToExifDate:YES activeAccount:app.activeAccount];
+            
+            dispatch_async(dispatch_get_main_queue(), ^{
+                [self reloadCollection];
+            });
+        });
+
+    } else {
+        
+        NSArray *results = [[NCManageDatabase sharedInstance] getTableMetadatasPhotosWithServerUrl:autoUploadPath];
+        
+        _sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:results listProgressMetadata:nil groupByField:@"date" replaceDateToExifDate:YES activeAccount:app.activeAccount];
+        [self reloadCollection];
+    }
+}
+
+- (void)reloadCollection
+{
+    [self.collectionView reloadData];
+        
+    [_selectedMetadatas removeAllObjects];
+    [self collectionSelect:NO];
+}
+
+- (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.3f, collectionView.frame.size.width / 5.3f);
+    else
+        return CGSizeMake(collectionView.frame.size.width / 7.3f, collectionView.frame.size.width / 7.3f);
+}
+
+-(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];
+        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 *checked = [cell viewWithTag:300];
+    checked.image = [UIImage imageNamed:@"checked"];
+
+    NSArray *metadatasForKey = [_sectionDataSource.sectionArrayRow objectForKey:[_sectionDataSource.sections objectAtIndex:indexPath.section]];
+    NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
+    tableMetadata *metadata = [_sectionDataSource.allRecordsDataSource objectForKey:fileID];
+    
+    // Image
+    if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID]]) {
+        
+        imageView.image = [app.icoImagesCache objectForKey:metadata.fileID];
+        
+        if (imageView.image == nil) {
+            
+                // insert Image
+                UIImage *image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID]];
+                imageView.image = image;
+                [app.icoImagesCache setObject:image forKey:metadata.fileID];
+        }
+        
+    } else {
+        
+        // Thumbnail not present
+        imageView.image = [UIImage imageNamed:@"file_photo"];
+        
+        if (metadata.thumbnailExists)
+            [[CCActions sharedInstance] downloadTumbnail:metadata delegate:self];
+    }
+    
+    // Cheched
+    if (cell.selected) {
+        checked.hidden = NO;
+        effect.hidden = NO;
+        effect.alpha = 0.4;
+    } else {
+        checked.hidden = YES;
+        effect.hidden = YES;
+    }
+    
+    return cell;
+}
+
+- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
+{
+    NSArray *metadatasForKey = [_sectionDataSource.sectionArrayRow objectForKey:[_sectionDataSource.sections objectAtIndex:indexPath.section]];
+    NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
+    _metadata = [_sectionDataSource.allRecordsDataSource objectForKey:fileID];
+    
+    //UICollectionViewCell *cell =[collectionView cellForItemAtIndexPath:indexPath];
+    
+    if (_cellEditing) {
+        
+        [self cellSelect:YES indexPath:indexPath metadata:_metadata];
+        
+    } else {
+        
+        if ([self shouldPerformSegue])
+            [self performSegueWithIdentifier:@"segueDetail" sender:self];
+    }    
+}
+
+- (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath
+{
+    if (_cellEditing == NO)
+        return;
+ 
+    //UICollectionViewCell *cell =[collectionView cellForItemAtIndexPath:indexPath];
+    
+    NSArray *metadatasForKey = [_sectionDataSource.sectionArrayRow objectForKey:[_sectionDataSource.sections objectAtIndex:indexPath.section]];
+    NSString *fileID = [metadatasForKey objectAtIndex:indexPath.row];
+    _metadata = [_sectionDataSource.allRecordsDataSource objectForKey:fileID];
+    
+    [self cellSelect:NO indexPath:indexPath metadata:_metadata];
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark ===== Navigation ====
+#pragma --------------------------------------------------------------------------------------------
+
+- (BOOL)shouldPerformSegue
+{
+    // Test
+    
+    // Background ? exit
+    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;
+    
+    // Video running exit
+    if (self.detailViewController.photoBrowser.currentVideoPlayerViewController.isViewLoaded && self.detailViewController.photoBrowser.currentVideoPlayerViewController.view.window)
+        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 *allRecordsDataSourceImagesVideos = [[NSMutableArray alloc] init];
+    for (NSString *fileID in _sectionDataSource.allEtag) {
+        tableMetadata *metadata = [_sectionDataSource.allRecordsDataSource objectForKey:fileID];
+        if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])
+            [allRecordsDataSourceImagesVideos addObject:metadata];
+    }
+    
+    self.detailViewController.dataSourceImagesVideos = allRecordsDataSourceImagesVideos;
+    self.detailViewController.metadataDetail = _metadata;
+    self.detailViewController.dateFilterQuery = _metadata.date;
+    
+    [self.detailViewController setTitle:_metadata.fileNamePrint];
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark === initStateAutoUpload ===
+#pragma --------------------------------------------------------------------------------------------
+
+- (void)initStateAutoUpload:(NSNotification *)notification
+{
+    int afterDelay = 0;
+    
+    if (notification.object)
+        afterDelay = [[notification.object objectForKey:@"afterDelay"] intValue];
+    
+    [self performSelector:@selector(initStateAutoUpload) withObject:nil afterDelay:afterDelay];
+}
+
+- (void)initStateAutoUpload
+{
+    tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
+
+    if (tableAccount.autoUpload) {
+        
+        [self setupAutoUpload];
+        
+        if (tableAccount.autoUploadBackground)
+            [self checkIfLocationIsEnabled];
+        
+    } else {
+        
+        [[NCManageDatabase sharedInstance] setAccountAutoUploadFiled:@"autoUpload" state:NO];
+                        
+        [PHPhotoLibrary.sharedPhotoLibrary unregisterChangeObserver:self];
+        
+        [[CCManageLocation sharedInstance] stopSignificantChangeUpdates];
+    }
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark === Camera Upload & Full ===
+#pragma --------------------------------------------------------------------------------------------
+
+- (void)setupAutoUpload
+{
+    if ([ALAssetsLibrary authorizationStatus] == ALAuthorizationStatusAuthorized) {
+        
+        self.assetsFetchResult = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum | PHAssetCollectionTypeAlbum subtype:PHAssetCollectionSubtypeAny options:nil];
+        
+        [PHPhotoLibrary.sharedPhotoLibrary registerChangeObserver:self];
+        
+        [self uploadNewAssets];
+        
+    } else {
+        
+        [[NCManageDatabase sharedInstance] setAccountAutoUploadFiled:@"autoUpload" state:NO];
+                
+        [PHPhotoLibrary.sharedPhotoLibrary unregisterChangeObserver:self];
+        
+        [[CCManageLocation sharedInstance] stopSignificantChangeUpdates];
+        
+        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_access_photo_not_enabled_", nil)
+                                                        message:NSLocalizedString(@"_access_photo_not_enabled_msg_", nil)
+                                                       delegate:nil
+                                              cancelButtonTitle:NSLocalizedString(@"_ok_", nil)
+                                              otherButtonTitles:nil];
+        [alert show];
+    }
+}
+
+- (void)setupAutoUploadFull
+{
+    if ([ALAssetsLibrary authorizationStatus] == ALAuthorizationStatusAuthorized) {
+        
+        self.assetsFetchResult = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum | PHAssetCollectionTypeAlbum subtype:PHAssetCollectionSubtypeAny options:nil];
+        
+        [PHPhotoLibrary.sharedPhotoLibrary registerChangeObserver:self];
+        
+        [self uploadFullAssets];
+        
+    } else {
+        
+        [[NCManageDatabase sharedInstance] setAccountAutoUploadFiled:@"autoUpload" state:NO];
+        
+        [PHPhotoLibrary.sharedPhotoLibrary unregisterChangeObserver:self];
+        
+        [[CCManageLocation sharedInstance] stopSignificantChangeUpdates];
+        
+        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_access_photo_not_enabled_", nil)
+                                                        message:NSLocalizedString(@"_access_photo_not_enabled_msg_", nil)
+                                                       delegate:nil
+                                              cancelButtonTitle:NSLocalizedString(@"_ok_", nil)
+                                              otherButtonTitles:nil];
+        [alert show];
+    }
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark === Location ===
+#pragma --------------------------------------------------------------------------------------------
+
+- (BOOL)checkIfLocationIsEnabled
+{
+    [CCManageLocation sharedInstance].delegate = self;
+    
+    if ([CLLocationManager locationServicesEnabled]) {
+        
+        NSLog(@"[LOG] checkIfLocationIsEnabled : authorizationStatus: %d", [CLLocationManager authorizationStatus]);
+        
+        if ([CLLocationManager authorizationStatus] != kCLAuthorizationStatusAuthorizedAlways) {
+            
+            if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusNotDetermined ) {
+                
+                NSLog(@"[LOG] checkIfLocationIsEnabled : Location services not determined");
+                [[CCManageLocation sharedInstance] startSignificantChangeUpdates];
+                
+            } else {
+                
+                if ([ALAssetsLibrary authorizationStatus] == ALAuthorizationStatusAuthorized) {
+                    
+                    [[NCManageDatabase sharedInstance] setAccountAutoUploadFiled:@"autoUploadBackground" state:NO];
+                    
+                    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_location_not_enabled_", nil)
+                                                                    message:NSLocalizedString(@"_location_not_enabled_msg_", nil)
+                                                                   delegate:nil
+                                                          cancelButtonTitle:NSLocalizedString(@"_ok_", nil)
+                                                          otherButtonTitles:nil];
+                    [alert show];
+                    
+                } else {
+                    
+                    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_access_photo_not_enabled_", nil)
+                                                                    message:NSLocalizedString(@"_access_photo_not_enabled_msg_", nil)
+                                                                   delegate:nil
+                                                          cancelButtonTitle:NSLocalizedString(@"_ok_", nil)
+                                                          otherButtonTitles:nil];
+                    [alert show];
+                }
+            }
+            
+        } else {
+            
+            if ([ALAssetsLibrary authorizationStatus] == ALAuthorizationStatusAuthorized) {
+                
+                [[NCManageDatabase sharedInstance] setAccountAutoUploadFiled:@"autoUploadBackground" state:YES];
+                [[CCManageLocation sharedInstance] startSignificantChangeUpdates];
+                
+            } else {
+                
+                [[NCManageDatabase sharedInstance] setAccountAutoUploadFiled:@"autoUploadBackground" state:NO];
+                [[CCManageLocation sharedInstance] stopSignificantChangeUpdates];
+                
+                UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_access_photo_not_enabled_", nil)
+                                                                 message:NSLocalizedString(@"_access_photo_not_enabled_msg_", nil)
+                                                                delegate:nil
+                                                       cancelButtonTitle:NSLocalizedString(@"_ok_", nil)
+                                                       otherButtonTitles:nil];
+                [alert show];
+            }
+        }
+        
+    } else {
+        
+        [[NCManageDatabase sharedInstance] setAccountAutoUploadFiled:@"autoUploadBackground" state:NO];
+        [[CCManageLocation sharedInstance] stopSignificantChangeUpdates];
+        
+        if ([ALAssetsLibrary authorizationStatus] == ALAuthorizationStatusAuthorized) {
+            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_location_not_enabled_", nil)
+                                                            message:NSLocalizedString(@"_location_not_enabled_msg_", nil)
+                                                           delegate:nil
+                                                  cancelButtonTitle:NSLocalizedString(@"_ok_", nil)
+                                                  otherButtonTitles:nil];
+            [alert show];
+            
+        } else {
+            
+            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_access_photo_location_not_enabled_", nil)
+                                                            message:NSLocalizedString(@"_access_photo_location_not_enabled_msg_", nil)
+                                                           delegate:nil
+                                                  cancelButtonTitle:NSLocalizedString(@"_ok_", nil)
+                                                  otherButtonTitles:nil];
+            [alert show];
+        }
+    }
+    
+    tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
+    return tableAccount.autoUploadBackground;
+}
+
+
+- (void)statusAuthorizationLocationChanged
+{
+    if ([CLLocationManager authorizationStatus] != kCLAuthorizationStatusNotDetermined){
+        
+        if (![CCManageLocation sharedInstance].firstChangeAuthorizationDone) {
+            
+            ALAssetsLibrary *assetLibrary = [CCUtility defaultAssetsLibrary];
+            
+            [assetLibrary enumerateGroupsWithTypes:ALAssetsGroupSavedPhotos
+                                        usingBlock:^(ALAssetsGroup *group, BOOL *stop) {
+                                            
+                                        } failureBlock:^(NSError *error) {
+                                            
+                                        }];
+        }
+        
+        if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorizedAlways) {
+            
+            if ([ALAssetsLibrary authorizationStatus] == ALAuthorizationStatusAuthorized) {
+                
+                if ([CCManageLocation sharedInstance].firstChangeAuthorizationDone) {
+                    
+                    [[NCManageDatabase sharedInstance] setAccountAutoUploadFiled:@"autoUploadBackground" state:NO];
+                    [[CCManageLocation sharedInstance] stopSignificantChangeUpdates];
+                }
+                
+            } else {
+                
+                UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_access_photo_not_enabled_", nil)
+                                                                 message:NSLocalizedString(@"_access_photo_not_enabled_msg_", nil)
+                                                                delegate:nil
+                                                       cancelButtonTitle:NSLocalizedString(@"_ok_", nil)
+                                                       otherButtonTitles:nil];
+                [alert show];
+            }
+            
+        } else if ([CLLocationManager authorizationStatus] != kCLAuthorizationStatusNotDetermined){
+            
+            tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
+            
+            if (tableAccount.autoUploadBackground) {
+                
+                [[NCManageDatabase sharedInstance] setAccountAutoUploadFiled:@"autoUploadBackground" state:NO];
+                [[CCManageLocation sharedInstance] stopSignificantChangeUpdates];
+                
+                if ([ALAssetsLibrary authorizationStatus] == ALAuthorizationStatusAuthorized) {
+                    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_location_not_enabled_", nil)
+                                                                    message:NSLocalizedString(@"_location_not_enabled_msg_", nil)
+                                                                   delegate:nil
+                                                          cancelButtonTitle:NSLocalizedString(@"_ok_", nil)
+                                                          otherButtonTitles:nil];
+                    [alert show];
+                    
+                } else {
+                    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_access_photo_location_not_enabled_", nil)
+                                                                    message:NSLocalizedString(@"_access_photo_location_not_enabled_msg_", nil)
+                                                                   delegate:nil
+                                                          cancelButtonTitle:NSLocalizedString(@"_ok_", nil)
+                                                          otherButtonTitles:nil];
+                    [alert show];
+                }
+            }
+        }
+        
+        if (![CCManageLocation sharedInstance].firstChangeAuthorizationDone) {
+            
+            [CCManageLocation sharedInstance].firstChangeAuthorizationDone = YES;
+        }
+    }
+}
+
+- (void)changedLocation
+{
+    // Only in background
+    tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
+    
+    if (tableAccount.autoUpload && tableAccount.autoUploadBackground && [[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) {
+    
+        
+        if ([ALAssetsLibrary authorizationStatus] == ALAuthorizationStatusAuthorized) {
+            
+            //check location
+            if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorizedAlways) {
+                
+                NSLog(@"[LOG] Changed Location call uploadNewAssets");
+
+                [self uploadNewAssets];
+            }
+            
+        } else {
+            
+            [[NCManageDatabase sharedInstance] setAccountAutoUploadFiled:@"autoUpload" state:NO];
+            [[NCManageDatabase sharedInstance] setAccountAutoUploadFiled:@"autoUploadBackground" state:NO];
+            
+            [[CCManageLocation sharedInstance] stopSignificantChangeUpdates];
+            [PHPhotoLibrary.sharedPhotoLibrary unregisterChangeObserver:self];
+        }
+    }
+}
+
+#pragma --------------------------------------------------------------------------------------------
+#pragma mark ===== Upload Assets : NEW & FULL ====
+#pragma --------------------------------------------------------------------------------------------
+
+- (void)uploadNewAssets
+{
+    [self uploadAssetsNewAndFull:NO];
+}
+
+- (void)uploadFullAssets
+{
+    [self uploadAssetsNewAndFull:YES];
+}
+
+- (void)uploadAssetsNewAndFull:(BOOL)assetsFull
+{
+    CCManageAsset *manageAsset = [[CCManageAsset alloc] init];
+    NSMutableArray *newItemsToUpload;
+    tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
+    
+    // Check Asset : NEW or FULL
+    if (assetsFull) {
+        
+        newItemsToUpload = [manageAsset getCameraRollNewItemsWithDatePhoto:[NSDate distantPast] dateVideo:[NSDate distantPast]];
+        
+    } else {
+        
+        NSDate *databaseDatePhoto = tableAccount.autoUploadDatePhoto;
+        NSDate *databaseDateVideo = tableAccount.autoUploadDateVideo;
+        
+        newItemsToUpload = [manageAsset getCameraRollNewItemsWithDatePhoto:databaseDatePhoto dateVideo:databaseDateVideo];
+    }
+    
+    // News Assets ? if no verify if blocked Table Automatic Upload -> Autostart
+    if ([newItemsToUpload count] == 0)
+        return;
+    
+    // Disable idle timer
+    [[UIApplication sharedApplication] setIdleTimerDisabled: YES];
+    
+    if (assetsFull) {
+        
+        if (!_hud)
+            _hud = [[CCHud alloc] initWithView:[[[UIApplication sharedApplication] delegate] window]];
+        
+        [_hud visibleHudTitle:NSLocalizedString(@"_create_full_upload_", nil) mode:MBProgressHUDModeIndeterminate color:nil];
+    }
+
+    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.01 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
+        
+        if (assetsFull)
+            [self performSelectorOnMainThread:@selector(uploadFullAssetsToNetwork:) withObject:newItemsToUpload waitUntilDone:NO];
+        else
+            [self performSelectorOnMainThread:@selector(uploadNewAssetsToNetwork:) withObject:newItemsToUpload waitUntilDone:NO];
+    });
+}
+
+- (void)uploadNewAssetsToNetwork:(NSMutableArray *)newItemsToUpload
+{
+    [self uploadAssetsToNetwork:newItemsToUpload assetsFull:NO];
+}
+
+- (void)uploadFullAssetsToNetwork:(NSMutableArray *)newItemsToUpload
+{
+    [self uploadAssetsToNetwork:newItemsToUpload assetsFull:YES];
+}
+
+- (void)uploadAssetsToNetwork:(NSMutableArray *)newItemsToUpload assetsFull:(BOOL)assetsFull
+{
+    NSMutableArray *newItemsPHAssetToUpload = [[NSMutableArray alloc] init];
+    tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
+    
+    NSString *autoUploadPath = [[NCManageDatabase sharedInstance] getAccountAutoUploadPath:app.activeUrl];
+    BOOL useSubFolder = tableAccount.autoUploadCreateSubfolder;
+    
+    // Conversion from ALAsset -to-> PHAsset
+    for (ALAsset *asset in newItemsToUpload) {
+        
+        NSURL *url = [asset valueForProperty:@"ALAssetPropertyAssetURL"];
+        PHFetchResult *fetchResult = [PHAsset fetchAssetsWithALAssetURLs:@[url] options:nil];
+        PHAsset *asset = [fetchResult firstObject];
+        [newItemsPHAssetToUpload addObject:asset];
+        NSLog(@"Convert url %@", url);
+    }
+    
+    // Create the folder for Photos & if request the subfolders
+    if(![app createFolderSubFolderAutomaticUploadFolderPhotos:autoUploadPath useSubFolder:useSubFolder assets:newItemsPHAssetToUpload selector:selectorUploadAutomaticAll]) {
+            
+        // end loading
+        [_hud hideHud];
+        
+        // Enable idle timer
+        [[UIApplication sharedApplication] setIdleTimerDisabled:NO];
+        
+        return;
+    }
+    
+    for (PHAsset *asset in newItemsPHAssetToUpload) {
+        
+        NSString *serverUrl;
+        NSDate *assetDate = asset.creationDate;
+        PHAssetMediaType assetMediaType = asset.mediaType;
+        NSString *session;
+        NSString *fileName = [CCUtility createFileNameFromAsset:asset key:nil];
+        
+        // Select type of session
+        
+        if (assetMediaType == PHAssetMediaTypeImage && tableAccount.autoUploadWWAnPhoto == NO) session = k_upload_session;
+        if (assetMediaType == PHAssetMediaTypeVideo && tableAccount.autoUploadWWAnVideo == NO) session = k_upload_session;
+        if (assetMediaType == PHAssetMediaTypeImage && tableAccount.autoUploadWWAnPhoto) session = k_upload_session_wwan;
+        if (assetMediaType == PHAssetMediaTypeVideo && tableAccount.autoUploadWWAnVideo) session = k_upload_session_wwan;
+        
+        NSDateFormatter *formatter = [NSDateFormatter new];
+        
+        [formatter setDateFormat:@"yyyy"];
+        NSString *yearString = [formatter stringFromDate:assetDate];
+        
+        [formatter setDateFormat:@"MM"];
+        NSString *monthString = [formatter stringFromDate:assetDate];
+
+        if (useSubFolder)
+            serverUrl = [NSString stringWithFormat:@"%@/%@/%@", autoUploadPath, yearString, monthString];
+        else
+            serverUrl = autoUploadPath;
+        
+        CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:app.activeAccount];
+            
+        metadataNet.action = actionUploadAsset;
+        metadataNet.assetLocalIdentifier = asset.localIdentifier;
+        if (assetsFull) {
+            metadataNet.selector = selectorUploadAutomaticAll;
+            metadataNet.selectorPost = selectorUploadRemovePhoto;
+            metadataNet.priority = NSOperationQueuePriorityLow;
+        } else {
+            metadataNet.selector = selectorUploadAutomatic;
+            metadataNet.selectorPost = nil;
+            metadataNet.priority = NSOperationQueuePriorityNormal;
+        }
+        metadataNet.fileName = fileName;
+        metadataNet.serverUrl = serverUrl;
+        metadataNet.session = session;
+        metadataNet.taskStatus = k_taskStatusResume;
+        
+        if (assetsFull)
+            [self addDatabaseAutomaticUpload:metadataNet assetDate:assetDate assetMediaType:assetMediaType];
+        else
+            [self writeAssetToSandbox:metadataNet];
+    }
+    
+    // end loading
+    [_hud hideHud];
+    
+    // Enable idle timer
+    [[UIApplication sharedApplication] setIdleTimerDisabled:NO];
+}
+
+- (void)writeAssetToSandbox:(CCMetadataNet *)metadataNet
+{
+    AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
+    PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadataNet.assetLocalIdentifier] options:nil];
+    
+    PHAsset *asset = result[0];
+    PHAssetMediaType assetMediaType = asset.mediaType;
+    NSDate *assetDate = asset.creationDate;
+    __block NSError *error = nil;
+    
+    // VIDEO
+    if (assetMediaType == PHAssetMediaTypeVideo) {
+        
+        @autoreleasepool {
+            
+            PHVideoRequestOptions *options = [PHVideoRequestOptions new];
+            options.networkAccessAllowed = true;
+            
+            [[PHImageManager defaultManager] requestPlayerItemForVideo:asset options:options resultHandler:^(AVPlayerItem * _Nullable playerItem, NSDictionary * _Nullable info) {
+                
+                if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", appDelegate.directoryUser, metadataNet.fileName]])
+                    [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", appDelegate.directoryUser, metadataNet.fileName] error:nil];
+                
+                AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:playerItem.asset presetName:AVAssetExportPresetHighestQuality];
+                
+                if (exportSession) {
+                    
+                    exportSession.outputURL = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@", appDelegate.directoryUser, metadataNet.fileName]];
+                    exportSession.outputFileType = AVFileTypeQuickTimeMovie;
+                    
+                    [exportSession exportAsynchronouslyWithCompletionHandler:^{
+                        
+                        if (AVAssetExportSessionStatusCompleted == exportSession.status) {
+                            
+                            [self addDatabaseAutomaticUpload:metadataNet assetDate:assetDate assetMediaType:assetMediaType];
+                            
+                        } else if (AVAssetExportSessionStatusFailed == exportSession.status) {
+                                                        
+                            [[NCManageDatabase sharedInstance] addActivityClient:metadataNet.fileName fileID:metadataNet.assetLocalIdentifier action:k_activityDebugActionUpload selector:metadataNet.selector note:[NSString stringWithFormat:@"%@ [%@]",NSLocalizedString(@"_read_file_error_", nil), error.description] type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:appDelegate.activeUrl];
+                            
+                        } else {
+                            NSLog(@"Export Session Status: %ld", (long)exportSession.status);
+                        }
+                    }];
+                    
+                } else {
+                    
+                    [[NCManageDatabase sharedInstance] addActivityClient:metadataNet.fileName fileID:metadataNet.assetLocalIdentifier action:k_activityDebugActionUpload selector:metadataNet.selector note:[NSString stringWithFormat:@"%@ [%@]",NSLocalizedString(@"_read_file_error_", nil), error.description] type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:appDelegate.activeUrl];
+                }
+            }];
+        }
+    }
+    
+    // IMAGE
+    if (assetMediaType == PHAssetMediaTypeImage) {
+        
+        @autoreleasepool {
+            
+            PHImageRequestOptions *options = [PHImageRequestOptions new];
+            options.synchronous = NO;
+            
+            [[PHImageManager defaultManager] requestImageDataForAsset:asset options:options resultHandler:^(NSData *imageData, NSString *dataUTI, UIImageOrientation orientation, NSDictionary *info) {
+                
+                [imageData writeToFile:[NSString stringWithFormat:@"%@/%@", appDelegate.directoryUser, metadataNet.fileName] options:NSDataWritingAtomic error:&error];
+                
+                if (error) {
+                    
+                    NSString *note = [NSString stringWithFormat:@"%@ [%@]",NSLocalizedString(@"_read_file_error_", nil), error.description];
+
+                    [[NCManageDatabase sharedInstance] addActivityClient:metadataNet.fileName fileID:metadataNet.assetLocalIdentifier action:k_activityDebugActionUpload selector:metadataNet.selector note:note type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:app.activeUrl];
+                    
+                    [[NCManageDatabase sharedInstance] deleteAutomaticUploadWithAssetLocalIdentifier:metadataNet.assetLocalIdentifier];
+                    
+                } else {
+                    
+                    [self addDatabaseAutomaticUpload:metadataNet assetDate:assetDate assetMediaType:assetMediaType];
+                }
+            }];
+        }
+    }
+}
+
+- (void)addDatabaseAutomaticUpload:(CCMetadataNet *)metadataNet assetDate:(NSDate *)assetDate assetMediaType:(PHAssetMediaType)assetMediaType
+{    
+    if ([[NCManageDatabase sharedInstance] addAutomaticUploadWithMetadataNet:metadataNet]) {
+        
+        [[NCManageDatabase sharedInstance] addActivityClient:metadataNet.fileName fileID:metadataNet.assetLocalIdentifier action:k_activityDebugActionAutomaticUpload selector:metadataNet.selector note:[NSString stringWithFormat:@"Add Automatic Upload, Asset Data: %@", [NSDateFormatter localizedStringFromDate:assetDate dateStyle:NSDateFormatterMediumStyle timeStyle:NSDateFormatterMediumStyle]] type:k_activityTypeInfo verbose:k_activityVerboseHigh activeUrl:app.activeUrl];
+       
+    } else {
+        
+        [[NCManageDatabase sharedInstance] addActivityClient:metadataNet.fileName fileID:metadataNet.assetLocalIdentifier action:k_activityDebugActionAutomaticUpload selector:metadataNet.selector note:[NSString stringWithFormat:@"Add Automatic Upload [File already present in Table automatic Upload], Asset Data: %@", [NSDateFormatter localizedStringFromDate:assetDate dateStyle:NSDateFormatterMediumStyle timeStyle:NSDateFormatterMediumStyle]] type:k_activityTypeInfo verbose:k_activityVerboseHigh activeUrl:app.activeUrl];
+    }
+    
+    dispatch_async(dispatch_get_main_queue(), ^{
+        
+        // Update Camera Upload data
+        if ([metadataNet.selector isEqualToString:selectorUploadAutomatic])
+            [[NCManageDatabase sharedInstance] setAccountAutoUploadDateAssetType:assetMediaType assetDate:assetDate];
+        
+        // Update icon badge number
+        [app updateApplicationIconBadgeNumber];
+    });
+}
+
+@end