CCOfflinePageContent.m 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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. // Type
  29. if ([self.pageType isEqualToString:pageOfflineOffline] && !_localServerUrl) {
  30. _localServerUrl = nil;
  31. }
  32. if ([self.pageType isEqualToString:pageOfflineLocal] && !_localServerUrl) {
  33. _localServerUrl = [CCUtility getDirectoryLocal];
  34. }
  35. }
  36. // Apparirà
  37. - (void)viewWillAppear:(BOOL)animated
  38. {
  39. [super viewWillAppear:animated];
  40. [self reloadTable];
  41. }
  42. - (void)didReceiveMemoryWarning {
  43. [super didReceiveMemoryWarning];
  44. }
  45. #pragma --------------------------------------------------------------------------------------------
  46. #pragma mark ==== Table ====
  47. #pragma --------------------------------------------------------------------------------------------
  48. - (void)reloadTable
  49. {
  50. [dataSource removeAllObjects];
  51. if ([_pageType isEqualToString:pageOfflineOffline]) {
  52. if (!_localServerUrl) {
  53. dataSource = (NSMutableArray*)[CCCoreData getHomeOfflineActiveAccount:app.activeAccount directoryUser:app.directoryUser];
  54. } else {
  55. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:_localServerUrl activeAccount:app.activeAccount];
  56. NSArray *recordsTableMetadata = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@)", app.activeAccount, directoryID] fieldOrder:[CCUtility getOrderSettings] ascending:[CCUtility getAscendingSettings]];
  57. CCSectionDataSource *sectionDataSource = [CCSection creataDataSourseSectionTableMetadata:recordsTableMetadata listProgressMetadata:nil groupByField:nil replaceDateToExifDate:NO activeAccount:app.activeAccount];
  58. for (NSString *key in sectionDataSource.allRecordsDataSource)
  59. [dataSource insertObject:[sectionDataSource.allRecordsDataSource objectForKey:key] atIndex:0 ];
  60. }
  61. }
  62. if ([_pageType isEqualToString:pageOfflineLocal]) {
  63. NSArray *subpaths = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:_localServerUrl error:nil];
  64. for (NSString *subpath in subpaths)
  65. if (![[subpath lastPathComponent] hasPrefix:@"."])
  66. [dataSource addObject:subpath];
  67. }
  68. [self.tableView reloadData];
  69. }
  70. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  71. {
  72. return 60;
  73. }
  74. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  75. {
  76. return 1;
  77. }
  78. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  79. {
  80. return [dataSource count];
  81. }
  82. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  83. {
  84. CCCellOffline *cell = (CCCellOffline *)[tableView dequeueReusableCellWithIdentifier:@"OfflineCell" forIndexPath:indexPath];
  85. CCMetadata *metadata;
  86. // Initialize
  87. cell.statusImageView.image = nil;
  88. cell.offlineImageView.image = nil;
  89. // change color selection
  90. UIView *selectionColor = [[UIView alloc] init];
  91. selectionColor.backgroundColor = COLOR_SELECT_BACKGROUND;
  92. cell.selectedBackgroundView = selectionColor;
  93. // i am in Offline
  94. if ([_pageType isEqualToString:pageOfflineOffline]) {
  95. metadata = [dataSource objectAtIndex:indexPath.row];
  96. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID]];
  97. if (_metadata.cryptated) cell.offlineImageView.image = [UIImage imageNamed:image_offlinecrypto];
  98. else cell.offlineImageView.image = [UIImage imageNamed:image_offline];
  99. }
  100. // i am in local
  101. if ([_pageType isEqualToString:pageOfflineLocal]) {
  102. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  103. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  104. metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_localServerUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  105. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/.%@.ico", _localServerUrl, metadata.fileNamePrint]];
  106. if (!cell.fileImageView.image) {
  107. 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]];
  108. if (icon) {
  109. [CCGraphics saveIcoWithFileID:metadata.fileNamePrint image:icon writeToFile:[NSString stringWithFormat:@"%@/.%@.ico", _localServerUrl, metadata.fileNamePrint] copy:NO move:NO fromPath:nil toPath:nil];
  110. cell.fileImageView.image = icon;
  111. }
  112. }
  113. }
  114. // color and font
  115. if (metadata.cryptated) {
  116. cell.labelTitle.textColor = COLOR_ENCRYPTED;
  117. //nameLabel.font = RalewayLight(13.0f);
  118. cell.labelInfoFile.textColor = [UIColor blackColor];
  119. //detailLabel.font = RalewayLight(9.0f);
  120. } else {
  121. cell.labelTitle.textColor = COLOR_CLEAR;
  122. //nameLabel.font = RalewayLight(13.0f);
  123. cell.labelInfoFile.textColor = [UIColor blackColor];
  124. //detailLabel.font = RalewayLight(9.0f);
  125. }
  126. if (metadata.directory) {
  127. cell.labelInfoFile.text = [CCUtility dateDiff:metadata.date];
  128. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  129. }
  130. // File name
  131. cell.labelTitle.text = metadata.fileNamePrint;
  132. cell.labelInfoFile.text = @"";
  133. // Immagine del file, se non c'è l'anteprima mettiamo quella standard
  134. if (cell.fileImageView.image == nil)
  135. cell.fileImageView.image = [UIImage imageNamed:metadata.iconName];
  136. // it's encrypted ???
  137. if (metadata.cryptated && [metadata.type isEqualToString:metadataType_model] == NO)
  138. cell.statusImageView.image = [UIImage imageNamed:image_lock];
  139. // it's in download mode
  140. if ([metadata.session length] > 0 && [metadata.session rangeOfString:@"download"].location != NSNotFound)
  141. cell.statusImageView.image = [UIImage imageNamed:image_attention];
  142. // text and length
  143. if (metadata.directory) {
  144. cell.labelInfoFile.text = [CCUtility dateDiff:metadata.date];
  145. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  146. } else {
  147. NSString *date = [CCUtility dateDiff:metadata.date];
  148. NSString *length = [CCUtility transformedSize:metadata.size];
  149. if ([metadata.type isEqualToString:metadataType_model])
  150. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@", date];
  151. if ([metadata.type isEqualToString:metadataType_file] || [metadata.type isEqualToString:metadataType_local])
  152. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@, %@", date, length];
  153. cell.accessoryType = UITableViewCellAccessoryNone;
  154. }
  155. return cell;
  156. }
  157. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  158. {
  159. // deselect row
  160. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  161. if ([_pageType isEqualToString:pageOfflineOffline]) {
  162. NSManagedObject *record = [dataSource objectAtIndex:indexPath.row];
  163. self.fileIDPhoto = [record valueForKey:@"fileID"];
  164. _metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", self.fileIDPhoto, app.activeAccount] context:nil];
  165. }
  166. if ([_pageType isEqualToString:pageOfflineLocal]) {
  167. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  168. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  169. _metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:_localServerUrl activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  170. _fileIDPhoto = _metadata.fileID;
  171. }
  172. // if is in download [do not touch]
  173. if ([_metadata.session length] > 0 && [_metadata.session rangeOfString:@"download"].location != NSNotFound) return;
  174. if (([_metadata.type isEqualToString:metadataType_file] || [_metadata.type isEqualToString:metadataType_local]) && _metadata.directory == NO) {
  175. if ([self shouldPerformSegue])
  176. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  177. }
  178. //if ([self.metadata.type isEqualToString:metadataType_model]) [self openModel:self.metadata];
  179. if (_metadata.directory)
  180. [self performSegueDirectoryWithControlPasscode];
  181. }
  182. -(void)performSegueDirectoryWithControlPasscode
  183. {
  184. CCOffline *vc = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"OfflineViewController"];
  185. NSString *serverUrl = [CCCoreData getServerUrlFromDirectoryID:_metadata.directoryID activeAccount:app.activeAccount];
  186. //vc.localServerUrl = [CCUtility stringAppendServerUrl:serverUrl addServerUrl:_metadata.fileName];
  187. //vc.typeOfController = _typeOfController;
  188. [self.navigationController pushViewController:vc animated:YES];
  189. }
  190. #pragma --------------------------------------------------------------------------------------------
  191. #pragma mark ===== Navigation ====
  192. #pragma --------------------------------------------------------------------------------------------
  193. - (BOOL)shouldPerformSegue
  194. {
  195. // if i am in background -> exit
  196. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return NO;
  197. // if i am not window -> exit
  198. if (self.view.window == NO)
  199. return NO;
  200. // Collapsed but i am in detail -> exit
  201. if (self.splitViewController.isCollapsed)
  202. if (self.detailViewController.isViewLoaded && self.detailViewController.view.window) return NO;
  203. // Video in run -> exit
  204. if (self.detailViewController.photoBrowser.currentVideoPlayerViewController.isViewLoaded && self.detailViewController.photoBrowser.currentVideoPlayerViewController.view.window) return NO;
  205. return YES;
  206. }
  207. -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  208. {
  209. id viewController = segue.destinationViewController;
  210. if ([viewController isKindOfClass:[UINavigationController class]]) {
  211. UINavigationController *nav = viewController;
  212. self.detailViewController = (CCDetail *)nav.topViewController;
  213. } else {
  214. self.detailViewController = segue.destinationViewController;
  215. }
  216. self.detailViewController.metadataDetail = _metadata;
  217. if (app.isLocalStorage) self.detailViewController.sourceDirectory = sorceDirectoryLocal;
  218. else self.detailViewController.sourceDirectory = sorceDirectoryOffline;
  219. self.detailViewController.dateFilterQuery = nil;
  220. self.detailViewController.isCameraUpload = NO;
  221. [self.detailViewController setTitle:_metadata.fileNamePrint];
  222. }
  223. @end