CCMove.m 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  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 EXTENSION
  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. // MARK: - View
  42. - (void)viewDidLoad
  43. {
  44. [super viewDidLoad];
  45. TableAccount *recordAccount = [CCCoreData getActiveAccount];
  46. if (recordAccount) {
  47. activeAccount = recordAccount.account;
  48. activePassword = recordAccount.password;
  49. activeUrl = recordAccount.url;
  50. activeUser = recordAccount.user;
  51. directoryUser = [CCUtility getDirectoryActiveUser:activeUser activeUrl:activeUrl];
  52. typeCloud = recordAccount.typeCloud;
  53. activeUID = recordAccount.uid;
  54. activeAccessToken = recordAccount.token;
  55. } else {
  56. UIAlertController * alert= [UIAlertController alertControllerWithTitle:nil message:NSLocalizedString(@"_no_active_account_", nil) preferredStyle:UIAlertControllerStyleAlert];
  57. UIAlertAction* ok = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
  58. [alert dismissViewControllerAnimated:YES completion:nil];
  59. }];
  60. [alert addAction:ok];
  61. [self presentViewController:alert animated:YES completion:nil];
  62. }
  63. _hud = [[CCHud alloc] initWithView:self.view];
  64. // TableView : at the end of rows nothing
  65. self.tableView.tableFooterView = [UIView new];
  66. [self.cancel setTitle:NSLocalizedString(@"_cancel_", nil)];
  67. [self.create setTitle:NSLocalizedString(@"_create_folder_", nil)];
  68. if (![self.localServerUrl length]) {
  69. self.localServerUrl = [CCUtility getHomeServerUrlActiveUrl:activeUrl typeCloud:typeCloud];
  70. UIImageView *image = [[UIImageView alloc] initWithImage:[UIImage imageNamed:image_brandNavigationController]];
  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 = COLOR_ENCRYPTED;
  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 = self.barTintColor;
  84. self.navigationController.navigationBar.tintColor = self.tintColor;
  85. self.navigationController.toolbar.barTintColor = self.barTintColor;
  86. self.navigationController.toolbar.tintColor = self.tintColor;
  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:@"%@/%@", self.localServerUrl, [CCUtility clearFile: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 move:self.localServerUrl 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)dropboxFailure
  169. {
  170. [_hud hideHud];
  171. UIAlertController * alert= [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_comm_error_dropbox_", nil) message:NSLocalizedString(@"_comm_error_dropbox_txt_", nil) preferredStyle:UIAlertControllerStyleAlert];
  172. UIAlertAction* ok = [UIAlertAction actionWithTitle: NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault
  173. handler:^(UIAlertAction * action) {
  174. [alert dismissViewControllerAnimated:YES completion:nil];
  175. }];
  176. [alert addAction:ok];
  177. [self presentViewController:alert animated:YES completion:nil];
  178. }
  179. - (void)addNetworkingQueue:(CCMetadataNet *)metadataNet
  180. {
  181. /*** NEXTCLOUD OWNCLOUD ***/
  182. if ([typeCloud isEqualToString:typeCloudOwnCloud] || [typeCloud isEqualToString:typeCloudNextcloud]) {
  183. OCnetworking *operation = [[OCnetworking alloc] initWithDelegate:self metadataNet:metadataNet withUser:activeUser withPassword:activePassword withUrl:activeUrl withTypeCloud:typeCloud activityIndicator:NO];
  184. _networkingOperationQueue.maxConcurrentOperationCount = maxConcurrentOperation;
  185. [_networkingOperationQueue addOperation:operation];
  186. }
  187. #ifdef CC
  188. /*** DROPBOX ***/
  189. if ([typeCloud isEqualToString:typeCloudDropbox]) {
  190. DBnetworking *operation = [[DBnetworking alloc] initWithDelegate:self metadataNet:metadataNet withUser:activeUser withPassword:activePassword withUrl:activeUrl withActiveUID:activeUID withActiveAccessToken:activeAccessToken activityIndicator:NO];
  191. _networkingOperationQueue.maxConcurrentOperationCount = maxConcurrentOperation;
  192. [_networkingOperationQueue addOperation:operation];
  193. }
  194. #endif
  195. }
  196. // MARK: - Download File
  197. - (void)downloadFileSuccess:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector selectorPost:(NSString *)selectorPost
  198. {
  199. if ([selector isEqualToString:selectorLoadPlist]) {
  200. CCMetadata *metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", fileID, activeAccount] context:nil];
  201. [CCCoreData downloadFilePlist:metadata activeAccount:activeAccount activeUrl:activeUrl typeCloud:typeCloud directoryUser:directoryUser];
  202. [self.tableView reloadData];
  203. }
  204. }
  205. - (void)downloadFileFailure:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector message:(NSString *)message errorCode:(NSInteger)errorCode
  206. {
  207. self.move.enabled = NO;
  208. }
  209. // MARK: - Read Folder
  210. - (void)readFolderFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  211. {
  212. [_hud hideHud];
  213. self.move.enabled = NO;
  214. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_",nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  215. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  216. }]];
  217. [self presentViewController:alertController animated:YES completion:nil];
  218. }
  219. - (void)readFolderSuccess:(CCMetadataNet *)metadataNet permissions:(NSString *)permissions rev:(NSString *)rev metadatas:(NSArray *)metadatas
  220. {
  221. // remove all record
  222. [CCCoreData deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND ((session == NULL) OR (session == ''))", activeAccount, metadataNet.directoryID]];
  223. for (CCMetadata *metadata in metadatas) {
  224. // do not insert crypto file
  225. if ([CCUtility isCryptoString:metadata.fileName]) continue;
  226. // plist + crypto = completed ?
  227. if ([CCUtility isCryptoPlistString:metadata.fileName] && metadata.directory == NO) {
  228. BOOL isCryptoComplete = NO;
  229. for (CCMetadata *completeMetadata in metadatas) {
  230. if ([completeMetadata.fileName isEqualToString:[CCUtility trasformedFileNamePlistInCrypto:metadata.fileName]]) isCryptoComplete = YES;
  231. }
  232. if (isCryptoComplete == NO) continue;
  233. }
  234. [CCCoreData addMetadata:metadata activeAccount:activeAccount activeUrl:activeUrl typeCloud:typeCloud context:nil];
  235. // if plist do not exists, download it !
  236. if ([CCUtility isCryptoPlistString:metadata.fileName] && [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", directoryUser, metadata.fileName]] == NO) {
  237. // download only the directories
  238. for (CCMetadata *metadataDirectory in metadatas) {
  239. if (metadataDirectory.directory == YES && [metadataDirectory.fileName isEqualToString:metadata.fileNameData]) {
  240. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  241. metadataNet.action = actionDownloadFile;
  242. metadataNet.metadata = metadata;
  243. metadataNet.downloadData = NO;
  244. metadataNet.downloadPlist = YES;
  245. metadataNet.selector = selectorLoadPlist;
  246. metadataNet.serverUrl = _localServerUrl;
  247. metadataNet.session = download_session_foreground;
  248. metadataNet.taskStatus = taskStatusResume;
  249. [self addNetworkingQueue:metadataNet];
  250. }
  251. }
  252. }
  253. }
  254. [self.tableView reloadData];
  255. [_hud hideHud];
  256. }
  257. - (void)readFolder
  258. {
  259. // read folder
  260. [_hud visibleIndeterminateHud];
  261. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  262. metadataNet.action = actionReadFolder;
  263. metadataNet.serverUrl = self.localServerUrl;
  264. metadataNet.selector = selectorReadFolder;
  265. metadataNet.date = nil;
  266. [self addNetworkingQueue:metadataNet];
  267. }
  268. // MARK: - Create Folder
  269. - (void)createFolderFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  270. {
  271. [_hud hideHud];
  272. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_",nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  273. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  274. }]];
  275. [self presentViewController:alertController animated:YES completion:nil];
  276. }
  277. - (void)createFolderSuccess:(CCMetadataNet *)metadataNet
  278. {
  279. [_hud hideHud];
  280. [CCCoreData addDirectory:[NSString stringWithFormat:@"%@/%@", metadataNet.serverUrl, metadataNet.fileName] date:[NSDate date] permissions:nil activeAccount:activeAccount];
  281. // Load Folder or the Datasource
  282. [self readFolder];
  283. }
  284. - (void)createFolder:(NSString *)fileNameFolder
  285. {
  286. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:activeAccount];
  287. fileNameFolder = [CCUtility clearFile:fileNameFolder];
  288. if (![fileNameFolder length]) return;
  289. metadataNet.action = actionCreateFolder;
  290. metadataNet.fileName = fileNameFolder;
  291. metadataNet.selector = selectorCreateFolder;
  292. metadataNet.selectorPost = selectorReadFolderForced;
  293. metadataNet.serverUrl = _localServerUrl;
  294. [self addNetworkingQueue:metadataNet];
  295. [_hud visibleIndeterminateHud];
  296. }
  297. // MARK: - Table
  298. - (void)reloadTable
  299. {
  300. [self.tableView reloadData];
  301. }
  302. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  303. {
  304. return 1;
  305. }
  306. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  307. {
  308. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:self.localServerUrl activeAccount:activeAccount];
  309. NSPredicate *predicate;
  310. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1) AND (cryptated == 0)", activeAccount, directoryID];
  311. else predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1)", activeAccount, directoryID];
  312. return [[CCCoreData getTableMetadataWithPredicate:predicate context:nil] count];
  313. }
  314. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  315. {
  316. NSPredicate *predicate;
  317. static NSString *CellIdentifier = @"MyCustomCell";
  318. UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
  319. if (cell == nil) {
  320. cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
  321. }
  322. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:self.localServerUrl activeAccount:activeAccount];
  323. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1) AND (cryptated == 0)", activeAccount, directoryID];
  324. else predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1)", activeAccount, directoryID];
  325. CCMetadata *metadata = [CCCoreData getMetadataAtIndex:predicate fieldOrder:@"fileName" ascending:YES objectAtIndex:indexPath.row];
  326. // colors
  327. if (metadata.cryptated) {
  328. cell.textLabel.textColor = COLOR_ENCRYPTED;
  329. } else {
  330. cell.textLabel.textColor = COLOR_CLEAR;
  331. }
  332. cell.detailTextLabel.text = @"";
  333. cell.imageView.image = [UIImage imageNamed:metadata.iconName];
  334. cell.textLabel.text = metadata.fileNamePrint;
  335. return cell;
  336. }
  337. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  338. {
  339. [self performSegueDirectoryWithControlPasscode:YES];
  340. }
  341. // MARK: - Navigation
  342. - (void)performSegueDirectoryWithControlPasscode:(BOOL)controlPasscode
  343. {
  344. NSString *nomeDir;
  345. NSPredicate *predicate;
  346. NSIndexPath *index = [self.tableView indexPathForSelectedRow];
  347. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:self.localServerUrl activeAccount:activeAccount];
  348. if (self.onlyClearDirectory) predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1) AND (cryptated == 0)", activeAccount, directoryID];
  349. else predicate = [NSPredicate predicateWithFormat:@"(account == %@) AND (directoryID == %@) AND (directory == 1)", activeAccount, directoryID];
  350. CCMetadata *metadata = [CCCoreData getMetadataAtIndex:predicate fieldOrder:@"fileName" ascending:YES objectAtIndex:index.row];
  351. if (metadata.errorPasscode == NO) {
  352. // lockServerUrl
  353. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.localServerUrl addServerUrl:metadata.fileNameData];
  354. // 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
  355. if ([CCCoreData isDirectoryLock:lockServerUrl activeAccount:activeAccount] && [[CCUtility getBlockCode] length] && controlPasscode) {
  356. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  357. viewController.delegate = self;
  358. //viewController.fromType = CCBKPasscodeFromLockDirectory;
  359. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  360. viewController.inputViewTitlePassword = YES;
  361. if ([CCUtility getSimplyBlockCode]) {
  362. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  363. viewController.passcodeInputView.maximumLength = 6;
  364. } else {
  365. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  366. viewController.passcodeInputView.maximumLength = 64;
  367. }
  368. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:BKPasscodeKeychainServiceName];
  369. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  370. viewController.touchIDManager = touchIDManager;
  371. viewController.title = NSLocalizedString(@"_folder_blocked_", nil);
  372. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  373. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_ENCRYPTED;
  374. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
  375. [self presentViewController:navController animated:YES completion:nil];
  376. return;
  377. }
  378. if (metadata.cryptated) nomeDir = [metadata.fileName substringToIndex:[metadata.fileName length]-6];
  379. else nomeDir = metadata.fileName;
  380. CCMove *viewController = [[UIStoryboard storyboardWithName:@"CCMove" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMoveVC"];
  381. viewController.delegate = self.delegate;
  382. viewController.onlyClearDirectory = self.onlyClearDirectory;
  383. viewController.selectedMetadatas = self.selectedMetadatas;
  384. viewController.move.title = self.move.title;
  385. viewController.barTintColor = self.barTintColor;
  386. viewController.tintColor = self.tintColor;
  387. viewController.tintColorTitle = self.tintColorTitle;
  388. viewController.networkingOperationQueue = _networkingOperationQueue;
  389. viewController.passMetadata = metadata;
  390. viewController.localServerUrl = [CCUtility stringAppendServerUrl:self.localServerUrl addServerUrl:nomeDir];
  391. [self.navigationController pushViewController:viewController animated:YES];
  392. }
  393. }
  394. @end