CCOfflinePageContent.m 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. //
  2. // CCOfflinePageContent.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/02/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import "CCOfflinePageContent.h"
  9. #import "AppDelegate.h"
  10. @interface CCOfflinePageContent ()
  11. {
  12. NSMutableArray *dataSource;
  13. }
  14. @end
  15. @implementation CCOfflinePageContent
  16. - (void)viewDidLoad {
  17. [super viewDidLoad];
  18. // Custom Cell
  19. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellOffline" bundle:nil] forCellReuseIdentifier:@"OfflineCell"];
  20. // dataSource
  21. dataSource = [NSMutableArray new];
  22. // Metadata
  23. _metadata = [CCMetadata new];
  24. self.tableView.emptyDataSetDelegate = self;
  25. self.tableView.emptyDataSetSource = self;
  26. self.tableView.tableFooterView = [UIView new];
  27. self.tableView.separatorColor = COLOR_SEPARATOR_TABLE;
  28. // calculate _localServerUrl
  29. if ([self.pageType isEqualToString:pageOfflineOffline] && !_localServerUrl) {
  30. _localServerUrl = nil;
  31. }
  32. if ([self.pageType isEqualToString:pageOfflineLocal] && !_localServerUrl) {
  33. _localServerUrl = [CCUtility getDirectoryLocal];
  34. }
  35. // Title
  36. self.title = _titleViewControl;
  37. }
  38. // Apparirà
  39. - (void)viewWillAppear:(BOOL)animated
  40. {
  41. [super viewWillAppear:animated];
  42. // Color
  43. [CCAspect aspectNavigationControllerBar:self.navigationController.navigationBar hidden:NO];
  44. [CCAspect aspectTabBar:self.tabBarController.tabBar hidden:NO];
  45. // Plus Button
  46. [app plusButtonVisibile:true];
  47. [self reloadTable];
  48. }
  49. - (void)didReceiveMemoryWarning {
  50. [super didReceiveMemoryWarning];
  51. }
  52. #pragma --------------------------------------------------------------------------------------------
  53. #pragma mark ==== DZNEmptyDataSetSource Methods ====
  54. #pragma --------------------------------------------------------------------------------------------
  55. - (BOOL)emptyDataSetShouldDisplay:(UIScrollView *)scrollView
  56. {
  57. // only for root
  58. if (!_localServerUrl || [_localServerUrl isEqualToString:[CCUtility getDirectoryLocal]])
  59. return YES;
  60. else
  61. return NO;
  62. }
  63. - (CGFloat)spaceHeightForEmptyDataSet:(UIScrollView *)scrollView
  64. {
  65. return 0.0f;
  66. }
  67. - (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView
  68. {
  69. return - self.navigationController.navigationBar.frame.size.height;
  70. }
  71. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  72. {
  73. return [UIColor whiteColor];
  74. }
  75. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  76. {
  77. if ([self.pageType isEqualToString:pageOfflineOffline])
  78. return [UIImage imageNamed:image_brandOffline];
  79. if ([self.pageType isEqualToString:pageOfflineLocal])
  80. return [UIImage imageNamed:image_brandLocal];
  81. return nil;
  82. }
  83. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  84. {
  85. NSString *text;
  86. if ([self.pageType isEqualToString:pageOfflineOffline])
  87. text = NSLocalizedString(@"_no_files_uploaded_", nil);
  88. if ([self.pageType isEqualToString:pageOfflineLocal])
  89. text = NSLocalizedString(@"_no_files_uploaded_", nil);
  90. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:COLOR_BRAND};
  91. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  92. }
  93. - (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
  94. {
  95. NSString *text;
  96. if ([self.pageType isEqualToString:pageOfflineOffline])
  97. text = NSLocalizedString(@"_tutorial_offline_view_", nil);
  98. if ([self.pageType isEqualToString:pageOfflineLocal])
  99. text = NSLocalizedString(@"_tutorial_local_view_", nil);
  100. NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
  101. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  102. paragraph.alignment = NSTextAlignmentCenter;
  103. NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0], NSForegroundColorAttributeName: [UIColor lightGrayColor], NSParagraphStyleAttributeName: paragraph};
  104. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  105. }
  106. #pragma --------------------------------------------------------------------------------------------
  107. #pragma mark ===== UIDocumentInteractionControllerDelegate =====
  108. #pragma --------------------------------------------------------------------------------------------
  109. - (void)documentInteractionControllerDidDismissOptionsMenu:(UIDocumentInteractionController *)controller
  110. {
  111. // evitiamo il rimando della eventuale photo e/o video
  112. if ([CCCoreData getCameraUploadActiveAccount:app.activeAccount]) {
  113. [CCCoreData setCameraUploadDatePhoto:[NSDate date]];
  114. [CCCoreData setCameraUploadDateVideo:[NSDate date]];
  115. }
  116. }
  117. #pragma --------------------------------------------------------------------------------------------
  118. #pragma mark ==== Table ====
  119. #pragma --------------------------------------------------------------------------------------------
  120. - (void)reloadTable
  121. {
  122. [dataSource removeAllObjects];
  123. if ([_pageType isEqualToString:pageOfflineOffline]) {
  124. if (!_localServerUrl) {
  125. dataSource = (NSMutableArray*)[CCCoreData getHomeOfflineActiveAccount:app.activeAccount directoryUser:app.directoryUser];
  126. } else {
  127. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:_localServerUrl activeAccount:app.activeAccount];
  128. NSArray *recordsTableMetadata = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@)", app.activeAccount, directoryID] fieldOrder:[CCUtility getOrderSettings] ascending:[CCUtility getAscendingSettings]];
  129. CCSectionDataSource *sectionDataSource = [CCSection creataDataSourseSectionTableMetadata:recordsTableMetadata listProgressMetadata:nil groupByField:nil replaceDateToExifDate:NO activeAccount:app.activeAccount];
  130. for (NSString *key in sectionDataSource.allRecordsDataSource)
  131. [dataSource insertObject:[sectionDataSource.allRecordsDataSource objectForKey:key] atIndex:0 ];
  132. }
  133. }
  134. if ([_pageType isEqualToString:pageOfflineLocal]) {
  135. NSArray *subpaths = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:_localServerUrl error:nil];
  136. for (NSString *subpath in subpaths)
  137. if (![[subpath lastPathComponent] hasPrefix:@"."])
  138. [dataSource addObject:subpath];
  139. }
  140. [self.tableView reloadData];
  141. }
  142. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  143. {
  144. return 60;
  145. }
  146. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  147. {
  148. return 1;
  149. }
  150. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  151. {
  152. return [dataSource count];
  153. }
  154. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  155. {
  156. CCCellOffline *cell = (CCCellOffline *)[tableView dequeueReusableCellWithIdentifier:@"OfflineCell" forIndexPath:indexPath];
  157. CCMetadata *metadata;
  158. // Initialize
  159. cell.statusImageView.image = nil;
  160. cell.offlineImageView.image = nil;
  161. // change color selection
  162. UIView *selectionColor = [[UIView alloc] init];
  163. selectionColor.backgroundColor = COLOR_SELECT_BACKGROUND;
  164. cell.selectedBackgroundView = selectionColor;
  165. // i am in Offline
  166. if ([_pageType isEqualToString:pageOfflineOffline]) {
  167. metadata = [dataSource objectAtIndex:indexPath.row];
  168. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID]];
  169. if (metadata.cryptated)
  170. cell.offlineImageView.image = [UIImage imageNamed:image_offlinecrypto];
  171. else
  172. cell.offlineImageView.image = [UIImage imageNamed:image_offline];
  173. }
  174. // i am in local
  175. if ([_pageType isEqualToString:pageOfflineLocal]) {
  176. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  177. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  178. metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_localServerUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  179. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/.%@.ico", _localServerUrl, metadata.fileNamePrint]];
  180. if (!cell.fileImageView.image) {
  181. 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]];
  182. if (icon) {
  183. [CCGraphics saveIcoWithFileID:metadata.fileNamePrint image:icon writeToFile:[NSString stringWithFormat:@"%@/.%@.ico", _localServerUrl, metadata.fileNamePrint] copy:NO move:NO fromPath:nil toPath:nil];
  184. cell.fileImageView.image = icon;
  185. }
  186. }
  187. }
  188. // color and font
  189. if (metadata.cryptated) {
  190. cell.labelTitle.textColor = COLOR_ENCRYPTED;
  191. //nameLabel.font = RalewayLight(13.0f);
  192. cell.labelInfoFile.textColor = [UIColor blackColor];
  193. //detailLabel.font = RalewayLight(9.0f);
  194. } else {
  195. cell.labelTitle.textColor = COLOR_CLEAR;
  196. //nameLabel.font = RalewayLight(13.0f);
  197. cell.labelInfoFile.textColor = [UIColor blackColor];
  198. //detailLabel.font = RalewayLight(9.0f);
  199. }
  200. if (metadata.directory) {
  201. cell.labelInfoFile.text = [CCUtility dateDiff:metadata.date];
  202. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  203. }
  204. // File name
  205. cell.labelTitle.text = metadata.fileNamePrint;
  206. cell.labelInfoFile.text = @"";
  207. // Immagine del file, se non c'è l'anteprima mettiamo quella standard
  208. if (cell.fileImageView.image == nil)
  209. cell.fileImageView.image = [UIImage imageNamed:metadata.iconName];
  210. // it's encrypted ???
  211. if (metadata.cryptated && [metadata.type isEqualToString:metadataType_model] == NO)
  212. cell.statusImageView.image = [UIImage imageNamed:image_lock];
  213. // it's in download mode
  214. if ([metadata.session length] > 0 && [metadata.session rangeOfString:@"download"].location != NSNotFound)
  215. cell.statusImageView.image = [UIImage imageNamed:image_attention];
  216. // text and length
  217. if (metadata.directory) {
  218. cell.labelInfoFile.text = [CCUtility dateDiff:metadata.date];
  219. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  220. } else {
  221. NSString *date = [CCUtility dateDiff:metadata.date];
  222. NSString *length = [CCUtility transformedSize:metadata.size];
  223. if ([metadata.type isEqualToString:metadataType_model])
  224. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@", date];
  225. if ([metadata.type isEqualToString:metadataType_file] || [metadata.type isEqualToString:metadataType_local])
  226. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@, %@", date, length];
  227. cell.accessoryType = UITableViewCellAccessoryNone;
  228. }
  229. return cell;
  230. }
  231. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  232. {
  233. // deselect row
  234. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  235. if ([_pageType isEqualToString:pageOfflineOffline]) {
  236. NSManagedObject *record = [dataSource objectAtIndex:indexPath.row];
  237. _metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", [record valueForKey:@"fileID"], app.activeAccount] context:nil];
  238. }
  239. if ([_pageType isEqualToString:pageOfflineLocal]) {
  240. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  241. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  242. _metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_localServerUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  243. }
  244. // if is in download [do not touch]
  245. if ([_metadata.session length] > 0 && [_metadata.session rangeOfString:@"download"].location != NSNotFound) return;
  246. if (([_metadata.type isEqualToString:metadataType_file] || [_metadata.type isEqualToString:metadataType_local]) && _metadata.directory == NO) {
  247. if ([self shouldPerformSegue])
  248. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  249. }
  250. if ([self.metadata.type isEqualToString:metadataType_model])
  251. [self openModel:self.metadata];
  252. if (_metadata.directory)
  253. [self performSegueDirectoryWithControlPasscode];
  254. }
  255. -(void)performSegueDirectoryWithControlPasscode
  256. {
  257. CCOfflinePageContent *vc = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"OfflinePageContentViewController"];
  258. NSString *serverUrl;
  259. if ([_pageType isEqualToString:pageOfflineOffline] && !_localServerUrl) {
  260. serverUrl = [CCCoreData getServerUrlFromDirectoryID:_metadata.directoryID activeAccount:app.activeAccount];
  261. } else {
  262. serverUrl = _localServerUrl;
  263. }
  264. vc.localServerUrl = [CCUtility stringAppendServerUrl:serverUrl addServerUrl:_metadata.fileNameData];
  265. vc.pageType = _pageType;
  266. vc.titleViewControl = _metadata.fileNamePrint;
  267. [self.navigationController pushViewController:vc animated:YES];
  268. }
  269. #pragma --------------------------------------------------------------------------------------------
  270. #pragma mark ===== Navigation ====
  271. #pragma --------------------------------------------------------------------------------------------
  272. - (void)openModel:(CCMetadata *)metadata
  273. {
  274. UIViewController *viewController;
  275. BOOL isLocal = NO;
  276. if ([self.pageType isEqualToString:pageOfflineLocal])
  277. isLocal = YES;
  278. if ([metadata.model isEqualToString:@"cartadicredito"])
  279. viewController = [[CCCartaDiCredito alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  280. if ([metadata.model isEqualToString:@"bancomat"])
  281. viewController = [[CCBancomat alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  282. if ([metadata.model isEqualToString:@"contocorrente"])
  283. viewController = [[CCContoCorrente alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  284. if ([metadata.model isEqualToString:@"accountweb"])
  285. viewController = [[CCAccountWeb alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  286. if ([metadata.model isEqualToString:@"patenteguida"])
  287. viewController = [[CCPatenteGuida alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  288. if ([metadata.model isEqualToString:@"cartaidentita"])
  289. viewController = [[CCCartaIdentita alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  290. if ([metadata.model isEqualToString:@"passaporto"])
  291. viewController = [[CCPassaporto alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  292. if ([metadata.model isEqualToString:@"note"]) {
  293. viewController = [[CCNote alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:isLocal];
  294. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  295. [self presentViewController:navigationController animated:YES completion:nil];
  296. } else {
  297. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  298. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  299. [self presentViewController:navigationController animated:YES completion:nil];
  300. }
  301. }
  302. - (BOOL)shouldPerformSegue
  303. {
  304. // if i am in background -> exit
  305. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return NO;
  306. // if i am not window -> exit
  307. if (self.view.window == NO)
  308. return NO;
  309. // Collapsed but i am in detail -> exit
  310. if (self.splitViewController.isCollapsed)
  311. if (self.detailViewController.isViewLoaded && self.detailViewController.view.window) return NO;
  312. // Video in run -> exit
  313. if (self.detailViewController.photoBrowser.currentVideoPlayerViewController.isViewLoaded && self.detailViewController.photoBrowser.currentVideoPlayerViewController.view.window) return NO;
  314. return YES;
  315. }
  316. -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  317. {
  318. id viewController = segue.destinationViewController;
  319. if ([viewController isKindOfClass:[UINavigationController class]]) {
  320. UINavigationController *nav = viewController;
  321. self.detailViewController = (CCDetail *)nav.topViewController;
  322. } else {
  323. self.detailViewController = segue.destinationViewController;
  324. }
  325. self.detailViewController.metadataDetail = _metadata;
  326. if ([self.pageType isEqualToString:pageOfflineOffline])
  327. self.detailViewController.sourceDirectory = sorceDirectoryOffline;
  328. if ([self.pageType isEqualToString:pageOfflineLocal])
  329. self.detailViewController.sourceDirectory = sorceDirectoryLocal;
  330. self.detailViewController.dateFilterQuery = nil;
  331. self.detailViewController.isCameraUpload = NO;
  332. [self.detailViewController setTitle:_metadata.fileNamePrint];
  333. }
  334. @end