CCMove.m 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  1. //
  2. // CCMove.m
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 04/09/14.
  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 "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. CCHud *_hud;
  33. BOOL _isCryptoCloudMode;
  34. }
  35. @end
  36. @implementation CCMove
  37. // MARK: - View
  38. - (void)viewDidLoad
  39. {
  40. [super viewDidLoad];
  41. TableAccount *recordAccount = [CCCoreData getActiveAccount];
  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. _hud = [[CCHud alloc] initWithView:self.view];
  63. // TableView : at the end of rows nothing
  64. self.tableView.tableFooterView = [UIView new];
  65. self.tableView.separatorColor = NCBrandColor.sharedInstance.seperator;
  66. [self.cancel setTitle:NSLocalizedString(@"_cancel_", nil)];
  67. [self.create setTitle:NSLocalizedString(@"_create_folder_", nil)];
  68. if (![_serverUrl length]) {
  69. _serverUrl = [CCUtility getHomeServerUrlActiveUrl:activeUrl];
  70. UIImageView *image = [[UIImageView alloc] initWithImage:[UIImage imageNamed: @"navigationLogo"]];
  71. [self.navigationController.navigationBar.topItem setTitleView:image];
  72. self.title = @"Home";
  73. } else {
  74. UILabel* label = [[UILabel alloc] initWithFrame:CGRectMake(0,0, self.navigationItem.titleView.frame.size.width, 40)];
  75. label.text = self.passMetadata.fileNamePrint;
  76. if (self.passMetadata.cryptated) label.textColor = NCBrandColor.sharedInstance.cryptocloud;
  77. else label.textColor = self.tintColorTitle;
  78. label.backgroundColor =[UIColor clearColor];
  79. label.textAlignment = NSTextAlignmentCenter;
  80. self.navigationItem.titleView=label;
  81. }
  82. // Toolbar Color
  83. self.navigationController.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand;
  84. self.navigationController.navigationBar.tintColor = NCBrandColor.sharedInstance.navigationBarText;
  85. self.navigationController.toolbar.barTintColor = NCBrandColor.sharedInstance.tabBar;
  86. self.navigationController.toolbar.tintColor = NCBrandColor.sharedInstance.brand;
  87. // read folder
  88. [self readFolder];
  89. }
  90. // MARK: - alertView
  91. - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
  92. {
  93. if (buttonIndex == 1) {
  94. NSString *nome = [alertView textFieldAtIndex:0].text;
  95. if ([nome length]) {
  96. nome = [NSString stringWithFormat:@"%@/%@", _serverUrl, [CCUtility removeForbiddenCharactersServer:nome]];
  97. }
  98. }
  99. }
  100. // MARK: - IBAction
  101. - (IBAction)cancel:(UIBarButtonItem *)sender
  102. {
  103. [self dismissViewControllerAnimated:YES completion:nil];
  104. }
  105. - (IBAction)move:(UIBarButtonItem *)sender
  106. {
  107. [_networkingOperationQueue cancelAllOperations];
  108. [self.delegate moveServerUrlTo:_serverUrl title:self.passMetadata.fileNamePrint selectedMetadatas:self.selectedMetadatas];
  109. [self dismissViewControllerAnimated:YES completion:nil];
  110. }
  111. - (IBAction)create:(UIBarButtonItem *)sender
  112. {
  113. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_create_folder_",nil) message:@"" preferredStyle:UIAlertControllerStyleAlert];
  114. [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  115. //textField.placeholder = NSLocalizedString(@"LoginPlaceholder", @"Login");
  116. }];
  117. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_save_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  118. [self createFolder:alertController.textFields.firstObject.text];
  119. }]];
  120. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  121. }]];
  122. [self presentViewController:alertController animated:YES completion:nil];
  123. }
  124. // MARK: - BKPasscodeViewController
  125. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  126. {
  127. [aViewController dismissViewControllerAnimated:YES completion:nil];
  128. [self performSegueDirectoryWithControlPasscode:false];
  129. }
  130. - (void)passcodeViewController:(BKPasscodeViewController *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  131. {
  132. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  133. self.lockUntilDate = nil;
  134. self.failedAttempts = 0;
  135. aResultHandler(YES);
  136. } else {
  137. aResultHandler(NO);
  138. }
  139. }
  140. - (void)passcodeViewControllerDidFailAttempt:(BKPasscodeViewController *)aViewController
  141. {
  142. self.failedAttempts++;
  143. if (self.failedAttempts > 5) {
  144. NSTimeInterval timeInterval = 60;
  145. if (self.failedAttempts > 6) {
  146. NSUInteger multiplier = self.failedAttempts - 6;
  147. timeInterval = (5 * 60) * multiplier;
  148. if (timeInterval > 3600 * 24) {
  149. timeInterval = 3600 * 24;
  150. }
  151. }
  152. self.lockUntilDate = [NSDate dateWithTimeIntervalSinceNow:timeInterval];
  153. }
  154. }
  155. - (NSUInteger)passcodeViewControllerNumberOfFailedAttempts:(BKPasscodeViewController *)aViewController
  156. {
  157. return self.failedAttempts;
  158. }
  159. - (NSDate *)passcodeViewControllerLockUntilDate:(BKPasscodeViewController *)aViewController
  160. {
  161. return self.lockUntilDate;
  162. }
  163. - (void)passcodeViewCloseButtonPressed:(id)sender
  164. {
  165. [self dismissViewControllerAnimated:YES completion:nil];
  166. }
  167. // MARK: - NetWorking
  168. - (void)addNetworkingQueue:(CCMetadataNet *)metadataNet
  169. {
  170. OCnetworking *operation = [[OCnetworking alloc] initWithDelegate:self metadataNet:metadataNet withUser:activeUser withPassword:activePassword withUrl:activeUrl isCryptoCloudMode:_isCryptoCloudMode];
  171. _networkingOperationQueue.maxConcurrentOperationCount = k_maxConcurrentOperation;
  172. [_networkingOperationQueue addOperation:operation];
  173. }
  174. // MARK: - Download File
  175. - (void)downloadFileSuccess:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector selectorPost:(NSString *)selectorPost
  176. {
  177. if ([selector isEqualToString:selectorLoadPlist]) {
  178. CCMetadata *metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", fileID, activeAccount] context:nil];
  179. [CCCoreData downloadFilePlist:metadata activeAccount:activeAccount activeUrl:activeUrl directoryUser:directoryUser];
  180. [self.tableView reloadData];
  181. }
  182. }
  183. - (void)downloadFileFailure:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector message:(NSString *)message errorCode:(NSInteger)errorCode
  184. {
  185. self.move.enabled = NO;
  186. }
  187. // MARK: - Read Folder
  188. - (void)readFolderFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  189. {
  190. [_hud hideHud];
  191. self.move.enabled = NO;
  192. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_",nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  193. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  194. }]];
  195. [self presentViewController:alertController animated:YES completion:nil];
  196. }
  197. - (void)readFolderSuccess:(CCMetadataNet *)metadataNet permissions:(NSString *)permissions etag:(NSString *)etag metadatas:(NSArray *)metadatas
  198. {
  199. // remove all record
  200. [CCCoreData deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND ((session == NULL) OR (session == ''))", activeAccount, metadataNet.directoryID]];
  201. for (CCMetadata *metadata in metadatas) {
  202. // do not insert crypto file
  203. if ([CCUtility isCryptoString:metadata.fileName]) continue;
  204. // plist + crypto = completed ?
  205. if ([CCUtility isCryptoPlistString:metadata.fileName] && metadata.directory == NO) {
  206. BOOL isCryptoComplete = NO;
  207. for (CCMetadata *completeMetadata in metadatas) {
  208. if ([completeMetadata.fileName isEqualToString:[CCUtility trasformedFileNamePlistInCrypto:metadata.fileName]]) isCryptoComplete = YES;
  209. }
  210. if (isCryptoComplete == NO) continue;
  211. }
  212. [CCCoreData addMetadata:metadata activeAccount:activeAccount activeUrl:activeUrl context:nil];
  213. // if plist do not exists, download it !
  214. if ([CCUtility isCryptoPlistString:metadata.fileName] && [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", directoryUser, metadata.fileName]] == NO) {
  215. // download only the directories
  216. for (CCMetadata *metadataDirectory in metadatas) {
  217. if (metadataDirectory.directory == YES && [metadataDirectory.fileName isEqualToString:metadata.fileNameData]) {
  218. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  219. metadataNet.action = actionDownloadFile;
  220. metadataNet.metadata = metadata;
  221. metadataNet.downloadData = NO;
  222. metadataNet.downloadPlist = YES;
  223. metadataNet.selector = selectorLoadPlist;
  224. metadataNet.serverUrl = _serverUrl;
  225. metadataNet.session = k_download_session_foreground;
  226. metadataNet.taskStatus = k_taskStatusResume;
  227. [self addNetworkingQueue:metadataNet];
  228. }
  229. }
  230. }
  231. }
  232. [self.tableView reloadData];
  233. [_hud hideHud];
  234. }
  235. - (void)readFolder
  236. {
  237. // read folder
  238. [_hud visibleIndeterminateHud];
  239. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  240. metadataNet.action = actionReadFolder;
  241. metadataNet.serverUrl = _serverUrl;
  242. metadataNet.selector = selectorReadFolder;
  243. metadataNet.date = nil;
  244. [self addNetworkingQueue:metadataNet];
  245. }
  246. // MARK: - Create Folder
  247. - (void)createFolderFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  248. {
  249. [_hud hideHud];
  250. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_",nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  251. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  252. }]];
  253. [self presentViewController:alertController animated:YES completion:nil];
  254. }
  255. - (void)createFolderSuccess:(CCMetadataNet *)metadataNet
  256. {
  257. [_hud hideHud];
  258. [CCCoreData addDirectory:[NSString stringWithFormat:@"%@/%@", metadataNet.serverUrl, metadataNet.fileName] permissions:nil activeAccount:activeAccount];
  259. // Load Folder or the Datasource
  260. [self readFolder];
  261. }
  262. - (void)createFolder:(NSString *)fileNameFolder
  263. {
  264. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  265. fileNameFolder = [CCUtility removeForbiddenCharactersServer:fileNameFolder];
  266. if (![fileNameFolder length]) return;
  267. metadataNet.action = actionCreateFolder;
  268. metadataNet.fileName = fileNameFolder;
  269. metadataNet.selector = selectorCreateFolder;
  270. metadataNet.selectorPost = selectorReadFolderForced;
  271. metadataNet.serverUrl = _serverUrl;
  272. [self addNetworkingQueue:metadataNet];
  273. [_hud visibleIndeterminateHud];
  274. }
  275. // MARK: - Table
  276. - (void)reloadTable
  277. {
  278. [self.tableView reloadData];
  279. }
  280. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  281. {
  282. return 1;
  283. }
  284. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  285. {
  286. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:_serverUrl activeAccount:activeAccount];
  287. NSPredicate *predicate;
  288. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1) AND (cryptated == 0)", activeAccount, directoryID];
  289. else predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1)", activeAccount, directoryID];
  290. return [[CCCoreData getTableMetadataWithPredicate:predicate context:nil] count];
  291. }
  292. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  293. {
  294. NSPredicate *predicate;
  295. static NSString *CellIdentifier = @"MyCustomCell";
  296. UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
  297. if (cell == nil) {
  298. cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
  299. }
  300. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:_serverUrl activeAccount:activeAccount];
  301. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1) AND (cryptated == 0)", activeAccount, directoryID];
  302. else predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1)", activeAccount, directoryID];
  303. CCMetadata *metadata = [CCCoreData getMetadataAtIndex:predicate fieldOrder:@"fileName" ascending:YES objectAtIndex:indexPath.row];
  304. // colors
  305. if (metadata.cryptated) {
  306. cell.textLabel.textColor = NCBrandColor.sharedInstance.cryptocloud;
  307. } else {
  308. cell.textLabel.textColor = [UIColor blackColor];
  309. }
  310. cell.detailTextLabel.text = @"";
  311. cell.imageView.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:metadata.iconName] color:[NCBrandColor sharedInstance].brand];
  312. cell.textLabel.text = metadata.fileNamePrint;
  313. return cell;
  314. }
  315. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  316. {
  317. [self performSegueDirectoryWithControlPasscode:YES];
  318. }
  319. // MARK: - Navigation
  320. - (void)performSegueDirectoryWithControlPasscode:(BOOL)controlPasscode
  321. {
  322. NSString *nomeDir;
  323. NSPredicate *predicate;
  324. NSIndexPath *index = [self.tableView indexPathForSelectedRow];
  325. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:_serverUrl activeAccount:activeAccount];
  326. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1) AND (cryptated == 0)", activeAccount, directoryID];
  327. else predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1)", activeAccount, directoryID];
  328. CCMetadata *metadata = [CCCoreData getMetadataAtIndex:predicate fieldOrder:@"fileName" ascending:YES objectAtIndex:index.row];
  329. if (metadata.errorPasscode == NO) {
  330. // lockServerUrl
  331. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:_serverUrl addFileName:metadata.fileNameData];
  332. // 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
  333. if ([CCCoreData isDirectoryLock:lockServerUrl activeAccount:activeAccount] && [[CCUtility getBlockCode] length] && controlPasscode) {
  334. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  335. viewController.delegate = self;
  336. //viewController.fromType = CCBKPasscodeFromLockDirectory;
  337. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  338. viewController.inputViewTitlePassword = YES;
  339. if ([CCUtility getSimplyBlockCode]) {
  340. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  341. viewController.passcodeInputView.maximumLength = 6;
  342. } else {
  343. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  344. viewController.passcodeInputView.maximumLength = 64;
  345. }
  346. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  347. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  348. viewController.touchIDManager = touchIDManager;
  349. viewController.title = NSLocalizedString(@"_folder_blocked_", nil);
  350. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  351. viewController.navigationItem.leftBarButtonItem.tintColor = NCBrandColor.sharedInstance.cryptocloud;
  352. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
  353. [self presentViewController:navController animated:YES completion:nil];
  354. return;
  355. }
  356. if (metadata.cryptated) nomeDir = [metadata.fileName substringToIndex:[metadata.fileName length]-6];
  357. else nomeDir = metadata.fileName;
  358. CCMove *viewController = [[UIStoryboard storyboardWithName:@"CCMove" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMoveVC"];
  359. viewController.delegate = self.delegate;
  360. viewController.onlyClearDirectory = self.onlyClearDirectory;
  361. viewController.selectedMetadatas = self.selectedMetadatas;
  362. viewController.move.title = self.move.title;
  363. viewController.barTintColor = self.barTintColor;
  364. viewController.tintColor = self.tintColor;
  365. viewController.tintColorTitle = self.tintColorTitle;
  366. viewController.networkingOperationQueue = _networkingOperationQueue;
  367. viewController.passMetadata = metadata;
  368. viewController.serverUrl = [CCUtility stringAppendServerUrl:_serverUrl addFileName:nomeDir];
  369. [self.navigationController pushViewController:viewController animated:YES];
  370. }
  371. }
  372. @end