CCOfflinePageContent.m 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807
  1. //
  2. // CCOfflinePageContent.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 "CCOfflinePageContent.h"
  24. #import "AppDelegate.h"
  25. #import "Nextcloud-Swift.h"
  26. @interface CCOfflinePageContent () <CCActionsDeleteDelegate>
  27. {
  28. NSArray *dataSource;
  29. BOOL _reloadDataSource;
  30. }
  31. @end
  32. @implementation CCOfflinePageContent
  33. - (void)viewDidLoad {
  34. [super viewDidLoad];
  35. // Custom Cell
  36. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellOffline" bundle:nil] forCellReuseIdentifier:@"OfflineCell"];
  37. // dataSource
  38. dataSource = [NSMutableArray new];
  39. // Metadata
  40. _metadata = [CCMetadata new];
  41. self.tableView.tableFooterView = [UIView new];
  42. self.tableView.separatorColor = COLOR_SEPARATOR_TABLE;
  43. self.tableView.emptyDataSetDelegate = self;
  44. self.tableView.emptyDataSetSource = self;
  45. self.tableView.allowsMultipleSelectionDuringEditing = NO;
  46. // calculate _serverUrl
  47. if ([self.pageType isEqualToString:k_pageOfflineFavorites] && !_serverUrl) {
  48. _serverUrl = nil;
  49. }
  50. if ([self.pageType isEqualToString:k_pageOfflineOffline] && !_serverUrl) {
  51. _serverUrl = nil;
  52. }
  53. if ([self.pageType isEqualToString:k_pageOfflineLocal] && !_serverUrl) {
  54. _serverUrl = [CCUtility getDirectoryLocal];
  55. }
  56. // Title & color
  57. self.title = _titleViewControl;
  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. // cancell Progress
  75. [self.navigationController cancelCCProgress];
  76. // update Badge
  77. [app updateApplicationIconBadgeNumber];
  78. }
  79. - (void)didReceiveMemoryWarning {
  80. [super didReceiveMemoryWarning];
  81. }
  82. #pragma --------------------------------------------------------------------------------------------
  83. #pragma mark ==== DZNEmptyDataSetSource ====
  84. #pragma --------------------------------------------------------------------------------------------
  85. - (BOOL)emptyDataSetShouldDisplay:(UIScrollView *)scrollView
  86. {
  87. // only for root
  88. if (!_serverUrl || [_serverUrl isEqualToString:[CCUtility getDirectoryLocal]])
  89. return YES;
  90. else
  91. return NO;
  92. }
  93. - (CGFloat)spaceHeightForEmptyDataSet:(UIScrollView *)scrollView
  94. {
  95. return 0.0f;
  96. }
  97. - (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView
  98. {
  99. return - self.navigationController.navigationBar.frame.size.height;
  100. }
  101. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  102. {
  103. return [UIColor whiteColor];
  104. }
  105. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  106. {
  107. //if ([self.pageType isEqualToString:k_pageOfflineOffline])
  108. // return [UIImage imageNamed:image_brandOffline];
  109. //if ([self.pageType isEqualToString:k_pageOfflineLocal])
  110. return [UIImage imageNamed:image_brandBackgroundLite];
  111. //return nil;
  112. }
  113. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  114. {
  115. NSString *text;
  116. if ([self.pageType isEqualToString:k_pageOfflineFavorites])
  117. text = [NSString stringWithFormat:@"%@", @""];
  118. if ([self.pageType isEqualToString:k_pageOfflineOffline])
  119. text = [NSString stringWithFormat:@"%@", @""];
  120. if ([self.pageType isEqualToString:k_pageOfflineLocal])
  121. text = [NSString stringWithFormat:@"%@", @""];
  122. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:COLOR_BRAND};
  123. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  124. }
  125. - (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
  126. {
  127. NSString *text;
  128. if ([self.pageType isEqualToString:k_pageOfflineFavorites])
  129. text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_tutorial_favorite_view_", nil)];
  130. if ([self.pageType isEqualToString:k_pageOfflineOffline])
  131. text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_tutorial_offline_view_", nil)];
  132. if ([self.pageType isEqualToString:k_pageOfflineLocal])
  133. text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_tutorial_local_view_", nil)];
  134. NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
  135. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  136. paragraph.alignment = NSTextAlignmentCenter;
  137. NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0], NSForegroundColorAttributeName: [UIColor lightGrayColor], NSParagraphStyleAttributeName: paragraph};
  138. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  139. }
  140. #pragma --------------------------------------------------------------------------------------------
  141. #pragma mark ===== UIDocumentInteractionController <delegate> =====
  142. #pragma --------------------------------------------------------------------------------------------
  143. - (void)documentInteractionControllerDidDismissOptionsMenu:(UIDocumentInteractionController *)controller
  144. {
  145. // evitiamo il rimando della eventuale photo e/o video
  146. if ([CCCoreData getCameraUploadActiveAccount:app.activeAccount]) {
  147. [CCCoreData setCameraUploadDatePhoto:[NSDate date]];
  148. [CCCoreData setCameraUploadDateVideo:[NSDate date]];
  149. }
  150. }
  151. #pragma --------------------------------------------------------------------------------------------
  152. #pragma mark ===== Delete <delegate> =====
  153. #pragma--------------------------------------------------------------------------------------------
  154. - (void)deleteFileOrFolderFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  155. {
  156. NSLog(@"[LOG] Delete error %@", message);
  157. }
  158. - (void)deleteFileOrFolderSuccess:(CCMetadataNet *)metadataNet
  159. {
  160. [self reloadDatasource];
  161. }
  162. #pragma --------------------------------------------------------------------------------------------
  163. #pragma mark ===== Swipe Table -> menu =====
  164. #pragma--------------------------------------------------------------------------------------------
  165. // more
  166. - (NSString *)tableView:(UITableView *)tableView titleForSwipeAccessoryButtonForRowAtIndexPath:(NSIndexPath *)indexPath
  167. {
  168. // No Local
  169. if ([_pageType isEqualToString:k_pageOfflineLocal])
  170. return nil;
  171. // Root
  172. if (_serverUrl == nil)
  173. return NSLocalizedString(@"_more_", nil);
  174. // No Root
  175. CCMetadata *metadata = [self setSelfMetadataFromIndexPath:indexPath];
  176. if (metadata.directory)
  177. return nil;
  178. else
  179. return NSLocalizedString(@"_more_", nil);
  180. }
  181. - (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
  182. {
  183. return NSLocalizedString(@"_delete_", nil);
  184. }
  185. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
  186. {
  187. return YES;
  188. }
  189. - (void)tableView:(UITableView *)tableView swipeAccessoryButtonPushedForRowAtIndexPath:(NSIndexPath *)indexPath
  190. {
  191. _metadata = [self setSelfMetadataFromIndexPath:indexPath];
  192. AHKActionSheet *actionSheet = [[AHKActionSheet alloc] initWithView:self.view title:nil];
  193. actionSheet.animationDuration = 0.2;
  194. actionSheet.blurRadius = 0.0f;
  195. actionSheet.blurTintColor = [UIColor colorWithWhite:0.0f alpha:0.50f];
  196. actionSheet.buttonHeight = 50.0;
  197. actionSheet.cancelButtonHeight = 50.0f;
  198. actionSheet.separatorHeight = 5.0f;
  199. actionSheet.automaticallyTintButtonImages = @(NO);
  200. actionSheet.encryptedButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:14], NSForegroundColorAttributeName:COLOR_CRYPTOCLOUD };
  201. actionSheet.buttonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:14], NSForegroundColorAttributeName:COLOR_TEXT_ANTHRACITE };
  202. actionSheet.cancelButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:COLOR_BRAND };
  203. actionSheet.disableButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:12], NSForegroundColorAttributeName:COLOR_TEXT_ANTHRACITE };
  204. actionSheet.separatorColor = COLOR_SEPARATOR_TABLE;
  205. actionSheet.cancelButtonTitle = NSLocalizedString(@"_cancel_",nil);
  206. UIImage *iconHeader;
  207. // assegnamo l'immagine anteprima se esiste, altrimenti metti quella standars
  208. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/.%@.ico", _serverUrl, _metadata.fileNamePrint]])
  209. iconHeader = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/.%@.ico", _serverUrl, _metadata.fileNamePrint]];
  210. else
  211. iconHeader = [UIImage imageNamed:self.metadata.iconName];
  212. // NO Directory - NO Template
  213. if (_metadata.directory == NO && [_metadata.type isEqualToString:k_metadataType_template] == NO) {
  214. [actionSheet addButtonWithTitle:NSLocalizedString(@"_open_in_", nil)
  215. image:[UIImage imageNamed:image_actionSheetOpenIn]
  216. backgroundColor:[UIColor whiteColor]
  217. height: 50.0
  218. type:AHKActionSheetButtonTypeDefault
  219. handler:^(AHKActionSheet *as) {
  220. [self.tableView setEditing:NO animated:YES];
  221. [self openWith:_metadata];
  222. }];
  223. }
  224. // ONLY Root Favorites : Remove file/folder Favorites
  225. if (_serverUrl == nil && [_pageType isEqualToString:k_pageOfflineFavorites]) {
  226. [actionSheet addButtonWithTitle:NSLocalizedString(@"_remove_favorites_", nil)
  227. image:[UIImage imageNamed:image_actionSheetOffline]
  228. backgroundColor:[UIColor whiteColor]
  229. height: 50.0
  230. type:AHKActionSheetButtonTypeDefault
  231. handler:^(AHKActionSheet *as) {
  232. [self.tableView setEditing:NO animated:YES];
  233. [self reloadDatasource];
  234. }];
  235. }
  236. // ONLY Root Offline : Remove file/folder offline
  237. if (_serverUrl == nil && [_pageType isEqualToString:k_pageOfflineOffline]) {
  238. [actionSheet addButtonWithTitle:NSLocalizedString(@"_remove_offline_", nil)
  239. image:[UIImage imageNamed:image_actionSheetOffline]
  240. backgroundColor:[UIColor whiteColor]
  241. height: 50.0
  242. type:AHKActionSheetButtonTypeDefault
  243. handler:^(AHKActionSheet *as) {
  244. if (_metadata.directory) {
  245. // remove tag offline for all folder/subfolder/file
  246. NSString *relativeRoot = [CCCoreData getServerUrlFromDirectoryID:_metadata.directoryID activeAccount:app.activeAccount];
  247. NSString *dirServerUrl = [CCUtility stringAppendServerUrl:relativeRoot addServerUrl:_metadata.fileNameData];
  248. NSArray *directories = [CCCoreData getOfflineDirectoryActiveAccount:app.activeAccount];
  249. for (TableDirectory *directory in directories)
  250. if ([directory.serverUrl containsString:dirServerUrl]) {
  251. [CCCoreData setOfflineDirectoryServerUrl:directory.serverUrl offline:NO activeAccount:app.activeAccount];
  252. [CCCoreData removeOfflineAllFileFromServerUrl:directory.serverUrl activeAccount:app.activeAccount];
  253. }
  254. } else {
  255. [CCCoreData setOfflineLocalFileID:_metadata.fileID offline:NO activeAccount:app.activeAccount];
  256. }
  257. [self.tableView setEditing:NO animated:YES];
  258. [self reloadDatasource];
  259. }];
  260. }
  261. [actionSheet show];
  262. }
  263. - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
  264. {
  265. _metadata = [self setSelfMetadataFromIndexPath:indexPath];
  266. if (editingStyle == UITableViewCellEditingStyleDelete) {
  267. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  268. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
  269. style:UIAlertActionStyleDestructive
  270. handler:^(UIAlertAction *action) {
  271. if ([_pageType isEqualToString:k_pageOfflineFavorites] || [_pageType isEqualToString:k_pageOfflineOffline]) {
  272. [[CCActions sharedInstance] deleteFileOrFolder:_metadata delegate:self];
  273. }
  274. if ([_pageType isEqualToString:k_pageOfflineLocal]) {
  275. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@", _serverUrl, _metadata.fileNameData];
  276. NSString *iconPath = [NSString stringWithFormat:@"%@/.%@.ico", _serverUrl, _metadata.fileNameData];
  277. [[NSFileManager defaultManager] removeItemAtPath:fileNamePath error:nil];
  278. [[NSFileManager defaultManager] removeItemAtPath:iconPath error:nil];
  279. }
  280. [self reloadDatasource];
  281. }]];
  282. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
  283. style:UIAlertActionStyleCancel
  284. handler:^(UIAlertAction *action) {
  285. }]];
  286. alertController.popoverPresentationController.sourceView = self.view;
  287. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  288. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  289. [alertController.view layoutIfNeeded];
  290. [self presentViewController:alertController animated:YES completion:nil];
  291. }
  292. [self.tableView setEditing:NO animated:YES];
  293. }
  294. #pragma --------------------------------------------------------------------------------------------
  295. #pragma mark ==== Table ====
  296. #pragma --------------------------------------------------------------------------------------------
  297. - (CCMetadata *)setSelfMetadataFromIndexPath:(NSIndexPath *)indexPath
  298. {
  299. CCMetadata *metadata;
  300. if ([_pageType isEqualToString:k_pageOfflineFavorites]) {
  301. NSManagedObject *record = [dataSource objectAtIndex:indexPath.row];
  302. metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", [record valueForKey:@"fileID"], app.activeAccount] context:nil];
  303. }
  304. if ([_pageType isEqualToString:k_pageOfflineOffline]) {
  305. NSManagedObject *record = [dataSource objectAtIndex:indexPath.row];
  306. metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", [record valueForKey:@"fileID"], app.activeAccount] context:nil];
  307. }
  308. if ([_pageType isEqualToString:k_pageOfflineLocal]) {
  309. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  310. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl];
  311. metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_serverUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  312. }
  313. return metadata;
  314. }
  315. - (void)readFolderWithForced:(BOOL)forced serverUrl:(NSString *)serverUrl
  316. {
  317. [self reloadDatasource];
  318. }
  319. - (void)reloadDatasource
  320. {
  321. if ([_pageType isEqualToString:k_pageOfflineFavorites]) {
  322. NSMutableArray *metadatas = [NSMutableArray new];
  323. NSArray *recordsTableMetadata ;
  324. if (!_serverUrl) {
  325. recordsTableMetadata = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (favorite == 1)", app.activeAccount] context:nil];
  326. } else {
  327. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:_serverUrl activeAccount:app.activeAccount];
  328. recordsTableMetadata = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@)", app.activeAccount, directoryID] fieldOrder:[CCUtility getOrderSettings] ascending:[CCUtility getAscendingSettings]];
  329. }
  330. CCSectionDataSource *sectionDataSource = [CCSection creataDataSourseSectionMetadata:recordsTableMetadata listProgressMetadata:nil groupByField:nil replaceDateToExifDate:NO activeAccount:app.activeAccount];
  331. NSArray *fileIDs = [sectionDataSource.sectionArrayRow objectForKey:@"_none_"];
  332. for (NSString *fileID in fileIDs)
  333. [metadatas addObject:[sectionDataSource.allRecordsDataSource objectForKey:fileID]];
  334. dataSource = [NSArray arrayWithArray:metadatas];
  335. }
  336. if ([_pageType isEqualToString:k_pageOfflineOffline]) {
  337. NSMutableArray *metadatas = [NSMutableArray new];
  338. NSArray *recordsTableMetadata ;
  339. if (!_serverUrl) {
  340. recordsTableMetadata = [CCCoreData getHomeOfflineActiveAccount:app.activeAccount directoryUser:app.directoryUser fieldOrder:[CCUtility getOrderSettings] ascending:[CCUtility getAscendingSettings]];
  341. } else {
  342. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:_serverUrl activeAccount:app.activeAccount];
  343. recordsTableMetadata = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@)", app.activeAccount, directoryID] fieldOrder:[CCUtility getOrderSettings] ascending:[CCUtility getAscendingSettings]];
  344. }
  345. CCSectionDataSource *sectionDataSource = [CCSection creataDataSourseSectionMetadata:recordsTableMetadata listProgressMetadata:nil groupByField:nil replaceDateToExifDate:NO activeAccount:app.activeAccount];
  346. NSArray *fileIDs = [sectionDataSource.sectionArrayRow objectForKey:@"_none_"];
  347. for (NSString *fileID in fileIDs)
  348. [metadatas addObject:[sectionDataSource.allRecordsDataSource objectForKey:fileID]];
  349. dataSource = [NSArray arrayWithArray:metadatas];
  350. }
  351. if ([_pageType isEqualToString:k_pageOfflineLocal]) {
  352. NSArray *subpaths = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:_serverUrl error:nil];
  353. NSMutableArray *metadatas = [NSMutableArray new];
  354. for (NSString *subpath in subpaths)
  355. if (![[subpath lastPathComponent] hasPrefix:@"."])
  356. [metadatas addObject:subpath];
  357. dataSource = [NSArray arrayWithArray:metadatas];
  358. }
  359. [self.tableView reloadData];
  360. }
  361. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  362. {
  363. return 60;
  364. }
  365. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  366. {
  367. return 1;
  368. }
  369. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  370. {
  371. return [dataSource count];
  372. }
  373. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  374. {
  375. CCCellOffline *cell = (CCCellOffline *)[tableView dequeueReusableCellWithIdentifier:@"OfflineCell" forIndexPath:indexPath];
  376. CCMetadata *metadata;
  377. // Initialize
  378. cell.statusImageView.image = nil;
  379. cell.offlineImageView.image = nil;
  380. // change color selection
  381. UIView *selectionColor = [[UIView alloc] init];
  382. selectionColor.backgroundColor = COLOR_SELECT_BACKGROUND;
  383. cell.selectedBackgroundView = selectionColor;
  384. // i am in Favorites
  385. if ([_pageType isEqualToString:k_pageOfflineFavorites]) {
  386. metadata = [dataSource objectAtIndex:indexPath.row];
  387. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID]];
  388. if (_serverUrl == nil)
  389. cell.offlineImageView.image = [UIImage imageNamed:image_favorite];
  390. }
  391. // i am in Offline
  392. if ([_pageType isEqualToString:k_pageOfflineOffline]) {
  393. metadata = [dataSource objectAtIndex:indexPath.row];
  394. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID]];
  395. if (_serverUrl == nil)
  396. cell.offlineImageView.image = [UIImage imageNamed:image_offline];
  397. }
  398. // i am in local
  399. if ([_pageType isEqualToString:k_pageOfflineLocal]) {
  400. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  401. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl];
  402. metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_serverUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  403. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/.%@.ico", _serverUrl, metadata.fileNamePrint]];
  404. if (!cell.fileImageView.image) {
  405. 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]];
  406. if (icon) {
  407. [CCGraphics saveIcoWithFileID:metadata.fileNamePrint image:icon writeToFile:[NSString stringWithFormat:@"%@/.%@.ico", _serverUrl, metadata.fileNamePrint] copy:NO move:NO fromPath:nil toPath:nil];
  408. cell.fileImageView.image = icon;
  409. }
  410. }
  411. }
  412. // color and font
  413. if (metadata.cryptated) {
  414. cell.labelTitle.textColor = COLOR_CRYPTOCLOUD;
  415. cell.labelInfoFile.textColor = [UIColor blackColor];
  416. } else {
  417. cell.labelTitle.textColor = COLOR_TEXT_ANTHRACITE;
  418. cell.labelInfoFile.textColor = [UIColor blackColor];
  419. }
  420. if (metadata.directory) {
  421. cell.labelInfoFile.text = [CCUtility dateDiff:metadata.date];
  422. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  423. }
  424. // File name
  425. cell.labelTitle.text = metadata.fileNamePrint;
  426. cell.labelInfoFile.text = @"";
  427. // Immagine del file, se non c'è l'anteprima mettiamo quella standard
  428. if (cell.fileImageView.image == nil)
  429. cell.fileImageView.image = [UIImage imageNamed:metadata.iconName];
  430. // it's encrypted ???
  431. if (metadata.cryptated && [metadata.type isEqualToString: k_metadataType_template] == NO)
  432. cell.statusImageView.image = [UIImage imageNamed:image_lock];
  433. // it's in download mode
  434. if ([metadata.session length] > 0 && [metadata.session rangeOfString:@"download"].location != NSNotFound)
  435. cell.statusImageView.image = [UIImage imageNamed:image_attention];
  436. // text and length
  437. if (metadata.directory) {
  438. cell.labelInfoFile.text = [CCUtility dateDiff:metadata.date];
  439. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  440. } else {
  441. NSString *date = [CCUtility dateDiff:metadata.date];
  442. NSString *length = [CCUtility transformedSize:metadata.size];
  443. if ([metadata.type isEqualToString: k_metadataType_template])
  444. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@", date];
  445. if ([metadata.type isEqualToString: k_metadataType_file] || [metadata.type isEqualToString: k_metadataType_local])
  446. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@, %@", date, length];
  447. cell.accessoryType = UITableViewCellAccessoryNone;
  448. }
  449. return cell;
  450. }
  451. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  452. {
  453. // deselect row
  454. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  455. _metadata = [self setSelfMetadataFromIndexPath:indexPath];
  456. // if is in download [do not touch]
  457. if ([_metadata.session length] > 0 && [_metadata.session rangeOfString:@"download"].location != NSNotFound) return;
  458. if (([_metadata.type isEqualToString: k_metadataType_file] || [_metadata.type isEqualToString: k_metadataType_local]) && _metadata.directory == NO) {
  459. if ([self shouldPerformSegue])
  460. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  461. }
  462. if ([self.metadata.type isEqualToString: k_metadataType_template])
  463. [self openModel:self.metadata];
  464. if (_metadata.directory)
  465. [self performSegueDirectoryWithControlPasscode];
  466. }
  467. -(void)performSegueDirectoryWithControlPasscode
  468. {
  469. CCOfflinePageContent *vc = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"OfflinePageContentViewController"];
  470. NSString *serverUrl;
  471. if (([_pageType isEqualToString:k_pageOfflineFavorites] || [_pageType isEqualToString:k_pageOfflineOffline]) && !_serverUrl) {
  472. serverUrl = [CCCoreData getServerUrlFromDirectoryID:_metadata.directoryID activeAccount:app.activeAccount];
  473. } else {
  474. serverUrl = _serverUrl;
  475. }
  476. vc.serverUrl = [CCUtility stringAppendServerUrl:serverUrl addServerUrl:_metadata.fileNameData];
  477. vc.pageType = _pageType;
  478. vc.titleViewControl = _metadata.fileNamePrint;
  479. [self.navigationController pushViewController:vc animated:YES];
  480. }
  481. #pragma --------------------------------------------------------------------------------------------
  482. #pragma mark ===== Navigation ====
  483. #pragma --------------------------------------------------------------------------------------------
  484. - (void)openModel:(CCMetadata *)metadata
  485. {
  486. UIViewController *viewController;
  487. BOOL isLocal = NO;
  488. NSString *serverUrl = [CCCoreData getServerUrlFromDirectoryID:_metadata.directoryID activeAccount:app.activeAccount];
  489. if ([self.pageType isEqualToString:k_pageOfflineLocal])
  490. isLocal = YES;
  491. if ([metadata.model isEqualToString:@"cartadicredito"])
  492. viewController = [[CCCartaDiCredito alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  493. if ([metadata.model isEqualToString:@"bancomat"])
  494. viewController = [[CCBancomat alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  495. if ([metadata.model isEqualToString:@"contocorrente"])
  496. viewController = [[CCContoCorrente alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  497. if ([metadata.model isEqualToString:@"accountweb"])
  498. viewController = [[CCAccountWeb alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  499. if ([metadata.model isEqualToString:@"patenteguida"])
  500. viewController = [[CCPatenteGuida alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  501. if ([metadata.model isEqualToString:@"cartaidentita"])
  502. viewController = [[CCCartaIdentita alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  503. if ([metadata.model isEqualToString:@"passaporto"])
  504. viewController = [[CCPassaporto alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  505. if ([metadata.model isEqualToString:@"note"]) {
  506. viewController = [[CCNote alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid fileID:metadata.fileID isLocal:isLocal serverUrl:serverUrl];
  507. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  508. [self presentViewController:navigationController animated:YES completion:nil];
  509. } else {
  510. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  511. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  512. [self presentViewController:navigationController animated:YES completion:nil];
  513. }
  514. }
  515. - (void)openWith:(CCMetadata *)metadata
  516. {
  517. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", app.directoryUser, metadata.fileID]]) {
  518. [[NSFileManager defaultManager] removeItemAtPath:[NSTemporaryDirectory() stringByAppendingString:metadata.fileNamePrint] error:nil];
  519. [[NSFileManager defaultManager] linkItemAtPath:[NSString stringWithFormat:@"%@/%@", app.directoryUser, metadata.fileID] toPath:[NSTemporaryDirectory() stringByAppendingString:metadata.fileNamePrint] error:nil];
  520. NSURL *url = [NSURL fileURLWithPath:[NSTemporaryDirectory() stringByAppendingString:metadata.fileNamePrint]];
  521. _docController = [UIDocumentInteractionController interactionControllerWithURL:url];
  522. _docController.delegate = self;
  523. [_docController presentOptionsMenuFromRect:self.view.frame inView:self.view animated:YES];
  524. }
  525. }
  526. - (BOOL)shouldPerformSegue
  527. {
  528. // if i am in background -> exit
  529. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return NO;
  530. // if i am not window -> exit
  531. if (self.view.window == NO)
  532. return NO;
  533. // Collapsed but i am in detail -> exit
  534. if (self.splitViewController.isCollapsed)
  535. if (self.detailViewController.isViewLoaded && self.detailViewController.view.window) return NO;
  536. // Video in run -> exit
  537. if (self.detailViewController.photoBrowser.currentVideoPlayerViewController.isViewLoaded && self.detailViewController.photoBrowser.currentVideoPlayerViewController.view.window) return NO;
  538. return YES;
  539. }
  540. -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  541. {
  542. id viewController = segue.destinationViewController;
  543. if ([viewController isKindOfClass:[UINavigationController class]]) {
  544. UINavigationController *nav = viewController;
  545. _detailViewController = (CCDetail *)nav.topViewController;
  546. } else {
  547. _detailViewController = segue.destinationViewController;
  548. }
  549. NSMutableArray *allRecordsDataSourceImagesVideos = [NSMutableArray new];
  550. if ([self.pageType isEqualToString:k_pageOfflineFavorites]) {
  551. for (CCMetadata *metadata in dataSource) {
  552. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])
  553. [allRecordsDataSourceImagesVideos addObject:metadata];
  554. }
  555. }
  556. if ([self.pageType isEqualToString:k_pageOfflineOffline]) {
  557. for (CCMetadata *metadata in dataSource) {
  558. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])
  559. [allRecordsDataSourceImagesVideos addObject:metadata];
  560. }
  561. }
  562. if ([self.pageType isEqualToString:k_pageOfflineLocal]) {
  563. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  564. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl];
  565. for (NSString *fileName in dataSource) {
  566. CCMetadata *metadata = [CCMetadata new];
  567. metadata = [CCUtility insertFileSystemInMetadata:fileName directory:_serverUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  568. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])
  569. [allRecordsDataSourceImagesVideos addObject:metadata];
  570. }
  571. _detailViewController.sourceDirectoryLocal = YES;
  572. }
  573. _detailViewController.metadataDetail = _metadata;
  574. _detailViewController.dateFilterQuery = nil;
  575. _detailViewController.isCameraUpload = NO;
  576. _detailViewController.dataSourceImagesVideos = allRecordsDataSourceImagesVideos;
  577. [_detailViewController setTitle:_metadata.fileNamePrint];
  578. }
  579. @end