CCSettings.m 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. //
  2. // CCSettings.m
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 24/11/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 "CCSettings.h"
  24. #import "AppDelegate.h"
  25. #import "CCMain.h"
  26. #import "OCCapabilities.h"
  27. #import "CCSynchronize.h"
  28. #import "CCAdvanced.h"
  29. #import "CCManageCryptoCloud.h"
  30. #import "CCManageAccount.h"
  31. #define alertViewEsci 1
  32. #define alertViewAzzeraCache 2
  33. @implementation CCSettings
  34. - (id)initWithCoder:(NSCoder *)aDecoder
  35. {
  36. self = [super initWithCoder:aDecoder];
  37. if (self) {
  38. [self initializeForm];
  39. app.activeSettings = self;
  40. }
  41. return self;
  42. }
  43. - (void)initializeForm
  44. {
  45. XLFormDescriptor *form;
  46. XLFormSectionDescriptor *section;
  47. XLFormRowDescriptor *row;
  48. form = [XLFormDescriptor formDescriptorWithTitle:NSLocalizedString(@"_settings_", nil)];
  49. form.rowNavigationOptions = XLFormRowNavigationOptionNone;
  50. // Section : PASSWORD --------------------------------------------------------------
  51. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_passcode_", nil)];
  52. [form addFormSection:section];
  53. // Passcode
  54. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"bloccopasscode" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_lock_not_active_", nil)];
  55. [row.cellConfig setObject:[UIImage imageNamed:image_settingsPasscodeNO] forKey:@"imageView.image"];
  56. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  57. [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
  58. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  59. //[row.cellConfig setObject:@(UITableViewCellAccessoryDisclosureIndicator) forKey:@"accessoryType"];
  60. row.action.formSelector = @selector(bloccoPassword);
  61. [section addFormRow:row];
  62. // Passcode simply
  63. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"simplypasscode" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_lock_protection_simply_", nil)];
  64. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  65. [section addFormRow:row];
  66. // Passcode only directory
  67. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"onlylockdir" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_lock_protection_folder_", nil)];
  68. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  69. [section addFormRow:row];
  70. // Section : CLOUD ACCOUNT --------------------------------------------------------------
  71. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_cloud_account_", nil)];
  72. [form addFormSection:section];
  73. // version
  74. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"versionserver" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_version_server_", nil)];
  75. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  76. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  77. [section addFormRow:row];
  78. // Url
  79. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"urlcloud" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_url_", nil)];
  80. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  81. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  82. [section addFormRow:row];
  83. // username
  84. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"usernamecloud" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_username_", nil)];
  85. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  86. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  87. [section addFormRow:row];
  88. // Change Account
  89. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"changecredentials" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_change_credentials_", nil)];
  90. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  91. [row.cellConfig setObject:[UIImage imageNamed:image_settingsCredentials] forKey:@"imageView.image"];
  92. row.action.viewControllerClass = [CCManageAccount class];
  93. [section addFormRow:row];
  94. // Section : USER INFORMATION -------------------------------------------
  95. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_user_information_", nil)];
  96. [form addFormSection:section];
  97. // Full Name
  98. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"userfullname" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_full_name_", nil)];
  99. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  100. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  101. [section addFormRow:row];
  102. // Address
  103. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"useraddress" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_address_", nil)];
  104. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  105. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  106. [section addFormRow:row];
  107. // Phone
  108. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"userphone" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_phone_", nil)];
  109. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  110. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  111. [section addFormRow:row];
  112. // Email
  113. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"useremail" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_email_", nil)];
  114. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  115. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  116. [section addFormRow:row];
  117. // Web
  118. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"userweb" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_web_", nil)];
  119. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  120. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  121. [section addFormRow:row];
  122. // Twitter
  123. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"usertwitter" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_twitter_", nil)];
  124. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  125. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  126. [section addFormRow:row];
  127. // Section AUTOMATIC UPLOAD OF CAMERA IMAGES ----------------------------
  128. section = [XLFormSectionDescriptor formSection];
  129. [form addFormSection:section];
  130. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"cameraupload" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_uploading_from_camera_", nil)];
  131. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  132. [row.cellConfig setObject:[UIImage imageNamed:image_settingsCameraUpload] forKey:@"imageView.image"];
  133. row.action.formSegueIdentifier = @"CCManageCameraUploadSegue";
  134. [section addFormRow:row];
  135. // Section FOLDERS FAVORITES OFFLINE ------------------------------------
  136. section = [XLFormSectionDescriptor formSection];
  137. [form addFormSection:section];
  138. section.footerTitle = NSLocalizedString(@"_favorite_offline_footer_", nil);
  139. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"favoriteoffline" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_favorite_offline_", nil)];
  140. [row.cellConfig setObject:[UIImage imageNamed:image_settingsFavoriteOffline] forKey:@"imageView.image"];
  141. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  142. [section addFormRow:row];
  143. #ifndef OPTION_CRYPTO_CLOUD_SYSTEM_DISABLE
  144. // Section CRYPTO CLOUD SYSTEM ------------------------------------------
  145. section = [XLFormSectionDescriptor formSection];
  146. [form addFormSection:section];
  147. // Crypto Cloud
  148. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"cryptocloud" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_crypto_cloud_system_", nil)];
  149. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  150. [row.cellConfig setObject:[UIImage imageNamed:image_settingsCryptoCloud] forKey:@"imageView.image"];
  151. row.action.viewControllerClass = [CCManageCryptoCloud class];
  152. [section addFormRow:row];
  153. #endif
  154. // Section : INFORMATION ------------------------------------------------
  155. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_information_", nil)];
  156. [form addFormSection:section];
  157. NSString *versionApp = [NSString stringWithFormat:@"%@.%@", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
  158. section.footerTitle = [NSString stringWithFormat:k_textCopyright, versionApp];
  159. // Acknowledgements
  160. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"buttonLeftAligned" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_acknowledgements_", nil)];
  161. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  162. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  163. [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
  164. [row.cellConfig setObject:[UIImage imageNamed:image_settingsAcknowledgements] forKey:@"imageView.image"];
  165. row.action.formBlock = ^(XLFormRowDescriptor * sender){
  166. [self performSegueWithIdentifier:@"AcknowledgementsSegue" sender:sender];
  167. [self deselectFormRow:sender];
  168. };
  169. [section addFormRow:row];
  170. // Contact us mail
  171. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"sendmail" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_contact_by_email_", nil)];
  172. [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
  173. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  174. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  175. [row.cellConfig setObject:[UIImage imageNamed:image_settingsMail] forKey:@"imageView.image"];
  176. row.action.formSelector = @selector(sendMail:);
  177. [section addFormRow:row];
  178. // Section Advanced -------------------------------------------------
  179. section = [XLFormSectionDescriptor formSection];
  180. [form addFormSection:section];
  181. // Advanced
  182. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"advanced" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_advanced_", nil)];
  183. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  184. [row.cellConfig setObject:[UIImage imageNamed:image_settingsAdvanced] forKey:@"imageView.image"];
  185. row.action.viewControllerClass = [CCAdvanced class];
  186. [section addFormRow:row];
  187. self.form = form;
  188. }
  189. - (void)viewDidLoad
  190. {
  191. [super viewDidLoad];
  192. self.title = NSLocalizedString(@"_settings_", nil);
  193. self.tableView.backgroundColor = [UIColor whiteColor];
  194. // Color
  195. [CCAspect aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
  196. [CCAspect aspectTabBar:self.tabBarController.tabBar hidden:NO];
  197. }
  198. // Apparirà
  199. - (void)viewWillAppear:(BOOL)animated
  200. {
  201. [super viewWillAppear:animated];
  202. // Color
  203. [CCAspect aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
  204. [CCAspect aspectTabBar:self.tabBarController.tabBar hidden:NO];
  205. [self reloadForm];
  206. }
  207. // E' apparsa
  208. - (void)viewDidAppear:(BOOL)animated
  209. {
  210. [super viewDidAppear:animated];
  211. }
  212. #pragma --------------------------------------------------------------------------------------------
  213. #pragma mark === Chiamate dal Form ===
  214. #pragma --------------------------------------------------------------------------------------------
  215. - (void)reloadForm
  216. {
  217. self.form.delegate = nil;
  218. // ----------------------
  219. XLFormRowDescriptor *rowBloccoPasscode = [self.form formRowWithTag:@"bloccopasscode"];
  220. XLFormRowDescriptor *rowSimplyPasscode = [self.form formRowWithTag:@"simplypasscode"];
  221. XLFormRowDescriptor *rowOnlyLockDir = [self.form formRowWithTag:@"onlylockdir"];
  222. XLFormRowDescriptor *rowFavoriteOffline = [self.form formRowWithTag:@"favoriteoffline"];
  223. XLFormRowDescriptor *rowVersionServer = [self.form formRowWithTag:@"versionserver"];
  224. XLFormRowDescriptor *rowUrlCloud = [self.form formRowWithTag:@"urlcloud"];
  225. XLFormRowDescriptor *rowUserNameCloud = [self.form formRowWithTag:@"usernamecloud"];
  226. XLFormRowDescriptor *rowUserFullName = [self.form formRowWithTag:@"userfullname"];
  227. XLFormRowDescriptor *rowUserAddress = [self.form formRowWithTag:@"useraddress"];
  228. XLFormRowDescriptor *rowUserPhone = [self.form formRowWithTag:@"userphone"];
  229. XLFormRowDescriptor *rowUserEmail = [self.form formRowWithTag:@"useremail"];
  230. XLFormRowDescriptor *rowUserWeb = [self.form formRowWithTag:@"userweb"];
  231. XLFormRowDescriptor *rowUserTwitter = [self.form formRowWithTag:@"usertwitter"];
  232. //XLFormRowDescriptor *rowChangeCredentials = [self.form formRowWithTag:@"changecredentials"];
  233. // ------------------------------------------------------------------
  234. if ([[CCUtility getBlockCode] length]) {
  235. rowBloccoPasscode.title = NSLocalizedString(@"_lock_active_", nil);
  236. [rowBloccoPasscode.cellConfig setObject:[UIImage imageNamed:image_settingsPasscodeYES] forKey:@"imageView.image"];
  237. } else {
  238. rowBloccoPasscode.title = NSLocalizedString(@"_lock_not_active_", nil);
  239. [rowBloccoPasscode.cellConfig setObject:[UIImage imageNamed:image_settingsPasscodeNO] forKey:@"imageView.image"];
  240. }
  241. if ([CCUtility getSimplyBlockCode]) [rowSimplyPasscode setValue:@1]; else [rowSimplyPasscode setValue:@0];
  242. if ([CCUtility getOnlyLockDir]) [rowOnlyLockDir setValue:@1]; else [rowOnlyLockDir setValue:@0];
  243. if ([CCUtility getFavoriteOffline]) [rowFavoriteOffline setValue:@1]; else [rowFavoriteOffline setValue:@0];
  244. _tableAccount = [CCCoreData getActiveAccount];
  245. rowVersionServer.value = [NSString stringWithFormat:@"%lu.%lu.%lu",(unsigned long)[_tableAccount.versionMajor integerValue], (unsigned long)[_tableAccount.versionMinor integerValue], (unsigned long)[_tableAccount.versionMicro integerValue]];
  246. rowUrlCloud.value = app.activeUrl;
  247. rowUserNameCloud.value = app.activeUser;
  248. rowUserFullName.value = _tableAccount.displayName;
  249. if ([_tableAccount.displayName isEqualToString:@""]) rowUserFullName.hidden = @YES;
  250. rowUserAddress.value = _tableAccount.address;
  251. if ([_tableAccount.address isEqualToString:@""]) rowUserAddress.hidden = @YES;
  252. rowUserPhone.value = _tableAccount.phone;
  253. if ([_tableAccount.phone isEqualToString:@""]) rowUserPhone.hidden = @YES;
  254. rowUserEmail.value = _tableAccount.email;
  255. if ([_tableAccount.email isEqualToString:@""]) rowUserEmail.hidden = @YES;
  256. rowUserWeb.value = _tableAccount.webpage;
  257. if ([_tableAccount.webpage isEqualToString:@""]) rowUserWeb.hidden = @YES;
  258. rowUserTwitter.value = _tableAccount.twitter;
  259. if ([_tableAccount.twitter isEqualToString:@""]) rowUserTwitter.hidden = @YES;
  260. // -----------------------------------------------------------------
  261. [self.tableView reloadData];
  262. self.form.delegate = self;
  263. }
  264. - (void)formRowDescriptorValueHasChanged:(XLFormRowDescriptor *)rowDescriptor oldValue:(id)oldValue newValue:(id)newValue
  265. {
  266. [super formRowDescriptorValueHasChanged:rowDescriptor oldValue:oldValue newValue:newValue];
  267. if ([rowDescriptor.tag isEqualToString:@"onlylockdir"]) {
  268. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  269. [CCUtility setOnlyLockDir:true];
  270. } else {
  271. [CCUtility setOnlyLockDir:false];
  272. }
  273. }
  274. if ([rowDescriptor.tag isEqualToString:@"simplypasscode"]) {
  275. if ([[CCUtility getBlockCode] length] == 0)
  276. [CCUtility setSimplyBlockCode:[[rowDescriptor.value valueData] boolValue]];
  277. else
  278. [self changeSimplyPassword];
  279. }
  280. if ([rowDescriptor.tag isEqualToString:@"favoriteoffline"]) {
  281. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  282. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"" message:NSLocalizedString(@"_continue_", nil) preferredStyle:UIAlertControllerStyleActionSheet];
  283. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  284. [CCUtility setFavoriteOffline:true];
  285. [self synchronizeFavorites];
  286. }]];
  287. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  288. [self reloadForm];
  289. }]];
  290. //if iPhone
  291. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
  292. [self presentViewController:alertController animated:YES completion:nil];
  293. }
  294. //if iPad
  295. else {
  296. // Change Rect to position Popover
  297. UIPopoverController *popup = [[UIPopoverController alloc] initWithContentViewController:alertController];
  298. [popup presentPopoverFromRect:[self.tableView rectForRowAtIndexPath:[self.form indexPathOfFormRow:rowDescriptor]] inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
  299. }
  300. } else {
  301. [CCUtility setFavoriteOffline:false];
  302. }
  303. }
  304. }
  305. - (void)checkEncryptPass:(XLFormRowDescriptor *)sender
  306. {
  307. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  308. viewController.delegate = self;
  309. viewController.fromType = CCBKPasscodeFromCheckCryptoKey;
  310. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  311. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  312. viewController.passcodeInputView.maximumLength = 64;
  313. viewController.title = NSLocalizedString(@"_check_key_aes_256_", nil);
  314. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  315. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_CRYPTOCLOUD;
  316. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  317. [self presentViewController:navigationController animated:YES completion:nil];
  318. }
  319. - (void)changeSimplyPassword
  320. {
  321. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  322. viewController.delegate = self;
  323. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  324. viewController.fromType = CCBKPasscodeFromSimply;
  325. viewController.title = NSLocalizedString(@"_change_simply_passcode_", nil);
  326. viewController.inputViewTitlePassword = YES;
  327. if ([CCUtility getSimplyBlockCode]) {
  328. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  329. viewController.passcodeInputView.maximumLength = 6;
  330. } else {
  331. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  332. viewController.passcodeInputView.maximumLength = 64;
  333. }
  334. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  335. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  336. viewController.touchIDManager = touchIDManager;
  337. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  338. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_CRYPTOCLOUD;
  339. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  340. [self presentViewController:navigationController animated:YES completion:nil];
  341. }
  342. - (void)bloccoPassword
  343. {
  344. // ATTIVAZIONE LOCK PASSWORD
  345. if ([[CCUtility getBlockCode] length] == 0) {
  346. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  347. viewController.delegate = self;
  348. viewController.type = BKPasscodeViewControllerNewPasscodeType;
  349. viewController.fromType = CCBKPasscodeFromSettingsPasscode;
  350. viewController.inputViewTitlePassword = YES;
  351. if ([CCUtility getSimplyBlockCode]) {
  352. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  353. viewController.passcodeInputView.maximumLength = 6;
  354. } else {
  355. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  356. viewController.passcodeInputView.maximumLength = 64;
  357. }
  358. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  359. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  360. viewController.touchIDManager = touchIDManager;
  361. viewController.title = NSLocalizedString(@"_passcode_activate_", nil);
  362. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  363. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_CRYPTOCLOUD;
  364. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  365. [self presentViewController:navigationController animated:YES completion:nil];
  366. } else {
  367. // OFF LOCK PASSWORD
  368. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  369. viewController.delegate = self;
  370. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  371. viewController.fromType = CCBKPasscodeFromSettingsPasscode;
  372. viewController.inputViewTitlePassword = YES;
  373. if ([CCUtility getSimplyBlockCode]) {
  374. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  375. viewController.passcodeInputView.maximumLength = 6;
  376. } else {
  377. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  378. viewController.passcodeInputView.maximumLength = 64;
  379. }
  380. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  381. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  382. viewController.touchIDManager = touchIDManager;
  383. viewController.title = NSLocalizedString(@"_disabling_passcode_", nil);
  384. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  385. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_CRYPTOCLOUD;
  386. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  387. [self presentViewController:navigationController animated:YES completion:nil];
  388. }
  389. }
  390. - (void)synchronizeFavorites
  391. {
  392. NSArray *recordsTableMetadata = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (favorite == 1)", app.activeAccount] context:nil];
  393. for (TableMetadata *tableMetadata in recordsTableMetadata) {
  394. if ([tableMetadata.directory boolValue]) {
  395. NSString *serverUrl = [CCCoreData getServerUrlFromDirectoryID:tableMetadata.directoryID activeAccount:app.activeAccount];
  396. serverUrl = [CCUtility stringAppendServerUrl:serverUrl addFileName:tableMetadata.fileNamePrint];
  397. NSArray *TableDirectories = [CCCoreData getDirectoryIDsFromBeginsWithServerUrl:serverUrl activeAccount:app.activeAccount];
  398. for (TableDirectory *tableDirecory in TableDirectories)
  399. [CCCoreData clearDateReadAccount:app.activeAccount serverUrl:nil directoryID:tableDirecory.directoryID];
  400. }
  401. }
  402. [[CCSynchronize sharedSynchronize] readListingFavorites];
  403. }
  404. #pragma --------------------------------------------------------------------------------------------
  405. #pragma mark === Mail ===
  406. #pragma --------------------------------------------------------------------------------------------
  407. - (void) mailComposeController:(MFMailComposeViewController *)vc didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
  408. {
  409. switch (result)
  410. {
  411. case MFMailComposeResultCancelled:
  412. [app messageNotification:@"_info_" description:@"_mail_deleted_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess];
  413. break;
  414. case MFMailComposeResultSaved:
  415. [app messageNotification:@"_info_" description:@"_mail_saved_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess];
  416. break;
  417. case MFMailComposeResultSent:
  418. [app messageNotification:@"_info_" description:@"_mail_sent_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess];
  419. break;
  420. case MFMailComposeResultFailed: {
  421. NSString *msg = [NSString stringWithFormat:NSLocalizedString(@"_mail_failure_", nil), [error localizedDescription]];
  422. [app messageNotification:@"_error_" description:msg visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError];
  423. }
  424. break;
  425. default:
  426. break;
  427. }
  428. // Close the Mail Interface
  429. [self dismissViewControllerAnimated:YES completion:NULL];
  430. }
  431. - (void)sendMail:(XLFormRowDescriptor *)sender
  432. {
  433. // Email Subject
  434. NSString *emailTitle = NSLocalizedString(@"_information_req_", nil);
  435. // Email Content
  436. NSString *messageBody;
  437. // Email Recipents
  438. NSArray *toRecipents;
  439. messageBody = [NSString stringWithFormat:@"\n\n\n%@ Version %@ (%@)", k_brand,[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
  440. toRecipents = [NSArray arrayWithObject:k_mailMe];
  441. MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
  442. mc.mailComposeDelegate = self;
  443. [mc setSubject:emailTitle];
  444. [mc setMessageBody:messageBody isHTML:NO];
  445. [mc setToRecipients:toRecipents];
  446. // Present mail view controller on screen
  447. [self presentViewController:mc animated:YES completion:NULL];
  448. }
  449. - (void)sendMailEncryptPass
  450. {
  451. [CCUtility sendMailEncryptPass:[CCUtility getEmail] validateEmail:NO form:self];
  452. }
  453. #pragma --------------------------------------------------------------------------------------------
  454. #pragma mark === BKPasscodeViewController ===
  455. #pragma --------------------------------------------------------------------------------------------
  456. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  457. {
  458. [aViewController dismissViewControllerAnimated:YES completion:nil];
  459. switch (aViewController.type) {
  460. case BKPasscodeViewControllerNewPasscodeType: {
  461. // enable passcode
  462. [CCUtility setBlockCode:aPasscode];
  463. }
  464. break;
  465. case BKPasscodeViewControllerCheckPasscodeType: {
  466. // disable passcode
  467. if (aViewController.fromType == CCBKPasscodeFromSettingsPasscode) {
  468. [CCUtility setBlockCode:@""];
  469. [CCCoreData setAllDirectoryUnLockForAccount:app.activeAccount];
  470. [app.activeMain.tableView reloadData];
  471. }
  472. // email Key EAS-256
  473. if (aViewController.fromType == CCBKPasscodeFromCheckCryptoKey)
  474. [self sendMailEncryptPass];
  475. // change simply
  476. if (aViewController.fromType == CCBKPasscodeFromSimply) {
  477. // disable passcode
  478. [CCUtility setBlockCode:@""];
  479. [CCCoreData setAllDirectoryUnLockForAccount:app.activeAccount];
  480. [app.activeMain.tableView reloadData];
  481. [CCUtility setSimplyBlockCode:![CCUtility getSimplyBlockCode]];
  482. // Call new passcode
  483. [self bloccoPassword];
  484. }
  485. }
  486. break;
  487. default:
  488. break;
  489. }
  490. [self reloadForm];
  491. }
  492. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  493. {
  494. if (aViewController.fromType == CCBKPasscodeFromCheckCryptoKey) {
  495. NSString *key = [CCUtility getKeyChainPasscodeForUUID:[CCUtility getUUID]];
  496. if ([aPasscode isEqualToString:key]) {
  497. self.lockUntilDate = nil;
  498. self.failedAttempts = 0;
  499. aResultHandler(YES);
  500. } else aResultHandler(NO);
  501. }
  502. if (aViewController.fromType == CCBKPasscodeFromSettingsPasscode || aViewController.fromType == CCBKPasscodeFromSimply) {
  503. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  504. self.lockUntilDate = nil;
  505. self.failedAttempts = 0;
  506. aResultHandler(YES);
  507. } else aResultHandler(NO);
  508. }
  509. }
  510. - (void)passcodeViewControllerDidFailAttempt:(CCBKPasscode *)aViewController
  511. {
  512. self.failedAttempts++;
  513. if (self.failedAttempts > 5) {
  514. NSTimeInterval timeInterval = 60;
  515. if (self.failedAttempts > 6) {
  516. NSUInteger multiplier = self.failedAttempts - 6;
  517. timeInterval = (5 * 60) * multiplier;
  518. if (timeInterval > 3600 * 24) {
  519. timeInterval = 3600 * 24;
  520. }
  521. }
  522. self.lockUntilDate = [NSDate dateWithTimeIntervalSinceNow:timeInterval];
  523. }
  524. }
  525. - (NSUInteger)passcodeViewControllerNumberOfFailedAttempts:(CCBKPasscode *)aViewController
  526. {
  527. return self.failedAttempts;
  528. }
  529. - (NSDate *)passcodeViewControllerLockUntilDate:(CCBKPasscode *)aViewController
  530. {
  531. return self.lockUntilDate;
  532. }
  533. - (void)passcodeViewCloseButtonPressed:(id)sender
  534. {
  535. [self dismissViewControllerAnimated:YES completion:nil];
  536. }
  537. @end