CCSettings.m 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005
  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. #define alertViewEsci 1
  28. #define alertViewAzzeraCache 2
  29. @implementation CCSettings
  30. - (id)initWithCoder:(NSCoder *)aDecoder
  31. {
  32. self = [super initWithCoder:aDecoder];
  33. if (self) {
  34. [self initializeForm];
  35. app.activeSettings = self;
  36. }
  37. return self;
  38. }
  39. - (void)initializeForm
  40. {
  41. XLFormDescriptor *form;
  42. XLFormSectionDescriptor *section;
  43. XLFormRowDescriptor *row;
  44. form = [XLFormDescriptor formDescriptorWithTitle:NSLocalizedString(@"_settings_", nil)];
  45. form.rowNavigationOptions = XLFormRowNavigationOptionNone;
  46. // Section : PASSWORD --------------------------------------------------------------
  47. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_passcode_", nil)];
  48. [form addFormSection:section];
  49. // Passcode
  50. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"bloccopasscode" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_lock_not_active_", nil)];
  51. [row.cellConfig setObject:[UIImage imageNamed:image_settingsPasscodeNO] forKey:@"imageView.image"];
  52. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  53. [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
  54. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  55. //[row.cellConfig setObject:@(UITableViewCellAccessoryDisclosureIndicator) forKey:@"accessoryType"];
  56. row.action.formSelector = @selector(bloccoPassword);
  57. [section addFormRow:row];
  58. // Passcode simply
  59. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"simplypasscode" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_lock_protection_simply_", nil)];
  60. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  61. [section addFormRow:row];
  62. // Passcode only directory
  63. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"onlylockdir" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_lock_protection_folder_", nil)];
  64. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  65. [section addFormRow:row];
  66. // Section : CLOUD ACCOUNT --------------------------------------------------------------
  67. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_cloud_account_", nil)];
  68. [form addFormSection:section];
  69. // version
  70. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"versionserver" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_version_server_", nil)];
  71. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  72. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  73. [section addFormRow:row];
  74. // Url
  75. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"urlcloud" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_url_", nil)];
  76. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  77. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  78. [section addFormRow:row];
  79. // username
  80. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"usernamecloud" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_username_", nil)];
  81. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  82. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  83. [section addFormRow:row];
  84. // quota
  85. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"quota" rowType:XLFormRowDescriptorTypeButton title:@""];
  86. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  87. [row.cellConfig setObject:@(NSTextAlignmentCenter) forKey:@"textLabel.textAlignment"];
  88. [row.cellConfig setObject:[UIColor blackColor] forKey:@"textLabel.textColor"];
  89. row.action.formSelector = @selector(quota:);
  90. [section addFormRow:row];
  91. // Change Account
  92. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"changecredentials" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_change_credentials_", nil)];
  93. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  94. [row.cellConfig setObject:[UIImage imageNamed:image_settingsCredentials] forKey:@"imageView.image"];
  95. row.action.formSegueIdentifier = @"CCManageAccountSegue";
  96. [section addFormRow:row];
  97. // Section : USER INFORMATION -------------------------------------------
  98. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_user_information_", nil)];
  99. [form addFormSection:section];
  100. // Display Name
  101. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"userdisplayname" rowType:XLFormRowDescriptorTypeInfo];
  102. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  103. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  104. row.cellConfig[@"textLabel.numberOfLines"] = @0;
  105. [section addFormRow:row];
  106. // Address
  107. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"useraddress" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_address_", nil)];
  108. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  109. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  110. [section addFormRow:row];
  111. // Phone
  112. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"userphone" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_phone_", nil)];
  113. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  114. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  115. [section addFormRow:row];
  116. // Email
  117. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"useremail" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_email_", nil)];
  118. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  119. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  120. [section addFormRow:row];
  121. // Web
  122. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"userweb" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_web_", nil)];
  123. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  124. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  125. [section addFormRow:row];
  126. // Twitter
  127. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"usertwitter" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_twitter_", nil)];
  128. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  129. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  130. [section addFormRow:row];
  131. // Section AUTOMATIC UPLOAD OF CAMERA IMAGES ----------------------------
  132. section = [XLFormSectionDescriptor formSection];
  133. [form addFormSection:section];
  134. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"cameraupload" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_uploading_from_camera_", nil)];
  135. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  136. [row.cellConfig setObject:[UIImage imageNamed:image_settingsCameraUpload] forKey:@"imageView.image"];
  137. row.action.formSegueIdentifier = @"CCManageCameraUploadSegue";
  138. [section addFormRow:row];
  139. // Section OPTIMIZATIONS ------------------------------------------------
  140. section = [XLFormSectionDescriptor formSection];
  141. [form addFormSection:section];
  142. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"optimizations" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_optimizations_", nil)];
  143. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  144. [row.cellConfig setObject:[UIImage imageNamed:image_settingsOptimizations] forKey:@"imageView.image"];
  145. row.action.formSegueIdentifier = @"CCManageOptimizationsSegue";
  146. [section addFormRow:row];
  147. // Section CRYPTO CLOUD SYSTEM ------------------------------------------
  148. section = [XLFormSectionDescriptor formSection];
  149. [form addFormSection:section];
  150. // Crypto Cloud
  151. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"cryptocloud" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_crypto_cloud_system_", nil)];
  152. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  153. [row.cellConfig setObject:[UIImage imageNamed:image_settingsCryptoCloud] forKey:@"imageView.image"];
  154. row.action.formSegueIdentifier = @"CCManageCryptoCloudSegue";
  155. [section addFormRow:row];
  156. // Section : INFORMATION ------------------------------------------------
  157. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_information_", nil)];
  158. [form addFormSection:section];
  159. NSString *versionApp = [NSString stringWithFormat:@"%@.%@", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
  160. section.footerTitle = [NSString stringWithFormat:@"Nextcloud %@ © 2017 T.W.S. Inc.", versionApp];
  161. // Acknowledgements
  162. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"buttonLeftAligned" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_acknowledgements_", nil)];
  163. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  164. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  165. [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
  166. [row.cellConfig setObject:[UIImage imageNamed:image_settingsAcknowledgements] forKey:@"imageView.image"];
  167. row.action.formBlock = ^(XLFormRowDescriptor * sender){
  168. [self performSegueWithIdentifier:@"AcknowledgementsSegue" sender:sender];
  169. [self deselectFormRow:sender];
  170. };
  171. [section addFormRow:row];
  172. // Help
  173. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"help" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_help_", nil)];
  174. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  175. [row.cellConfig setObject:[UIImage imageNamed:image_settingsHelp] forKey:@"imageView.image"];
  176. row.action.formSegueIdentifier = @"CCManageHelpSegue";
  177. [section addFormRow:row];
  178. // Contact us mail
  179. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"sendmail" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_contact_by_email_", nil)];
  180. [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
  181. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  182. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  183. [row.cellConfig setObject:[UIImage imageNamed:image_settingsMail] forKey:@"imageView.image"];
  184. row.action.formSelector = @selector(sendMail:);
  185. [section addFormRow:row];
  186. // Section CLEAR CACHE -------------------------------------------------
  187. section = [XLFormSectionDescriptor formSection];
  188. [form addFormSection:section];
  189. // Clear cache
  190. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"azzeracache" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_clear_cache_no_size_", nil)];
  191. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  192. [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
  193. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  194. [row.cellConfig setObject:[UIImage imageNamed:image_settingsClearCache] forKey:@"imageView.image"];
  195. row.action.formSelector = @selector(azzeraCache:);
  196. [section addFormRow:row];
  197. // Section EXIT --------------------------------------------------------
  198. section = [XLFormSectionDescriptor formSection];
  199. [form addFormSection:section];
  200. // Exit
  201. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"esci" rowType:XLFormRowDescriptorTypeButton title:[CCUtility localizableBrand:@"_exit_" table:nil]];
  202. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  203. [row.cellConfig setObject:[UIColor redColor] forKey:@"textLabel.textColor"];
  204. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  205. [row.cellConfig setObject:[UIImage imageNamed:image_settingsExit] forKey:@"imageView.image"];
  206. row.action.formSelector = @selector(esci:);
  207. [section addFormRow:row];
  208. #ifdef DEBUG
  209. /*
  210. // Section : debug
  211. section = [XLFormSectionDescriptor formSectionWithTitle:@"Debug"];
  212. [form addFormSection:section];
  213. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"adminRemoveVersion" rowType:XLFormRowDescriptorTypeButton title:@"Remove Version"];
  214. [row.cellConfig setObject:[UIColor redColor] forKey:@"textLabel.textColor"];
  215. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  216. [row.cellConfig setObject:[UIImage imageNamed:image_settingsAdmin] forKey:@"imageView.image"];
  217. row.action.formSelector = @selector(adminRemoveVersion:);
  218. [section addFormRow:row];
  219. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"quickActionPhotos" rowType:XLFormRowDescriptorTypeButton title:@"Quick Action Photos"];
  220. [row.cellConfig setObject:[UIColor redColor] forKey:@"textLabel.textColor"];
  221. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  222. [row.cellConfig setObject:[UIImage imageNamed:image_settingsAdmin] forKey:@"imageView.image"];
  223. row.action.formSelector = @selector(quickActionPhotos:);
  224. [section addFormRow:row];
  225. */
  226. #endif
  227. self.form = form;
  228. }
  229. - (void)viewDidLoad
  230. {
  231. [super viewDidLoad];
  232. self.hud = [[CCHud alloc] initWithView:[[[UIApplication sharedApplication] delegate] window]];
  233. self.title = NSLocalizedString(@"_settings_", nil);
  234. // Color
  235. [CCAspect aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
  236. [CCAspect aspectTabBar:self.tabBarController.tabBar hidden:NO];
  237. }
  238. // Apparirà
  239. - (void)viewWillAppear:(BOOL)animated
  240. {
  241. [super viewWillAppear:animated];
  242. // Color
  243. [CCAspect aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
  244. [CCAspect aspectTabBar:self.tabBarController.tabBar hidden:NO];
  245. [self reloadForm];
  246. }
  247. // E' apparsa
  248. - (void)viewDidAppear:(BOOL)animated
  249. {
  250. [super viewDidAppear:animated];
  251. }
  252. #pragma --------------------------------------------------------------------------------------------
  253. #pragma mark === TableView ===
  254. #pragma --------------------------------------------------------------------------------------------
  255. -(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
  256. {
  257. if (section == 1) {
  258. UIView *view = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 0)];
  259. view.backgroundColor = [UIColor clearColor];
  260. UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
  261. progressView.frame = CGRectMake(10, -67, self.tableView.frame.size.width-10-10, 0);
  262. progressView.trackTintColor = [UIColor colorWithRed:247.0/255.0 green:247.0/255.0 blue:247.0/255.0 alpha:0.6];
  263. progressView.progressTintColor = [UIColor colorWithRed:0.0/255.0 green:130.0/255.0 blue:201.0/255.0 alpha:0.4];
  264. progressView.layer.borderWidth = 0.05;
  265. progressView.layer.borderColor = [COLOR_BRAND CGColor];
  266. CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 10.0f);
  267. progressView.transform = transform;
  268. progressView.progress = [_tableAccount.quotaRelative floatValue] / 100;
  269. [view addSubview:progressView];
  270. return view;
  271. }
  272. return nil;
  273. }
  274. #pragma --------------------------------------------------------------------------------------------
  275. #pragma mark === Admin ===
  276. #pragma --------------------------------------------------------------------------------------------
  277. /*
  278. - (void)adminRemoveVersion:(XLFormRowDescriptor *)sender
  279. {
  280. [self deselectFormRow:sender];
  281. [CCUtility adminRemoveVersion];
  282. exit(0);
  283. }
  284. - (void)quickActionPhotos:(XLFormRowDescriptor *)sender
  285. {
  286. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  287. UIApplicationShortcutItem *shortcutPhotos = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.photos", bundleId] localizedTitle:@"" localizedSubtitle:nil icon:nil userInfo:nil];
  288. [app handleShortCutItem:shortcutPhotos];
  289. }
  290. */
  291. #pragma --------------------------------------------------------------------------------------------
  292. #pragma mark === Chiamate dal Form ===
  293. #pragma --------------------------------------------------------------------------------------------
  294. - (void)reloadForm
  295. {
  296. self.form.delegate = nil;
  297. // ----------------------
  298. XLFormRowDescriptor *rowBloccoPasscode = [self.form formRowWithTag:@"bloccopasscode"];
  299. XLFormRowDescriptor *rowSimplyPasscode = [self.form formRowWithTag:@"simplypasscode"];
  300. XLFormRowDescriptor *rowOnlyLockDir = [self.form formRowWithTag:@"onlylockdir"];
  301. XLFormRowDescriptor *rowVersionServer = [self.form formRowWithTag:@"versionserver"];
  302. XLFormRowDescriptor *rowUrlCloud = [self.form formRowWithTag:@"urlcloud"];
  303. XLFormRowDescriptor *rowUserNameCloud = [self.form formRowWithTag:@"usernamecloud"];
  304. XLFormRowDescriptor *rowQuota = [self.form formRowWithTag:@"quota"];
  305. XLFormRowDescriptor *rowUserDisplayName = [self.form formRowWithTag:@"userdisplayname"];
  306. XLFormRowDescriptor *rowUserAddress = [self.form formRowWithTag:@"useraddress"];
  307. XLFormRowDescriptor *rowUserPhone = [self.form formRowWithTag:@"userphone"];
  308. XLFormRowDescriptor *rowUserEmail = [self.form formRowWithTag:@"useremail"];
  309. XLFormRowDescriptor *rowUserWeb = [self.form formRowWithTag:@"userweb"];
  310. XLFormRowDescriptor *rowUserTwitter = [self.form formRowWithTag:@"usertwitter"];
  311. //XLFormRowDescriptor *rowChangeCredentials = [self.form formRowWithTag:@"changecredentials"];
  312. // ------------------------------------------------------------------
  313. if ([[CCUtility getBlockCode] length]) {
  314. rowBloccoPasscode.title = NSLocalizedString(@"_lock_active_", nil);
  315. [rowBloccoPasscode.cellConfig setObject:[UIImage imageNamed:image_settingsPasscodeYES] forKey:@"imageView.image"];
  316. } else {
  317. rowBloccoPasscode.title = NSLocalizedString(@"_lock_not_active_", nil);
  318. [rowBloccoPasscode.cellConfig setObject:[UIImage imageNamed:image_settingsPasscodeNO] forKey:@"imageView.image"];
  319. }
  320. if ([CCUtility getSimplyBlockCode]) [rowSimplyPasscode setValue:@1]; else [rowSimplyPasscode setValue:@0];
  321. if ([CCUtility getOnlyLockDir]) [rowOnlyLockDir setValue:@1]; else [rowOnlyLockDir setValue:@0];
  322. // Avatar
  323. UIImage *avatar = [[UIImage alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/avatar.png", app.directoryUser]];
  324. if (avatar) {
  325. avatar = [CCGraphics scaleImage:avatar toSize:CGSizeMake(50, 50)];
  326. APAvatarImageView *avatarImageView = [[APAvatarImageView alloc] initWithImage:avatar borderColor:[UIColor lightGrayColor] borderWidth:0.5];
  327. CGSize imageSize = avatarImageView.bounds.size;
  328. UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
  329. CGContextRef context = UIGraphicsGetCurrentContext();
  330. [avatarImageView.layer renderInContext:context];
  331. avatar = UIGraphicsGetImageFromCurrentImageContext();
  332. UIGraphicsEndImageContext();
  333. }
  334. _tableAccount = [CCCoreData getActiveAccount];
  335. rowVersionServer.value = [NSString stringWithFormat:@"%@", app.capabilities.versionString];
  336. rowUrlCloud.value = app.activeUrl;
  337. rowUserNameCloud.value = app.activeUser;
  338. NSString *quota = [CCUtility transformedSize:[_tableAccount.quotaTotal doubleValue]];
  339. NSString *quotaAvailable = [CCUtility transformedSize:[_tableAccount.quotaFree doubleValue]];
  340. rowQuota.title = [NSString stringWithFormat:@"%@ / %@ %@", quota, quotaAvailable, NSLocalizedString(@"_available_", nil)];
  341. if (avatar || _tableAccount.displayName.length > 0) {
  342. rowUserDisplayName.title = _tableAccount.displayName;
  343. rowUserDisplayName.disabled = @YES;
  344. if (avatar)
  345. [rowUserDisplayName.cellConfig setObject:avatar forKey:@"imageView.image"];
  346. else
  347. [rowUserDisplayName.cellConfig setObject:[UIImage imageNamed:image_avatar] forKey:@"imageView.image"];
  348. } else {
  349. rowUserDisplayName.title = @"";
  350. rowUserDisplayName.disabled = @NO;
  351. [rowUserDisplayName.cellConfig setObject:[UIImage imageNamed:image_avatar] forKey:@"imageView.image"];
  352. }
  353. rowUserAddress.value = _tableAccount.address;
  354. rowUserPhone.value = _tableAccount.phone;
  355. rowUserEmail.value = _tableAccount.email;
  356. rowUserWeb.value = _tableAccount.webpage;
  357. rowUserTwitter.value = _tableAccount.twitter;
  358. // -----------------------------------------------------------------
  359. [self.tableView reloadData];
  360. self.form.delegate = self;
  361. }
  362. - (void)recalculateSize
  363. {
  364. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  365. self.form.delegate = nil;
  366. XLFormRowDescriptor *rowAzzeraCache = [self.form formRowWithTag:@"azzeracache"];
  367. //NSString *size = [CCUtility transformedSize:[[self getUserDirectorySize] longValue]];
  368. //rowAzzeraCache.title = [NSString stringWithFormat:NSLocalizedString(@"_clear_cache_", nil), size];
  369. rowAzzeraCache.title = NSLocalizedString(@"_clear_cache_no_size_", nil);
  370. [self.tableView performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];
  371. self.form.delegate = self;
  372. });
  373. }
  374. - (void)formRowDescriptorValueHasChanged:(XLFormRowDescriptor *)rowDescriptor oldValue:(id)oldValue newValue:(id)newValue
  375. {
  376. [super formRowDescriptorValueHasChanged:rowDescriptor oldValue:oldValue newValue:newValue];
  377. if ([rowDescriptor.tag isEqualToString:@"onlylockdir"]) {
  378. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  379. [CCUtility setOnlyLockDir:true];
  380. } else {
  381. [CCUtility setOnlyLockDir:false];
  382. }
  383. }
  384. if ([rowDescriptor.tag isEqualToString:@"simplypasscode"]) {
  385. if ([[CCUtility getBlockCode] length] == 0)
  386. [CCUtility setSimplyBlockCode:[[rowDescriptor.value valueData] boolValue]];
  387. else
  388. [self changeSimplyPassword];
  389. }
  390. }
  391. - (void)checkEncryptPass:(XLFormRowDescriptor *)sender
  392. {
  393. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  394. viewController.delegate = self;
  395. viewController.fromType = CCBKPasscodeFromCheckCryptoKey;
  396. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  397. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  398. viewController.passcodeInputView.maximumLength = 64;
  399. viewController.title = NSLocalizedString(@"_check_key_aes_256_", nil);
  400. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  401. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_CRYPTOCLOUD;
  402. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  403. [self presentViewController:navigationController animated:YES completion:nil];
  404. }
  405. - (void)changeSimplyPassword
  406. {
  407. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  408. viewController.delegate = self;
  409. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  410. viewController.fromType = CCBKPasscodeFromSimply;
  411. viewController.title = NSLocalizedString(@"_change_simply_passcode_", nil);
  412. viewController.inputViewTitlePassword = YES;
  413. if ([CCUtility getSimplyBlockCode]) {
  414. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  415. viewController.passcodeInputView.maximumLength = 6;
  416. } else {
  417. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  418. viewController.passcodeInputView.maximumLength = 64;
  419. }
  420. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:BKPasscodeKeychainServiceName];
  421. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  422. viewController.touchIDManager = touchIDManager;
  423. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  424. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_CRYPTOCLOUD;
  425. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  426. [self presentViewController:navigationController animated:YES completion:nil];
  427. }
  428. - (void)bloccoPassword
  429. {
  430. // ATTIVAZIONE LOCK PASSWORD
  431. if ([[CCUtility getBlockCode] length] == 0) {
  432. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  433. viewController.delegate = self;
  434. viewController.type = BKPasscodeViewControllerNewPasscodeType;
  435. viewController.fromType = CCBKPasscodeFromSettingsPasscode;
  436. viewController.inputViewTitlePassword = YES;
  437. if ([CCUtility getSimplyBlockCode]) {
  438. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  439. viewController.passcodeInputView.maximumLength = 6;
  440. } else {
  441. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  442. viewController.passcodeInputView.maximumLength = 64;
  443. }
  444. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:BKPasscodeKeychainServiceName];
  445. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  446. viewController.touchIDManager = touchIDManager;
  447. viewController.title = NSLocalizedString(@"_passcode_activate_", nil);
  448. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  449. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_CRYPTOCLOUD;
  450. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  451. [self presentViewController:navigationController animated:YES completion:nil];
  452. } else {
  453. // OFF LOCK PASSWORD
  454. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  455. viewController.delegate = self;
  456. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  457. viewController.fromType = CCBKPasscodeFromSettingsPasscode;
  458. viewController.inputViewTitlePassword = YES;
  459. if ([CCUtility getSimplyBlockCode]) {
  460. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  461. viewController.passcodeInputView.maximumLength = 6;
  462. } else {
  463. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  464. viewController.passcodeInputView.maximumLength = 64;
  465. }
  466. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:BKPasscodeKeychainServiceName];
  467. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  468. viewController.touchIDManager = touchIDManager;
  469. viewController.title = NSLocalizedString(@"_disabling_passcode_", nil);
  470. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  471. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_CRYPTOCLOUD;
  472. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  473. [self presentViewController:navigationController animated:YES completion:nil];
  474. }
  475. }
  476. - (void)esci:(XLFormRowDescriptor *)sender
  477. {
  478. [self deselectFormRow:sender];
  479. UIAlertView * alertView =[[UIAlertView alloc ] initWithTitle:[CCUtility localizableBrand:@"_exit_" table:nil]
  480. message:[CCUtility localizableBrand:@"_want_exit_" table:nil]
  481. delegate:self
  482. cancelButtonTitle:NSLocalizedString(@"_cancel_", nil)
  483. otherButtonTitles: nil];
  484. alertView.tag = alertViewEsci;
  485. [alertView addButtonWithTitle:NSLocalizedString(@"_proceed_", nil)];
  486. [alertView show];
  487. }
  488. - (void)azzeraCache:(XLFormRowDescriptor *)sender
  489. {
  490. [self deselectFormRow:sender];
  491. UIAlertView * alertView =[[UIAlertView alloc ] initWithTitle:NSLocalizedString(@"_delete_cache_",nil)
  492. message:NSLocalizedString(@"_want_delete_cache_", nil)
  493. delegate:self
  494. cancelButtonTitle:NSLocalizedString(@"_cancel_", nil)
  495. otherButtonTitles: nil];
  496. alertView.tag = alertViewAzzeraCache;
  497. [alertView addButtonWithTitle:NSLocalizedString(@"_proceed_", nil)];
  498. [alertView show];
  499. }
  500. - (void)quota:(XLFormRowDescriptor *)sender
  501. {
  502. [self deselectFormRow:sender];
  503. }
  504. #pragma --------------------------------------------------------------------------------------------
  505. #pragma mark === Mail ===
  506. #pragma --------------------------------------------------------------------------------------------
  507. - (void) mailComposeController:(MFMailComposeViewController *)vc didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
  508. {
  509. switch (result)
  510. {
  511. case MFMailComposeResultCancelled:
  512. [app messageNotification:@"_info_" description:@"_mail_deleted_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess];
  513. break;
  514. case MFMailComposeResultSaved:
  515. [app messageNotification:@"_info_" description:@"_mail_saved_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess];
  516. break;
  517. case MFMailComposeResultSent:
  518. [app messageNotification:@"_info_" description:@"_mail_sent_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess];
  519. break;
  520. case MFMailComposeResultFailed: {
  521. NSString *msg = [NSString stringWithFormat:NSLocalizedString(@"_mail_failure_", nil), [error localizedDescription]];
  522. [app messageNotification:@"_error_" description:msg visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError];
  523. }
  524. break;
  525. default:
  526. break;
  527. }
  528. // Close the Mail Interface
  529. [self dismissViewControllerAnimated:YES completion:NULL];
  530. }
  531. - (void)sendMail:(XLFormRowDescriptor *)sender
  532. {
  533. // Email Subject
  534. NSString *emailTitle = NSLocalizedString(@"_information_req_", nil);
  535. // Email Content
  536. NSString *messageBody;
  537. // Email Recipents
  538. NSArray *toRecipents;
  539. messageBody = [NSString stringWithFormat:@"\n\n\nNextcloud Version %@ (%@)", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
  540. toRecipents = [NSArray arrayWithObject:_mail_me_];
  541. MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
  542. mc.mailComposeDelegate = self;
  543. [mc setSubject:emailTitle];
  544. [mc setMessageBody:messageBody isHTML:NO];
  545. [mc setToRecipients:toRecipents];
  546. // Present mail view controller on screen
  547. [self presentViewController:mc animated:YES completion:NULL];
  548. }
  549. - (void)sendMailEncryptPass
  550. {
  551. [CCUtility sendMailEncryptPass:[CCUtility getEmail] validateEmail:NO form:self];
  552. }
  553. #pragma --------------------------------------------------------------------------------------------
  554. #pragma mark === AlertView ===
  555. #pragma --------------------------------------------------------------------------------------------
  556. - (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex
  557. {
  558. // Remove ALL
  559. if (buttonIndex == 1 && alertView.tag == alertViewEsci)
  560. {
  561. [self.hud visibleIndeterminateHud];
  562. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.01 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  563. [app cancelAllOperations];
  564. [[CCNetworking sharedNetworking] settingSessionsDownload:YES upload:YES taskStatus:k_taskStatusCancel activeAccount:app.activeAccount activeUser:app.activeUser activeUrl:app.activeUrl];
  565. [[NSURLCache sharedURLCache] setMemoryCapacity:0];
  566. [[NSURLCache sharedURLCache] setDiskCapacity:0];
  567. [[CCNetworking sharedNetworking] invalidateAndCancelAllSession];
  568. [CCCoreData flushAllDatabase];
  569. [CCUtility deleteAllChainStore];
  570. [self emptyDocumentsDirectory];
  571. [self emptyLibraryDirectory];
  572. [self emptyGroupApplicationSupport];
  573. NSArray* tmpDirectory = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:NSTemporaryDirectory() error:NULL];
  574. for (NSString *file in tmpDirectory)
  575. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@%@", NSTemporaryDirectory(), file] error:NULL];
  576. [self.hud hideHud];
  577. exit(0);
  578. });
  579. }
  580. // Clear Cache
  581. if (buttonIndex == 1 && alertView.tag == alertViewAzzeraCache)
  582. {
  583. [self.hud visibleHudTitle:NSLocalizedString(@"_remove_cache_", nil) mode:MBProgressHUDModeIndeterminate color:nil];
  584. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.01 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  585. [app cancelAllOperations];
  586. [[CCNetworking sharedNetworking] settingSessionsDownload:YES upload:YES taskStatus:k_taskStatusCancel activeAccount:app.activeAccount activeUser:app.activeUser activeUrl:app.activeUrl];
  587. [[NSURLCache sharedURLCache] setMemoryCapacity:0];
  588. [[NSURLCache sharedURLCache] setDiskCapacity:0];
  589. [CCCoreData flushTableAutomaticUploadAccount:app.activeAccount selector:nil];
  590. [CCCoreData flushTableDirectoryAccount:app.activeAccount];
  591. [CCCoreData flushTableLocalFileAccount:app.activeAccount];
  592. [CCCoreData flushTableMetadataAccount:app.activeAccount];
  593. [self emptyUserDirectoryUser:app.activeUser url:app.activeUrl];
  594. [self emptyLocalDirectory];
  595. NSArray* tmpDirectory = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:NSTemporaryDirectory() error:NULL];
  596. for (NSString *file in tmpDirectory)
  597. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@%@", NSTemporaryDirectory(), file] error:NULL];
  598. [self recalculateSize];
  599. // Inizialized home
  600. [[NSNotificationCenter defaultCenter] postNotificationName:@"initializeMain" object:nil];
  601. [self.hud hideHud];
  602. });
  603. }
  604. }
  605. #pragma --------------------------------------------------------------------------------------------
  606. #pragma mark === BKPasscodeViewController ===
  607. #pragma --------------------------------------------------------------------------------------------
  608. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  609. {
  610. [aViewController dismissViewControllerAnimated:YES completion:nil];
  611. switch (aViewController.type) {
  612. case BKPasscodeViewControllerNewPasscodeType: {
  613. // enable passcode
  614. [CCUtility setBlockCode:aPasscode];
  615. }
  616. break;
  617. case BKPasscodeViewControllerCheckPasscodeType: {
  618. // disable passcode
  619. if (aViewController.fromType == CCBKPasscodeFromSettingsPasscode) {
  620. [CCUtility setBlockCode:@""];
  621. [CCCoreData setAllDirectoryUnLockForAccount:app.activeAccount];
  622. [app.activeMain.tableView reloadData];
  623. }
  624. // email Key EAS-256
  625. if (aViewController.fromType == CCBKPasscodeFromCheckCryptoKey)
  626. [self sendMailEncryptPass];
  627. // change simply
  628. if (aViewController.fromType == CCBKPasscodeFromSimply) {
  629. // disable passcode
  630. [CCUtility setBlockCode:@""];
  631. [CCCoreData setAllDirectoryUnLockForAccount:app.activeAccount];
  632. [app.activeMain.tableView reloadData];
  633. [CCUtility setSimplyBlockCode:![CCUtility getSimplyBlockCode]];
  634. // Call new passcode
  635. [self bloccoPassword];
  636. }
  637. }
  638. break;
  639. default:
  640. break;
  641. }
  642. [self reloadForm];
  643. }
  644. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  645. {
  646. if (aViewController.fromType == CCBKPasscodeFromCheckCryptoKey) {
  647. NSString *key = [CCUtility getKeyChainPasscodeForUUID:[CCUtility getUUID]];
  648. if ([aPasscode isEqualToString:key]) {
  649. self.lockUntilDate = nil;
  650. self.failedAttempts = 0;
  651. aResultHandler(YES);
  652. } else aResultHandler(NO);
  653. }
  654. if (aViewController.fromType == CCBKPasscodeFromSettingsPasscode || aViewController.fromType == CCBKPasscodeFromSimply) {
  655. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  656. self.lockUntilDate = nil;
  657. self.failedAttempts = 0;
  658. aResultHandler(YES);
  659. } else aResultHandler(NO);
  660. }
  661. }
  662. - (void)passcodeViewControllerDidFailAttempt:(CCBKPasscode *)aViewController
  663. {
  664. self.failedAttempts++;
  665. if (self.failedAttempts > 5) {
  666. NSTimeInterval timeInterval = 60;
  667. if (self.failedAttempts > 6) {
  668. NSUInteger multiplier = self.failedAttempts - 6;
  669. timeInterval = (5 * 60) * multiplier;
  670. if (timeInterval > 3600 * 24) {
  671. timeInterval = 3600 * 24;
  672. }
  673. }
  674. self.lockUntilDate = [NSDate dateWithTimeIntervalSinceNow:timeInterval];
  675. }
  676. }
  677. - (NSUInteger)passcodeViewControllerNumberOfFailedAttempts:(CCBKPasscode *)aViewController
  678. {
  679. return self.failedAttempts;
  680. }
  681. - (NSDate *)passcodeViewControllerLockUntilDate:(CCBKPasscode *)aViewController
  682. {
  683. return self.lockUntilDate;
  684. }
  685. - (void)passcodeViewCloseButtonPressed:(id)sender
  686. {
  687. [self dismissViewControllerAnimated:YES completion:nil];
  688. }
  689. #pragma --------------------------------------------------------------------------------------------
  690. #pragma mark == Utility ==
  691. #pragma --------------------------------------------------------------------------------------------
  692. - (void)emptyGroupApplicationSupport
  693. {
  694. NSString *file;
  695. NSURL *dirGroup = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:k_capabilitiesGroups];
  696. NSString *dirIniziale = [[dirGroup URLByAppendingPathComponent:appApplicationSupport] path];
  697. NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:dirIniziale];
  698. while (file = [enumerator nextObject])
  699. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", dirIniziale, file] error:nil];
  700. }
  701. - (void)emptyLibraryDirectory
  702. {
  703. NSString *file;
  704. NSString *dirIniziale;
  705. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
  706. dirIniziale = [paths objectAtIndex:0];
  707. NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:dirIniziale];
  708. while (file = [enumerator nextObject])
  709. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", dirIniziale, file] error:nil];
  710. }
  711. - (void)emptyDocumentsDirectory
  712. {
  713. NSString *file;
  714. NSString *dirIniziale;
  715. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
  716. dirIniziale = [paths objectAtIndex:0];
  717. NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:dirIniziale];
  718. while (file = [enumerator nextObject])
  719. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", dirIniziale, file] error:nil];
  720. }
  721. - (void)emptyUserDirectoryUser:(NSString *)user url:(NSString *)url
  722. {
  723. NSString *file;
  724. NSString *dirIniziale;
  725. dirIniziale = [CCUtility getDirectoryActiveUser:user activeUrl:url];
  726. NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:dirIniziale];
  727. while (file = [enumerator nextObject]) {
  728. NSString *ext = [[file pathExtension] lowercaseString];
  729. // Do not remove ICO
  730. if ([ext isEqualToString:@"ico"])
  731. continue;
  732. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", dirIniziale, file] error:nil];
  733. }
  734. }
  735. - (void)emptyLocalDirectory
  736. {
  737. NSString *file;
  738. NSString *dirIniziale;
  739. dirIniziale = [CCUtility getDirectoryLocal];
  740. NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:dirIniziale];
  741. while (file = [enumerator nextObject])
  742. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", dirIniziale, file] error:nil];
  743. }
  744. - (NSNumber *)getUserDirectorySize
  745. {
  746. NSString *directoryUser = [CCUtility getDirectoryActiveUser:app.activeUser activeUrl:app.activeUrl];
  747. NSURL *directoryURL = [NSURL fileURLWithPath:directoryUser];
  748. unsigned long long count = 0;
  749. NSNumber *value = nil;
  750. if (! directoryURL) return 0;
  751. // Get dimension Document
  752. for (NSURL *url in [[NSFileManager defaultManager] enumeratorAtURL:directoryURL includingPropertiesForKeys:@[NSURLFileSizeKey] options:0 errorHandler:NULL]) {
  753. if ([url getResourceValue:&value forKey:NSURLFileSizeKey error:nil]) {
  754. count += [value longLongValue];
  755. } else {
  756. return nil;
  757. }
  758. }
  759. return @(count);
  760. }
  761. @end