CCMove.m 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. //
  2. // CCMove.m
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 04/09/14.
  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 "CCMove.h"
  24. #import "NCBridgeSwift.h"
  25. @interface CCMove ()
  26. {
  27. NSString *activeAccount;
  28. NSString *activePassword;
  29. NSString *activeUrl;
  30. NSString *activeUser;
  31. NSString *directoryUser;
  32. BOOL _isCryptoCloudMode;
  33. BOOL _loadingFolder;
  34. }
  35. @end
  36. @implementation CCMove
  37. // MARK: - View
  38. - (void)viewDidLoad
  39. {
  40. [super viewDidLoad];
  41. tableAccount *recordAccount = [[NCManageDatabase sharedInstance] getAccountActive];
  42. if (recordAccount) {
  43. activeAccount = recordAccount.account;
  44. activePassword = recordAccount.password;
  45. activeUrl = recordAccount.url;
  46. activeUser = recordAccount.user;
  47. directoryUser = [CCUtility getDirectoryActiveUser:activeUser activeUrl:activeUrl];
  48. // Crypto Mode
  49. if ([[CCUtility getKeyChainPasscodeForUUID:[CCUtility getUUID]] length] == 0) {
  50. _isCryptoCloudMode = NO;
  51. } else {
  52. _isCryptoCloudMode = YES;
  53. }
  54. } else {
  55. UIAlertController * alert= [UIAlertController alertControllerWithTitle:nil message:NSLocalizedString(@"_no_active_account_", nil) preferredStyle:UIAlertControllerStyleAlert];
  56. UIAlertAction* ok = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
  57. [alert dismissViewControllerAnimated:YES completion:nil];
  58. }];
  59. [alert addAction:ok];
  60. [self presentViewController:alert animated:YES completion:nil];
  61. }
  62. [self.cancel setTitle:NSLocalizedString(@"_cancel_", nil)];
  63. [self.create setTitle:NSLocalizedString(@"_create_folder_", nil)];
  64. if (![_serverUrl length]) {
  65. _serverUrl = [CCUtility getHomeServerUrlActiveUrl:activeUrl];
  66. UIImageView *image = [[UIImageView alloc] initWithImage:[UIImage imageNamed: @"navigationLogo"]];
  67. [self.navigationController.navigationBar.topItem setTitleView:image];
  68. self.title = @"Home";
  69. } else {
  70. UILabel* label = [[UILabel alloc] initWithFrame:CGRectMake(0,0, self.navigationItem.titleView.frame.size.width, 40)];
  71. label.text = self.passMetadata.fileNamePrint;
  72. if (self.passMetadata.cryptated) label.textColor = NCBrandColor.sharedInstance.cryptocloud;
  73. else label.textColor = NCBrandColor.sharedInstance.navigationBarText;
  74. label.backgroundColor =[UIColor clearColor];
  75. label.textAlignment = NSTextAlignmentCenter;
  76. self.navigationItem.titleView=label;
  77. }
  78. // TableView : at the end of rows nothing
  79. self.tableView.tableFooterView = [UIView new];
  80. self.tableView.separatorColor = NCBrandColor.sharedInstance.seperator;
  81. self.tableView.emptyDataSetDelegate = self;
  82. self.tableView.emptyDataSetSource = self;
  83. // read file->folder
  84. [self readFileReloadFolder];
  85. }
  86. // Apparirà
  87. - (void)viewWillAppear:(BOOL)animated
  88. {
  89. [super viewWillAppear:animated];
  90. self.navigationController.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand;
  91. self.navigationController.navigationBar.tintColor = NCBrandColor.sharedInstance.navigationBarText;
  92. self.navigationController.toolbar.barTintColor = NCBrandColor.sharedInstance.tabBar;
  93. self.navigationController.toolbar.tintColor = NCBrandColor.sharedInstance.brand;
  94. }
  95. // MARK: - alertView
  96. - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
  97. {
  98. if (buttonIndex == 1) {
  99. NSString *nome = [alertView textFieldAtIndex:0].text;
  100. if ([nome length]) {
  101. nome = [NSString stringWithFormat:@"%@/%@", _serverUrl, [CCUtility removeForbiddenCharactersServer:nome]];
  102. }
  103. }
  104. }
  105. #pragma --------------------------------------------------------------------------------------------
  106. #pragma mark ==== DZNEmptyDataSetSource ====
  107. #pragma --------------------------------------------------------------------------------------------
  108. - (BOOL)emptyDataSetShouldDisplay:(UIScrollView *)scrollView
  109. {
  110. if (_loadingFolder)
  111. return YES;
  112. else
  113. return NO;
  114. }
  115. - (BOOL)emptyDataSetShouldAllowScroll:(UIScrollView *)scrollView
  116. {
  117. return NO;
  118. }
  119. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  120. {
  121. return [UIColor whiteColor];
  122. }
  123. - (UIView *)customViewForEmptyDataSet:(UIScrollView *)scrollView
  124. {
  125. if (_loadingFolder) {
  126. UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
  127. activityView.transform = CGAffineTransformMakeScale(1.5f, 1.5f);
  128. activityView.color = [NCBrandColor sharedInstance].brand;
  129. [activityView startAnimating];
  130. return activityView;
  131. }
  132. return nil;
  133. }
  134. // MARK: - IBAction
  135. - (IBAction)cancel:(UIBarButtonItem *)sender
  136. {
  137. [self dismissViewControllerAnimated:YES completion:nil];
  138. }
  139. - (IBAction)move:(UIBarButtonItem *)sender
  140. {
  141. [_networkingOperationQueue cancelAllOperations];
  142. [self.delegate moveServerUrlTo:_serverUrl title:self.passMetadata.fileNamePrint];
  143. [self dismissViewControllerAnimated:YES completion:nil];
  144. }
  145. - (IBAction)create:(UIBarButtonItem *)sender
  146. {
  147. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_create_folder_",nil) message:@"" preferredStyle:UIAlertControllerStyleAlert];
  148. [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  149. //textField.placeholder = NSLocalizedString(@"LoginPlaceholder", @"Login");
  150. }];
  151. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_save_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  152. [self createFolder:alertController.textFields.firstObject.text];
  153. }]];
  154. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  155. }]];
  156. [self presentViewController:alertController animated:YES completion:nil];
  157. }
  158. // MARK: - BKPasscodeViewController
  159. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  160. {
  161. [aViewController dismissViewControllerAnimated:YES completion:nil];
  162. [self performSegueDirectoryWithControlPasscode:false];
  163. }
  164. - (void)passcodeViewController:(BKPasscodeViewController *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  165. {
  166. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  167. self.lockUntilDate = nil;
  168. self.failedAttempts = 0;
  169. aResultHandler(YES);
  170. } else {
  171. aResultHandler(NO);
  172. }
  173. }
  174. - (void)passcodeViewControllerDidFailAttempt:(BKPasscodeViewController *)aViewController
  175. {
  176. self.failedAttempts++;
  177. if (self.failedAttempts > 5) {
  178. NSTimeInterval timeInterval = 60;
  179. if (self.failedAttempts > 6) {
  180. NSUInteger multiplier = self.failedAttempts - 6;
  181. timeInterval = (5 * 60) * multiplier;
  182. if (timeInterval > 3600 * 24) {
  183. timeInterval = 3600 * 24;
  184. }
  185. }
  186. self.lockUntilDate = [NSDate dateWithTimeIntervalSinceNow:timeInterval];
  187. }
  188. }
  189. - (NSUInteger)passcodeViewControllerNumberOfFailedAttempts:(BKPasscodeViewController *)aViewController
  190. {
  191. return self.failedAttempts;
  192. }
  193. - (NSDate *)passcodeViewControllerLockUntilDate:(BKPasscodeViewController *)aViewController
  194. {
  195. return self.lockUntilDate;
  196. }
  197. - (void)passcodeViewCloseButtonPressed:(id)sender
  198. {
  199. [self dismissViewControllerAnimated:YES completion:nil];
  200. }
  201. // MARK: - NetWorking
  202. - (void)addNetworkingQueue:(CCMetadataNet *)metadataNet
  203. {
  204. OCnetworking *operation = [[OCnetworking alloc] initWithDelegate:self metadataNet:metadataNet withUser:activeUser withPassword:activePassword withUrl:activeUrl isCryptoCloudMode:_isCryptoCloudMode];
  205. _networkingOperationQueue.maxConcurrentOperationCount = k_maxConcurrentOperation;
  206. [_networkingOperationQueue addOperation:operation];
  207. }
  208. // MARK: - Download File
  209. - (void)downloadFileSuccess:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector selectorPost:(NSString *)selectorPost
  210. {
  211. if ([selector isEqualToString:selectorLoadPlist]) {
  212. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  213. metadata = [CCUtility insertInformationPlist:metadata directoryUser:directoryUser];
  214. metadata = [[NCManageDatabase sharedInstance] updateMetadata:metadata activeUrl:activeUrl];
  215. // se è un template aggiorniamo anche nel FileSystem
  216. if ([metadata.type isEqualToString: k_metadataType_template]) {
  217. [[NCManageDatabase sharedInstance] setLocalFileWithFileID:metadata.fileID date:metadata.date exifDate:nil exifLatitude:nil exifLongitude:nil fileName:nil fileNamePrint:metadata.fileNamePrint];
  218. }
  219. [self.tableView reloadData];
  220. }
  221. }
  222. - (void)downloadFileFailure:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector message:(NSString *)message errorCode:(NSInteger)errorCode
  223. {
  224. self.move.enabled = NO;
  225. }
  226. // MARK: - Read Folder
  227. - (void)readFileFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  228. {
  229. [self readFolder];
  230. }
  231. - (void)readFileSuccess:(CCMetadataNet *)metadataNet metadata:(tableMetadata *)metadata
  232. {
  233. if ([metadataNet.selector isEqualToString:selectorReadFileReloadFolder]) {
  234. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND serverUrl = %@", metadataNet.account, metadataNet.serverUrl]];
  235. if ([metadata.etag isEqualToString:directory.etag] == NO) {
  236. [self readFolder];
  237. }
  238. }
  239. }
  240. - (void)readFileReloadFolder
  241. {
  242. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  243. metadataNet.action = actionReadFile;
  244. metadataNet.priority = NSOperationQueuePriorityHigh;
  245. metadataNet.selector = selectorReadFileReloadFolder;
  246. metadataNet.serverUrl = _serverUrl;
  247. [self addNetworkingQueue:metadataNet];
  248. }
  249. // MARK: - Read Folder
  250. - (void)readFolderFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  251. {
  252. _loadingFolder = NO;
  253. self.move.enabled = NO;
  254. [self.tableView reloadData];
  255. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_",nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  256. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  257. }]];
  258. [self presentViewController:alertController animated:YES completion:nil];
  259. }
  260. - (void)readFolderSuccess:(CCMetadataNet *)metadataNet metadataFolder:(tableMetadata *)metadataFolder metadatas:(NSArray *)metadatas
  261. {
  262. NSMutableArray *metadatasToInsertInDB = [NSMutableArray new];
  263. // Update directory etag
  264. [[NCManageDatabase sharedInstance] setDirectoryWithServerUrl:metadataNet.serverUrl serverUrlTo:nil etag:metadataFolder.etag];
  265. for (tableMetadata *metadata in metadatas) {
  266. // type of file
  267. NSInteger typeFilename = [CCUtility getTypeFileName:metadata.fileName];
  268. // do not insert crypto file
  269. if (typeFilename == k_metadataTypeFilenameCrypto) continue;
  270. // verify if the record encrypted has plist + crypto
  271. if (typeFilename == k_metadataTypeFilenamePlist && metadata.directory == NO) {
  272. BOOL isCryptoComplete = NO;
  273. NSString *fileNameCrypto = [CCUtility trasformedFileNamePlistInCrypto:metadata.fileName];
  274. for (tableMetadata *completeMetadata in metadatas) {
  275. if (completeMetadata.cryptated == NO) continue;
  276. else if ([completeMetadata.fileName isEqualToString:fileNameCrypto]) {
  277. isCryptoComplete = YES;
  278. break;
  279. }
  280. }
  281. if (isCryptoComplete == NO) continue;
  282. }
  283. // Insert in Array
  284. [metadatasToInsertInDB addObject:metadata];
  285. }
  286. // insert in Database
  287. metadatas = [[NCManageDatabase sharedInstance] addMetadatas:metadatasToInsertInDB activeUrl:activeUrl serverUrl:metadataNet.serverUrl];
  288. // Plist MULTI THREAD
  289. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
  290. for (tableMetadata *metadata in metadatas) {
  291. if ([CCUtility isCryptoPlistString:metadata.fileName] && [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", directoryUser, metadata.fileName]] == NO) {
  292. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  293. metadataNet.action = actionDownloadFile;
  294. metadataNet.downloadData = NO;
  295. metadataNet.downloadPlist = YES;
  296. metadataNet.fileID = metadata.fileID;
  297. metadataNet.selector = selectorLoadPlist;
  298. metadataNet.serverUrl = _serverUrl;
  299. metadataNet.session = k_download_session_foreground;
  300. metadataNet.taskStatus = k_taskStatusResume;
  301. [self addNetworkingQueue:metadataNet];
  302. }
  303. }
  304. });
  305. _loadingFolder = NO;
  306. [self.tableView reloadData];
  307. }
  308. - (void)readFolder
  309. {
  310. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  311. metadataNet.action = actionReadFolder;
  312. metadataNet.serverUrl = _serverUrl;
  313. metadataNet.selector = selectorReadFolder;
  314. metadataNet.date = nil;
  315. [self addNetworkingQueue:metadataNet];
  316. //
  317. _loadingFolder = YES;
  318. [self.tableView reloadData];
  319. }
  320. // MARK: - Create Folder
  321. - (void)createFolderFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  322. {
  323. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_",nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  324. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  325. }]];
  326. [self presentViewController:alertController animated:YES completion:nil];
  327. }
  328. - (void)createFolderSuccess:(CCMetadataNet *)metadataNet
  329. {
  330. (void)[[NCManageDatabase sharedInstance] addDirectoryWithServerUrl:[NSString stringWithFormat:@"%@/%@", metadataNet.serverUrl, metadataNet.fileName] permissions:@""];
  331. // Load Folder or the Datasource
  332. [self readFolder];
  333. }
  334. - (void)createFolder:(NSString *)fileNameFolder
  335. {
  336. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  337. fileNameFolder = [CCUtility removeForbiddenCharactersServer:fileNameFolder];
  338. if (![fileNameFolder length]) return;
  339. metadataNet.action = actionCreateFolder;
  340. metadataNet.fileName = fileNameFolder;
  341. metadataNet.selector = selectorCreateFolder;
  342. metadataNet.selectorPost = selectorReadFolderForced;
  343. metadataNet.serverUrl = _serverUrl;
  344. [self addNetworkingQueue:metadataNet];
  345. }
  346. // MARK: - Table
  347. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  348. {
  349. return 1;
  350. }
  351. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  352. {
  353. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:_serverUrl];
  354. NSPredicate *predicate;
  355. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"account = %@ AND directoryID = %@ AND directory = true AND cryptated = false", activeAccount, directoryID];
  356. else predicate = [NSPredicate predicateWithFormat:@"account == %@ AND directoryID = %@ AND directory = true", activeAccount, directoryID];
  357. NSArray *result = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:predicate sorted:nil ascending:NO];
  358. if (result)
  359. return [result count];
  360. else
  361. return 0;
  362. }
  363. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  364. {
  365. NSPredicate *predicate;
  366. static NSString *CellIdentifier = @"MyCustomCell";
  367. UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
  368. if (cell == nil) {
  369. cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
  370. }
  371. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:_serverUrl];
  372. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"account = %@ AND directoryID = %@ AND directory = true AND cryptated = false", activeAccount, directoryID];
  373. else predicate = [NSPredicate predicateWithFormat:@"account = %@ AND directoryID = %@ AND directory = true", activeAccount, directoryID];
  374. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataAtIndexWithPredicate:predicate sorted:@"fileName" ascending:YES index:indexPath.row];
  375. // colors
  376. if (metadata.cryptated) {
  377. cell.textLabel.textColor = NCBrandColor.sharedInstance.cryptocloud;
  378. } else {
  379. cell.textLabel.textColor = [UIColor blackColor];
  380. }
  381. cell.detailTextLabel.text = @"";
  382. cell.imageView.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:metadata.iconName] color:[NCBrandColor sharedInstance].brand];
  383. cell.textLabel.text = metadata.fileNamePrint;
  384. return cell;
  385. }
  386. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  387. {
  388. [self performSegueDirectoryWithControlPasscode:YES];
  389. }
  390. // MARK: - Navigation
  391. - (void)performSegueDirectoryWithControlPasscode:(BOOL)controlPasscode
  392. {
  393. NSString *nomeDir;
  394. NSPredicate *predicate;
  395. NSIndexPath *index = [self.tableView indexPathForSelectedRow];
  396. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:_serverUrl];
  397. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"account = %@ AND directoryID = %@ AND directory = true AND cryptated = false", activeAccount, directoryID];
  398. else predicate = [NSPredicate predicateWithFormat:@"account = %@ AND directoryID == %@ AND directory = true", activeAccount, directoryID];
  399. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataAtIndexWithPredicate:predicate sorted:@"fileName" ascending:YES index:index.row];
  400. if (metadata.errorPasscode == NO) {
  401. // lockServerUrl
  402. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:_serverUrl addFileName:metadata.fileNameData];
  403. // Se siamo in presenza di una directory bloccata E è attivo il block E la sessione PASSWORD Lock è senza data ALLORA chiediamo la password per procedere
  404. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"serverUrl = %@", lockServerUrl]];
  405. if (directory.lock && [[CCUtility getBlockCode] length] && controlPasscode) {
  406. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  407. viewController.delegate = self;
  408. //viewController.fromType = CCBKPasscodeFromLockDirectory;
  409. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  410. viewController.inputViewTitlePassword = YES;
  411. if ([CCUtility getSimplyBlockCode]) {
  412. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  413. viewController.passcodeInputView.maximumLength = 6;
  414. } else {
  415. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  416. viewController.passcodeInputView.maximumLength = 64;
  417. }
  418. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  419. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  420. viewController.touchIDManager = touchIDManager;
  421. viewController.title = NSLocalizedString(@"_folder_blocked_", nil);
  422. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  423. viewController.navigationItem.leftBarButtonItem.tintColor = NCBrandColor.sharedInstance.cryptocloud;
  424. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
  425. [self presentViewController:navController animated:YES completion:nil];
  426. return;
  427. }
  428. if (metadata.cryptated) nomeDir = [metadata.fileName substringToIndex:[metadata.fileName length]-6];
  429. else nomeDir = metadata.fileName;
  430. CCMove *viewController = [[UIStoryboard storyboardWithName:@"CCMove" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMoveVC"];
  431. viewController.delegate = self.delegate;
  432. viewController.onlyClearDirectory = self.onlyClearDirectory;
  433. viewController.move.title = self.move.title;
  434. viewController.networkingOperationQueue = _networkingOperationQueue;
  435. viewController.passMetadata = metadata;
  436. viewController.serverUrl = [CCUtility stringAppendServerUrl:_serverUrl addFileName:nomeDir];
  437. [self.navigationController pushViewController:viewController animated:YES];
  438. }
  439. }
  440. @end