CCOfflinePageContent.m 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657
  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. @interface CCOfflinePageContent ()
  26. {
  27. NSArray *dataSource;
  28. BOOL _reloadDataSource;
  29. }
  30. @end
  31. @implementation CCOfflinePageContent
  32. - (void)viewDidLoad {
  33. [super viewDidLoad];
  34. // Custom Cell
  35. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellOffline" bundle:nil] forCellReuseIdentifier:@"OfflineCell"];
  36. // dataSource
  37. dataSource = [NSMutableArray new];
  38. // Metadata
  39. _metadata = [CCMetadata new];
  40. self.tableView.tableFooterView = [UIView new];
  41. self.tableView.separatorColor = COLOR_SEPARATOR_TABLE;
  42. self.tableView.emptyDataSetDelegate = self;
  43. self.tableView.emptyDataSetSource = self;
  44. self.tableView.allowsMultipleSelectionDuringEditing = NO;
  45. // calculate _localServerUrl
  46. if ([self.pageType isEqualToString:pageOfflineOffline] && !_localServerUrl) {
  47. _localServerUrl = nil;
  48. }
  49. if ([self.pageType isEqualToString:pageOfflineLocal] && !_localServerUrl) {
  50. _localServerUrl = [CCUtility getDirectoryLocal];
  51. }
  52. // Title
  53. self.title = _titleViewControl;
  54. }
  55. // Apparirà
  56. - (void)viewWillAppear:(BOOL)animated
  57. {
  58. [super viewWillAppear:animated];
  59. // Color
  60. [CCAspect aspectNavigationControllerBar:self.navigationController.navigationBar hidden:NO];
  61. [CCAspect aspectTabBar:self.tabBarController.tabBar hidden:NO];
  62. // Plus Button
  63. [app plusButtonVisibile:true];
  64. [self reloadTable];
  65. }
  66. // E' arrivato
  67. - (void)viewDidAppear:(BOOL)animated
  68. {
  69. [super viewDidAppear:animated];
  70. // cancell Progress
  71. [self.navigationController cancelCCProgress];
  72. }
  73. - (void)didReceiveMemoryWarning {
  74. [super didReceiveMemoryWarning];
  75. }
  76. /*
  77. - (BOOL)gestureRecognizer:(UIPanGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UISwipeGestureRecognizer *)otherGestureRecognizer
  78. {
  79. return YES;
  80. }
  81. */
  82. - (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
  83. {
  84. if ([touch.view isKindOfClass:[UITableView class]])
  85. return NO;
  86. else
  87. return YES;
  88. }
  89. #pragma --------------------------------------------------------------------------------------------
  90. #pragma mark ==== DZNEmptyDataSetSource Methods ====
  91. #pragma --------------------------------------------------------------------------------------------
  92. - (BOOL)emptyDataSetShouldDisplay:(UIScrollView *)scrollView
  93. {
  94. // only for root
  95. if (!_localServerUrl || [_localServerUrl isEqualToString:[CCUtility getDirectoryLocal]])
  96. return YES;
  97. else
  98. return NO;
  99. }
  100. - (CGFloat)spaceHeightForEmptyDataSet:(UIScrollView *)scrollView
  101. {
  102. return 0.0f;
  103. }
  104. - (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView
  105. {
  106. return - self.navigationController.navigationBar.frame.size.height;
  107. }
  108. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  109. {
  110. return [UIColor whiteColor];
  111. }
  112. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  113. {
  114. if ([self.pageType isEqualToString:pageOfflineOffline])
  115. return [UIImage imageNamed:image_brandOffline];
  116. if ([self.pageType isEqualToString:pageOfflineLocal])
  117. return [UIImage imageNamed:image_brandLocal];
  118. return nil;
  119. }
  120. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  121. {
  122. NSString *text;
  123. if ([self.pageType isEqualToString:pageOfflineOffline])
  124. text = NSLocalizedString(@"_no_files_uploaded_", nil);
  125. if ([self.pageType isEqualToString:pageOfflineLocal])
  126. text = NSLocalizedString(@"_no_files_uploaded_", nil);
  127. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:COLOR_BRAND};
  128. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  129. }
  130. - (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
  131. {
  132. NSString *text;
  133. if ([self.pageType isEqualToString:pageOfflineOffline])
  134. text = NSLocalizedString(@"_tutorial_offline_view_", nil);
  135. if ([self.pageType isEqualToString:pageOfflineLocal])
  136. text = NSLocalizedString(@"_tutorial_local_view_", nil);
  137. NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
  138. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  139. paragraph.alignment = NSTextAlignmentCenter;
  140. NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0], NSForegroundColorAttributeName: [UIColor lightGrayColor], NSParagraphStyleAttributeName: paragraph};
  141. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  142. }
  143. #pragma --------------------------------------------------------------------------------------------
  144. #pragma mark ===== UIDocumentInteractionControllerDelegate =====
  145. #pragma --------------------------------------------------------------------------------------------
  146. - (void)documentInteractionControllerDidDismissOptionsMenu:(UIDocumentInteractionController *)controller
  147. {
  148. // evitiamo il rimando della eventuale photo e/o video
  149. if ([CCCoreData getCameraUploadActiveAccount:app.activeAccount]) {
  150. [CCCoreData setCameraUploadDatePhoto:[NSDate date]];
  151. [CCCoreData setCameraUploadDateVideo:[NSDate date]];
  152. }
  153. }
  154. #pragma --------------------------------------------------------------------------------------------
  155. #pragma mark ===== Swipe Table -> menu =====
  156. #pragma--------------------------------------------------------------------------------------------
  157. // more
  158. - (NSString *)tableView:(UITableView *)tableView titleForSwipeAccessoryButtonForRowAtIndexPath:(NSIndexPath *)indexPath
  159. {
  160. return NSLocalizedString(@"_more_", nil);
  161. }
  162. - (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
  163. {
  164. return NSLocalizedString(@"_delete_", nil);
  165. }
  166. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
  167. {
  168. return YES;
  169. }
  170. - (void)tableView:(UITableView *)tableView swipeAccessoryButtonPushedForRowAtIndexPath:(NSIndexPath *)indexPath
  171. {
  172. if ([_pageType isEqualToString:pageOfflineOffline]) {
  173. NSManagedObject *record = [dataSource objectAtIndex:indexPath.row];
  174. _metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", [record valueForKey:@"fileID"], app.activeAccount] context:nil];
  175. }
  176. if ([_pageType isEqualToString:pageOfflineLocal]) {
  177. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  178. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  179. _metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_localServerUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  180. }
  181. AHKActionSheet *actionSheet = [[AHKActionSheet alloc] initWithView:self.view title:nil];
  182. actionSheet.animationDuration = 0.2;
  183. actionSheet.blurRadius = 0.0f;
  184. actionSheet.blurTintColor = [UIColor colorWithWhite:0.0f alpha:0.50f];
  185. actionSheet.buttonHeight = 50.0;
  186. actionSheet.cancelButtonHeight = 50.0f;
  187. actionSheet.separatorHeight = 5.0f;
  188. actionSheet.automaticallyTintButtonImages = @(NO);
  189. actionSheet.encryptedButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:14], NSForegroundColorAttributeName:COLOR_ENCRYPTED };
  190. actionSheet.buttonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:14], NSForegroundColorAttributeName:COLOR_GRAY };
  191. actionSheet.cancelButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:COLOR_BRAND };
  192. actionSheet.disableButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:12], NSForegroundColorAttributeName:COLOR_GRAY };
  193. actionSheet.separatorColor = COLOR_SEPARATOR_TABLE;
  194. actionSheet.cancelButtonTitle = NSLocalizedString(@"_cancel_",nil);
  195. UIImage *iconHeader;
  196. // assegnamo l'immagine anteprima se esiste, altrimenti metti quella standars
  197. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/.%@.ico", _localServerUrl, _metadata.fileNamePrint]])
  198. iconHeader = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/.%@.ico", _localServerUrl, _metadata.fileNamePrint]];
  199. else
  200. iconHeader = [UIImage imageNamed:self.metadata.iconName];
  201. [actionSheet addButtonWithTitle:NSLocalizedString(@"_open_in_", nil)
  202. image:[UIImage imageNamed:image_actionSheetOpenIn]
  203. backgroundColor:[UIColor whiteColor]
  204. height: 50.0
  205. type:AHKActionSheetButtonTypeDefault
  206. handler:^(AHKActionSheet *as) {
  207. [self.tableView setEditing:NO animated:YES];
  208. [self openWith:_metadata];
  209. }];
  210. [actionSheet show];
  211. }
  212. - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
  213. {
  214. if (editingStyle == UITableViewCellEditingStyleDelete) {
  215. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  216. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
  217. style:UIAlertActionStyleDestructive
  218. handler:^(UIAlertAction *action) {
  219. }]];
  220. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
  221. style:UIAlertActionStyleCancel
  222. handler:^(UIAlertAction *action) {
  223. }]];
  224. alertController.popoverPresentationController.sourceView = self.view;
  225. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  226. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  227. [alertController.view layoutIfNeeded];
  228. [self presentViewController:alertController animated:YES completion:nil];
  229. }
  230. [self.tableView setEditing:NO animated:YES];
  231. }
  232. #pragma --------------------------------------------------------------------------------------------
  233. #pragma mark ==== Table ====
  234. #pragma --------------------------------------------------------------------------------------------
  235. - (void)reloadTable
  236. {
  237. if ([_pageType isEqualToString:pageOfflineOffline]) {
  238. if (!_localServerUrl) {
  239. dataSource = [CCCoreData getHomeOfflineActiveAccount:app.activeAccount directoryUser:app.directoryUser];
  240. } else {
  241. NSMutableArray *metadatas = [NSMutableArray new];
  242. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:_localServerUrl activeAccount:app.activeAccount];
  243. NSArray *recordsTableMetadata = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@)", app.activeAccount, directoryID] fieldOrder:[CCUtility getOrderSettings] ascending:[CCUtility getAscendingSettings]];
  244. CCSectionDataSource *sectionDataSource = [CCSection creataDataSourseSectionTableMetadata:recordsTableMetadata listProgressMetadata:nil groupByField:nil replaceDateToExifDate:NO activeAccount:app.activeAccount];
  245. for (NSString *key in sectionDataSource.allRecordsDataSource)
  246. [metadatas insertObject:[sectionDataSource.allRecordsDataSource objectForKey:key] atIndex:0 ];
  247. dataSource = [NSArray arrayWithArray:metadatas];
  248. }
  249. }
  250. if ([_pageType isEqualToString:pageOfflineLocal]) {
  251. NSArray *subpaths = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:_localServerUrl error:nil];
  252. NSMutableArray *metadatas = [NSMutableArray new];
  253. for (NSString *subpath in subpaths)
  254. if (![[subpath lastPathComponent] hasPrefix:@"."])
  255. [metadatas addObject:subpath];
  256. dataSource = [NSArray arrayWithArray:metadatas];
  257. }
  258. [self.tableView reloadData];
  259. }
  260. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  261. {
  262. return 60;
  263. }
  264. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  265. {
  266. return 1;
  267. }
  268. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  269. {
  270. return [dataSource count];
  271. }
  272. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  273. {
  274. CCCellOffline *cell = (CCCellOffline *)[tableView dequeueReusableCellWithIdentifier:@"OfflineCell" forIndexPath:indexPath];
  275. CCMetadata *metadata;
  276. // Initialize
  277. cell.statusImageView.image = nil;
  278. cell.offlineImageView.image = nil;
  279. // change color selection
  280. UIView *selectionColor = [[UIView alloc] init];
  281. selectionColor.backgroundColor = COLOR_SELECT_BACKGROUND;
  282. cell.selectedBackgroundView = selectionColor;
  283. // i am in Offline
  284. if ([_pageType isEqualToString:pageOfflineOffline]) {
  285. metadata = [dataSource objectAtIndex:indexPath.row];
  286. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID]];
  287. if (metadata.cryptated)
  288. cell.offlineImageView.image = [UIImage imageNamed:image_offlinecrypto];
  289. else
  290. cell.offlineImageView.image = [UIImage imageNamed:image_offline];
  291. }
  292. // i am in local
  293. if ([_pageType isEqualToString:pageOfflineLocal]) {
  294. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  295. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  296. metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_localServerUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  297. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/.%@.ico", _localServerUrl, metadata.fileNamePrint]];
  298. if (!cell.fileImageView.image) {
  299. UIImage *icon = [CCGraphics createNewImageFrom:metadata.fileID directoryUser:_localServerUrl fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:NO typeFile:metadata.typeFile writePreview:NO optimizedFileName:[CCUtility getOptimizedPhoto]];
  300. if (icon) {
  301. [CCGraphics saveIcoWithFileID:metadata.fileNamePrint image:icon writeToFile:[NSString stringWithFormat:@"%@/.%@.ico", _localServerUrl, metadata.fileNamePrint] copy:NO move:NO fromPath:nil toPath:nil];
  302. cell.fileImageView.image = icon;
  303. }
  304. }
  305. }
  306. // color and font
  307. if (metadata.cryptated) {
  308. cell.labelTitle.textColor = COLOR_ENCRYPTED;
  309. //nameLabel.font = RalewayLight(13.0f);
  310. cell.labelInfoFile.textColor = [UIColor blackColor];
  311. //detailLabel.font = RalewayLight(9.0f);
  312. } else {
  313. cell.labelTitle.textColor = COLOR_CLEAR;
  314. //nameLabel.font = RalewayLight(13.0f);
  315. cell.labelInfoFile.textColor = [UIColor blackColor];
  316. //detailLabel.font = RalewayLight(9.0f);
  317. }
  318. if (metadata.directory) {
  319. cell.labelInfoFile.text = [CCUtility dateDiff:metadata.date];
  320. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  321. }
  322. // File name
  323. cell.labelTitle.text = metadata.fileNamePrint;
  324. cell.labelInfoFile.text = @"";
  325. // Immagine del file, se non c'è l'anteprima mettiamo quella standard
  326. if (cell.fileImageView.image == nil)
  327. cell.fileImageView.image = [UIImage imageNamed:metadata.iconName];
  328. // it's encrypted ???
  329. if (metadata.cryptated && [metadata.type isEqualToString:metadataType_model] == NO)
  330. cell.statusImageView.image = [UIImage imageNamed:image_lock];
  331. // it's in download mode
  332. if ([metadata.session length] > 0 && [metadata.session rangeOfString:@"download"].location != NSNotFound)
  333. cell.statusImageView.image = [UIImage imageNamed:image_attention];
  334. // text and length
  335. if (metadata.directory) {
  336. cell.labelInfoFile.text = [CCUtility dateDiff:metadata.date];
  337. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  338. } else {
  339. NSString *date = [CCUtility dateDiff:metadata.date];
  340. NSString *length = [CCUtility transformedSize:metadata.size];
  341. if ([metadata.type isEqualToString:metadataType_model])
  342. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@", date];
  343. if ([metadata.type isEqualToString:metadataType_file] || [metadata.type isEqualToString:metadataType_local])
  344. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@, %@", date, length];
  345. cell.accessoryType = UITableViewCellAccessoryNone;
  346. }
  347. return cell;
  348. }
  349. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  350. {
  351. // deselect row
  352. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  353. if ([_pageType isEqualToString:pageOfflineOffline]) {
  354. NSManagedObject *record = [dataSource objectAtIndex:indexPath.row];
  355. _metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", [record valueForKey:@"fileID"], app.activeAccount] context:nil];
  356. }
  357. if ([_pageType isEqualToString:pageOfflineLocal]) {
  358. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  359. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  360. _metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_localServerUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  361. }
  362. // if is in download [do not touch]
  363. if ([_metadata.session length] > 0 && [_metadata.session rangeOfString:@"download"].location != NSNotFound) return;
  364. if (([_metadata.type isEqualToString:metadataType_file] || [_metadata.type isEqualToString:metadataType_local]) && _metadata.directory == NO) {
  365. if ([self shouldPerformSegue])
  366. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  367. }
  368. if ([self.metadata.type isEqualToString:metadataType_model])
  369. [self openModel:self.metadata];
  370. if (_metadata.directory)
  371. [self performSegueDirectoryWithControlPasscode];
  372. }
  373. -(void)performSegueDirectoryWithControlPasscode
  374. {
  375. CCOfflinePageContent *vc = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"OfflinePageContentViewController"];
  376. NSString *serverUrl;
  377. if ([_pageType isEqualToString:pageOfflineOffline] && !_localServerUrl) {
  378. serverUrl = [CCCoreData getServerUrlFromDirectoryID:_metadata.directoryID activeAccount:app.activeAccount];
  379. } else {
  380. serverUrl = _localServerUrl;
  381. }
  382. vc.localServerUrl = [CCUtility stringAppendServerUrl:serverUrl addServerUrl:_metadata.fileNameData];
  383. vc.pageType = _pageType;
  384. vc.titleViewControl = _metadata.fileNamePrint;
  385. [self.navigationController pushViewController:vc animated:YES];
  386. }
  387. #pragma --------------------------------------------------------------------------------------------
  388. #pragma mark ===== Navigation ====
  389. #pragma --------------------------------------------------------------------------------------------
  390. - (void)openModel:(CCMetadata *)metadata
  391. {
  392. UIViewController *viewController;
  393. BOOL isLocal = NO;
  394. if ([self.pageType isEqualToString:pageOfflineLocal])
  395. isLocal = YES;
  396. if ([metadata.model isEqualToString:@"cartadicredito"])
  397. viewController = [[CCCartaDiCredito alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  398. if ([metadata.model isEqualToString:@"bancomat"])
  399. viewController = [[CCBancomat alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  400. if ([metadata.model isEqualToString:@"contocorrente"])
  401. viewController = [[CCContoCorrente alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  402. if ([metadata.model isEqualToString:@"accountweb"])
  403. viewController = [[CCAccountWeb alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  404. if ([metadata.model isEqualToString:@"patenteguida"])
  405. viewController = [[CCPatenteGuida alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  406. if ([metadata.model isEqualToString:@"cartaidentita"])
  407. viewController = [[CCCartaIdentita alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  408. if ([metadata.model isEqualToString:@"passaporto"])
  409. viewController = [[CCPassaporto alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  410. if ([metadata.model isEqualToString:@"note"]) {
  411. viewController = [[CCNote alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  412. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  413. [self presentViewController:navigationController animated:YES completion:nil];
  414. } else {
  415. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  416. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  417. [self presentViewController:navigationController animated:YES completion:nil];
  418. }
  419. }
  420. - (void)openWith:(CCMetadata *)metadata
  421. {
  422. NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@", _localServerUrl, metadata.fileNamePrint]];
  423. self.docController = [UIDocumentInteractionController interactionControllerWithURL:url];
  424. self.docController.delegate = self;
  425. [self.docController presentOptionsMenuFromRect:self.view.frame inView:self.view animated:YES];
  426. }
  427. - (BOOL)shouldPerformSegue
  428. {
  429. // if i am in background -> exit
  430. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return NO;
  431. // if i am not window -> exit
  432. if (self.view.window == NO)
  433. return NO;
  434. // Collapsed but i am in detail -> exit
  435. if (self.splitViewController.isCollapsed)
  436. if (self.detailViewController.isViewLoaded && self.detailViewController.view.window) return NO;
  437. // Video in run -> exit
  438. if (self.detailViewController.photoBrowser.currentVideoPlayerViewController.isViewLoaded && self.detailViewController.photoBrowser.currentVideoPlayerViewController.view.window) return NO;
  439. return YES;
  440. }
  441. -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  442. {
  443. id viewController = segue.destinationViewController;
  444. if ([viewController isKindOfClass:[UINavigationController class]]) {
  445. UINavigationController *nav = viewController;
  446. _detailViewController = (CCDetail *)nav.topViewController;
  447. } else {
  448. _detailViewController = segue.destinationViewController;
  449. }
  450. NSMutableArray *allRecordsDataSourceImagesVideos = [NSMutableArray new];
  451. if ([self.pageType isEqualToString:pageOfflineOffline]) {
  452. for (CCMetadata *metadata in dataSource) {
  453. if ([metadata.typeFile isEqualToString:metadataTypeFile_image] || [metadata.typeFile isEqualToString:metadataTypeFile_video])
  454. [allRecordsDataSourceImagesVideos addObject:metadata];
  455. }
  456. }
  457. if ([self.pageType isEqualToString:pageOfflineLocal]) {
  458. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  459. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  460. for (NSString *fileName in dataSource) {
  461. CCMetadata *metadata = [CCMetadata new];
  462. metadata = [CCUtility insertFileSystemInMetadata:fileName directory:_localServerUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  463. if ([metadata.typeFile isEqualToString:metadataTypeFile_image] || [metadata.typeFile isEqualToString:metadataTypeFile_video])
  464. [allRecordsDataSourceImagesVideos addObject:metadata];
  465. }
  466. _detailViewController.sourceDirectoryLocal = YES;
  467. }
  468. _detailViewController.metadataDetail = _metadata;
  469. _detailViewController.dateFilterQuery = nil;
  470. _detailViewController.isCameraUpload = NO;
  471. _detailViewController.dataSourceImagesVideos = allRecordsDataSourceImagesVideos;
  472. [_detailViewController setTitle:_metadata.fileNamePrint];
  473. }
  474. @end