CCMove.m 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  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. #ifndef SHARE_IN
  25. #import "AppDelegate.h"
  26. #endif
  27. @interface CCMove ()
  28. {
  29. NSString *activeAccount;
  30. NSString *activePassword;
  31. NSString *activeUrl;
  32. NSString *activeUser;
  33. NSString *directoryUser;
  34. NSString *typeCloud;
  35. NSString *activeUID;
  36. NSString *activeAccessToken;
  37. CCHud *_hud;
  38. }
  39. @end
  40. @implementation CCMove
  41. #pragma --------------------------------------------------------------------------------------------
  42. #pragma mark ===== View =====
  43. #pragma --------------------------------------------------------------------------------------------
  44. - (void)viewDidLoad
  45. {
  46. [super viewDidLoad];
  47. TableAccount *recordAccount = [CCCoreData getActiveAccount];
  48. if (recordAccount) {
  49. activeAccount = recordAccount.account;
  50. activePassword = recordAccount.password;
  51. activeUrl = recordAccount.url;
  52. activeUser = recordAccount.user;
  53. directoryUser = [CCUtility getDirectoryActiveUser:activeUser activeUrl:activeUrl];
  54. typeCloud = recordAccount.typeCloud;
  55. activeUID = recordAccount.uid;
  56. activeAccessToken = recordAccount.token;
  57. } else {
  58. UIAlertController * alert= [UIAlertController alertControllerWithTitle:nil message:NSLocalizedString(@"_no_active_account_", nil) preferredStyle:UIAlertControllerStyleAlert];
  59. UIAlertAction* ok = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
  60. [alert dismissViewControllerAnimated:YES completion:nil];
  61. }];
  62. [alert addAction:ok];
  63. [self presentViewController:alert animated:YES completion:nil];
  64. }
  65. _hud = [[CCHud alloc] initWithView:self.view];
  66. // TableView : at the end of rows nothing
  67. self.tableView.tableFooterView = [UIView new];
  68. [self.cancel setTitle:NSLocalizedString(@"_cancel_", nil)];
  69. if (![self.localServerUrl length]) {
  70. self.localServerUrl = [CCUtility getHomeServerUrlActiveUrl:activeUrl typeCloud:typeCloud];
  71. UIImageView *image = [[UIImageView alloc] initWithImage:[UIImage imageNamed:image_brandNavigationController]];
  72. [self.navigationController.navigationBar.topItem setTitleView:image];
  73. self.title = @"Home";
  74. } else {
  75. UILabel* label = [[UILabel alloc] initWithFrame:CGRectMake(0,0, self.navigationItem.titleView.frame.size.width, 40)];
  76. label.text = self.passMetadata.fileNamePrint;
  77. if (self.passMetadata.cryptated) label.textColor = COLOR_ENCRYPTED;
  78. else label.textColor = self.tintColorTitle;
  79. label.backgroundColor =[UIColor clearColor];
  80. label.textAlignment = NSTextAlignmentCenter;
  81. self.navigationItem.titleView=label;
  82. }
  83. // Toolbar Color
  84. self.navigationController.navigationBar.barTintColor = self.barTintColor;
  85. self.navigationController.navigationBar.tintColor = self.tintColor;
  86. self.navigationController.toolbar.barTintColor = self.barTintColor;
  87. self.navigationController.toolbar.tintColor = self.tintColor;
  88. // read folder
  89. [_hud visibleIndeterminateHud];
  90. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  91. metadataNet.action = actionReadFolder;
  92. metadataNet.serverUrl = self.localServerUrl;
  93. metadataNet.selector = selectorReadFolder;
  94. metadataNet.date = nil;
  95. [self addNetworkingQueue:metadataNet];
  96. }
  97. #pragma --------------------------------------------------------------------------------------------
  98. #pragma mark == alertView ==
  99. #pragma --------------------------------------------------------------------------------------------
  100. - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
  101. {
  102. if (buttonIndex == 1) {
  103. NSString *nome = [alertView textFieldAtIndex:0].text;
  104. if ([nome length]) {
  105. nome = [NSString stringWithFormat:@"%@/%@", self.localServerUrl, [CCUtility clearFile:nome]];
  106. }
  107. }
  108. }
  109. #pragma --------------------------------------------------------------------------------------------
  110. #pragma mark == IBAction ==
  111. #pragma --------------------------------------------------------------------------------------------
  112. - (IBAction)cancel:(UIBarButtonItem *)sender
  113. {
  114. [self dismissViewControllerAnimated:YES completion:nil];
  115. }
  116. - (IBAction)move:(UIBarButtonItem *)sender
  117. {
  118. [_networkingOperationQueue cancelAllOperations];
  119. [self.delegate move:self.localServerUrl title:self.passMetadata.fileNamePrint selectedMetadatas:self.selectedMetadatas];
  120. [self dismissViewControllerAnimated:YES completion:nil];
  121. }
  122. #pragma --------------------------------------------------------------------------------------------
  123. #pragma mark == BKPasscodeViewController ==
  124. #pragma --------------------------------------------------------------------------------------------
  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. #pragma --------------------------------------------------------------------------------------------
  168. #pragma mark ======================= NetWorking ==================================
  169. #pragma --------------------------------------------------------------------------------------------
  170. - (void)dropboxFailure
  171. {
  172. [_hud hideHud];
  173. UIAlertController * alert= [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_comm_error_dropbox_", nil) message:NSLocalizedString(@"_comm_error_dropbox_txt_", nil) preferredStyle:UIAlertControllerStyleAlert];
  174. UIAlertAction* ok = [UIAlertAction actionWithTitle: NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault
  175. handler:^(UIAlertAction * action) {
  176. [alert dismissViewControllerAnimated:YES completion:nil];
  177. }];
  178. [alert addAction:ok];
  179. [self presentViewController:alert animated:YES completion:nil];
  180. }
  181. - (void)addNetworkingQueue:(CCMetadataNet *)metadataNet
  182. {
  183. /*** NEXTCLOUD OWNCLOUD ***/
  184. if ([typeCloud isEqualToString:typeCloudOwnCloud] || [typeCloud isEqualToString:typeCloudNextcloud]) {
  185. OCnetworking *operation = [[OCnetworking alloc] initWithDelegate:self metadataNet:metadataNet withUser:activeUser withPassword:activePassword withUrl:activeUrl withTypeCloud:typeCloud oneByOne:YES activityIndicator:NO];
  186. _networkingOperationQueue.maxConcurrentOperationCount = maxConcurrentOperation;
  187. [_networkingOperationQueue addOperation:operation];
  188. }
  189. #ifdef CC
  190. /*** DROPBOX ***/
  191. if ([typeCloud isEqualToString:typeCloudDropbox]) {
  192. DBnetworking *operation = [[DBnetworking alloc] initWithDelegate:self metadataNet:metadataNet withUser:activeUser withPassword:activePassword withUrl:activeUrl withActiveUID:activeUID withActiveAccessToken:activeAccessToken oneByOne:YES activityIndicator:NO];
  193. _networkingOperationQueue.maxConcurrentOperationCount = maxConcurrentOperation;
  194. [_networkingOperationQueue addOperation:operation];
  195. }
  196. #endif
  197. }
  198. - (void)downloadFileSuccess:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector selectorPost:(NSString *)selectorPost
  199. {
  200. if ([selector isEqualToString:selectorLoadPlist]) {
  201. CCMetadata *metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", fileID, activeAccount] context:nil];
  202. [CCCoreData downloadFilePlist:metadata activeAccount:activeAccount activeUrl:activeUrl typeCloud:typeCloud directoryUser:directoryUser];
  203. [self.tableView reloadData];
  204. }
  205. }
  206. - (void)downloadFileFailure:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector message:(NSString *)message errorCode:(NSInteger)errorCode
  207. {
  208. self.move.enabled = NO;
  209. }
  210. - (void)readFolderFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  211. {
  212. [_hud hideHud];
  213. self.move.enabled = NO;
  214. }
  215. - (void)readFolderSuccess:(CCMetadataNet *)metadataNet permissions:(NSString *)permissions rev:(NSString *)rev metadatas:(NSArray *)metadatas
  216. {
  217. // remove all record
  218. [CCCoreData deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND ((session == NULL) OR (session == ''))", activeAccount, metadataNet.directoryID]];
  219. for (CCMetadata *metadata in metadatas) {
  220. // do not insert crypto file
  221. if ([CCUtility isCryptoString:metadata.fileName]) continue;
  222. // plist + crypto = completed ?
  223. if ([CCUtility isCryptoPlistString:metadata.fileName] && metadata.directory == NO) {
  224. BOOL isCryptoComplete = NO;
  225. for (CCMetadata *completeMetadata in metadatas) {
  226. if ([completeMetadata.fileName isEqualToString:[CCUtility trasformedFileNamePlistInCrypto:metadata.fileName]]) isCryptoComplete = YES;
  227. }
  228. if (isCryptoComplete == NO) continue;
  229. }
  230. [CCCoreData addMetadata:metadata activeAccount:activeAccount activeUrl:activeUrl typeCloud:typeCloud context:nil];
  231. // if plist do not exists, download it !
  232. if ([CCUtility isCryptoPlistString:metadata.fileName] && [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", directoryUser, metadata.fileName]] == NO) {
  233. // download only the directories
  234. for (CCMetadata *metadataDirectory in metadatas) {
  235. if (metadataDirectory.directory == YES && [metadataDirectory.fileName isEqualToString:metadata.fileNameData]) {
  236. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  237. metadataNet.action = actionDownloadFile;
  238. metadataNet.metadata = metadata;
  239. metadataNet.downloadData = NO;
  240. metadataNet.downloadPlist = YES;
  241. metadataNet.selector = selectorLoadPlist;
  242. metadataNet.serverUrl = _localServerUrl;
  243. metadataNet.session = download_session_foreground;
  244. metadataNet.taskStatus = taskStatusResume;
  245. [self addNetworkingQueue:metadataNet];
  246. }
  247. }
  248. }
  249. }
  250. [self.tableView reloadData];
  251. [_hud hideHud];
  252. }
  253. #pragma --------------------------------------------------------------------------------------------
  254. #pragma mark == Table ==
  255. #pragma --------------------------------------------------------------------------------------------
  256. - (void)reloadTable
  257. {
  258. [self.tableView reloadData];
  259. }
  260. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  261. {
  262. return 1;
  263. }
  264. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  265. {
  266. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:self.localServerUrl activeAccount:activeAccount];
  267. NSPredicate *predicate;
  268. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1) AND (cryptated == 0)", activeAccount, directoryID];
  269. else predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1)", activeAccount, directoryID];
  270. return [[CCCoreData getTableMetadataWithPredicate:predicate context:nil] count];
  271. }
  272. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  273. {
  274. NSPredicate *predicate;
  275. static NSString *CellIdentifier = @"MyCustomCell";
  276. UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
  277. if (cell == nil) {
  278. cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
  279. }
  280. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:self.localServerUrl activeAccount:activeAccount];
  281. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1) AND (cryptated == 0)", activeAccount, directoryID];
  282. else predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1)", activeAccount, directoryID];
  283. CCMetadata *metadata = [CCCoreData getMetadataAtIndex:predicate fieldOrder:@"fileName" ascending:YES objectAtIndex:indexPath.row];
  284. // colors
  285. if (metadata.cryptated) {
  286. cell.textLabel.textColor = COLOR_ENCRYPTED;
  287. } else {
  288. cell.textLabel.textColor = COLOR_CLEAR;
  289. }
  290. cell.detailTextLabel.text = @"";
  291. cell.imageView.image = [UIImage imageNamed:metadata.iconName];
  292. cell.textLabel.text = metadata.fileNamePrint;
  293. return cell;
  294. }
  295. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  296. {
  297. [self performSegueDirectoryWithControlPasscode:YES];
  298. }
  299. #pragma --------------------------------------------------------------------------------------------
  300. #pragma mark == Navigation ==
  301. #pragma --------------------------------------------------------------------------------------------
  302. - (void)performSegueDirectoryWithControlPasscode:(BOOL)controlPasscode
  303. {
  304. NSString *nomeDir;
  305. NSPredicate *predicate;
  306. NSIndexPath *index = [self.tableView indexPathForSelectedRow];
  307. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:self.localServerUrl activeAccount:activeAccount];
  308. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1) AND (cryptated == 0)", activeAccount, directoryID];
  309. else predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1)", activeAccount, directoryID];
  310. CCMetadata *metadata = [CCCoreData getMetadataAtIndex:predicate fieldOrder:@"fileName" ascending:YES objectAtIndex:index.row];
  311. if (metadata.errorPasscode == NO) {
  312. // lockServerUrl
  313. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.localServerUrl addServerUrl:metadata.fileNameData];
  314. // 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
  315. if ([CCCoreData isDirectoryLock:lockServerUrl activeAccount:activeAccount] && [[CCUtility getBlockCode] length] && controlPasscode) {
  316. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  317. viewController.delegate = self;
  318. //viewController.fromType = CCBKPasscodeFromLockDirectory;
  319. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  320. viewController.inputViewTitlePassword = YES;
  321. if ([CCUtility getSimplyBlockCode]) {
  322. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  323. viewController.passcodeInputView.maximumLength = 6;
  324. } else {
  325. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  326. viewController.passcodeInputView.maximumLength = 64;
  327. }
  328. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:BKPasscodeKeychainServiceName];
  329. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  330. viewController.touchIDManager = touchIDManager;
  331. viewController.title = NSLocalizedString(@"_folder_blocked_", nil);
  332. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  333. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_ENCRYPTED;
  334. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
  335. [self presentViewController:navController animated:YES completion:nil];
  336. return;
  337. }
  338. if (metadata.cryptated) nomeDir = [metadata.fileName substringToIndex:[metadata.fileName length]-6];
  339. else nomeDir = metadata.fileName;
  340. CCMove *viewController = [[UIStoryboard storyboardWithName:@"CCMove" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMoveVC"];
  341. viewController.delegate = self.delegate;
  342. viewController.onlyClearDirectory = self.onlyClearDirectory;
  343. viewController.selectedMetadatas = self.selectedMetadatas;
  344. viewController.move.title = self.move.title;
  345. viewController.barTintColor = self.barTintColor;
  346. viewController.tintColor = self.tintColor;
  347. viewController.tintColorTitle = self.tintColorTitle;
  348. viewController.networkingOperationQueue = _networkingOperationQueue;
  349. viewController.passMetadata = metadata;
  350. viewController.localServerUrl = [CCUtility stringAppendServerUrl:self.localServerUrl addServerUrl:nomeDir];
  351. [self.navigationController pushViewController:viewController animated:YES];
  352. }
  353. }
  354. @end