CCSettings.m 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. //
  2. // CCSettings.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 24/11/14.
  6. // Copyright (c) 2017 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  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 "CCManageAccount.h"
  30. #import "NCManageEndToEndEncryption.h"
  31. #import "NCBridgeSwift.h"
  32. #define alertViewEsci 1
  33. #define alertViewAzzeraCache 2
  34. @interface CCSettings ()
  35. {
  36. AppDelegate *appDelegate;
  37. }
  38. @end
  39. @implementation CCSettings
  40. - (id)initWithCoder:(NSCoder *)aDecoder
  41. {
  42. self = [super initWithCoder:aDecoder];
  43. if (self) {
  44. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  45. [self initializeForm];
  46. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:@"changeTheming" object:nil];
  47. appDelegate.activeSettings = self;
  48. }
  49. return self;
  50. }
  51. - (void)initializeForm
  52. {
  53. XLFormDescriptor *form;
  54. XLFormSectionDescriptor *section;
  55. XLFormRowDescriptor *row;
  56. form = [XLFormDescriptor formDescriptorWithTitle:NSLocalizedString(@"_settings_", nil)];
  57. form.rowNavigationOptions = XLFormRowNavigationOptionNone;
  58. // Section AUTO UPLOAD OF CAMERA IMAGES ----------------------------
  59. section = [XLFormSectionDescriptor formSection];
  60. [form addFormSection:section];
  61. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUpload" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_settings_autoupload_", nil)];
  62. row.cellConfigAtConfigure[@"backgroundColor"] = [NCBrandColor sharedInstance].backgroundView;
  63. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  64. [row.cellConfig setObject:[NCBrandColor sharedInstance].textView forKey:@"textLabel.textColor"];
  65. [row.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"autoUpload"] width:50 height:50 color:[NCBrandColor sharedInstance].icon] forKey:@"imageView.image"];
  66. row.action.formSegueIdentifier = @"CCManageAutoUploadSegue";
  67. [section addFormRow:row];
  68. // Section FOLDERS FAVORITES OFFLINE ------------------------------------
  69. section = [XLFormSectionDescriptor formSection];
  70. [form addFormSection:section];
  71. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"favoriteoffline" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_favorite_offline_", nil)];
  72. row.cellConfigAtConfigure[@"backgroundColor"] = [NCBrandColor sharedInstance].backgroundView;
  73. [row.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] width:50 height:50 color:[NCBrandColor sharedInstance].icon] forKey:@"imageView.image"];
  74. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  75. [row.cellConfig setObject:[NCBrandColor sharedInstance].textView forKey:@"textLabel.textColor"];
  76. [section addFormRow:row];
  77. // Section : LOCK --------------------------------------------------------------
  78. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_lock_", nil)];
  79. [form addFormSection:section];
  80. // Lock active YES/NO
  81. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"bloccopasscode" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_lock_not_active_", nil)];
  82. row.cellConfigAtConfigure[@"backgroundColor"] = [NCBrandColor sharedInstance].backgroundView;
  83. [row.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"settingsPasscodeNO"] multiplier:2 color:[NCBrandColor sharedInstance].icon] forKey:@"imageView.image"];
  84. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  85. [row.cellConfig setObject:[NCBrandColor sharedInstance].textView forKey:@"textLabel.textColor"];
  86. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  87. //[row.cellConfig setObject:@(UITableViewCellAccessoryDisclosureIndicator) forKey:@"accessoryType"];
  88. row.action.formSelector = @selector(bloccoPassword);
  89. [section addFormRow:row];
  90. // Passcode simply
  91. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"simplypasscode" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_lock_protection_simply_", nil)];
  92. row.cellConfigAtConfigure[@"backgroundColor"] = [NCBrandColor sharedInstance].backgroundView;
  93. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  94. [row.cellConfig setObject:[NCBrandColor sharedInstance].textView forKey:@"textLabel.textColor"];
  95. [section addFormRow:row];
  96. // Lock no screen
  97. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"onlylockdir" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_lock_protection_no_screen_", nil)];
  98. row.cellConfigAtConfigure[@"backgroundColor"] = [NCBrandColor sharedInstance].backgroundView;
  99. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  100. [row.cellConfig setObject:[NCBrandColor sharedInstance].textView forKey:@"textLabel.textColor"];
  101. [section addFormRow:row];
  102. // Section : Screen --------------------------------------------------------------
  103. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_screen_", nil)];
  104. [form addFormSection:section];
  105. // Dark Mode
  106. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"darkMode" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_dark_mode_", nil)];
  107. row.cellConfigAtConfigure[@"backgroundColor"] = [NCBrandColor sharedInstance].backgroundView;
  108. [row.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"themeLightDark"] width:50 height:50 color:[NCBrandColor sharedInstance].icon] forKey:@"imageView.image"];
  109. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  110. [row.cellConfig setObject:[NCBrandColor sharedInstance].textView forKey:@"textLabel.textColor"];
  111. [section addFormRow:row];
  112. // Section : E2EEncryption --------------------------------------------------------------
  113. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_e2e_settings_title_", nil)];
  114. [form addFormSection:section];
  115. // EndToEnd Encryption
  116. NSString *title = [NSString stringWithFormat:@"%@ (%@)",NSLocalizedString(@"_e2e_settings_", nil), NSLocalizedString(@"_experimental_", nil)];
  117. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"e2eEncryption" rowType:XLFormRowDescriptorTypeButton title:title];
  118. row.cellConfigAtConfigure[@"backgroundColor"] = [NCBrandColor sharedInstance].backgroundView;
  119. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  120. [row.cellConfig setObject:[NCBrandColor sharedInstance].textView forKey:@"textLabel.textColor"];
  121. [row.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"lock"] width:50 height:50 color:[NCBrandColor sharedInstance].icon] forKey:@"imageView.image"];
  122. row.action.viewControllerClass = [NCManageEndToEndEncryption class];
  123. [section addFormRow:row];
  124. // Section Advanced -------------------------------------------------
  125. section = [XLFormSectionDescriptor formSection];
  126. [form addFormSection:section];
  127. // Advanced
  128. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"advanced" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_advanced_", nil)];
  129. row.cellConfigAtConfigure[@"backgroundColor"] = [NCBrandColor sharedInstance].backgroundView;
  130. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  131. [row.cellConfig setObject:[NCBrandColor sharedInstance].textView forKey:@"textLabel.textColor"];
  132. [row.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"settings"] width:50 height:50 color:[NCBrandColor sharedInstance].icon] forKey:@"imageView.image"];
  133. row.action.viewControllerClass = [CCAdvanced class];
  134. [section addFormRow:row];
  135. // Section : INFORMATION ------------------------------------------------
  136. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_information_", nil)];
  137. [form addFormSection:section];
  138. // Acknowledgements
  139. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"buttonLeftAligned" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_acknowledgements_", nil)];
  140. row.cellConfigAtConfigure[@"backgroundColor"] = [NCBrandColor sharedInstance].backgroundView;
  141. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  142. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  143. [row.cellConfig setObject:[NCBrandColor sharedInstance].textView forKey:@"textLabel.textColor"];
  144. [row.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"acknowledgements"] width:50 height:50 color:[NCBrandColor sharedInstance].icon] forKey:@"imageView.image"];
  145. row.action.formBlock = ^(XLFormRowDescriptor * sender){
  146. [self performSegueWithIdentifier:@"AcknowledgementsSegue" sender:sender];
  147. [self deselectFormRow:sender];
  148. };
  149. [section addFormRow:row];
  150. // Contact us mail
  151. /*
  152. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"sendmail" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_contact_by_email_", nil)];
  153. [row.cellConfig setObject:[UIColor blackColor] forKey:@"textLabel.textColor"];
  154. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  155. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  156. [row.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"email"] multiplier:2 color:[NCBrandColor sharedInstance].icon] forKey:@"imageView.image"];
  157. row.action.formSelector = @selector(sendMail:);
  158. [section addFormRow:row];
  159. */
  160. self.form = form;
  161. }
  162. // Apparirà
  163. - (void)viewWillAppear:(BOOL)animated
  164. {
  165. [super viewWillAppear:animated];
  166. self.tableView.backgroundColor = [NCBrandColor sharedInstance].backgroundView;
  167. self.tableView.showsVerticalScrollIndicator = NO;
  168. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  169. [appDelegate aspectTabBar:self.tabBarController.tabBar hidden:NO];
  170. [self reloadForm];
  171. }
  172. - (void)changeTheming
  173. {
  174. if (self.isViewLoaded && self.view.window)
  175. [appDelegate changeTheming:self];
  176. }
  177. #pragma --------------------------------------------------------------------------------------------
  178. #pragma mark === Chiamate dal Form ===
  179. #pragma --------------------------------------------------------------------------------------------
  180. - (void)reloadForm
  181. {
  182. self.form.delegate = nil;
  183. // ------------------------------------------------------------------
  184. XLFormRowDescriptor *rowBloccoPasscode = [self.form formRowWithTag:@"bloccopasscode"];
  185. XLFormRowDescriptor *rowSimplyPasscode = [self.form formRowWithTag:@"simplypasscode"];
  186. XLFormRowDescriptor *rowOnlyLockDir = [self.form formRowWithTag:@"onlylockdir"];
  187. XLFormRowDescriptor *rowFavoriteOffline = [self.form formRowWithTag:@"favoriteoffline"];
  188. XLFormRowDescriptor *rowDarkMode = [self.form formRowWithTag:@"darkMode"];
  189. // ------------------------------------------------------------------
  190. if ([[CCUtility getBlockCode] length]) {
  191. rowBloccoPasscode.title = NSLocalizedString(@"_lock_active_", nil);
  192. [rowBloccoPasscode.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"settingsPasscodeYES"] multiplier:2 color:[NCBrandColor sharedInstance].icon] forKey:@"imageView.image"];
  193. } else {
  194. rowBloccoPasscode.title = NSLocalizedString(@"_lock_not_active_", nil);
  195. [rowBloccoPasscode.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"settingsPasscodeNO"] multiplier:2 color:[NCBrandColor sharedInstance].icon] forKey:@"imageView.image"];
  196. }
  197. if ([CCUtility getSimplyBlockCode]) [rowSimplyPasscode setValue:@1]; else [rowSimplyPasscode setValue:@0];
  198. if ([CCUtility getOnlyLockDir]) [rowOnlyLockDir setValue:@1]; else [rowOnlyLockDir setValue:@0];
  199. if ([CCUtility getFavoriteOffline]) [rowFavoriteOffline setValue:@1]; else [rowFavoriteOffline setValue:@0];
  200. if ([CCUtility getDarkMode]) [rowDarkMode setValue:@1]; else [rowDarkMode setValue:@0];
  201. // -----------------------------------------------------------------
  202. [self.tableView reloadData];
  203. self.form.delegate = self;
  204. }
  205. - (void)formRowDescriptorValueHasChanged:(XLFormRowDescriptor *)rowDescriptor oldValue:(id)oldValue newValue:(id)newValue
  206. {
  207. [super formRowDescriptorValueHasChanged:rowDescriptor oldValue:oldValue newValue:newValue];
  208. if ([rowDescriptor.tag isEqualToString:@"onlylockdir"]) {
  209. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  210. [CCUtility setOnlyLockDir:true];
  211. } else {
  212. [CCUtility setOnlyLockDir:false];
  213. }
  214. }
  215. if ([rowDescriptor.tag isEqualToString:@"simplypasscode"]) {
  216. if ([[CCUtility getBlockCode] length] == 0)
  217. [CCUtility setSimplyBlockCode:[[rowDescriptor.value valueData] boolValue]];
  218. else
  219. [self changeSimplyPassword];
  220. }
  221. if ([rowDescriptor.tag isEqualToString:@"favoriteoffline"]) {
  222. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  223. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"" message:NSLocalizedString(@"_continue_request_", nil) preferredStyle:UIAlertControllerStyleActionSheet];
  224. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  225. [CCUtility setFavoriteOffline:true];
  226. [self synchronizeFavorites];
  227. }]];
  228. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  229. [self reloadForm];
  230. }]];
  231. alertController.popoverPresentationController.sourceView = self.view;
  232. NSIndexPath *indexPath = [self.form indexPathOfFormRow:rowDescriptor];
  233. CGRect cellRect = [self.tableView rectForRowAtIndexPath:indexPath];
  234. alertController.popoverPresentationController.sourceRect = CGRectOffset(cellRect, -self.tableView.contentOffset.x, -self.tableView.contentOffset.y);
  235. [self presentViewController:alertController animated:YES completion:nil];
  236. } else {
  237. [CCUtility setFavoriteOffline:false];
  238. }
  239. }
  240. if ([rowDescriptor.tag isEqualToString:@"darkMode"]) {
  241. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  242. [CCUtility setDarkMode:true];
  243. } else {
  244. [CCUtility setDarkMode:false];
  245. }
  246. (void)[[NCBrandColor sharedInstance] init];
  247. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  248. [appDelegate aspectTabBar:self.tabBarController.tabBar hidden:NO];
  249. self.tableView.backgroundColor = [NCBrandColor sharedInstance].backgroundView;
  250. [self initializeForm];
  251. [self reloadForm];
  252. }
  253. }
  254. - (void)changeSimplyPassword
  255. {
  256. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  257. viewController.delegate = self;
  258. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  259. viewController.fromType = CCBKPasscodeFromSimply;
  260. viewController.title = NSLocalizedString(@"_change_simply_passcode_", nil);
  261. viewController.inputViewTitlePassword = YES;
  262. if ([CCUtility getSimplyBlockCode]) {
  263. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  264. viewController.passcodeInputView.maximumLength = 6;
  265. } else {
  266. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  267. viewController.passcodeInputView.maximumLength = 64;
  268. }
  269. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  270. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  271. viewController.touchIDManager = touchIDManager;
  272. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  273. viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
  274. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  275. [self presentViewController:navigationController animated:YES completion:nil];
  276. }
  277. - (void)bloccoPassword
  278. {
  279. // ATTIVAZIONE LOCK PASSWORD
  280. if ([[CCUtility getBlockCode] length] == 0) {
  281. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  282. viewController.delegate = self;
  283. viewController.type = BKPasscodeViewControllerNewPasscodeType;
  284. viewController.fromType = CCBKPasscodeFromSettingsPasscode;
  285. viewController.inputViewTitlePassword = YES;
  286. if ([CCUtility getSimplyBlockCode]) {
  287. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  288. viewController.passcodeInputView.maximumLength = 6;
  289. } else {
  290. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  291. viewController.passcodeInputView.maximumLength = 64;
  292. }
  293. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  294. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  295. viewController.touchIDManager = touchIDManager;
  296. viewController.title = NSLocalizedString(@"_passcode_activate_", nil);
  297. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  298. viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
  299. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  300. [self presentViewController:navigationController animated:YES completion:nil];
  301. } else {
  302. // OFF LOCK PASSWORD
  303. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  304. viewController.delegate = self;
  305. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  306. viewController.fromType = CCBKPasscodeFromSettingsPasscode;
  307. viewController.inputViewTitlePassword = YES;
  308. if ([CCUtility getSimplyBlockCode]) {
  309. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  310. viewController.passcodeInputView.maximumLength = 6;
  311. } else {
  312. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  313. viewController.passcodeInputView.maximumLength = 64;
  314. }
  315. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  316. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  317. viewController.touchIDManager = touchIDManager;
  318. viewController.title = NSLocalizedString(@"_disabling_passcode_", nil);
  319. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  320. viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
  321. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  322. [self presentViewController:navigationController animated:YES completion:nil];
  323. }
  324. }
  325. - (void)synchronizeFavorites
  326. {
  327. NSArray *metadatas = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND favorite == true", appDelegate.activeAccount] sorted:nil ascending:NO];
  328. for (tableMetadata *metadata in metadatas) {
  329. if (metadata.directory) {
  330. NSString *serverUrl = [CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:metadata.fileName];
  331. NSString *serverUrlBeginWith = serverUrl;
  332. if (![serverUrl hasSuffix:@"/"])
  333. serverUrlBeginWith = [serverUrl stringByAppendingString:@"/"];
  334. NSArray *directories = [[NCManageDatabase sharedInstance] getTablesDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND (serverUrl == %@ OR serverUrl BEGINSWITH %@)", appDelegate.activeAccount, serverUrl, serverUrlBeginWith] sorted:@"serverUrl" ascending:true];
  335. for (tableDirectory *directory in directories)
  336. [[NCManageDatabase sharedInstance] clearDateReadWithServerUrl:directory.serverUrl account:appDelegate.activeAccount];
  337. }
  338. }
  339. [appDelegate.activeFavorites listingFavorites];
  340. }
  341. #pragma --------------------------------------------------------------------------------------------
  342. #pragma mark === Table View ===
  343. #pragma --------------------------------------------------------------------------------------------
  344. - (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
  345. {
  346. NSString *sectionName;
  347. switch (section)
  348. {
  349. case 1: {
  350. sectionName = NSLocalizedString(@"_favorite_offline_footer_", nil);
  351. }
  352. break;
  353. case 2: {
  354. sectionName = NSLocalizedString(@"_lock_protection_no_screen_footer_", nil);
  355. }
  356. break;
  357. case 5: {
  358. tableCapabilities *capabilities = [[NCManageDatabase sharedInstance] getCapabilitesWithAccount:appDelegate.activeAccount];
  359. NSString *versionServer = capabilities.versionString;
  360. NSString *versionApp = [NSString stringWithFormat:@"%@.%@", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
  361. NSString *versionNextcloud = [NSString stringWithFormat:[NCBrandOptions sharedInstance].textCopyrightNextcloudServer, versionServer];
  362. NSString *versionNextcloudiOS = [NSString stringWithFormat:[NCBrandOptions sharedInstance].textCopyrightNextcloudiOS, versionApp];
  363. NSString *nameSlogan = [NSString stringWithFormat:@"%@ - %@", capabilities.themingName, capabilities.themingSlogan];
  364. sectionName = [NSString stringWithFormat:@"%@\n\n%@\n%@", versionNextcloudiOS, versionNextcloud, nameSlogan];
  365. }
  366. break;
  367. }
  368. return sectionName;
  369. }
  370. #pragma --------------------------------------------------------------------------------------------
  371. #pragma mark === Mail ===
  372. #pragma --------------------------------------------------------------------------------------------
  373. - (void) mailComposeController:(MFMailComposeViewController *)vc didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
  374. {
  375. switch (result)
  376. {
  377. case MFMailComposeResultCancelled:
  378. [appDelegate messageNotification:@"_info_" description:@"_mail_deleted_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess errorCode:error.code];
  379. break;
  380. case MFMailComposeResultSaved:
  381. [appDelegate messageNotification:@"_info_" description:@"_mail_saved_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess errorCode:error.code];
  382. break;
  383. case MFMailComposeResultSent:
  384. [appDelegate messageNotification:@"_info_" description:@"_mail_sent_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess errorCode:error.code];
  385. break;
  386. case MFMailComposeResultFailed: {
  387. NSString *msg = [NSString stringWithFormat:NSLocalizedString(@"_mail_failure_", nil), [error localizedDescription]];
  388. [appDelegate messageNotification:@"_error_" description:msg visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  389. }
  390. break;
  391. default:
  392. break;
  393. }
  394. // Close the Mail Interface
  395. [self dismissViewControllerAnimated:YES completion:NULL];
  396. }
  397. - (void)sendMail:(XLFormRowDescriptor *)sender
  398. {
  399. if ([MFMailComposeViewController canSendMail]) {
  400. // Email Subject
  401. NSString *emailTitle = NSLocalizedString(@"_information_req_", nil);
  402. // Email Content
  403. NSString *messageBody;
  404. // Email Recipents
  405. NSArray *toRecipents;
  406. messageBody = [NSString stringWithFormat:@"%@\n\n\n\n%@ Version %@ (%@) - iOS %@", NSLocalizedString(@"_write_in_english_", nil), [NCBrandOptions sharedInstance].brand, [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"], [[UIDevice currentDevice] systemVersion]];
  407. toRecipents = [NSArray arrayWithObject:[NCBrandOptions sharedInstance].mailMe];
  408. MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
  409. mc.mailComposeDelegate = self;
  410. [mc setSubject:emailTitle];
  411. [mc setMessageBody:messageBody isHTML:NO];
  412. [mc setToRecipients:toRecipents];
  413. // Present mail view controller on screen
  414. [self presentViewController:mc animated:YES completion:NULL];
  415. }
  416. }
  417. #pragma --------------------------------------------------------------------------------------------
  418. #pragma mark === BKPasscodeViewController ===
  419. #pragma --------------------------------------------------------------------------------------------
  420. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  421. {
  422. [aViewController dismissViewControllerAnimated:YES completion:nil];
  423. switch (aViewController.type) {
  424. case BKPasscodeViewControllerNewPasscodeType: {
  425. // enable passcode
  426. [CCUtility setBlockCode:aPasscode];
  427. }
  428. break;
  429. case BKPasscodeViewControllerCheckPasscodeType: {
  430. // disable passcode
  431. if (aViewController.fromType == CCBKPasscodeFromSettingsPasscode) {
  432. [CCUtility setBlockCode:@""];
  433. [[NCManageDatabase sharedInstance] setAllDirectoryUnLockWithAccount:appDelegate.activeAccount];
  434. [appDelegate.activeMain.tableView reloadData];
  435. }
  436. // change simply
  437. if (aViewController.fromType == CCBKPasscodeFromSimply) {
  438. // disable passcode
  439. [CCUtility setBlockCode:@""];
  440. [[NCManageDatabase sharedInstance] setAllDirectoryUnLockWithAccount:appDelegate.activeAccount];
  441. [appDelegate.activeMain.tableView reloadData];
  442. [CCUtility setSimplyBlockCode:![CCUtility getSimplyBlockCode]];
  443. // Call new passcode
  444. [self bloccoPassword];
  445. }
  446. }
  447. break;
  448. default:
  449. break;
  450. }
  451. [self reloadForm];
  452. }
  453. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  454. {
  455. if (aViewController.fromType == CCBKPasscodeFromSettingsPasscode || aViewController.fromType == CCBKPasscodeFromSimply) {
  456. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  457. self.lockUntilDate = nil;
  458. self.failedAttempts = 0;
  459. aResultHandler(YES);
  460. } else aResultHandler(NO);
  461. }
  462. }
  463. - (void)passcodeViewControllerDidFailAttempt:(CCBKPasscode *)aViewController
  464. {
  465. self.failedAttempts++;
  466. if (self.failedAttempts > 5) {
  467. NSTimeInterval timeInterval = 60;
  468. if (self.failedAttempts > 6) {
  469. NSUInteger multiplier = self.failedAttempts - 6;
  470. timeInterval = (5 * 60) * multiplier;
  471. if (timeInterval > 3600 * 24) {
  472. timeInterval = 3600 * 24;
  473. }
  474. }
  475. self.lockUntilDate = [NSDate dateWithTimeIntervalSinceNow:timeInterval];
  476. }
  477. }
  478. - (NSUInteger)passcodeViewControllerNumberOfFailedAttempts:(CCBKPasscode *)aViewController
  479. {
  480. return self.failedAttempts;
  481. }
  482. - (NSDate *)passcodeViewControllerLockUntilDate:(CCBKPasscode *)aViewController
  483. {
  484. return self.lockUntilDate;
  485. }
  486. - (void)passcodeViewCloseButtonPressed:(id)sender
  487. {
  488. [self dismissViewControllerAnimated:YES completion:nil];
  489. }
  490. @end