NCShares.m 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. //
  2. // NCShares.m
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 05/06/17.
  6. // Copyright (c) 2017 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 "NCShares.h"
  24. #import "NCSharesCell.h"
  25. #import "AppDelegate.h"
  26. #import "NCBridgeSwift.h"
  27. @interface NCShares ()
  28. {
  29. AppDelegate *appDelegate;
  30. NSArray *_dataSource;
  31. }
  32. @end
  33. @implementation NCShares
  34. #pragma --------------------------------------------------------------------------------------------
  35. #pragma mark ===== Init =====
  36. #pragma --------------------------------------------------------------------------------------------
  37. - (id)initWithCoder:(NSCoder *)aDecoder
  38. {
  39. if (self = [super initWithCoder:aDecoder]) {
  40. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  41. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:@"NotificationProgressTask" object:nil];
  42. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:@"changeTheming" object:nil];
  43. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadDatasource) name:@"SharesReloadDatasource" object:nil];
  44. }
  45. return self;
  46. }
  47. - (void)viewDidLoad
  48. {
  49. [super viewDidLoad];
  50. // Custom Cell
  51. [self.tableView registerNib:[UINib nibWithNibName:@"NCSharesCell" bundle:nil] forCellReuseIdentifier:@"Cell"];
  52. // dataSource
  53. _dataSource = [NSMutableArray new];
  54. self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 1)];
  55. self.tableView.separatorColor = [NCBrandColor sharedInstance].seperator;
  56. self.tableView.emptyDataSetDelegate = self;
  57. self.tableView.emptyDataSetSource = self;
  58. self.tableView.delegate = self;
  59. // Title
  60. self.title = NSLocalizedString(@"_list_shares_", nil);
  61. }
  62. // Apparirà
  63. - (void)viewWillAppear:(BOOL)animated
  64. {
  65. [super viewWillAppear:animated];
  66. // Color
  67. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  68. [appDelegate aspectTabBar:self.tabBarController.tabBar hidden:NO];
  69. // Plus Button
  70. [appDelegate plusButtonVisibile:true];
  71. [self reloadDatasource];
  72. }
  73. - (void)changeTheming
  74. {
  75. if (self.isViewLoaded && self.view.window)
  76. [appDelegate changeTheming:self];
  77. // Reload Table View
  78. [self.tableView reloadData];
  79. }
  80. - (void)triggerProgressTask:(NSNotification *)notification
  81. {
  82. //NSDictionary *dict = notification.userInfo;
  83. //float progress = [[dict valueForKey:@"progress"] floatValue];
  84. }
  85. #pragma --------------------------------------------------------------------------------------------
  86. #pragma mark ==== DZNEmptyDataSetSource ====
  87. #pragma --------------------------------------------------------------------------------------------
  88. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  89. {
  90. return [UIColor whiteColor];
  91. }
  92. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  93. {
  94. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"sharesNoFiles"] multiplier:2 color:[NCBrandColor sharedInstance].graySoft];
  95. }
  96. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  97. {
  98. NSString *text = [NSString stringWithFormat:@"%@", NSLocalizedString(@"_list_shares_no_files_", nil)];
  99. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:[UIColor lightGrayColor]};
  100. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  101. }
  102. - (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
  103. {
  104. NSString *text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_tutorial_list_shares_view_", nil)];
  105. NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
  106. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  107. paragraph.alignment = NSTextAlignmentCenter;
  108. NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0], NSForegroundColorAttributeName: [UIColor lightGrayColor], NSParagraphStyleAttributeName: paragraph};
  109. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  110. }
  111. #pragma --------------------------------------------------------------------------------------------
  112. #pragma mark ==== Download Thumbnail ====
  113. #pragma --------------------------------------------------------------------------------------------
  114. - (void)downloadThumbnail:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl indexPath:(NSIndexPath *)indexPath
  115. {
  116. CGFloat width = [[NCUtility sharedInstance] getScreenWidthForPreview];
  117. CGFloat height = [[NCUtility sharedInstance] getScreenHeightForPreview];
  118. OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:nil metadataNet:nil withUser:appDelegate.activeUser withUserID:appDelegate.activeUserID withPassword:appDelegate.activePassword withUrl:appDelegate.activeUrl];
  119. [ocNetworking downloadPreviewWithMetadata:metadata serverUrl:serverUrl withWidth:width andHeight:height completion:^(NSString *message, NSInteger errorCode) {
  120. if (errorCode == 0 && [[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]]) {
  121. [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  122. }
  123. }];
  124. }
  125. #pragma --------------------------------------------------------------------------------------------
  126. #pragma mark ==== Read File <Delegate> ====
  127. #pragma --------------------------------------------------------------------------------------------
  128. - (void)readFileSuccessFailure:(CCMetadataNet *)metadataNet metadata:(tableMetadata *)metadata message:(NSString *)message errorCode:(NSInteger)errorCode
  129. {
  130. if (errorCode == 0) {
  131. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  132. [self reloadDatasource];
  133. } else {
  134. NSLog(@"[LOG] Read file failure error %d, %@", (int)errorCode, message);
  135. }
  136. }
  137. #pragma --------------------------------------------------------------------------------------------
  138. #pragma mark ==== unShare <Delegate> ====
  139. #pragma --------------------------------------------------------------------------------------------
  140. - (void)unShareSuccess:(CCMetadataNet *)metadataNet
  141. {
  142. NSArray *result = [[NCManageDatabase sharedInstance] unShare:metadataNet.share fileName:metadataNet.fileName serverUrl:metadataNet.serverUrl sharesLink:appDelegate.sharesLink sharesUserAndGroup:appDelegate.sharesUserAndGroup];
  143. appDelegate.sharesLink = result[0];
  144. appDelegate.sharesUserAndGroup = result[1];
  145. [self reloadDatasource];
  146. }
  147. - (void)removeShares:(tableMetadata *)metadata tableShare:(tableShare *)tableShare
  148. {
  149. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  150. metadataNet.action = actionUnShare;
  151. metadataNet.fileID = metadata.fileID;
  152. metadataNet.fileName = metadata.fileName;
  153. metadataNet.fileNameView = metadata.fileNameView;
  154. metadataNet.selector = selectorUnshare;
  155. metadataNet.serverUrl = tableShare.serverUrl;
  156. // Unshare Link
  157. if (tableShare.shareLink.length > 0) {
  158. metadataNet.share = tableShare.shareLink;
  159. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  160. }
  161. // Unshare User&Group
  162. NSArray *shareUserAndGroup = [tableShare.shareUserAndGroup componentsSeparatedByString:@","];
  163. for (NSString *share in shareUserAndGroup) {
  164. metadataNet.share = [share stringByReplacingOccurrencesOfString:@" " withString:@""];
  165. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  166. }
  167. }
  168. #pragma mark -
  169. #pragma --------------------------------------------------------------------------------------------
  170. #pragma mark ===== Swipe Tablet -> menu =====
  171. #pragma --------------------------------------------------------------------------------------------
  172. - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
  173. {
  174. return UITableViewCellEditingStyleDelete;
  175. }
  176. - (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
  177. {
  178. return NSLocalizedString(@"_delete_", nil);
  179. }
  180. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
  181. {
  182. tableMetadata *metadata;
  183. if (indexPath.row+1 <= _dataSource.count) {
  184. tableShare *table = [_dataSource objectAtIndex:indexPath.row];
  185. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:table.serverUrl];
  186. if (directoryID)
  187. metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND fileName = %@", directoryID, table.fileName]];
  188. }
  189. if (metadata) return YES;
  190. else return NO;
  191. }
  192. - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
  193. {
  194. if (editingStyle == UITableViewCellEditingStyleDelete) {
  195. tableShare *table = [_dataSource objectAtIndex:indexPath.row];
  196. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:table.serverUrl];
  197. if (directoryID) {
  198. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND fileName == %@", directoryID, table.fileName]];
  199. [self removeShares:metadata tableShare:table];
  200. }
  201. }
  202. }
  203. #pragma --------------------------------------------------------------------------------------------
  204. #pragma mark ==== Table ====
  205. #pragma --------------------------------------------------------------------------------------------
  206. - (void)readFolder:(NSString *)serverUrl
  207. {
  208. [self reloadDatasource];
  209. }
  210. - (void)reloadDatasource
  211. {
  212. _dataSource = [[NCManageDatabase sharedInstance] getTableShares];
  213. [self.tableView reloadData];
  214. }
  215. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  216. {
  217. return 60;
  218. }
  219. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  220. {
  221. return 1;
  222. }
  223. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  224. {
  225. return [_dataSource count];
  226. }
  227. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  228. {
  229. NCSharesCell *cell = (NCSharesCell *)[tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
  230. tableMetadata *metadata;
  231. // separator
  232. cell.separatorInset = UIEdgeInsetsMake(0.f, 60.f, 0.f, 0.f);
  233. // Initialize
  234. cell.statusImageView.image = nil;
  235. cell.offlineImageView.image = nil;
  236. // change color selection
  237. UIView *selectionColor = [[UIView alloc] init];
  238. selectionColor.backgroundColor = [[NCBrandColor sharedInstance] getColorSelectBackgrond];
  239. cell.selectedBackgroundView = selectionColor;
  240. tableShare *table = [_dataSource objectAtIndex:indexPath.row];
  241. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:table.serverUrl];
  242. if (!directoryID)
  243. return cell;
  244. if (directoryID.length > 0)
  245. metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND fileName == %@", directoryID, table.fileName]];
  246. if (metadata) {
  247. if (metadata.directory) {
  248. cell.fileImageView.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  249. } else {
  250. cell.fileImageView.image = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  251. if (cell.fileImageView.image == nil) {
  252. if (metadata.thumbnailExists && ![CCUtility fileProviderStorageIconExists:metadata.fileID fileNameView:metadata.fileNameView]) {
  253. [self downloadThumbnail:metadata serverUrl:table.serverUrl indexPath:indexPath];
  254. } else {
  255. cell.fileImageView.image = [UIImage imageNamed:metadata.iconName];
  256. }
  257. }
  258. }
  259. } else {
  260. cell.fileImageView.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"file"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  261. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  262. metadataNet.action = actionReadFile;
  263. metadataNet.fileName = table.fileName;
  264. metadataNet.serverUrl = table.serverUrl;
  265. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  266. }
  267. cell.labelTitle.text = table.fileName;
  268. if ([table.serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]])
  269. cell.labelInfoFile.text = @"/";
  270. else
  271. cell.labelInfoFile.text = [table.serverUrl stringByReplacingOccurrencesOfString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl] withString:@""];
  272. return cell;
  273. }
  274. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  275. {
  276. // deselect row
  277. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  278. tableMetadata *metadata;
  279. tableShare *table = [_dataSource objectAtIndex:indexPath.row];
  280. if (table.serverUrl) {
  281. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:table.serverUrl];
  282. if (directoryID)
  283. metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND fileName == %@", directoryID, table.fileName]];
  284. if (metadata) {
  285. [appDelegate.activeMain openWindowShare:metadata];
  286. }
  287. }
  288. }
  289. @end