CCSettings.m 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059
  1. //
  2. // CCSettings.m
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 24/11/14.
  6. // Copyright (c) 2014 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "CCSettings.h"
  24. #import "AppDelegate.h"
  25. #import "CCMain.h"
  26. #import "OCCapabilities.h"
  27. #import "CCSynchronize.h"
  28. #define alertViewEsci 1
  29. #define alertViewAzzeraCache 2
  30. @implementation CCSettings
  31. - (id)initWithCoder:(NSCoder *)aDecoder
  32. {
  33. self = [super initWithCoder:aDecoder];
  34. if (self) {
  35. [self initializeForm];
  36. app.activeSettings = self;
  37. }
  38. return self;
  39. }
  40. - (void)initializeForm
  41. {
  42. XLFormDescriptor *form;
  43. XLFormSectionDescriptor *section;
  44. XLFormRowDescriptor *row;
  45. form = [XLFormDescriptor formDescriptorWithTitle:NSLocalizedString(@"_settings_", nil)];
  46. form.rowNavigationOptions = XLFormRowNavigationOptionNone;
  47. // Section : PASSWORD --------------------------------------------------------------
  48. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_passcode_", nil)];
  49. [form addFormSection:section];
  50. // Passcode
  51. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"bloccopasscode" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_lock_not_active_", nil)];
  52. [row.cellConfig setObject:[UIImage imageNamed:image_settingsPasscodeNO] forKey:@"imageView.image"];
  53. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  54. [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
  55. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  56. //[row.cellConfig setObject:@(UITableViewCellAccessoryDisclosureIndicator) forKey:@"accessoryType"];
  57. row.action.formSelector = @selector(bloccoPassword);
  58. [section addFormRow:row];
  59. // Passcode simply
  60. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"simplypasscode" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_lock_protection_simply_", nil)];
  61. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  62. [section addFormRow:row];
  63. // Passcode only directory
  64. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"onlylockdir" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_lock_protection_folder_", nil)];
  65. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  66. [section addFormRow:row];
  67. // Section : CLOUD ACCOUNT --------------------------------------------------------------
  68. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_cloud_account_", nil)];
  69. [form addFormSection:section];
  70. // version
  71. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"versionserver" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_version_server_", nil)];
  72. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  73. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  74. [section addFormRow:row];
  75. // Url
  76. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"urlcloud" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_url_", nil)];
  77. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  78. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  79. [section addFormRow:row];
  80. // username
  81. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"usernamecloud" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_username_", nil)];
  82. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  83. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  84. [section addFormRow:row];
  85. // Change Account
  86. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"changecredentials" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_change_credentials_", nil)];
  87. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  88. [row.cellConfig setObject:[UIImage imageNamed:image_settingsCredentials] forKey:@"imageView.image"];
  89. row.action.formSegueIdentifier = @"CCManageAccountSegue";
  90. [section addFormRow:row];
  91. // quota
  92. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"quota" rowType:XLFormRowDescriptorTypeButton title:@""];
  93. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  94. [row.cellConfig setObject:@(NSTextAlignmentCenter) forKey:@"textLabel.textAlignment"];
  95. [row.cellConfig setObject:[UIColor blackColor] forKey:@"textLabel.textColor"];
  96. row.action.formSelector = @selector(quota:);
  97. [section addFormRow:row];
  98. // Section : USER INFORMATION -------------------------------------------
  99. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_user_information_", nil)];
  100. [form addFormSection:section];
  101. // Full Name
  102. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"userfullname" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_user_full_name_", nil)];
  103. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  104. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
  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 FOLDERS FAVORITES OFFLINE ------------------------------------
  148. section = [XLFormSectionDescriptor formSection];
  149. [form addFormSection:section];
  150. section.footerTitle = NSLocalizedString(@"_favorite_offline_footer_", nil);
  151. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"favoriteoffline" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_favorite_offline_", nil)];
  152. [row.cellConfig setObject:[UIImage imageNamed:image_settingsFavoriteOffline] forKey:@"imageView.image"];
  153. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  154. [section addFormRow:row];
  155. #ifndef OPTION_CRYPTO_CLOUD_SYSTEM_DISABLE
  156. // Section CRYPTO CLOUD SYSTEM ------------------------------------------
  157. section = [XLFormSectionDescriptor formSection];
  158. [form addFormSection:section];
  159. // Crypto Cloud
  160. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"cryptocloud" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_crypto_cloud_system_", nil)];
  161. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  162. [row.cellConfig setObject:[UIImage imageNamed:image_settingsCryptoCloud] forKey:@"imageView.image"];
  163. row.action.formSegueIdentifier = @"CCManageCryptoCloudSegue";
  164. [section addFormRow:row];
  165. #endif
  166. // Section : INFORMATION ------------------------------------------------
  167. section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_information_", nil)];
  168. [form addFormSection:section];
  169. NSString *versionApp = [NSString stringWithFormat:@"%@.%@", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
  170. section.footerTitle = [NSString stringWithFormat:k_textCopyright, versionApp];
  171. // Acknowledgements
  172. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"buttonLeftAligned" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_acknowledgements_", nil)];
  173. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  174. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  175. [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
  176. [row.cellConfig setObject:[UIImage imageNamed:image_settingsAcknowledgements] forKey:@"imageView.image"];
  177. row.action.formBlock = ^(XLFormRowDescriptor * sender){
  178. [self performSegueWithIdentifier:@"AcknowledgementsSegue" sender:sender];
  179. [self deselectFormRow:sender];
  180. };
  181. [section addFormRow:row];
  182. // Help
  183. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"help" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_help_", nil)];
  184. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  185. [row.cellConfig setObject:[UIImage imageNamed:image_settingsHelp] forKey:@"imageView.image"];
  186. row.action.formSegueIdentifier = @"CCManageHelpSegue";
  187. [section addFormRow:row];
  188. // Contact us mail
  189. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"sendmail" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_contact_by_email_", nil)];
  190. [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
  191. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  192. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  193. [row.cellConfig setObject:[UIImage imageNamed:image_settingsMail] forKey:@"imageView.image"];
  194. row.action.formSelector = @selector(sendMail:);
  195. [section addFormRow:row];
  196. // Section CLEAR CACHE -------------------------------------------------
  197. section = [XLFormSectionDescriptor formSection];
  198. [form addFormSection:section];
  199. // Clear cache
  200. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"azzeracache" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_clear_cache_no_size_", nil)];
  201. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  202. [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
  203. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  204. [row.cellConfig setObject:[UIImage imageNamed:image_settingsClearCache] forKey:@"imageView.image"];
  205. row.action.formSelector = @selector(azzeraCache:);
  206. [section addFormRow:row];
  207. // Section EXIT --------------------------------------------------------
  208. section = [XLFormSectionDescriptor formSection];
  209. [form addFormSection:section];
  210. // Exit
  211. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"esci" rowType:XLFormRowDescriptorTypeButton title:[CCUtility localizableBrand:@"_exit_" table:nil]];
  212. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  213. [row.cellConfig setObject:[UIColor redColor] forKey:@"textLabel.textColor"];
  214. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  215. [row.cellConfig setObject:[UIImage imageNamed:image_settingsExit] forKey:@"imageView.image"];
  216. row.action.formSelector = @selector(esci:);
  217. [section addFormRow:row];
  218. #ifdef DEBUG
  219. /*
  220. // Section : debug
  221. section = [XLFormSectionDescriptor formSectionWithTitle:@"Debug"];
  222. [form addFormSection:section];
  223. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"adminRemoveVersion" rowType:XLFormRowDescriptorTypeButton title:@"Remove Version"];
  224. [row.cellConfig setObject:[UIColor redColor] forKey:@"textLabel.textColor"];
  225. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  226. [row.cellConfig setObject:[UIImage imageNamed:image_settingsAdmin] forKey:@"imageView.image"];
  227. row.action.formSelector = @selector(adminRemoveVersion:);
  228. [section addFormRow:row];
  229. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"quickActionPhotos" rowType:XLFormRowDescriptorTypeButton title:@"Quick Action Photos"];
  230. [row.cellConfig setObject:[UIColor redColor] forKey:@"textLabel.textColor"];
  231. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
  232. [row.cellConfig setObject:[UIImage imageNamed:image_settingsAdmin] forKey:@"imageView.image"];
  233. row.action.formSelector = @selector(quickActionPhotos:);
  234. [section addFormRow:row];
  235. */
  236. #endif
  237. self.form = form;
  238. }
  239. - (void)viewDidLoad
  240. {
  241. [super viewDidLoad];
  242. self.hud = [[CCHud alloc] initWithView:[[[UIApplication sharedApplication] delegate] window]];
  243. self.title = NSLocalizedString(@"_settings_", nil);
  244. // Color
  245. [CCAspect aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
  246. [CCAspect aspectTabBar:self.tabBarController.tabBar hidden:NO];
  247. }
  248. // Apparirà
  249. - (void)viewWillAppear:(BOOL)animated
  250. {
  251. [super viewWillAppear:animated];
  252. // Color
  253. [CCAspect aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
  254. [CCAspect aspectTabBar:self.tabBarController.tabBar hidden:NO];
  255. [self reloadForm];
  256. [self recalculateSize];
  257. }
  258. // E' apparsa
  259. - (void)viewDidAppear:(BOOL)animated
  260. {
  261. [super viewDidAppear:animated];
  262. }
  263. #pragma --------------------------------------------------------------------------------------------
  264. #pragma mark === TableView ===
  265. #pragma --------------------------------------------------------------------------------------------
  266. -(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
  267. {
  268. if (section == 1) {
  269. UIView *view = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 0)];
  270. view.backgroundColor = [UIColor clearColor];
  271. UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
  272. progressView.frame = CGRectMake(10, -23, self.tableView.frame.size.width-10-10, 0);
  273. progressView.trackTintColor = [UIColor colorWithRed:247.0/255.0 green:247.0/255.0 blue:247.0/255.0 alpha:0.6];
  274. progressView.progressTintColor = COLOR_PROGRESS_BAR_QUOTA;
  275. progressView.layer.borderWidth = 0.05;
  276. progressView.layer.borderColor = [COLOR_BRAND CGColor];
  277. CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 10.0f);
  278. progressView.transform = transform;
  279. progressView.progress = [_tableAccount.quotaRelative floatValue] / 100;
  280. [view addSubview:progressView];
  281. return view;
  282. }
  283. return nil;
  284. }
  285. #pragma --------------------------------------------------------------------------------------------
  286. #pragma mark === Admin ===
  287. #pragma --------------------------------------------------------------------------------------------
  288. /*
  289. - (void)adminRemoveVersion:(XLFormRowDescriptor *)sender
  290. {
  291. [self deselectFormRow:sender];
  292. [CCUtility adminRemoveVersion];
  293. exit(0);
  294. }
  295. - (void)quickActionPhotos:(XLFormRowDescriptor *)sender
  296. {
  297. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  298. UIApplicationShortcutItem *shortcutPhotos = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.photos", bundleId] localizedTitle:@"" localizedSubtitle:nil icon:nil userInfo:nil];
  299. [app handleShortCutItem:shortcutPhotos];
  300. }
  301. */
  302. #pragma --------------------------------------------------------------------------------------------
  303. #pragma mark === Chiamate dal Form ===
  304. #pragma --------------------------------------------------------------------------------------------
  305. - (void)reloadForm
  306. {
  307. self.form.delegate = nil;
  308. // ----------------------
  309. XLFormRowDescriptor *rowBloccoPasscode = [self.form formRowWithTag:@"bloccopasscode"];
  310. XLFormRowDescriptor *rowSimplyPasscode = [self.form formRowWithTag:@"simplypasscode"];
  311. XLFormRowDescriptor *rowOnlyLockDir = [self.form formRowWithTag:@"onlylockdir"];
  312. XLFormRowDescriptor *rowFavoriteOffline = [self.form formRowWithTag:@"favoriteoffline"];
  313. XLFormRowDescriptor *rowVersionServer = [self.form formRowWithTag:@"versionserver"];
  314. XLFormRowDescriptor *rowUrlCloud = [self.form formRowWithTag:@"urlcloud"];
  315. XLFormRowDescriptor *rowUserNameCloud = [self.form formRowWithTag:@"usernamecloud"];
  316. XLFormRowDescriptor *rowQuota = [self.form formRowWithTag:@"quota"];
  317. XLFormRowDescriptor *rowUserFullName = [self.form formRowWithTag:@"userfullname"];
  318. XLFormRowDescriptor *rowUserAddress = [self.form formRowWithTag:@"useraddress"];
  319. XLFormRowDescriptor *rowUserPhone = [self.form formRowWithTag:@"userphone"];
  320. XLFormRowDescriptor *rowUserEmail = [self.form formRowWithTag:@"useremail"];
  321. XLFormRowDescriptor *rowUserWeb = [self.form formRowWithTag:@"userweb"];
  322. XLFormRowDescriptor *rowUserTwitter = [self.form formRowWithTag:@"usertwitter"];
  323. //XLFormRowDescriptor *rowChangeCredentials = [self.form formRowWithTag:@"changecredentials"];
  324. // ------------------------------------------------------------------
  325. if ([[CCUtility getBlockCode] length]) {
  326. rowBloccoPasscode.title = NSLocalizedString(@"_lock_active_", nil);
  327. [rowBloccoPasscode.cellConfig setObject:[UIImage imageNamed:image_settingsPasscodeYES] forKey:@"imageView.image"];
  328. } else {
  329. rowBloccoPasscode.title = NSLocalizedString(@"_lock_not_active_", nil);
  330. [rowBloccoPasscode.cellConfig setObject:[UIImage imageNamed:image_settingsPasscodeNO] forKey:@"imageView.image"];
  331. }
  332. if ([CCUtility getSimplyBlockCode]) [rowSimplyPasscode setValue:@1]; else [rowSimplyPasscode setValue:@0];
  333. if ([CCUtility getOnlyLockDir]) [rowOnlyLockDir setValue:@1]; else [rowOnlyLockDir setValue:@0];
  334. if ([CCUtility getFavoriteOffline]) [rowFavoriteOffline setValue:@1]; else [rowFavoriteOffline setValue:@0];
  335. _tableAccount = [CCCoreData getActiveAccount];
  336. rowVersionServer.value = [NSString stringWithFormat:@"%lu.%lu.%lu",(unsigned long)[_tableAccount.versionMajor integerValue], (unsigned long)[_tableAccount.versionMinor integerValue], (unsigned long)[_tableAccount.versionMicro integerValue]];
  337. rowUrlCloud.value = app.activeUrl;
  338. rowUserNameCloud.value = app.activeUser;
  339. NSString *quota = [CCUtility transformedSize:[_tableAccount.quotaTotal doubleValue]];
  340. //NSString *quotaAvailable = [CCUtility transformedSize:[_tableAccount.quotaFree doubleValue]];
  341. NSString *quotaUsed = [CCUtility transformedSize:[_tableAccount.quotaUsed doubleValue]];
  342. rowQuota.title = [NSString stringWithFormat:NSLocalizedString(@"_quota_using_", nil), quotaUsed, quota];
  343. //rowQuota.title = [NSString stringWithFormat:@"%@ / %@ %@", quota, quotaAvailable, NSLocalizedString(@"_available_", nil)];
  344. rowUserFullName.value = _tableAccount.displayName;
  345. if ([_tableAccount.displayName isEqualToString:@""]) rowUserFullName.hidden = @YES;
  346. rowUserAddress.value = _tableAccount.address;
  347. if ([_tableAccount.address isEqualToString:@""]) rowUserAddress.hidden = @YES;
  348. rowUserPhone.value = _tableAccount.phone;
  349. if ([_tableAccount.phone isEqualToString:@""]) rowUserPhone.hidden = @YES;
  350. rowUserEmail.value = _tableAccount.email;
  351. if ([_tableAccount.email isEqualToString:@""]) rowUserEmail.hidden = @YES;
  352. rowUserWeb.value = _tableAccount.webpage;
  353. if ([_tableAccount.webpage isEqualToString:@""]) rowUserWeb.hidden = @YES;
  354. rowUserTwitter.value = _tableAccount.twitter;
  355. if ([_tableAccount.twitter isEqualToString:@""]) rowUserTwitter.hidden = @YES;
  356. // -----------------------------------------------------------------
  357. [self.tableView reloadData];
  358. self.form.delegate = self;
  359. }
  360. - (void)recalculateSize
  361. {
  362. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  363. self.form.delegate = nil;
  364. XLFormRowDescriptor *rowAzzeraCache = [self.form formRowWithTag:@"azzeracache"];
  365. NSString *size = [CCUtility transformedSize:[[self getUserDirectorySize] longValue]];
  366. rowAzzeraCache.title = [NSString stringWithFormat:NSLocalizedString(@"_clear_cache_", nil), size];
  367. //rowAzzeraCache.title = NSLocalizedString(@"_clear_cache_no_size_", nil);
  368. [self.tableView performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];
  369. self.form.delegate = self;
  370. });
  371. }
  372. - (void)formRowDescriptorValueHasChanged:(XLFormRowDescriptor *)rowDescriptor oldValue:(id)oldValue newValue:(id)newValue
  373. {
  374. [super formRowDescriptorValueHasChanged:rowDescriptor oldValue:oldValue newValue:newValue];
  375. if ([rowDescriptor.tag isEqualToString:@"onlylockdir"]) {
  376. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  377. [CCUtility setOnlyLockDir:true];
  378. } else {
  379. [CCUtility setOnlyLockDir:false];
  380. }
  381. }
  382. if ([rowDescriptor.tag isEqualToString:@"simplypasscode"]) {
  383. if ([[CCUtility getBlockCode] length] == 0)
  384. [CCUtility setSimplyBlockCode:[[rowDescriptor.value valueData] boolValue]];
  385. else
  386. [self changeSimplyPassword];
  387. }
  388. if ([rowDescriptor.tag isEqualToString:@"favoriteoffline"]) {
  389. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  390. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"" message:NSLocalizedString(@"_continue_", nil) preferredStyle:UIAlertControllerStyleActionSheet];
  391. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  392. [CCUtility setFavoriteOffline:true];
  393. [self synchronizeFavorites];
  394. }]];
  395. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  396. [self reloadForm];
  397. }]];
  398. //if iPhone
  399. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
  400. [self presentViewController:alertController animated:YES completion:nil];
  401. }
  402. //if iPad
  403. else {
  404. // Change Rect to position Popover
  405. UIPopoverController *popup = [[UIPopoverController alloc] initWithContentViewController:alertController];
  406. [popup presentPopoverFromRect:[self.tableView rectForRowAtIndexPath:[self.form indexPathOfFormRow:rowDescriptor]] inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
  407. }
  408. } else {
  409. [CCUtility setFavoriteOffline:false];
  410. }
  411. }
  412. }
  413. - (void)checkEncryptPass:(XLFormRowDescriptor *)sender
  414. {
  415. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  416. viewController.delegate = self;
  417. viewController.fromType = CCBKPasscodeFromCheckCryptoKey;
  418. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  419. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  420. viewController.passcodeInputView.maximumLength = 64;
  421. viewController.title = NSLocalizedString(@"_check_key_aes_256_", nil);
  422. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  423. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_CRYPTOCLOUD;
  424. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  425. [self presentViewController:navigationController animated:YES completion:nil];
  426. }
  427. - (void)changeSimplyPassword
  428. {
  429. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  430. viewController.delegate = self;
  431. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  432. viewController.fromType = CCBKPasscodeFromSimply;
  433. viewController.title = NSLocalizedString(@"_change_simply_passcode_", nil);
  434. viewController.inputViewTitlePassword = YES;
  435. if ([CCUtility getSimplyBlockCode]) {
  436. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  437. viewController.passcodeInputView.maximumLength = 6;
  438. } else {
  439. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  440. viewController.passcodeInputView.maximumLength = 64;
  441. }
  442. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  443. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  444. viewController.touchIDManager = touchIDManager;
  445. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  446. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_CRYPTOCLOUD;
  447. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  448. [self presentViewController:navigationController animated:YES completion:nil];
  449. }
  450. - (void)bloccoPassword
  451. {
  452. // ATTIVAZIONE LOCK PASSWORD
  453. if ([[CCUtility getBlockCode] length] == 0) {
  454. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  455. viewController.delegate = self;
  456. viewController.type = BKPasscodeViewControllerNewPasscodeType;
  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:k_serviceShareKeyChain];
  467. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  468. viewController.touchIDManager = touchIDManager;
  469. viewController.title = NSLocalizedString(@"_passcode_activate_", 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. } else {
  475. // OFF LOCK PASSWORD
  476. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  477. viewController.delegate = self;
  478. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  479. viewController.fromType = CCBKPasscodeFromSettingsPasscode;
  480. viewController.inputViewTitlePassword = YES;
  481. if ([CCUtility getSimplyBlockCode]) {
  482. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  483. viewController.passcodeInputView.maximumLength = 6;
  484. } else {
  485. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  486. viewController.passcodeInputView.maximumLength = 64;
  487. }
  488. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  489. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  490. viewController.touchIDManager = touchIDManager;
  491. viewController.title = NSLocalizedString(@"_disabling_passcode_", nil);
  492. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  493. viewController.navigationItem.leftBarButtonItem.tintColor = COLOR_CRYPTOCLOUD;
  494. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  495. [self presentViewController:navigationController animated:YES completion:nil];
  496. }
  497. }
  498. - (void)esci:(XLFormRowDescriptor *)sender
  499. {
  500. [self deselectFormRow:sender];
  501. UIAlertView * alertView =[[UIAlertView alloc ] initWithTitle:[CCUtility localizableBrand:@"_exit_" table:nil]
  502. message:[CCUtility localizableBrand:@"_want_exit_" table:nil]
  503. delegate:self
  504. cancelButtonTitle:NSLocalizedString(@"_cancel_", nil)
  505. otherButtonTitles: nil];
  506. alertView.tag = alertViewEsci;
  507. [alertView addButtonWithTitle:NSLocalizedString(@"_proceed_", nil)];
  508. [alertView show];
  509. }
  510. - (void)azzeraCache:(XLFormRowDescriptor *)sender
  511. {
  512. [self deselectFormRow:sender];
  513. UIAlertView * alertView =[[UIAlertView alloc ] initWithTitle:NSLocalizedString(@"_delete_cache_",nil)
  514. message:NSLocalizedString(@"_want_delete_cache_", nil)
  515. delegate:self
  516. cancelButtonTitle:NSLocalizedString(@"_cancel_", nil)
  517. otherButtonTitles: nil];
  518. alertView.tag = alertViewAzzeraCache;
  519. [alertView addButtonWithTitle:NSLocalizedString(@"_proceed_", nil)];
  520. [alertView show];
  521. }
  522. - (void)quota:(XLFormRowDescriptor *)sender
  523. {
  524. [self deselectFormRow:sender];
  525. }
  526. - (void)synchronizeFavorites
  527. {
  528. NSArray *recordsTableMetadata = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (favorite == 1)", app.activeAccount] context:nil];
  529. for (TableMetadata *tableMetadata in recordsTableMetadata) {
  530. if ([tableMetadata.directory boolValue]) {
  531. NSString *serverUrl = [CCCoreData getServerUrlFromDirectoryID:tableMetadata.directoryID activeAccount:app.activeAccount];
  532. serverUrl = [CCUtility stringAppendServerUrl:serverUrl addFileName:tableMetadata.fileNamePrint];
  533. NSArray *TableDirectories = [CCCoreData getDirectoryIDsFromBeginsWithServerUrl:serverUrl activeAccount:app.activeAccount];
  534. for (TableDirectory *tableDirecory in TableDirectories)
  535. [CCCoreData clearDateReadAccount:app.activeAccount serverUrl:nil directoryID:tableDirecory.directoryID];
  536. }
  537. }
  538. [[CCSynchronize sharedSynchronize] readListingFavorites];
  539. }
  540. #pragma --------------------------------------------------------------------------------------------
  541. #pragma mark === Mail ===
  542. #pragma --------------------------------------------------------------------------------------------
  543. - (void) mailComposeController:(MFMailComposeViewController *)vc didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
  544. {
  545. switch (result)
  546. {
  547. case MFMailComposeResultCancelled:
  548. [app messageNotification:@"_info_" description:@"_mail_deleted_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess];
  549. break;
  550. case MFMailComposeResultSaved:
  551. [app messageNotification:@"_info_" description:@"_mail_saved_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess];
  552. break;
  553. case MFMailComposeResultSent:
  554. [app messageNotification:@"_info_" description:@"_mail_sent_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess];
  555. break;
  556. case MFMailComposeResultFailed: {
  557. NSString *msg = [NSString stringWithFormat:NSLocalizedString(@"_mail_failure_", nil), [error localizedDescription]];
  558. [app messageNotification:@"_error_" description:msg visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError];
  559. }
  560. break;
  561. default:
  562. break;
  563. }
  564. // Close the Mail Interface
  565. [self dismissViewControllerAnimated:YES completion:NULL];
  566. }
  567. - (void)sendMail:(XLFormRowDescriptor *)sender
  568. {
  569. // Email Subject
  570. NSString *emailTitle = NSLocalizedString(@"_information_req_", nil);
  571. // Email Content
  572. NSString *messageBody;
  573. // Email Recipents
  574. NSArray *toRecipents;
  575. messageBody = [NSString stringWithFormat:@"\n\n\n%@ Version %@ (%@)", k_brand,[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
  576. toRecipents = [NSArray arrayWithObject:k_mailMe];
  577. MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
  578. mc.mailComposeDelegate = self;
  579. [mc setSubject:emailTitle];
  580. [mc setMessageBody:messageBody isHTML:NO];
  581. [mc setToRecipients:toRecipents];
  582. // Present mail view controller on screen
  583. [self presentViewController:mc animated:YES completion:NULL];
  584. }
  585. - (void)sendMailEncryptPass
  586. {
  587. [CCUtility sendMailEncryptPass:[CCUtility getEmail] validateEmail:NO form:self];
  588. }
  589. #pragma --------------------------------------------------------------------------------------------
  590. #pragma mark === AlertView ===
  591. #pragma --------------------------------------------------------------------------------------------
  592. - (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex
  593. {
  594. // Remove ALL
  595. if (buttonIndex == 1 && alertView.tag == alertViewEsci)
  596. {
  597. [self.hud visibleIndeterminateHud];
  598. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.01 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  599. [app cancelAllOperations];
  600. [[CCNetworking sharedNetworking] settingSessionsDownload:YES upload:YES taskStatus:k_taskStatusCancel activeAccount:app.activeAccount activeUser:app.activeUser activeUrl:app.activeUrl];
  601. [[NSURLCache sharedURLCache] setMemoryCapacity:0];
  602. [[NSURLCache sharedURLCache] setDiskCapacity:0];
  603. [[CCNetworking sharedNetworking] invalidateAndCancelAllSession];
  604. [CCCoreData flushAllDatabase];
  605. [CCUtility deleteAllChainStore];
  606. [self emptyDocumentsDirectory];
  607. [self emptyLibraryDirectory];
  608. [self emptyGroupApplicationSupport];
  609. NSArray* tmpDirectory = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:NSTemporaryDirectory() error:NULL];
  610. for (NSString *file in tmpDirectory)
  611. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@%@", NSTemporaryDirectory(), file] error:NULL];
  612. [self.hud hideHud];
  613. exit(0);
  614. });
  615. }
  616. // Clear Cache
  617. if (buttonIndex == 1 && alertView.tag == alertViewAzzeraCache)
  618. {
  619. [self.hud visibleHudTitle:NSLocalizedString(@"_remove_cache_", nil) mode:MBProgressHUDModeIndeterminate color:nil];
  620. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.01 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  621. [app cancelAllOperations];
  622. [[CCNetworking sharedNetworking] settingSessionsDownload:YES upload:YES taskStatus:k_taskStatusCancel activeAccount:app.activeAccount activeUser:app.activeUser activeUrl:app.activeUrl];
  623. [[NSURLCache sharedURLCache] setMemoryCapacity:0];
  624. [[NSURLCache sharedURLCache] setDiskCapacity:0];
  625. [CCCoreData flushTableAutomaticUploadAccount:app.activeAccount selector:nil];
  626. [CCCoreData flushTableDirectoryAccount:app.activeAccount];
  627. [CCCoreData flushTableLocalFileAccount:app.activeAccount];
  628. [CCCoreData flushTableMetadataAccount:app.activeAccount];
  629. [CCCoreData flushTableActivityAccount:app.activeAccount];
  630. [self emptyUserDirectoryUser:app.activeUser url:app.activeUrl];
  631. [self emptyLocalDirectory];
  632. NSArray* tmpDirectory = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:NSTemporaryDirectory() error:NULL];
  633. for (NSString *file in tmpDirectory)
  634. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@%@", NSTemporaryDirectory(), file] error:NULL];
  635. [self recalculateSize];
  636. // Inizialized home
  637. [[NSNotificationCenter defaultCenter] postNotificationName:@"initializeMain" object:nil];
  638. [self.hud hideHud];
  639. });
  640. }
  641. }
  642. #pragma --------------------------------------------------------------------------------------------
  643. #pragma mark === BKPasscodeViewController ===
  644. #pragma --------------------------------------------------------------------------------------------
  645. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  646. {
  647. [aViewController dismissViewControllerAnimated:YES completion:nil];
  648. switch (aViewController.type) {
  649. case BKPasscodeViewControllerNewPasscodeType: {
  650. // enable passcode
  651. [CCUtility setBlockCode:aPasscode];
  652. }
  653. break;
  654. case BKPasscodeViewControllerCheckPasscodeType: {
  655. // disable passcode
  656. if (aViewController.fromType == CCBKPasscodeFromSettingsPasscode) {
  657. [CCUtility setBlockCode:@""];
  658. [CCCoreData setAllDirectoryUnLockForAccount:app.activeAccount];
  659. [app.activeMain.tableView reloadData];
  660. }
  661. // email Key EAS-256
  662. if (aViewController.fromType == CCBKPasscodeFromCheckCryptoKey)
  663. [self sendMailEncryptPass];
  664. // change simply
  665. if (aViewController.fromType == CCBKPasscodeFromSimply) {
  666. // disable passcode
  667. [CCUtility setBlockCode:@""];
  668. [CCCoreData setAllDirectoryUnLockForAccount:app.activeAccount];
  669. [app.activeMain.tableView reloadData];
  670. [CCUtility setSimplyBlockCode:![CCUtility getSimplyBlockCode]];
  671. // Call new passcode
  672. [self bloccoPassword];
  673. }
  674. }
  675. break;
  676. default:
  677. break;
  678. }
  679. [self reloadForm];
  680. }
  681. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  682. {
  683. if (aViewController.fromType == CCBKPasscodeFromCheckCryptoKey) {
  684. NSString *key = [CCUtility getKeyChainPasscodeForUUID:[CCUtility getUUID]];
  685. if ([aPasscode isEqualToString:key]) {
  686. self.lockUntilDate = nil;
  687. self.failedAttempts = 0;
  688. aResultHandler(YES);
  689. } else aResultHandler(NO);
  690. }
  691. if (aViewController.fromType == CCBKPasscodeFromSettingsPasscode || aViewController.fromType == CCBKPasscodeFromSimply) {
  692. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  693. self.lockUntilDate = nil;
  694. self.failedAttempts = 0;
  695. aResultHandler(YES);
  696. } else aResultHandler(NO);
  697. }
  698. }
  699. - (void)passcodeViewControllerDidFailAttempt:(CCBKPasscode *)aViewController
  700. {
  701. self.failedAttempts++;
  702. if (self.failedAttempts > 5) {
  703. NSTimeInterval timeInterval = 60;
  704. if (self.failedAttempts > 6) {
  705. NSUInteger multiplier = self.failedAttempts - 6;
  706. timeInterval = (5 * 60) * multiplier;
  707. if (timeInterval > 3600 * 24) {
  708. timeInterval = 3600 * 24;
  709. }
  710. }
  711. self.lockUntilDate = [NSDate dateWithTimeIntervalSinceNow:timeInterval];
  712. }
  713. }
  714. - (NSUInteger)passcodeViewControllerNumberOfFailedAttempts:(CCBKPasscode *)aViewController
  715. {
  716. return self.failedAttempts;
  717. }
  718. - (NSDate *)passcodeViewControllerLockUntilDate:(CCBKPasscode *)aViewController
  719. {
  720. return self.lockUntilDate;
  721. }
  722. - (void)passcodeViewCloseButtonPressed:(id)sender
  723. {
  724. [self dismissViewControllerAnimated:YES completion:nil];
  725. }
  726. #pragma --------------------------------------------------------------------------------------------
  727. #pragma mark == Utility ==
  728. #pragma --------------------------------------------------------------------------------------------
  729. - (void)emptyGroupApplicationSupport
  730. {
  731. NSString *file;
  732. NSURL *dirGroup = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:k_capabilitiesGroups];
  733. NSString *dirIniziale = [[dirGroup URLByAppendingPathComponent:appApplicationSupport] path];
  734. NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:dirIniziale];
  735. while (file = [enumerator nextObject])
  736. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", dirIniziale, file] error:nil];
  737. }
  738. - (void)emptyLibraryDirectory
  739. {
  740. NSString *file;
  741. NSString *dirIniziale;
  742. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
  743. dirIniziale = [paths objectAtIndex:0];
  744. NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:dirIniziale];
  745. while (file = [enumerator nextObject])
  746. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", dirIniziale, file] error:nil];
  747. }
  748. - (void)emptyDocumentsDirectory
  749. {
  750. NSString *file;
  751. NSString *dirIniziale;
  752. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
  753. dirIniziale = [paths objectAtIndex:0];
  754. NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:dirIniziale];
  755. while (file = [enumerator nextObject])
  756. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", dirIniziale, file] error:nil];
  757. }
  758. - (void)emptyUserDirectoryUser:(NSString *)user url:(NSString *)url
  759. {
  760. NSString *file;
  761. NSString *dirIniziale;
  762. dirIniziale = [CCUtility getDirectoryActiveUser:user activeUrl:url];
  763. NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:dirIniziale];
  764. while (file = [enumerator nextObject]) {
  765. NSString *ext = [[file pathExtension] lowercaseString];
  766. // Do not remove ICO
  767. if ([ext isEqualToString:@"ico"])
  768. continue;
  769. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", dirIniziale, file] error:nil];
  770. }
  771. }
  772. - (void)emptyLocalDirectory
  773. {
  774. NSString *file;
  775. NSString *dirIniziale;
  776. dirIniziale = [CCUtility getDirectoryLocal];
  777. NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:dirIniziale];
  778. while (file = [enumerator nextObject])
  779. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", dirIniziale, file] error:nil];
  780. }
  781. - (NSNumber *)getUserDirectorySize
  782. {
  783. NSString *directoryUser = [CCUtility getDirectoryActiveUser:app.activeUser activeUrl:app.activeUrl];
  784. NSURL *directoryURL = [NSURL fileURLWithPath:directoryUser];
  785. unsigned long long count = 0;
  786. NSNumber *value = nil;
  787. if (! directoryURL) return 0;
  788. // Get dimension Document
  789. for (NSURL *url in [[NSFileManager defaultManager] enumeratorAtURL:directoryURL includingPropertiesForKeys:@[NSURLFileSizeKey] options:0 errorHandler:NULL]) {
  790. if ([url getResourceValue:&value forKey:NSURLFileSizeKey error:nil]) {
  791. count += [value longLongValue];
  792. } else {
  793. return nil;
  794. }
  795. }
  796. return @(count);
  797. }
  798. @end