CCManageAutoUpload.m 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  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"] = UIColor.secondarySystemGroupedBackgroundColor;
  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:UIColor.labelColor 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"] = UIColor.secondarySystemGroupedBackgroundColor;
  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:UIColor.labelColor 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"] = UIColor.secondarySystemGroupedBackgroundColor;
  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:UIColor.labelColor forKey:@"textLabel.textColor"];
  73. [section addFormRow:row];
  74. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadWWAnPhoto" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_wifi_only_", nil)];
  75. row.cellConfigAtConfigure[@"backgroundColor"] = UIColor.secondarySystemGroupedBackgroundColor;
  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:UIColor.labelColor 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"] = UIColor.secondarySystemGroupedBackgroundColor;
  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:UIColor.labelColor forKey:@"textLabel.textColor"];
  92. [section addFormRow:row];
  93. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadWWAnVideo" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_wifi_only_", nil)];
  94. row.cellConfigAtConfigure[@"backgroundColor"] = UIColor.secondarySystemGroupedBackgroundColor;
  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:UIColor.labelColor forKey:@"textLabel.textColor"];
  100. [section addFormRow:row];
  101. // Auto Upload Full
  102. section = [XLFormSectionDescriptor formSection];
  103. [form addFormSection:section];
  104. NSString *title = NSLocalizedString(@"_autoupload_fullphotos_", nil);
  105. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadFull" rowType:XLFormRowDescriptorTypeBooleanSwitch title:title];
  106. row.cellConfigAtConfigure[@"backgroundColor"] = UIColor.secondarySystemGroupedBackgroundColor;
  107. row.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  108. row.value = 0;
  109. if (activeAccount.autoUploadFull) row.value = @1;
  110. else row.value = @0;
  111. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  112. [row.cellConfig setObject:UIColor.labelColor forKey:@"textLabel.textColor"];
  113. [section addFormRow:row];
  114. // Auto Upload create subfolder
  115. section = [XLFormSectionDescriptor formSection];
  116. [form addFormSection:section];
  117. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadCreateSubfolder" rowType:XLFormRowDescriptorTypeBooleanSwitch title:NSLocalizedString(@"_autoupload_create_subfolder_", nil)];
  118. row.cellConfigAtConfigure[@"backgroundColor"] = UIColor.secondarySystemGroupedBackgroundColor;
  119. row.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  120. if (activeAccount.autoUploadCreateSubfolder) row.value = @1;
  121. else row.value = @0;
  122. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  123. [row.cellConfig setObject:UIColor.labelColor forKey:@"textLabel.textColor"];
  124. [section addFormRow:row];
  125. // Auto Upload file name
  126. section = [XLFormSectionDescriptor formSection];
  127. [form addFormSection:section];
  128. row = [XLFormRowDescriptor formRowDescriptorWithTag:@"autoUploadFileName" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_autoupload_filenamemask_", nil)];
  129. row.cellConfigAtConfigure[@"backgroundColor"] = UIColor.secondarySystemGroupedBackgroundColor;
  130. [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
  131. [row.cellConfig setObject:UIColor.labelColor forKey:@"textLabel.textColor"];
  132. row.action.viewControllerClass = [NCManageAutoUploadFileName class];
  133. [section addFormRow:row];
  134. // end
  135. section = [XLFormSectionDescriptor formSection];
  136. [form addFormSection:section];
  137. self.tableView.showsVerticalScrollIndicator = NO;
  138. self.form = form;
  139. }
  140. // MARK: - View Life Cycle
  141. - (void)viewDidLoad
  142. {
  143. [super viewDidLoad];
  144. self.title = NSLocalizedString(@"_settings_autoupload_", nil);
  145. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  146. self.view.backgroundColor = UIColor.systemGroupedBackgroundColor;
  147. self.tableView.backgroundColor = UIColor.systemGroupedBackgroundColor;
  148. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(initialize) name:NCGlobal.shared.notificationCenterInitialize object:nil];
  149. [self initializeForm];
  150. [self reloadForm];
  151. }
  152. - (void)viewWillAppear:(BOOL)animated
  153. {
  154. [super viewWillAppear:animated];
  155. appDelegate.activeViewController = self;
  156. [[NCAskAuthorization shared] askAuthorizationPhotoLibraryWithViewController:self completion:^(BOOL status) { }];
  157. }
  158. - (void)initialize
  159. {
  160. [[self navigationController] popViewControllerAnimated:YES];
  161. }
  162. #pragma mark - NotificationCenter
  163. #pragma mark -
  164. -(void)formRowDescriptorValueHasChanged:(XLFormRowDescriptor *)rowDescriptor oldValue:(id)oldValue newValue:(id)newValue
  165. {
  166. [super formRowDescriptorValueHasChanged:rowDescriptor oldValue:oldValue newValue:newValue];
  167. tableAccount *activeAccount = [[NCManageDatabase shared] getActiveAccount];
  168. if ([rowDescriptor.tag isEqualToString:@"autoUpload"]) {
  169. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  170. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUpload" state:YES];
  171. // Default
  172. [[NCManageDatabase shared] setAccountAutoUploadFileName:nil];
  173. [[NCManageDatabase shared] setAccountAutoUploadDirectory:nil urlBase:appDelegate.urlBase account:appDelegate.account];
  174. // verifichiamo che almeno uno dei servizi (foto video) siano attivi, in caso contrario attiviamo le foto
  175. if (activeAccount.autoUploadImage == NO && activeAccount.autoUploadVideo == NO) {
  176. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadImage" state:YES];
  177. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadVideo" state:YES];
  178. }
  179. [[NCAutoUpload shared] alignPhotoLibraryWithViewController:self];
  180. } else {
  181. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUpload" state:NO];
  182. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadFull" state:NO];
  183. // remove
  184. [[NCManageDatabase shared] clearMetadatasUploadWithAccount:appDelegate.account];
  185. }
  186. [self reloadForm];
  187. }
  188. if ([rowDescriptor.tag isEqualToString:@"autoUploadFull"]) {
  189. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  190. [[NCAutoUpload shared] autoUploadFullPhotosWithViewController:self log:@"Auto upload full"];
  191. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadFull" state:YES];
  192. } else {
  193. [[NCManageDatabase shared] clearMetadatasUploadWithAccount:appDelegate.account];
  194. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadFull" state:NO];
  195. }
  196. }
  197. if ([rowDescriptor.tag isEqualToString:@"autoUploadImage"]) {
  198. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadImage" state:[[rowDescriptor.value valueData] boolValue]];
  199. if ([[rowDescriptor.value valueData] boolValue] == YES) {
  200. [[NCAutoUpload shared] alignPhotoLibraryWithViewController:self];
  201. }
  202. }
  203. if ([rowDescriptor.tag isEqualToString:@"autoUploadWWAnPhoto"]) {
  204. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadWWAnPhoto" state:[[rowDescriptor.value valueData] boolValue]];
  205. }
  206. if ([rowDescriptor.tag isEqualToString:@"autoUploadVideo"]) {
  207. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadVideo" state:[[rowDescriptor.value valueData] boolValue]];
  208. if ([[rowDescriptor.value valueData] boolValue] == YES){
  209. [[NCAutoUpload shared] alignPhotoLibraryWithViewController:self];
  210. }
  211. }
  212. if ([rowDescriptor.tag isEqualToString:@"autoUploadWWAnVideo"]) {
  213. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadWWAnVideo" state:[[rowDescriptor.value valueData] boolValue]];
  214. }
  215. if ([rowDescriptor.tag isEqualToString:@"autoUploadCreateSubfolder"]) {
  216. [[NCManageDatabase shared] setAccountAutoUploadProperty:@"autoUploadCreateSubfolder" state:[[rowDescriptor.value valueData] boolValue]];
  217. }
  218. }
  219. - (void)done:(XLFormRowDescriptor *)sender
  220. {
  221. [self dismissViewControllerAnimated:YES completion:nil];
  222. }
  223. - (void)reloadForm
  224. {
  225. self.form.delegate = nil;
  226. XLFormRowDescriptor *rowAutoUpload = [self.form formRowWithTag:@"autoUpload"];
  227. XLFormRowDescriptor *rowAutoUploadImage = [self.form formRowWithTag:@"autoUploadImage"];
  228. XLFormRowDescriptor *rowAutoUploadWWAnPhoto = [self.form formRowWithTag:@"autoUploadWWAnPhoto"];
  229. XLFormRowDescriptor *rowAutoUploadVideo = [self.form formRowWithTag:@"autoUploadVideo"];
  230. XLFormRowDescriptor *rowAutoUploadWWAnVideo = [self.form formRowWithTag:@"autoUploadWWAnVideo"];
  231. XLFormRowDescriptor *rowAutoUploadFull = [self.form formRowWithTag:@"autoUploadFull"];
  232. XLFormRowDescriptor *rowAutoUploadCreateSubfolder = [self.form formRowWithTag:@"autoUploadCreateSubfolder"];
  233. XLFormRowDescriptor *rowAutoUploadFileName = [self.form formRowWithTag:@"autoUploadFileName"];
  234. // - STATUS ---------------------
  235. tableAccount *activeAccount = [[NCManageDatabase shared] getActiveAccount];
  236. if (activeAccount.autoUpload)
  237. [rowAutoUpload setValue:@1]; else [rowAutoUpload setValue:@0];
  238. if (activeAccount.autoUploadImage)
  239. [rowAutoUploadImage setValue:@1]; else [rowAutoUploadImage setValue:@0];
  240. if (activeAccount.autoUploadWWAnPhoto)
  241. [rowAutoUploadWWAnPhoto setValue:@1]; else [rowAutoUploadWWAnPhoto setValue:@0];
  242. if (activeAccount.autoUploadVideo)
  243. [rowAutoUploadVideo setValue:@1]; else [rowAutoUploadVideo setValue:@0];
  244. if (activeAccount.autoUploadWWAnVideo)
  245. [rowAutoUploadWWAnVideo setValue:@1]; else [rowAutoUploadWWAnVideo setValue:@0];
  246. if (activeAccount.autoUploadFull)
  247. [rowAutoUploadFull setValue:@1]; else [rowAutoUploadFull setValue:@0];
  248. if (activeAccount.autoUploadCreateSubfolder)
  249. [rowAutoUploadCreateSubfolder setValue:@1]; else [rowAutoUploadCreateSubfolder setValue:@0];
  250. // - HIDDEN --------------------------------------------------------------------------
  251. rowAutoUploadImage.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  252. rowAutoUploadWWAnPhoto.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  253. rowAutoUploadVideo.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  254. rowAutoUploadWWAnVideo.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  255. rowAutoUploadFull.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  256. rowAutoUploadCreateSubfolder.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  257. rowAutoUploadFileName.hidden = [NSString stringWithFormat:@"$%@==0", @"autoUpload"];
  258. // -----------------------------------------------------------------------------------
  259. [self.tableView reloadData];
  260. self.form.delegate = self;
  261. }
  262. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  263. return NCGlobal.shared.heightCellSettings;
  264. }
  265. - (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
  266. {
  267. tableAccount *activeAccount = [[NCManageDatabase shared] getActiveAccount];
  268. NSString *sectionName;
  269. NSString *autoUploadPath = [NSString stringWithFormat:@"%@/%@", [[NCManageDatabase shared] getAccountAutoUploadDirectoryWithUrlBase:appDelegate.urlBase account:appDelegate.account], [[NCManageDatabase shared] getAccountAutoUploadFileName]];
  270. switch (section)
  271. {
  272. case 0:
  273. sectionName = NSLocalizedString(@"_autoupload_description_", nil);
  274. break;
  275. case 1:
  276. if (activeAccount.autoUpload) sectionName = [NSString stringWithFormat:@"%@: %@", NSLocalizedString(@"_autoupload_current_folder_", nil), [CCUtility returnPathfromServerUrl:autoUploadPath urlBase:appDelegate.urlBase account:appDelegate.account]];
  277. else sectionName = @"";
  278. break;
  279. case 4:
  280. if (activeAccount.autoUpload) sectionName = NSLocalizedString(@"_autoupload_fullphotos_footer_", nil);
  281. else sectionName = @"";
  282. break;
  283. case 5:
  284. if (activeAccount.autoUpload) sectionName = NSLocalizedString(@"_autoupload_create_subfolder_footer_", nil);
  285. else sectionName = @"";
  286. break;
  287. case 6:
  288. if (activeAccount.autoUpload) sectionName = NSLocalizedString(@"_autoupload_filenamemask_footer_", nil);
  289. else sectionName = @"";
  290. break;
  291. }
  292. return sectionName;
  293. }
  294. - (void)dismissSelectWithServerUrl:(NSString *)serverUrl metadata:(tableMetadata *)metadata type:(NSString *)type items:(NSArray *)items overwrite:(BOOL)overwrite copy:(BOOL)copy move:(BOOL)move
  295. {
  296. if (serverUrl != nil) {
  297. if ([serverUrl isEqualToString:[[NCUtilityFileSystem shared] getHomeServerWithAccount:appDelegate.account]]) {
  298. NKError *error = [[NKError alloc] initWithErrorCode:NCGlobal.shared.errorInternalError errorDescription:@"_autoupload_error_select_folder_"];
  299. [[NCContentPresenter shared] messageNotification:@"_error_" error:error delay:[[NCGlobal shared] dismissAfterSecond] type:messageTypeError];
  300. return;
  301. }
  302. // Settings new folder Automatatic upload
  303. [[NCManageDatabase shared] setAccountAutoUploadFileName:serverUrl.lastPathComponent];
  304. [[NCManageDatabase shared] setAccountAutoUploadDirectory:[[NCUtilityFileSystem shared] deletingLastPathComponentWithAccount:appDelegate.account serverUrl:serverUrl] urlBase:appDelegate.urlBase account:appDelegate.account];
  305. // Reload
  306. [self.tableView reloadData];
  307. }
  308. }
  309. - (void)selectAutomaticUploadFolder
  310. {
  311. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCSelect" bundle:nil] instantiateInitialViewController];
  312. NCSelect *viewController = (NCSelect *)navigationController.topViewController;
  313. viewController.delegate = self;
  314. viewController.typeOfCommandView = 1;
  315. [self presentViewController:navigationController animated:YES completion:^{
  316. [self.tableView reloadData];
  317. }];
  318. }
  319. @end