CCOfflinePageContent.m 21 KB

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