CCManageAutoUpload.m 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. //
  2. // CCManageAutoUpload.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/09/15.
  6. // Copyright (c) 2015 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import <Photos/Photos.h>
  24. #import "CCManageAutoUpload.h"
  25. #import "CCUtility.h"
  26. #import "NCBridgeSwift.h"
  27. @interface CCManageAutoUpload () <NCSelectDelegate>
  28. {
  29. AppDelegate *appDelegate;
  30. }
  31. @end
  32. @implementation CCManageAutoUpload
  33. - (void)initializeForm
  34. {
  35. XLFormDescriptor *form = [XLFormDescriptor formDescriptor];
  36. XLFormSectionDescriptor *section;
  37. XLFormRowDescriptor *row;
  38. tableAccount *activeAccount = [[NCManageDatabase shared] getActiveAccount];
  39. // Auto Upload
  40. section = [XLFormSectionDescriptor formSection];
  41. [form addFormSection:section];
  42. section.footerTitle = NSLocalizedString(@"_autoupload_description_", nil);
  43. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUpload" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_autoupload_", nil)];
  44. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.shared.secondarySystemGroupedBackground;
  45. if (activeAccount.autoUpload) row.value = @1;
  46. else row.value = @0;
  47. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  48. [row.cellConfig setObject:NCBrandColor.shared.label forKey:@"textLabel.textColor"];
  49. [section addFormRow:row];
  50. // Auto Upload Directory
  51. section = [XLFormSectionDescriptor formSection];
  52. [form addFormSection:section];
  53. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadDirectory" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_autoupload_select_folder_", nil)];
  54. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.shared.secondarySystemGroupedBackground;
  55. row.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  56. [row.cellConfig setObject:[[UIImage imageNamed:@"foldersOnTop"] imageWithColor:NCBrandColor.shared.gray size:25] forKey:@"imageView.image"];
  57. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  58. [row.cellConfig setObject:NCBrandColor.shared.label forKey:@"textLabel.textColor"];
  59. [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
  60. //[row.cellConfig setObject:@(UITableViewCellAccessoryDisclosureIndicator) forKey:@"accessoryType"];
  61. row.action.formSelector = @selector(selectAutomaticUploadFolder);
  62. [section addFormRow:row];
  63. // Auto Upload Photo
  64. section = [XLFormSectionDescriptor formSection];
  65. [form addFormSection:section];
  66. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadImage" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_autoupload_photos_", nil)];
  67. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.shared.secondarySystemGroupedBackground;
  68. row.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  69. if (activeAccount.autoUploadImage) row.value = @1;
  70. else row.value = @0;
  71. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  72. [row.cellConfig setObject:NCBrandColor.shared.label forKey:@"textLabel.textColor"];
  73. [section addFormRow:row];
  74. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadWWAnPhoto" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_wifi_only_", nil)];
  75. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.shared.secondarySystemGroupedBackground;
  76. row.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  77. if (activeAccount.autoUploadWWAnPhoto) row.value = @1;
  78. else row.value = @0;
  79. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  80. [row.cellConfig setObject:NCBrandColor.shared.label forKey:@"textLabel.textColor"];
  81. [section addFormRow:row];
  82. // Auto Upload Video
  83. section = [XLFormSectionDescriptor formSection];
  84. [form addFormSection:section];
  85. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadVideo" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_autoupload_videos_", nil)];
  86. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.shared.secondarySystemGroupedBackground;
  87. row.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  88. if (activeAccount.autoUploadVideo) row.value = @1;
  89. else row.value = @0;
  90. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  91. [row.cellConfig setObject:NCBrandColor.shared.label forKey:@"textLabel.textColor"];
  92. [section addFormRow:row];
  93. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadWWAnVideo" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_wifi_only_", nil)];
  94. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.shared.secondarySystemGroupedBackground;
  95. row.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  96. if (activeAccount.autoUploadWWAnVideo) row.value = @1;
  97. else row.value = @0;
  98. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  99. [row.cellConfig setObject:NCBrandColor.shared.label forKey:@"textLabel.textColor"];
  100. [section addFormRow:row];
  101. // Delete asset
  102. section = [XLFormSectionDescriptor formSection];
  103. [form addFormSection:section];
  104. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"removePhotoCameraRoll" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_remove_photo_CameraRoll_", nil)];
  105. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.shared.secondarySystemGroupedBackground;
  106. row.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  107. if (activeAccount.autoUploadDeleteAssetLocalIdentifier) row.value = @1;
  108. else row.value = @0;
  109. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  110. [row.cellConfig setObject:NCBrandColor.shared.label forKey:@"textLabel.textColor"];
  111. [section addFormRow:row];
  112. // Auto Upload Full
  113. section = [XLFormSectionDescriptor formSection];
  114. [form addFormSection:section];
  115. NSString *title = NSLocalizedString(@"_autoupload_fullphotos_", nil);
  116. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadFull" rowType:XLFormRowDescriptorTypeBooleanSwitch title:title];
  117. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.shared.secondarySystemGroupedBackground;
  118. row.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  119. row.value = 0;
  120. if (activeAccount.autoUploadFull) row.value = @1;
  121. else row.value = @0;
  122. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  123. [row.cellConfig setObject:NCBrandColor.shared.label forKey:@"textLabel.textColor"];
  124. [section addFormRow:row];
  125. // Auto Upload create subfolder
  126. section = [XLFormSectionDescriptor formSection];
  127. [form addFormSection:section];
  128. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadCreateSubfolder" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_autoupload_create_subfolder_", nil)];
  129. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.shared.secondarySystemGroupedBackground;
  130. row.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  131. if (activeAccount.autoUploadCreateSubfolder) row.value = @1;
  132. else row.value = @0;
  133. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  134. [row.cellConfig setObject:NCBrandColor.shared.label forKey:@"textLabel.textColor"];
  135. [section addFormRow:row];
  136. // Auto Upload file name
  137. section = [XLFormSectionDescriptor formSection];
  138. [form addFormSection:section];
  139. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadFileName" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_autoupload_filenamemask_", nil)];
  140. row.cellConfigAtConfigure[@"backgroundColor"] = NCBrandColor.shared.secondarySystemGroupedBackground;
  141. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  142. [row.cellConfig setObject:NCBrandColor.shared.label forKey:@"textLabel.textColor"];
  143. row.action.viewControllerClass = [NCManageAutoUploadFileName class];
  144. [section addFormRow:row];
  145. // end
  146. section = [XLFormSectionDescriptor formSection];
  147. [form addFormSection:section];
  148. self.tableView.showsVerticalScrollIndicator = NO;
  149. self.form = form;
  150. }
  151. // MARK: - View Life Cycle
  152. - (void)viewDidLoad
  153. {
  154. [super viewDidLoad];
  155. self.title = NSLocalizedString(@"_settings_autoupload_", nil);
  156. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  157. self.view.backgroundColor = NCBrandColor.shared.systemGroupedBackground;
  158. self.tableView.backgroundColor = NCBrandColor.shared.systemGroupedBackground;
  159. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(initialize) name:NCGlobal.shared.notificationCenterInitialize object:nil];
  160. [self initializeForm];
  161. [self reloadForm];
  162. }
  163. - (void)viewWillAppear:(BOOL)animated
  164. {
  165. [super viewWillAppear:animated];
  166. appDelegate.activeViewController = self;
  167. [[NCAskAuthorization shared] askAuthorizationPhotoLibraryWithViewController:self completion:^(BOOL status) { }];
  168. }
  169. - (void)initialize
  170. {
  171. [[self navigationController] popViewControllerAnimated:YES];
  172. }
  173. #pragma mark - NotificationCenter
  174. #pragma mark -
  175. -(void)formRowDescriptorValueHasChanged:(XLFormRowDescriptor *)rowDescriptor oldValue:(id)oldValue newValue:(id)newValue
  176. {
  177. [super formRowDescriptorValueHasChanged:rowDescriptor oldValue:oldValue newValue:newValue];
  178. tableAccount *activeAccount = [[NCManageDatabase shared] getActiveAccount];
  179. if ([rowDescriptor.tag isEqualToString:@"autoUpload"]) {
  180. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  181. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUpload" state:YES];
  182. // Default
  183. [[NCManageDatabase shared] setAccountAutoUploadFileName:nil];
  184. [[NCManageDatabase shared] setAccountAutoUploadDirectory:nil urlBase:appDelegate.urlBase account:appDelegate.account];
  185. // verifichiamo che almeno uno dei servizi (foto video) siano attivi, in caso contrario attiviamo le foto
  186. if (activeAccount.autoUploadImage == NO && activeAccount.autoUploadVideo == NO) {
  187. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadImage" state:YES];
  188. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadVideo" state:YES];
  189. }
  190. [[NCAutoUpload shared] alignPhotoLibraryWithViewController:self];
  191. } else {
  192. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUpload" state:NO];
  193. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadFull" state:NO];
  194. // remove
  195. [[NCManageDatabase shared] clearMetadatasUploadWithAccount:appDelegate.account];
  196. }
  197. [self reloadForm];
  198. }
  199. if ([rowDescriptor.tag isEqualToString:@"removePhotoCameraRoll"]) {
  200. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadDeleteAssetLocalIdentifier" state:[[rowDescriptor.value valueData] boolValue]];
  201. }
  202. if ([rowDescriptor.tag isEqualToString:@"autoUploadFull"]) {
  203. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  204. [[NCAutoUpload shared] autoUploadFullPhotosWithViewController:self log:@"Auto upload full"];
  205. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadFull" state:YES];
  206. } else {
  207. [[NCManageDatabase shared] clearMetadatasUploadWithAccount:appDelegate.account];
  208. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadFull" state:NO];
  209. }
  210. }
  211. if ([rowDescriptor.tag isEqualToString:@"autoUploadImage"]) {
  212. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadImage" state:[[rowDescriptor.value valueData] boolValue]];
  213. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  214. [[NCAutoUpload shared] alignPhotoLibraryWithViewController:self];
  215. }
  216. }
  217. if ([rowDescriptor.tag isEqualToString:@"autoUploadWWAnPhoto"]) {
  218. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadWWAnPhoto" state:[[rowDescriptor.value valueData] boolValue]];
  219. }
  220. if ([rowDescriptor.tag isEqualToString:@"autoUploadVideo"]) {
  221. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadVideo" state:[[rowDescriptor.value valueData] boolValue]];
  222. if ([[rowDescriptor.value valueData] boolValue] == YES){
  223. [[NCAutoUpload shared] alignPhotoLibraryWithViewController:self];
  224. }
  225. }
  226. if ([rowDescriptor.tag isEqualToString:@"autoUploadWWAnVideo"]) {
  227. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadWWAnVideo" state:[[rowDescriptor.value valueData] boolValue]];
  228. }
  229. if ([rowDescriptor.tag isEqualToString:@"autoUploadCreateSubfolder"]) {
  230. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadCreateSubfolder" state:[[rowDescriptor.value valueData] boolValue]];
  231. }
  232. }
  233. - (void)done:(XLFormRowDescriptor *)sender
  234. {
  235. [self dismissViewControllerAnimated:YES completion:nil];
  236. }
  237. - (void)reloadForm
  238. {
  239. self.form.delegate = nil;
  240. XLFormRowDescriptor *rowAutoUpload = [self.form formRowWithTag:@"autoUpload"];
  241. XLFormRowDescriptor *rowAutoUploadImage = [self.form formRowWithTag:@"autoUploadImage"];
  242. XLFormRowDescriptor *rowAutoUploadWWAnPhoto = [self.form formRowWithTag:@"autoUploadWWAnPhoto"];
  243. XLFormRowDescriptor *rowAutoUploadVideo = [self.form formRowWithTag:@"autoUploadVideo"];
  244. XLFormRowDescriptor *rowAutoUploadWWAnVideo = [self.form formRowWithTag:@"autoUploadWWAnVideo"];
  245. XLFormRowDescriptor *rowRemovePhotoCameraRoll = [self.form formRowWithTag:@"removePhotoCameraRoll"];
  246. XLFormRowDescriptor *rowAutoUploadFull = [self.form formRowWithTag:@"autoUploadFull"];
  247. XLFormRowDescriptor *rowAutoUploadCreateSubfolder = [self.form formRowWithTag:@"autoUploadCreateSubfolder"];
  248. XLFormRowDescriptor *rowAutoUploadFileName = [self.form formRowWithTag:@"autoUploadFileName"];
  249. // - STATUS ---------------------
  250. tableAccount *activeAccount = [[NCManageDatabase shared] getActiveAccount];
  251. if (activeAccount.autoUpload)
  252. [rowAutoUpload setValue:@1]; else [rowAutoUpload setValue:@0];
  253. if (activeAccount.autoUploadImage)
  254. [rowAutoUploadImage setValue:@1]; else [rowAutoUploadImage setValue:@0];
  255. if (activeAccount.autoUploadWWAnPhoto)
  256. [rowAutoUploadWWAnPhoto setValue:@1]; else [rowAutoUploadWWAnPhoto setValue:@0];
  257. if (activeAccount.autoUploadVideo)
  258. [rowAutoUploadVideo setValue:@1]; else [rowAutoUploadVideo setValue:@0];
  259. if (activeAccount.autoUploadWWAnVideo)
  260. [rowAutoUploadWWAnVideo setValue:@1]; else [rowAutoUploadWWAnVideo setValue:@0];
  261. if (activeAccount.autoUploadDeleteAssetLocalIdentifier)
  262. [rowRemovePhotoCameraRoll setValue:@1]; else [rowRemovePhotoCameraRoll setValue:@0];
  263. if (activeAccount.autoUploadFull)
  264. [rowAutoUploadFull setValue:@1]; else [rowAutoUploadFull setValue:@0];
  265. if (activeAccount.autoUploadCreateSubfolder)
  266. [rowAutoUploadCreateSubfolder setValue:@1]; else [rowAutoUploadCreateSubfolder setValue:@0];
  267. // - HIDDEN --------------------------------------------------------------------------
  268. rowAutoUploadImage.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  269. rowAutoUploadWWAnPhoto.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  270. rowAutoUploadVideo.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  271. rowAutoUploadWWAnVideo.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  272. rowRemovePhotoCameraRoll.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  273. rowAutoUploadFull.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  274. rowAutoUploadCreateSubfolder.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  275. rowAutoUploadFileName.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  276. // -----------------------------------------------------------------------------------
  277. [self.tableView reloadData];
  278. self.form.delegate = self;
  279. }
  280. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  281. return NCGlobal.shared.heightCellSettings;
  282. }
  283. - (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
  284. {
  285. tableAccount *activeAccount = [[NCManageDatabase shared] getActiveAccount];
  286. NSString *sectionName;
  287. NSString *autoUploadPath = [NSString stringWithFormat:@"%@/%@", [[NCManageDatabase shared] getAccountAutoUploadDirectoryWithUrlBase:appDelegate.urlBase account:appDelegate.account], [[NCManageDatabase shared] getAccountAutoUploadFileName]];
  288. switch (section)
  289. {
  290. case 0:
  291. sectionName = NSLocalizedString(@"_autoupload_description_", nil);
  292. break;
  293. case 1:
  294. if (activeAccount.autoUpload) sectionName = [NSString stringWithFormat:@"%@: %@", NSLocalizedString(@"_autoupload_current_folder_", nil), [CCUtility returnPathfromServerUrl:autoUploadPath urlBase:appDelegate.urlBase account:appDelegate.account]];
  295. else sectionName = @"";
  296. break;
  297. case 4:
  298. if (activeAccount.autoUpload) sectionName = NSLocalizedString(@"_remove_photo_CameraRoll_desc_", nil);
  299. else sectionName = @"";
  300. break;
  301. case 5:
  302. if (activeAccount.autoUpload) sectionName = NSLocalizedString(@"_autoupload_fullphotos_footer_", nil);
  303. else sectionName = @"";
  304. break;
  305. case 6:
  306. if (activeAccount.autoUpload) sectionName = NSLocalizedString(@"_autoupload_create_subfolder_footer_", nil);
  307. else sectionName = @"";
  308. break;
  309. case 7:
  310. if (activeAccount.autoUpload) sectionName = NSLocalizedString(@"_autoupload_filenamemask_footer_", nil);
  311. else sectionName = @"";
  312. break;
  313. }
  314. return sectionName;
  315. }
  316. - (void)dismissSelectWithServerUrl:(NSString *)serverUrl metadata:(tableMetadata *)metadata type:(NSString *)type items:(NSArray *)items overwrite:(BOOL)overwrite copy:(BOOL)copy move:(BOOL)move
  317. {
  318. if (serverUrl != nil) {
  319. if ([serverUrl isEqualToString:[[NCUtilityFileSystem shared] getHomeServerWithAccount:appDelegate.account]]) {
  320. [[NCContentPresenter shared] messageNotification:@"_error_" description:@"_autoupload_error_select_folder_" delay:[[NCGlobal shared] dismissAfterSecond] type:messageTypeError errorCode:NCGlobal.shared.errorInternalError];
  321. return;
  322. }
  323. // Settings new folder Automatatic upload
  324. [[NCManageDatabase shared] setAccountAutoUploadFileName:serverUrl.lastPathComponent];
  325. [[NCManageDatabase shared] setAccountAutoUploadDirectory:[[NCUtilityFileSystem shared] deletingLastPathComponentWithAccount:appDelegate.account serverUrl:serverUrl] urlBase:appDelegate.urlBase account:appDelegate.account];
  326. // Reload
  327. [self.tableView reloadData];
  328. }
  329. }
  330. - (void)selectAutomaticUploadFolder
  331. {
  332. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCSelect" bundle:nil] instantiateInitialViewController];
  333. NCSelect *viewController = (NCSelect *)navigationController.topViewController;
  334. viewController.delegate = self;
  335. viewController.typeOfCommandView = 1;
  336. [self presentViewController:navigationController animated:YES completion:^{
  337. [self.tableView reloadData];
  338. }];
  339. }
  340. @end