CCAdvanced.m 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. //
  2. // CCManageHelp.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 06/11/15.
  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 "CCAdvanced.h"
  24. #import "CCUtility.h"
  25. #import "AppDelegate.h"
  26. #import <KTVHTTPCache/KTVHTTPCache.h>
  27. #import "NCBridgeSwift.h"
  28. @interface CCAdvanced ()
  29. {
  30. AppDelegate *appDelegate;
  31. }
  32. @end
  33. @implementation CCAdvanced
  34. - (void)initializeForm
  35. {
  36. XLFormDescriptor *form = [XLFormDescriptor formDescriptor];
  37. XLFormSectionDescriptor *section;
  38. XLFormRowDescriptor *row;
  39. // Section HIDDEN FILES -------------------------------------------------
  40. section = [XLFormSectionDescriptor formSection];
  41. [form addFormSection:section];
  42. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"showHiddenFiles" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_show_hidden_files_", nil)];
  43. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.sharedInstance.backgroundView;
  44. if ([CCUtility getShowHiddenFiles]) row.value = @"1";
  45. else row.value = @"0";
  46. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  47. [row.cellConfig setObject:NCBrandColor.sharedInstance.textView forKey:@"textLabel.textColor"];
  48. [section addFormRow:row];
  49. // Format Compatibility + Live Photo
  50. section = [XLFormSectionDescriptor formSection];
  51. [form addFormSection:section];
  52. section.footerTitle = [NSString stringWithFormat:@"%@\n%@", NSLocalizedString(@"_format_compatibility_footer_", nil), NSLocalizedString(@"_upload_mov_livephoto_footer_", nil)];
  53. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"formatCompatibility" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_format_compatibility_", nil)];
  54. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.sharedInstance.backgroundView;
  55. if ([CCUtility getFormatCompatibility]) row.value = @"1";
  56. else row.value = @"0";
  57. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  58. [row.cellConfig setObject:NCBrandColor.sharedInstance.textView forKey:@"textLabel.textColor"];
  59. [section addFormRow:row];
  60. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"livePhoto" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_upload_mov_livephoto_", nil)];
  61. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.sharedInstance.backgroundView;
  62. if ([CCUtility getLivePhoto]) row.value = @"1";
  63. else row.value = @"0";
  64. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  65. [row.cellConfig setObject:NCBrandColor.sharedInstance.textView forKey:@"textLabel.textColor"];
  66. [section addFormRow:row];
  67. // Disable Local Cache After Upload
  68. section = [XLFormSectionDescriptor formSection];
  69. [form addFormSection:section];
  70. section.footerTitle = NSLocalizedString(@"_disableLocalCacheAfterUpload_footer_", nil);
  71. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"disableLocalCacheAfterUpload" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_disableLocalCacheAfterUpload_", nil)];
  72. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.sharedInstance.backgroundView;
  73. if ([CCUtility getDisableLocalCacheAfterUpload]) row.value = @"1";
  74. else row.value = @"0";
  75. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  76. [row.cellConfig setObject:NCBrandColor.sharedInstance.textView forKey:@"textLabel.textColor"];
  77. [section addFormRow:row];
  78. // Section : Files App --------------------------------------------------------------
  79. if (![NCBrandOptions sharedInstance].disable_openin_file) {
  80. section = [XLFormSectionDescriptor formSection];
  81. [form addFormSection:section];
  82. section.footerTitle = NSLocalizedString(@"_disable_files_app_footer_", nil);
  83. // Disable Files App
  84. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"disablefilesapp" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_disable_files_app_", nil)];
  85. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.sharedInstance.backgroundView;
  86. if ([CCUtility getDisableFilesApp]) row.value = @"1";
  87. else row.value = @"0";
  88. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  89. [row.cellConfig setObject:NCBrandColor.sharedInstance.textView forKey:@"textLabel.textColor"];
  90. [section addFormRow:row];
  91. }
  92. // Section : Privacy --------------------------------------------------------------
  93. /*
  94. if (!NCBrandOptions.sharedInstance.disable_crash_service) {
  95. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_privacy_", nil)];
  96. [form addFormSection:section];
  97. section.footerTitle = NSLocalizedString(@"_privacy_footer_", nil);
  98. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"crashservice" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_crashservice_title_", nil)];
  99. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.sharedInstance.backgroundView;
  100. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  101. [row.cellConfig setObject:NCBrandColor.sharedInstance.textView forKey:@"textLabel.textColor"];
  102. [row.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"crashservice"] width:50 height:50 color:NCBrandColor.sharedInstance.icon] forKey:@"imageView.image"];
  103. if ([CCUtility getDisableCrashservice]) row.value = @"1";
  104. else row.value = @"0";
  105. [section addFormRow:row];
  106. }
  107. */
  108. // Section CLEAR CACHE -------------------------------------------------
  109. section = [XLFormSectionDescriptor formSection];
  110. [form addFormSection:section];
  111. section.footerTitle = NSLocalizedString(@"_clear_cache_footer_", nil);
  112. // Clear cache
  113. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"azzeracache" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_clear_cache_", nil)];
  114. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.sharedInstance.backgroundView;
  115. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  116. [row.cellConfig setObject:NCBrandColor.sharedInstance.textView forKey:@"textLabel.textColor"];
  117. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  118. [row.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"trash"] width:50 height:50 color:NCBrandColor.sharedInstance.icon] forKey:@"imageView.image"];
  119. row.action.formSelector = @selector(clearCacheRequest:);
  120. [section addFormRow:row];
  121. // Section EXIT --------------------------------------------------------
  122. section = [XLFormSectionDescriptor formSection];
  123. [form addFormSection:section];
  124. section.footerTitle = NSLocalizedString(@"_exit_footer_", nil);
  125. // Exit
  126. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"esci" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_exit_", nil)];
  127. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.sharedInstance.backgroundView;
  128. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  129. [row.cellConfig setObject:[UIColor redColor] forKey:@"textLabel.textColor"];
  130. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  131. [row.cellConfig setObject:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"exit"] width:50 height:50 color:[UIColor redColor]] forKey:@"imageView.image"];
  132. row.action.formSelector = @selector(exitNextcloud:);
  133. [section addFormRow:row];
  134. self.tableView.showsVerticalScrollIndicator = NO;
  135. self.form = form;
  136. }
  137. - (void)viewDidLoad
  138. {
  139. [super viewDidLoad];
  140. self.title = NSLocalizedString(@"_advanced_", nil);
  141. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  142. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:k_notificationCenter_changeTheming object:nil];
  143. [self changeTheming];
  144. }
  145. - (void)changeTheming
  146. {
  147. [appDelegate changeTheming:self tableView:self.tableView collectionView:nil form:true];
  148. [self initializeForm];
  149. }
  150. - (void)formRowDescriptorValueHasChanged:(XLFormRowDescriptor *)rowDescriptor oldValue:(id)oldValue newValue:(id)newValue
  151. {
  152. [super formRowDescriptorValueHasChanged:rowDescriptor oldValue:oldValue newValue:newValue];
  153. if ([rowDescriptor.tag isEqualToString:@"showHiddenFiles"]) {
  154. [CCUtility setShowHiddenFiles:[[rowDescriptor.value valueData] boolValue]];
  155. // force reload
  156. [[NCManageDatabase sharedInstance] setClearAllDateReadDirectory];
  157. }
  158. if ([rowDescriptor.tag isEqualToString:@"formatCompatibility"]) {
  159. [CCUtility setFormatCompatibility:[[rowDescriptor.value valueData] boolValue]];
  160. }
  161. if ([rowDescriptor.tag isEqualToString:@"livePhoto"]) {
  162. [CCUtility setLivePhoto:[[rowDescriptor.value valueData] boolValue]];
  163. }
  164. if ([rowDescriptor.tag isEqualToString:@"disableLocalCacheAfterUpload"]) {
  165. [CCUtility setDisableLocalCacheAfterUpload:[[rowDescriptor.value valueData] boolValue]];
  166. }
  167. if ([rowDescriptor.tag isEqualToString:@"disablefilesapp"]) {
  168. [CCUtility setDisableFilesApp:[[rowDescriptor.value valueData] boolValue]];
  169. }
  170. if ([rowDescriptor.tag isEqualToString:@"crashservice"]) {
  171. [CCUtility setDisableCrashservice:[[rowDescriptor.value valueData] boolValue]];
  172. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_crashservice_title_", nil) message:NSLocalizedString(@"_crashservice_alert_", nil) preferredStyle:UIAlertControllerStyleAlert];
  173. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  174. exit(0);
  175. }];
  176. [alertController addAction:okAction];
  177. [self presentViewController:alertController animated:YES completion:nil];
  178. }
  179. }
  180. #pragma --------------------------------------------------------------------------------------------
  181. #pragma mark === Clear Cache ===
  182. #pragma --------------------------------------------------------------------------------------------
  183. - (void)clearCache
  184. {
  185. [appDelegate maintenanceMode:YES];
  186. [[NCMainCommon sharedInstance] cancelAllTransfer];
  187. [[NSURLCache sharedURLCache] setMemoryCapacity:0];
  188. [[NSURLCache sharedURLCache] setDiskCapacity:0];
  189. [KTVHTTPCache cacheDeleteAllCaches];
  190. [[NCManageDatabase sharedInstance] clearDatabaseWithAccount:appDelegate.activeAccount removeAccount:false];
  191. [CCUtility removeGroupDirectoryProviderStorage];
  192. [CCUtility removeGroupLibraryDirectory];
  193. [CCUtility removeDocumentsDirectory];
  194. [CCUtility removeTemporaryDirectory];
  195. [CCUtility createDirectoryStandard];
  196. [[NCAutoUpload sharedInstance] alignPhotoLibrary];
  197. [appDelegate maintenanceMode:NO];
  198. // Inizialized home
  199. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
  200. }
  201. - (void)clearCacheRequest:(XLFormRowDescriptor *)sender
  202. {
  203. [self deselectFormRow:sender];
  204. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"" message:NSLocalizedString(@"_want_delete_cache_", nil) preferredStyle:UIAlertControllerStyleActionSheet];
  205. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_yes_", nil)
  206. style:UIAlertActionStyleDefault
  207. handler:^(UIAlertAction *action) {
  208. [self clearCache];
  209. }]];
  210. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  211. }]];
  212. alertController.popoverPresentationController.sourceView = self.view;
  213. NSIndexPath *indexPath = [self.form indexPathOfFormRow:sender];
  214. CGRect cellRect = [self.tableView rectForRowAtIndexPath:indexPath];
  215. alertController.popoverPresentationController.sourceRect = CGRectOffset(cellRect, -self.tableView.contentOffset.x, -self.tableView.contentOffset.y);
  216. [self presentViewController:alertController animated:YES completion:nil];
  217. }
  218. #pragma --------------------------------------------------------------------------------------------
  219. #pragma mark == Exit Nextcloud ==
  220. #pragma --------------------------------------------------------------------------------------------
  221. - (void)exitNextcloud:(XLFormRowDescriptor *)sender
  222. {
  223. [self deselectFormRow:sender];
  224. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"" message:NSLocalizedString(@"_want_exit_", nil) preferredStyle:UIAlertControllerStyleActionSheet];
  225. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  226. [[CCNetworking sharedNetworking] invalidateAndCancelAllSession];
  227. [[NSURLCache sharedURLCache] setMemoryCapacity:0];
  228. [[NSURLCache sharedURLCache] setDiskCapacity:0];
  229. [KTVHTTPCache cacheDeleteAllCaches];
  230. [CCUtility removeGroupDirectoryProviderStorage];
  231. [CCUtility removeGroupApplicationSupport];
  232. [CCUtility removeDocumentsDirectory];
  233. [CCUtility removeTemporaryDirectory];
  234. [CCUtility deleteAllChainStore];
  235. [[NCManageDatabase sharedInstance] removeDB];
  236. exit(0);
  237. }]];
  238. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  239. }]];
  240. alertController.popoverPresentationController.sourceView = self.view;
  241. NSIndexPath *indexPath = [self.form indexPathOfFormRow:sender];
  242. CGRect cellRect = [self.tableView rectForRowAtIndexPath:indexPath];
  243. alertController.popoverPresentationController.sourceRect = CGRectOffset(cellRect, -self.tableView.contentOffset.x, -self.tableView.contentOffset.y);
  244. [self presentViewController:alertController animated:YES completion:nil];
  245. }
  246. @end