CCOffline.m 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695
  1. //
  2. // CCOffline.m
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 16/01/17.
  6. // Copyright (c) 2014 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 "CCOffline.h"
  24. #import "AppDelegate.h"
  25. #import "CCOfflineFolder.h"
  26. #pragma GCC diagnostic ignored "-Wundeclared-selector"
  27. @interface CCOffline ()
  28. {
  29. NSMutableArray *dataSource;
  30. }
  31. @end
  32. @implementation CCOffline
  33. #pragma --------------------------------------------------------------------------------------------
  34. #pragma mark ===== Init =====
  35. #pragma --------------------------------------------------------------------------------------------
  36. - (id)initWithCoder:(NSCoder *)aDecoder
  37. {
  38. if (self = [super initWithCoder:aDecoder]) {
  39. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadTable) name:@"reloadTableCCOffline" object:nil];
  40. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(readFileOffline) name:@"readFileOffline" object:nil];
  41. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(initToHome) name:@"initToHomeOffline" object:nil];
  42. app.activeOffline = self;
  43. }
  44. return self;
  45. }
  46. - (id)initWithStyle:(UITableViewStyle)style
  47. {
  48. self = [super initWithStyle:style];
  49. if (self) {
  50. // Custom initialization
  51. }
  52. return self;
  53. }
  54. #pragma --------------------------------------------------------------------------------------------
  55. #pragma mark ===== View =====
  56. #pragma --------------------------------------------------------------------------------------------
  57. - (void)viewDidLoad
  58. {
  59. [super viewDidLoad];
  60. // Custom Cell
  61. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellOffline" bundle:nil] forCellReuseIdentifier:@"OfflineCell"];
  62. // Settings initial dir
  63. if (![self.serverUrlLocal length]) self.serverUrlLocal = @"Offline";
  64. // dataSource
  65. dataSource = [[NSMutableArray alloc] init];
  66. // Metadata
  67. self.metadata = [[CCMetadata alloc] init];
  68. self.tableView.emptyDataSetDelegate = self;
  69. self.tableView.emptyDataSetSource = self;
  70. self.tableView.tableFooterView = [UIView new];
  71. // button
  72. UIImage *image;
  73. if ([self.serverUrlLocal isEqualToString:@"Offline"]) {
  74. image = [UIImage imageNamed:image_navBarLocal];
  75. self.textView = NSLocalizedString(@"_offline_", nil);
  76. } else image = [UIImage imageNamed:image_navBarOffline];
  77. UIBarButtonItem *_btn=[[UIBarButtonItem alloc]initWithImage:image style:UIBarButtonItemStylePlain target:self action:@selector(switchOfflineLocal)];
  78. self.navigationItem.rightBarButtonItem=_btn;
  79. [self reloadTable];
  80. }
  81. // Apparirà
  82. - (void)viewWillAppear:(BOOL)animated
  83. {
  84. [super viewWillAppear:animated];
  85. // Color
  86. [CCAspect aspectNavigationControllerBar:self.navigationController.navigationBar hidden:NO];
  87. [CCAspect aspectTabBar:self.tabBarController.tabBar hidden:NO];
  88. // title
  89. self.title = self.textView;
  90. // Plus Button
  91. [app plusButtonVisibile:true];
  92. [self reloadTable];
  93. }
  94. #pragma --------------------------------------------------------------------------------------------
  95. #pragma mark ===== Effetti Grafici =====
  96. #pragma --------------------------------------------------------------------------------------------
  97. - (void)forcedSwitchOffline
  98. {
  99. if ([self.serverUrlLocal isEqualToString:@"Offline"] == NO)
  100. [self switchOfflineLocal];
  101. }
  102. - (void)switchOfflineLocal
  103. {
  104. UIImage *imageBarButton;
  105. if ([self.serverUrlLocal isEqualToString:@"Offline"]) {
  106. self.textView = NSLocalizedString(@"_local_storage_", nil);
  107. imageBarButton = [UIImage imageNamed:image_navBarOffline];
  108. // img Tab Bar
  109. UITabBarItem *item = [self.tabBarController.tabBar.items objectAtIndex:1];
  110. item.selectedImage = [UIImage imageNamed:image_tabBarLocal];
  111. item.image = [UIImage imageNamed:image_tabBarLocal];
  112. self.serverUrlLocal = [CCUtility getDirectoryLocal];
  113. app.isLocalStorage = true;
  114. } else {
  115. self.textView = NSLocalizedString(@"_offline_", nil);
  116. imageBarButton = [UIImage imageNamed:image_navBarLocal];
  117. // Image Tab Bar
  118. UITabBarItem *item = [self.tabBarController.tabBar.items objectAtIndex:1];
  119. item.selectedImage = [UIImage imageNamed:image_tabBarOffline];
  120. item.image = [UIImage imageNamed:image_tabBarOffline];
  121. self.serverUrlLocal = @"Offline";
  122. app.isLocalStorage = false;
  123. }
  124. UIBarButtonItem *_btn=[[UIBarButtonItem alloc]initWithImage:imageBarButton style:UIBarButtonItemStylePlain target:self action:@selector(switchOfflineLocal)];
  125. self.navigationItem.rightBarButtonItem=_btn;
  126. // init of Navigation Control
  127. [self.navigationController popToRootViewControllerAnimated:NO];
  128. // refresh
  129. if ([self.serverUrlLocal isEqualToString:@"Offline"])
  130. [[NSNotificationCenter defaultCenter] postNotificationName:@"initToHomeOffline" object:nil];
  131. else
  132. [self reloadTable];
  133. }
  134. #pragma --------------------------------------------------------------------------------------------
  135. #pragma mark ==== DZNEmptyDataSetSource Methods ====
  136. #pragma --------------------------------------------------------------------------------------------
  137. - (BOOL)emptyDataSetShouldDisplay:(UIScrollView *)scrollView
  138. {
  139. if ([self.serverUrlLocal isEqualToString:@"Offline"] || [self.serverUrlLocal isEqualToString:[CCUtility getDirectoryLocal]]) return YES;
  140. else return NO;
  141. }
  142. - (CGFloat)spaceHeightForEmptyDataSet:(UIScrollView *)scrollView
  143. {
  144. return 0.0f;
  145. }
  146. - (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView
  147. {
  148. return - self.navigationController.navigationBar.frame.size.height;
  149. }
  150. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  151. {
  152. return [UIColor whiteColor];
  153. }
  154. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  155. {
  156. if ([self.serverUrlLocal isEqualToString:@"Offline"]) return [UIImage imageNamed:image_brandOffline];
  157. else return [UIImage imageNamed:image_brandLocal];
  158. }
  159. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  160. {
  161. NSString *text;
  162. if ([self.serverUrlLocal isEqualToString:@"Offline"]) text = NSLocalizedString(@"_no_files_uploaded_", nil);
  163. else text = NSLocalizedString(@"_no_files_uploaded_", nil);
  164. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:COLOR_BRAND};
  165. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  166. }
  167. - (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
  168. {
  169. NSString *text;
  170. if ([self.serverUrlLocal isEqualToString:@"Offline"]) text = NSLocalizedString(@"_tutorial_offline_view_", nil);
  171. else text = NSLocalizedString(@"_tutorial_local_view_", nil);
  172. NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
  173. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  174. paragraph.alignment = NSTextAlignmentCenter;
  175. NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0], NSForegroundColorAttributeName: [UIColor lightGrayColor], NSParagraphStyleAttributeName: paragraph};
  176. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  177. }
  178. #pragma --------------------------------------------------------------------------------------------
  179. #pragma mark ===== UIDocumentInteractionControllerDelegate =====
  180. #pragma --------------------------------------------------------------------------------------------
  181. - (void)documentInteractionControllerDidDismissOptionsMenu:(UIDocumentInteractionController *)controller
  182. {
  183. // evitiamo il rimando della eventuale photo e/o video
  184. if ([CCCoreData getCameraUploadActiveAccount:app.activeAccount]) {
  185. [CCCoreData setCameraUploadDatePhoto:[NSDate date]];
  186. [CCCoreData setCameraUploadDateVideo:[NSDate date]];
  187. }
  188. }
  189. #pragma --------------------------------------------------------------------------------------------
  190. #pragma mark ==== Comandi ====
  191. #pragma --------------------------------------------------------------------------------------------
  192. - (void)openModel:(CCMetadata *)metadata
  193. {
  194. UIViewController *viewController;
  195. if ([metadata.model isEqualToString:@"cartadicredito"])
  196. viewController = [[CCCartaDiCredito alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:app.isLocalStorage];
  197. if ([metadata.model isEqualToString:@"bancomat"])
  198. viewController = [[CCBancomat alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:app.isLocalStorage];
  199. if ([metadata.model isEqualToString:@"contocorrente"])
  200. viewController = [[CCContoCorrente alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:app.isLocalStorage];
  201. if ([metadata.model isEqualToString:@"accountweb"])
  202. viewController = [[CCAccountWeb alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:app.isLocalStorage];
  203. if ([metadata.model isEqualToString:@"patenteguida"])
  204. viewController = [[CCPatenteGuida alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:app.isLocalStorage];
  205. if ([metadata.model isEqualToString:@"cartaidentita"])
  206. viewController = [[CCCartaIdentita alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:app.isLocalStorage];
  207. if ([metadata.model isEqualToString:@"passaporto"])
  208. viewController = [[CCPassaporto alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:app.isLocalStorage];
  209. if ([metadata.model isEqualToString:@"note"]) {
  210. viewController = [[CCNote alloc] initWithDelegate:self fileName:metadata.fileName uuid:metadata.uuid rev:metadata.rev fileID:metadata.fileID modelReadOnly:true isLocal:app.isLocalStorage];
  211. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  212. [self presentViewController:navigationController animated:YES completion:nil];
  213. } else {
  214. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  215. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  216. [self presentViewController:navigationController animated:YES completion:nil];
  217. }
  218. }
  219. - (void)openWith:(CCMetadata *)metadata
  220. {
  221. NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@", self.serverUrlLocal, metadata.fileNamePrint]];
  222. self.docController = [UIDocumentInteractionController interactionControllerWithURL:url];
  223. self.docController.delegate = self;
  224. [self.docController presentOptionsMenuFromRect:self.view.frame inView:self.view animated:YES];
  225. }
  226. #pragma --------------------------------------------------------------------------------------------
  227. #pragma mark ===== read file Offline for download =====
  228. #pragma---------------------------------------------------------------------------------------------
  229. - (void)readFileFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  230. {
  231. // error
  232. }
  233. - (void)readFileSuccess:(CCMetadataNet *)metadataNet metadata:(CCMetadata *)metadata
  234. {
  235. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
  236. [[CCOfflineFolder sharedOfflineFolder] verifyChangeMedatas:[[NSArray alloc] initWithObjects:metadata, nil] serverUrl:metadataNet.serverUrl directoryID:metadataNet.directoryID account:app.activeAccount offline:NO];
  237. });
  238. [self.tableView performSelector:@selector(reloadData) withObject:nil afterDelay:0.1];
  239. }
  240. - (void)readFileOffline
  241. {
  242. if (app.activeAccount == nil || [CCUtility getHomeServerUrlActiveUrl:app.activeUrl typeCloud:app.typeCloud] == nil) return;
  243. NSArray *metadatas = [[NSArray alloc] init];
  244. metadatas = [CCCoreData getOfflineWithControlZombie:YES activeAccount:app.activeAccount directoryUser:app.directoryUser];
  245. for (CCMetadata *metadata in metadatas) {
  246. NSString *serverUrl = [CCCoreData getServerUrlFromDirectoryID:metadata.directoryID activeAccount:app.activeAccount];
  247. if (serverUrl == nil) continue;
  248. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:app.activeAccount];
  249. metadataNet.action = actionReadFile;
  250. metadataNet.fileName = metadata.fileName;
  251. metadataNet.fileNamePrint = metadata.fileNamePrint;
  252. metadataNet.serverUrl = serverUrl;
  253. metadataNet.selector = selectorReadFileOffline;
  254. metadataNet.priority = NSOperationQueuePriorityVeryLow;
  255. [app addNetworkingOperationQueue:app.netQueue delegate:self metadataNet:metadataNet];
  256. }
  257. }
  258. #pragma --------------------------------------------------------------------------------------------
  259. #pragma mark ===== Swipe Table -> menu =====
  260. #pragma--------------------------------------------------------------------------------------------
  261. // more
  262. - (NSString *)tableView:(UITableView *)tableView titleForSwipeAccessoryButtonForRowAtIndexPath:(NSIndexPath *)indexPath
  263. {
  264. if ([self.serverUrlLocal isEqualToString:@"Offline"] == NO) {
  265. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  266. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  267. CCMetadata *metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:self.serverUrlLocal activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  268. if (metadata.directory)
  269. return nil;
  270. else
  271. return NSLocalizedString(@"_more_", nil);
  272. } else return nil;
  273. }
  274. - (void)tableView:(UITableView *)tableView swipeAccessoryButtonPushedForRowAtIndexPath:(NSIndexPath *)indexPath
  275. {
  276. UIImage *iconHeader;
  277. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  278. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  279. self.metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:self.serverUrlLocal activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  280. [self setEditing:NO animated:YES];
  281. AHKActionSheet *actionSheet = [[AHKActionSheet alloc] initWithView:self.view title:nil];
  282. actionSheet.animationDuration = 0.2;
  283. actionSheet.blurRadius = 0.0f;
  284. actionSheet.blurTintColor = [UIColor colorWithWhite:0.0f alpha:0.50f];
  285. actionSheet.buttonHeight = 50.0;
  286. actionSheet.cancelButtonHeight = 50.0f;
  287. actionSheet.separatorHeight = 5.0f;
  288. actionSheet.encryptedButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:14], NSForegroundColorAttributeName:COLOR_ENCRYPTED };
  289. actionSheet.buttonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:14], NSForegroundColorAttributeName:COLOR_GRAY };
  290. actionSheet.cancelButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:COLOR_BRAND };
  291. actionSheet.disableButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:12], NSForegroundColorAttributeName:COLOR_GRAY };
  292. actionSheet.separatorColor = COLOR_SEPARATOR_TABLE;
  293. actionSheet.cancelButtonTitle = NSLocalizedString(@"_cancel_",nil);
  294. // assegnamo l'immagine anteprima se esiste, altrimenti metti quella standars
  295. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/.%@.ico", self.serverUrlLocal, self.metadata.fileNamePrint]])
  296. iconHeader = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/.%@.ico", self.serverUrlLocal, self.metadata.fileNamePrint]];
  297. else
  298. iconHeader = [UIImage imageNamed:self.metadata.iconName];
  299. [actionSheet addButtonWithTitle: _metadata.fileNamePrint
  300. image: iconHeader
  301. backgroundColor: COLOR_NAVBAR_IOS7
  302. height: 50.0
  303. type: AHKActionSheetButtonTypeDisabled
  304. handler: nil
  305. ];
  306. [actionSheet addButtonWithTitle: NSLocalizedString(@"_open_in_", nil)
  307. image: [UIImage imageNamed:image_actionSheetOpenIn]
  308. backgroundColor: [UIColor whiteColor]
  309. height: 50.0
  310. type: AHKActionSheetButtonTypeDefault
  311. handler: ^(AHKActionSheet *as) {
  312. [self performSelector:@selector(openWith:) withObject:self.metadata];
  313. }];
  314. [actionSheet show];
  315. }
  316. - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
  317. {
  318. // close swip
  319. [self setEditing:NO animated:YES];
  320. if ([self.serverUrlLocal isEqualToString:@"Offline"]) {
  321. NSManagedObject *record = [dataSource objectAtIndex:indexPath.row];
  322. [CCCoreData removeOfflineFromFileID:[record valueForKey:@"fileID"] activeAccount:app.activeAccount];
  323. }
  324. if ([self.serverUrlLocal isEqualToString:@"Offline"] == NO) {
  325. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@", self.serverUrlLocal,[dataSource objectAtIndex:indexPath.row]];
  326. NSString *iconPath = [NSString stringWithFormat:@"%@/.%@.ico", self.serverUrlLocal,[dataSource objectAtIndex:indexPath.row]];
  327. [[NSFileManager defaultManager] removeItemAtPath:fileNamePath error:nil];
  328. [[NSFileManager defaultManager] removeItemAtPath:iconPath error:nil];
  329. }
  330. [self reloadTable];
  331. }
  332. #pragma --------------------------------------------------------------------------------------------
  333. #pragma mark ==== Table ====
  334. #pragma --------------------------------------------------------------------------------------------
  335. - (void)initToHome
  336. {
  337. self.serverUrlLocal = @"Offline";
  338. self.textView = NSLocalizedString(@"_offline_", nil);
  339. UIBarButtonItem *_btn=[[UIBarButtonItem alloc]initWithImage:[UIImage imageNamed:image_navBarLocal] style:UIBarButtonItemStylePlain target:self action:@selector(switchOfflineLocal)];
  340. self.navigationItem.rightBarButtonItem=_btn;
  341. [self reloadTable];
  342. }
  343. - (void)reloadTable
  344. {
  345. // Datasource
  346. if ([self.serverUrlLocal isEqualToString:@"Offline"])
  347. dataSource = (NSMutableArray *)[CCCoreData getOfflineWithControlZombie:YES activeAccount:app.activeAccount directoryUser:app.directoryUser];
  348. if ([self.serverUrlLocal isEqualToString:@"Offline"] == NO) {
  349. [dataSource removeAllObjects];
  350. NSArray *subpaths = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:self.serverUrlLocal error:nil];
  351. for (NSString *subpath in subpaths)
  352. if (![[subpath lastPathComponent] hasPrefix:@"."]) [dataSource addObject:subpath];
  353. }
  354. // title
  355. self.title = self.textView;
  356. [self.tableView reloadData];
  357. }
  358. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  359. {
  360. return 60;
  361. }
  362. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  363. {
  364. return 1;
  365. }
  366. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  367. {
  368. return [dataSource count];
  369. }
  370. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  371. {
  372. CCCellOffline *cell = (CCCellOffline *)[tableView dequeueReusableCellWithIdentifier:@"OfflineCell" forIndexPath:indexPath];
  373. // change color selection
  374. UIView *selectionColor = [[UIView alloc] init];
  375. selectionColor.backgroundColor = COLOR_SELECT_BACKGROUND;
  376. cell.selectedBackgroundView = selectionColor;
  377. // i am in Offline
  378. if ([self.serverUrlLocal isEqualToString:@"Offline"]) {
  379. self.metadata = [dataSource objectAtIndex:indexPath.row];
  380. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, self.metadata.fileID]];
  381. }
  382. // i am in local
  383. if ([self.serverUrlLocal isEqualToString:@"Offline"] == NO) {
  384. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  385. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  386. self.metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:self.serverUrlLocal activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  387. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/.%@.ico", self.serverUrlLocal, self.metadata.fileNamePrint]];
  388. if (!cell.fileImageView.image) {
  389. UIImage *icon = [CCGraphics createNewImageFrom:self.metadata.fileID directoryUser:self.serverUrlLocal fileNameTo:self.metadata.fileID fileNamePrint:self.metadata.fileNamePrint size:@"m" imageForUpload:NO typeFile:self.metadata.typeFile writePreview:NO optimizedFileName:[CCUtility getOptimizedPhoto]];
  390. if (icon) {
  391. [CCGraphics saveIcoWithFileID:self.metadata.fileNamePrint image:icon writeToFile:[NSString stringWithFormat:@"%@/.%@.ico", self.serverUrlLocal, self.metadata.fileNamePrint] copy:NO move:NO fromPath:nil toPath:nil];
  392. cell.fileImageView.image = icon;
  393. }
  394. }
  395. }
  396. // color and font
  397. if (self.metadata.cryptated) {
  398. cell.labelTitle.textColor = COLOR_ENCRYPTED;
  399. //nameLabel.font = RalewayLight(13.0f);
  400. cell.labelInfoFile.textColor = [UIColor blackColor];
  401. //detailLabel.font = RalewayLight(9.0f);
  402. } else {
  403. cell.labelTitle.textColor = COLOR_CLEAR;
  404. //nameLabel.font = RalewayLight(13.0f);
  405. cell.labelInfoFile.textColor = [UIColor blackColor];
  406. //detailLabel.font = RalewayLight(9.0f);
  407. }
  408. if (self.metadata.directory) {
  409. cell.labelInfoFile.text = [CCUtility dateDiff:self.metadata.date];
  410. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  411. }
  412. // File name
  413. cell.labelTitle.text = self.metadata.fileNamePrint;
  414. cell.labelInfoFile.text = @"";
  415. // Immagine del file, se non c'è l'anteprima mettiamo quella standard
  416. if (cell.fileImageView.image == nil)
  417. cell.fileImageView.image = [UIImage imageNamed:self.metadata.iconName];
  418. cell.statusImageView.image = nil;
  419. // it's encrypted ???
  420. if (self.metadata.cryptated && [self.metadata.type isEqualToString:metadataType_model] == NO)
  421. cell.statusImageView.image = [UIImage imageNamed:image_lock];
  422. // it's in download mode
  423. if ([self.metadata.session length] > 0 && [self.metadata.session rangeOfString:@"download"].location != NSNotFound)
  424. cell.statusImageView.image = [UIImage imageNamed:image_attention];
  425. // text and length
  426. if (self.metadata.directory) {
  427. cell.labelInfoFile.text = [CCUtility dateDiff:self.metadata.date];
  428. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  429. } else {
  430. NSString *date = [CCUtility dateDiff:self.metadata.date];
  431. NSString *length = [CCUtility transformedSize:self.metadata.size];
  432. if ([self.metadata.type isEqualToString:metadataType_model])
  433. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@", date];
  434. if ([self.metadata.type isEqualToString:metadataType_file] || [self.metadata.type isEqualToString:metadataType_local])
  435. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@, %@", date, length];
  436. cell.accessoryType = UITableViewCellAccessoryNone;
  437. }
  438. return cell;
  439. }
  440. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  441. {
  442. // deselect row
  443. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  444. if ([self.serverUrlLocal isEqualToString:@"Offline"]) {
  445. NSManagedObject *record = [dataSource objectAtIndex:indexPath.row];
  446. self.fileIDPhoto = [record valueForKey:@"fileID"];
  447. self.directoryIDPhoto = nil;
  448. self.metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", self.fileIDPhoto, app.activeAccount] context:nil];
  449. }
  450. if ([self.serverUrlLocal isEqualToString:@"Offline"] == NO) {
  451. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:app.activeAccount];
  452. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:app.activeAccount activeUrl:app.activeUrl typeCloud:app.typeCloud];
  453. self.metadata = [CCUtility insertFileSystemInMetadata:[dataSource objectAtIndex:indexPath.row] directory:self.serverUrlLocal activeAccount:app.activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  454. self.fileIDPhoto = self.metadata.fileID;
  455. self.directoryIDPhoto = self.serverUrlLocal;
  456. }
  457. // if is in download [do not touch]
  458. if ([self.metadata.session length] > 0 && [self.metadata.session rangeOfString:@"download"].location != NSNotFound) return;
  459. if (([self.metadata.type isEqualToString:metadataType_file] || [self.metadata.type isEqualToString:metadataType_local]) && self.metadata.directory == NO) {
  460. if ([self shouldPerformSegue])
  461. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  462. }
  463. if ([self.metadata.type isEqualToString:metadataType_model]) [self openModel:self.metadata];
  464. if (self.metadata.directory) [self performSegueDirectoryWithControlPasscode];
  465. }
  466. -(void)performSegueDirectoryWithControlPasscode
  467. {
  468. CCOffline *viewController = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"CCOfflineVC"];
  469. viewController.serverUrlLocal = [CCUtility stringAppendServerUrl:self.serverUrlLocal addServerUrl:self.metadata.fileName];
  470. viewController.textView = self.metadata.fileName;
  471. [self.navigationController pushViewController:viewController animated:YES];
  472. }
  473. #pragma --------------------------------------------------------------------------------------------
  474. #pragma mark ===== Navigation ====
  475. #pragma --------------------------------------------------------------------------------------------
  476. - (BOOL)shouldPerformSegue
  477. {
  478. // if i am in background -> exit
  479. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return NO;
  480. // if i am not window -> exit
  481. if (self.view.window == NO)
  482. return NO;
  483. // Collapsed but i am in detail -> exit
  484. if (self.splitViewController.isCollapsed)
  485. if (self.detailViewController.isViewLoaded && self.detailViewController.view.window) return NO;
  486. // Video in run -> exit
  487. if (self.detailViewController.photoBrowser.currentVideoPlayerViewController.isViewLoaded && self.detailViewController.photoBrowser.currentVideoPlayerViewController.view.window) return NO;
  488. return YES;
  489. }
  490. -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  491. {
  492. id viewController = segue.destinationViewController;
  493. if ([viewController isKindOfClass:[UINavigationController class]]) {
  494. UINavigationController *nav = viewController;
  495. self.detailViewController = (CCDetail *)nav.topViewController;
  496. } else {
  497. self.detailViewController = segue.destinationViewController;
  498. }
  499. self.detailViewController.metadataDetail = self.metadata;
  500. if (app.isLocalStorage) self.detailViewController.sourceDirectory = sorceDirectoryLocal;
  501. else self.detailViewController.sourceDirectory = sorceDirectoryOffline;
  502. self.detailViewController.dateFilterQuery = nil;
  503. self.detailViewController.isCameraUpload = NO;
  504. [self.detailViewController setTitle:self.metadata.fileNamePrint];
  505. }
  506. @end