CCLocalStorage.m 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  1. //
  2. // CCLocalStorage.m
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 16/01/17.
  6. // Copyright (c) 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "CCLocalStorage.h"
  24. #import "AppDelegate.h"
  25. #ifdef CUSTOM_BUILD
  26. #import "CustomSwift.h"
  27. #else
  28. #import "Nextcloud-Swift.h"
  29. #endif
  30. @interface CCLocalStorage ()
  31. {
  32. NSArray *dataSource;
  33. }
  34. @end
  35. @implementation CCLocalStorage
  36. - (void)viewDidLoad
  37. {
  38. [super viewDidLoad];
  39. // Custom Cell
  40. [self.tableView registerNib:[UINib nibWithNibName:@"CCLocalStorageCell" bundle:nil] forCellReuseIdentifier:@"Cell"];
  41. // dataSource
  42. dataSource = [NSMutableArray new];
  43. // Metadata
  44. _metadata = [CCMetadata new];
  45. self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 1)];
  46. self.tableView.separatorColor = COLOR_SEPARATOR_TABLE;
  47. self.tableView.emptyDataSetDelegate = self;
  48. self.tableView.emptyDataSetSource = self;
  49. self.tableView.allowsMultipleSelectionDuringEditing = NO;
  50. // ServerUrl
  51. if (!_serverUrl)
  52. _serverUrl = [CCUtility getDirectoryLocal];
  53. // Title
  54. if (_titleViewControl)
  55. self.title = _titleViewControl;
  56. else
  57. self.title = NSLocalizedString(@"_local_storage_", nil);
  58. }
  59. // Apparirà
  60. - (void)viewWillAppear:(BOOL)animated
  61. {
  62. [super viewWillAppear:animated];
  63. // Color
  64. [CCAspect aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
  65. [CCAspect aspectTabBar:self.tabBarController.tabBar hidden:NO];
  66. // Plus Button
  67. [app plusButtonVisibile:true];
  68. [self reloadDatasource];
  69. }
  70. // E' arrivato
  71. - (void)viewDidAppear:(BOOL)animated
  72. {
  73. [super viewDidAppear:animated];
  74. // update Badge
  75. [app updateApplicationIconBadgeNumber];
  76. }
  77. - (void)didReceiveMemoryWarning {
  78. [super didReceiveMemoryWarning];
  79. }
  80. #pragma --------------------------------------------------------------------------------------------
  81. #pragma mark ==== DZNEmptyDataSetSource ====
  82. #pragma --------------------------------------------------------------------------------------------
  83. - (BOOL)emptyDataSetShouldDisplay:(UIScrollView *)scrollView
  84. {
  85. // only for root
  86. if ([_serverUrl isEqualToString:[CCUtility getDirectoryLocal]])
  87. return YES;
  88. else
  89. return NO;
  90. }
  91. - (CGFloat)spaceHeightForEmptyDataSet:(UIScrollView *)scrollView
  92. {
  93. return 0.0f;
  94. }
  95. - (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView
  96. {
  97. return - self.navigationController.navigationBar.frame.size.height;
  98. }
  99. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  100. {
  101. return [UIColor whiteColor];
  102. }
  103. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  104. {
  105. return [UIImage imageNamed:image_brandBackgroundLite];
  106. }
  107. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  108. {
  109. NSString *text = [NSString stringWithFormat:@"%@", @""];
  110. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:COLOR_BRAND};
  111. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  112. }
  113. - (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
  114. {
  115. NSString *text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_tutorial_local_view_", nil)];
  116. NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
  117. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  118. paragraph.alignment = NSTextAlignmentCenter;
  119. NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0], NSForegroundColorAttributeName: [UIColor lightGrayColor], NSParagraphStyleAttributeName: paragraph};
  120. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  121. }
  122. #pragma --------------------------------------------------------------------------------------------
  123. #pragma mark ===== UIDocumentInteractionController <delegate> =====
  124. #pragma --------------------------------------------------------------------------------------------
  125. - (void)documentInteractionControllerDidDismissOptionsMenu:(UIDocumentInteractionController *)controller
  126. {
  127. // evitiamo il rimando della eventuale photo e/o video
  128. if ([CCCoreData getCameraUploadActiveAccount:app.activeAccount]) {
  129. [CCCoreData setCameraUploadDatePhoto:[NSDate date]];
  130. [CCCoreData setCameraUploadDateVideo:[NSDate date]];
  131. }
  132. }
  133. #pragma --------------------------------------------------------------------------------------------
  134. #pragma mark ===== menu =====
  135. #pragma--------------------------------------------------------------------------------------------
  136. - (void)openModel:(CCMetadata *)metadata
  137. {
  138. UIViewController *viewController;
  139. BOOL isLocal = YES;
  140. NSString *serverUrl = [CCCoreData getServerUrlFromDirectoryID:_metadata.directoryID activeAccount:app.activeAccount];
  141. if ([metadata.model isEqualToString:@"cartadicredito"])
  142. viewController = [[CCCartaDiCredito alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  143. if ([metadata.model isEqualToString:@"bancomat"])
  144. viewController = [[CCBancomat alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  145. if ([metadata.model isEqualToString:@"contocorrente"])
  146. viewController = [[CCContoCorrente alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  147. if ([metadata.model isEqualToString:@"accountweb"])
  148. viewController = [[CCAccountWeb alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  149. if ([metadata.model isEqualToString:@"patenteguida"])
  150. viewController = [[CCPatenteGuida alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  151. if ([metadata.model isEqualToString:@"cartaidentita"])
  152. viewController = [[CCCartaIdentita alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  153. if ([metadata.model isEqualToString:@"passaporto"])
  154. viewController = [[CCPassaporto alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  155. if ([metadata.model isEqualToString:@"note"]) {
  156. viewController = [[CCNote alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  157. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  158. [self presentViewController:navigationController animated:YES completion:nil];
  159. } else {
  160. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  161. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  162. [self presentViewController:navigationController animated:YES completion:nil];
  163. }
  164. }
  165. - (void)openWith:(CCMetadata *)metadata
  166. {
  167. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@", _serverUrl, metadata.fileNameData];
  168. if ([[NSFileManager defaultManager] fileExistsAtPath:fileNamePath]) {
  169. [[NSFileManager defaultManager] removeItemAtPath:[NSTemporaryDirectory() stringByAppendingString:metadata.fileNamePrint] error:nil];
  170. [[NSFileManager defaultManager] linkItemAtPath:fileNamePath toPath:[NSTemporaryDirectory() stringByAppendingString:metadata.fileNamePrint] error:nil];
  171. NSURL *url = [NSURL fileURLWithPath:[NSTemporaryDirectory() stringByAppendingString:metadata.fileNamePrint]];
  172. _docController = [UIDocumentInteractionController interactionControllerWithURL:url];
  173. _docController.delegate = self;
  174. [_docController presentOptionsMenuFromRect:self.view.frame inView:self.view animated:YES];
  175. }
  176. }
  177. - (void)requestDeleteMetadata:(CCMetadata *)metadata indexPath:(NSIndexPath *)indexPath
  178. {
  179. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  180. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  181. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@", _serverUrl, metadata.fileNameData];
  182. NSString *iconPath = [NSString stringWithFormat:@"%@/.%@.ico", _serverUrl, metadata.fileNameData];
  183. [[NSFileManager defaultManager] removeItemAtPath:fileNamePath error:nil];
  184. [[NSFileManager defaultManager] removeItemAtPath:iconPath error:nil];
  185. [self reloadDatasource];
  186. }]];
  187. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  188. }]];
  189. alertController.popoverPresentationController.sourceView = self.view;
  190. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  191. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  192. [alertController.view layoutIfNeeded];
  193. [self presentViewController:alertController animated:YES completion:nil];
  194. }
  195. -(void)cellButtonDownWasTapped:(id)sender
  196. {
  197. CGPoint touchPoint = [sender convertPoint:CGPointZero toView:self.tableView];
  198. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touchPoint];
  199. CCMetadata *metadata = [CCMetadata new];
  200. UIImage *iconHeader;
  201. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  202. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl];
  203. metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_serverUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  204. AHKActionSheet *actionSheet = [[AHKActionSheet alloc] initWithView:self.view title:nil];
  205. actionSheet.animationDuration = 0.2;
  206. actionSheet.blurRadius = 0.0f;
  207. actionSheet.blurTintColor = [UIColor colorWithWhite:0.0f alpha:0.50f];
  208. actionSheet.buttonHeight = 50.0;
  209. actionSheet.cancelButtonHeight = 50.0f;
  210. actionSheet.separatorHeight = 5.0f;
  211. actionSheet.automaticallyTintButtonImages = @(NO);
  212. actionSheet.encryptedButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:COLOR_CRYPTOCLOUD };
  213. actionSheet.buttonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:COLOR_TEXT_ANTHRACITE };
  214. actionSheet.cancelButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:COLOR_BRAND };
  215. actionSheet.disableButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:COLOR_TEXT_ANTHRACITE };
  216. actionSheet.separatorColor = COLOR_SEPARATOR_TABLE;
  217. actionSheet.cancelButtonTitle = NSLocalizedString(@"_cancel_",nil);
  218. // assegnamo l'immagine anteprima se esiste, altrimenti metti quella standars
  219. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID]])
  220. iconHeader = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID]];
  221. else
  222. iconHeader = [UIImage imageNamed:metadata.iconName];
  223. [actionSheet addButtonWithTitle: metadata.fileNamePrint
  224. image: iconHeader
  225. backgroundColor: COLOR_TABBAR
  226. height: 50.0
  227. type: AHKActionSheetButtonTypeDisabled
  228. handler: nil
  229. ];
  230. // Remove file/folder offline
  231. if (_serverUrl == nil) {
  232. [actionSheet addButtonWithTitle:NSLocalizedString(@"_remove_offline_", nil) image:[UIImage imageNamed:image_actionSheetOffline] backgroundColor:[UIColor whiteColor] height: 50.0 type:AHKActionSheetButtonTypeDefault handler:^(AHKActionSheet *as) {
  233. if (metadata.directory) {
  234. // remove tag offline for all folder/subfolder/file
  235. NSString *relativeRoot = [CCCoreData getServerUrlFromDirectoryID:metadata.directoryID activeAccount:app.activeAccount];
  236. NSString *dirServerUrl = [CCUtility stringAppendServerUrl:relativeRoot addFileName:metadata.fileNameData];
  237. NSArray *directories = [CCCoreData getOfflineDirectoryActiveAccount:app.activeAccount];
  238. for (TableDirectory *directory in directories)
  239. if ([directory.serverUrl containsString:dirServerUrl]) {
  240. [CCCoreData setOfflineDirectoryServerUrl:directory.serverUrl offline:NO activeAccount:app.activeAccount];
  241. [CCCoreData removeOfflineAllFileFromServerUrl:directory.serverUrl activeAccount:app.activeAccount];
  242. }
  243. } else {
  244. [CCCoreData setOfflineLocalFileID:metadata.fileID offline:NO activeAccount:app.activeAccount];
  245. }
  246. [self.tableView setEditing:NO animated:YES];
  247. [self reloadDatasource];
  248. }];
  249. }
  250. // Share
  251. if (_metadata.cryptated == NO && app.hasServerShareSupport) {
  252. [actionSheet addButtonWithTitle:NSLocalizedString(@"_share_", nil)
  253. image:[UIImage imageNamed:image_actionSheetShare]
  254. backgroundColor:[UIColor whiteColor]
  255. height: 50.0
  256. type:AHKActionSheetButtonTypeDefault
  257. handler:^(AHKActionSheet *as) {
  258. // close swipe
  259. [self setEditing:NO animated:YES];
  260. [app.activeMain openWindowShare:metadata];
  261. }];
  262. }
  263. // NO Directory - NO Template
  264. if (metadata.directory == NO && [metadata.type isEqualToString:k_metadataType_template] == NO) {
  265. [actionSheet addButtonWithTitle:NSLocalizedString(@"_open_in_", nil) image:[UIImage imageNamed:image_actionSheetOpenIn] backgroundColor:[UIColor whiteColor] height: 50.0 type:AHKActionSheetButtonTypeDefault handler:^(AHKActionSheet *as) {
  266. [self.tableView setEditing:NO animated:YES];
  267. [self openWith:metadata];
  268. }];
  269. }
  270. [actionSheet addButtonWithTitle:NSLocalizedString(@"_delete_", nil) image:[UIImage imageNamed:image_delete] backgroundColor:[UIColor whiteColor] height: 50.0 type:AHKActionSheetButtonTypeDestructive handler:^(AHKActionSheet *as) {
  271. [self requestDeleteMetadata:metadata indexPath:indexPath];
  272. }];
  273. [actionSheet show];
  274. }
  275. #pragma --------------------------------------------------------------------------------------------
  276. #pragma mark ==== Table ====
  277. #pragma --------------------------------------------------------------------------------------------
  278. - (CCMetadata *)setSelfMetadataFromIndexPath:(NSIndexPath *)indexPath
  279. {
  280. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  281. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl];
  282. return [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_serverUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  283. }
  284. - (void)readFolderWithForced:(BOOL)forced serverUrl:(NSString *)serverUrl
  285. {
  286. [self reloadDatasource];
  287. }
  288. - (void)reloadDatasource
  289. {
  290. NSArray *subpaths = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:_serverUrl error:nil];
  291. NSMutableArray *metadatas = [NSMutableArray new];
  292. for (NSString *subpath in subpaths)
  293. if (![[subpath lastPathComponent] hasPrefix:@"."])
  294. [metadatas addObject:subpath];
  295. dataSource = [NSArray arrayWithArray:metadatas];
  296. [self.tableView reloadData];
  297. }
  298. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  299. {
  300. return 60;
  301. }
  302. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  303. {
  304. return 1;
  305. }
  306. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  307. {
  308. return [dataSource count];
  309. }
  310. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  311. {
  312. CCLocalStorageCell *cell = (CCLocalStorageCell *)[tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
  313. CCMetadata *metadata;
  314. // separator
  315. cell.separatorInset = UIEdgeInsetsMake(0.f, 60.f, 0.f, 0.f);
  316. // Initialize
  317. cell.statusImageView.image = nil;
  318. cell.offlineImageView.image = nil;
  319. // change color selection
  320. UIView *selectionColor = [[UIView alloc] init];
  321. selectionColor.backgroundColor = COLOR_SELECT_BACKGROUND;
  322. cell.selectedBackgroundView = selectionColor;
  323. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  324. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl];
  325. metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_serverUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  326. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/.%@.ico", _serverUrl, metadata.fileNamePrint]];
  327. if (!cell.fileImageView.image) {
  328. UIImage *icon = [CCGraphics createNewImageFrom:metadata.fileID directoryUser:_serverUrl fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:NO typeFile:metadata.typeFile writePreview:NO optimizedFileName:[CCUtility getOptimizedPhoto]];
  329. if (icon) {
  330. [CCGraphics saveIcoWithFileID:metadata.fileNamePrint image:icon writeToFile:[NSString stringWithFormat:@"%@/.%@.ico", _serverUrl, metadata.fileNamePrint] copy:NO move:NO fromPath:nil toPath:nil];
  331. cell.fileImageView.image = icon;
  332. }
  333. }
  334. // ButtonDown Tapped
  335. [cell.buttonDown addTarget:self action:@selector(cellButtonDownWasTapped:) forControlEvents:UIControlEventTouchUpInside];
  336. // encrypted color
  337. if (metadata.cryptated) {
  338. cell.labelTitle.textColor = COLOR_CRYPTOCLOUD;
  339. } else {
  340. cell.labelTitle.textColor = [UIColor blackColor];
  341. }
  342. // File name
  343. cell.labelTitle.text = metadata.fileNamePrint;
  344. cell.labelInfoFile.text = @"";
  345. // Immagine del file, se non c'è l'anteprima mettiamo quella standard
  346. if (cell.fileImageView.image == nil)
  347. cell.fileImageView.image = [UIImage imageNamed:metadata.iconName];
  348. // it's encrypted ???
  349. if (metadata.cryptated && [metadata.type isEqualToString: k_metadataType_template] == NO)
  350. cell.statusImageView.image = [UIImage imageNamed:image_lock];
  351. // text and length
  352. if (metadata.directory) {
  353. cell.labelInfoFile.text = [CCUtility dateDiff:metadata.date];
  354. cell.accessoryType = UITableViewCellAccessoryNone;
  355. //cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  356. } else {
  357. NSString *date = [CCUtility dateDiff:metadata.date];
  358. NSString *length = [CCUtility transformedSize:metadata.size];
  359. if ([metadata.type isEqualToString: k_metadataType_template])
  360. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@", date];
  361. if ([metadata.type isEqualToString: k_metadataType_file] || [metadata.type isEqualToString: k_metadataType_local])
  362. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@ • %@", date, length];
  363. cell.accessoryType = UITableViewCellAccessoryNone;
  364. }
  365. return cell;
  366. }
  367. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  368. {
  369. // deselect row
  370. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  371. _metadata = [self setSelfMetadataFromIndexPath:indexPath];
  372. // if is in download [do not touch]
  373. if ([_metadata.session length] > 0 && [_metadata.session containsString:@"download"])
  374. return;
  375. // File
  376. if (([_metadata.type isEqualToString: k_metadataType_file] || [_metadata.type isEqualToString: k_metadataType_local]) && _metadata.directory == NO) {
  377. if ([self shouldPerformSegue])
  378. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  379. }
  380. // Model
  381. if ([self.metadata.type isEqualToString: k_metadataType_template])
  382. [self openModel:self.metadata];
  383. // Directory
  384. if (_metadata.directory)
  385. [self performSegueDirectoryWithControlPasscode];
  386. }
  387. -(void)performSegueDirectoryWithControlPasscode
  388. {
  389. CCLocalStorage *vc = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"CCLocalStorage"];
  390. vc.serverUrl = [CCUtility stringAppendServerUrl:_serverUrl addFileName:_metadata.fileNameData];
  391. vc.titleViewControl = _metadata.fileNamePrint;
  392. [self.navigationController pushViewController:vc animated:YES];
  393. }
  394. #pragma --------------------------------------------------------------------------------------------
  395. #pragma mark ===== Navigation ====
  396. #pragma --------------------------------------------------------------------------------------------
  397. - (BOOL)shouldPerformSegue
  398. {
  399. // if i am in background -> exit
  400. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return NO;
  401. // if i am not window -> exit
  402. if (self.view.window == NO)
  403. return NO;
  404. // Collapsed but i am in detail -> exit
  405. if (self.splitViewController.isCollapsed)
  406. if (self.detailViewController.isViewLoaded && self.detailViewController.view.window) return NO;
  407. // Video in run -> exit
  408. if (self.detailViewController.photoBrowser.currentVideoPlayerViewController.isViewLoaded && self.detailViewController.photoBrowser.currentVideoPlayerViewController.view.window) return NO;
  409. return YES;
  410. }
  411. -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  412. {
  413. id viewController = segue.destinationViewController;
  414. if ([viewController isKindOfClass:[UINavigationController class]]) {
  415. UINavigationController *nav = viewController;
  416. _detailViewController = (CCDetail *)nav.topViewController;
  417. } else {
  418. _detailViewController = segue.destinationViewController;
  419. }
  420. NSMutableArray *allRecordsDataSourceImagesVideos = [NSMutableArray new];
  421. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  422. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl];
  423. for (NSString *fileName in dataSource) {
  424. CCMetadata *metadata = [CCMetadata new];
  425. metadata = [CCUtility insertFileSystemInMetadata:fileName directory:_serverUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  426. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])
  427. [allRecordsDataSourceImagesVideos addObject:metadata];
  428. }
  429. _detailViewController.sourceDirectoryLocal = YES;
  430. _detailViewController.metadataDetail = _metadata;
  431. _detailViewController.dateFilterQuery = nil;
  432. _detailViewController.isCameraUpload = NO;
  433. _detailViewController.dataSourceImagesVideos = allRecordsDataSourceImagesVideos;
  434. [_detailViewController setTitle:_metadata.fileNamePrint];
  435. }
  436. @end