CCTransfers.m 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. //
  2. // CCTransfers.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 12/04/17.
  6. // Copyright (c) 2017 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 "CCTransfers.h"
  24. #import "AppDelegate.h"
  25. #import "CCMain.h"
  26. #import "CCSection.h"
  27. #import "NCBridgeSwift.h"
  28. #define download 1
  29. #define upload 2
  30. #define uploadwwan 3
  31. @interface CCTransfers ()
  32. {
  33. AppDelegate *appDelegate;
  34. // Datasource
  35. CCSectionDataSourceMetadata *sectionDataSource;
  36. tableMetadata *metadataForRecognizer;
  37. }
  38. @end
  39. @implementation CCTransfers
  40. #pragma --------------------------------------------------------------------------------------------
  41. #pragma mark ===== Init =====
  42. #pragma --------------------------------------------------------------------------------------------
  43. - (id)initWithCoder:(NSCoder *)aDecoder
  44. {
  45. if (self = [super initWithCoder:aDecoder]) {
  46. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  47. appDelegate.activeTransfers = self;
  48. }
  49. return self;
  50. }
  51. - (void)viewDidLoad {
  52. [super viewDidLoad];
  53. self.title = NSLocalizedString(@"_transfers_", nil);
  54. // Custom Cell
  55. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellMain" bundle:nil] forCellReuseIdentifier:@"CellMain"];
  56. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellMainTransfer" bundle:nil] forCellReuseIdentifier:@"CellMainTransfer"];
  57. self.tableView.delegate = self;
  58. self.tableView.dataSource = self;
  59. self.tableView.emptyDataSetDelegate = self;
  60. self.tableView.emptyDataSetSource = self;
  61. self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  62. self.tableView.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
  63. // long press recognizer TableView
  64. UILongPressGestureRecognizer* longPressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(onLongPressTableView:)];
  65. [self.tableView addGestureRecognizer:longPressRecognizer];
  66. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:k_notificationCenter_progressTask object:nil];
  67. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadDatasource) name:k_notificationCenter_uploadedFile object:nil];
  68. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadDatasource) name:k_notificationCenter_downloadedFile object:nil];
  69. [self changeTheming];
  70. }
  71. - (void)viewDidAppear:(BOOL)animated
  72. {
  73. [super viewDidAppear:animated];
  74. [self reloadDatasource];
  75. }
  76. - (void)changeTheming
  77. {
  78. [appDelegate changeTheming:self tableView:self.tableView collectionView:nil form:false];
  79. }
  80. #pragma --------------------------------------------------------------------------------------------
  81. #pragma mark ==== DZNEmptyDataSetSource ====
  82. #pragma --------------------------------------------------------------------------------------------
  83. - (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView
  84. {
  85. CGFloat height = self.tabBarController.tabBar.frame.size.height;
  86. return -height;
  87. }
  88. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  89. {
  90. return NCBrandColor.sharedInstance.backgroundView;
  91. }
  92. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  93. {
  94. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"load"] width:300 height:300 color:NCBrandColor.sharedInstance.graySoft];
  95. }
  96. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  97. {
  98. NSString *text = [NSString stringWithFormat:@"%@", NSLocalizedString(@"_no_transfer_", 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:@"%@", NSLocalizedString(@"_no_transfer_sub_", 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 ===== Long Press Recognized Table View =====
  113. #pragma --------------------------------------------------------------------------------------------
  114. - (void)onLongPressTableView:(UILongPressGestureRecognizer*)recognizer
  115. {
  116. if (recognizer.state == UIGestureRecognizerStateBegan) {
  117. CGPoint touchPoint = [recognizer locationInView:self.tableView];
  118. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touchPoint];
  119. metadataForRecognizer = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  120. [self becomeFirstResponder];
  121. UIMenuController *menuController = [UIMenuController sharedMenuController];
  122. UIMenuItem *startTaskItem = [[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_force_start_", nil) action:@selector(startTask:)];
  123. [menuController setMenuItems:[NSArray arrayWithObjects:startTaskItem, nil]];
  124. [menuController setTargetRect:CGRectMake(touchPoint.x, touchPoint.y, 0.0f, 0.0f) inView:self.tableView];
  125. [menuController setMenuVisible:YES animated:YES];
  126. }
  127. }
  128. - (BOOL)canBecomeFirstResponder
  129. {
  130. return YES;
  131. }
  132. - (BOOL)canPerformAction:(SEL)action withSender:(id)sender
  133. {
  134. if (@selector(startTask:) != action) return NO;
  135. if (metadataForRecognizer == nil) return NO;
  136. // Detect E2EE
  137. NSString *saveserverUrl = @"";
  138. NSArray *metadatasForE2EE = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"status != %d", k_metadataStatusNormal] page:0 limit:0 sorted:@"serverUrl" ascending:NO];
  139. for (tableMetadata *metadata in metadatasForE2EE) {
  140. if (![saveserverUrl isEqualToString:metadata.serverUrl]) {
  141. saveserverUrl = metadata.serverUrl;
  142. if ([[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND e2eEncrypted == 1", metadata.account, metadata.serverUrl]] != nil) {
  143. return NO;
  144. }
  145. }
  146. }
  147. if ((metadataForRecognizer.status == k_metadataStatusWaitUpload || metadataForRecognizer.status == k_metadataStatusInUpload || metadataForRecognizer.status == k_metadataStatusUploading)) {
  148. return YES;
  149. }
  150. return NO;
  151. }
  152. #pragma --------------------------------------------------------------------------------------------
  153. #pragma mark - ===== Progress & Task Button =====
  154. #pragma --------------------------------------------------------------------------------------------
  155. - (void)triggerProgressTask:(NSNotification *)notification
  156. {
  157. if (sectionDataSource.ocIdIndexPath != nil) {
  158. [[NCMainCommon shared] triggerProgressTask:notification sectionDataSourceocIdIndexPath:sectionDataSource.ocIdIndexPath tableView:self.tableView viewController:self serverUrlViewController:nil];
  159. }
  160. }
  161. - (void)cancelTaskButton:(id)sender withEvent:(UIEvent *)event
  162. {
  163. UITouch * touch = [[event allTouches] anyObject];
  164. CGPoint location = [touch locationInView:self.tableView];
  165. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  166. if (indexPath) {
  167. NSString *ocId = [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]] objectAtIndex:indexPath.row];
  168. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId = %@", ocId]];
  169. if (metadata)
  170. [[NCMainCommon shared] cancelTransferMetadata:metadata uploadStatusForcedStart:false];
  171. }
  172. }
  173. - (void)cancelAllTask:(id)sender
  174. {
  175. CGPoint location = [sender locationInView:self.tableView];
  176. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  177. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  178. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_all_task_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  179. [[NCMainCommon shared] cancelAllTransfer];
  180. }]];
  181. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) { }]];
  182. alertController.popoverPresentationController.sourceView = self.tableView;
  183. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  184. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  185. [alertController.view layoutIfNeeded];
  186. [self presentViewController:alertController animated:YES completion:nil];
  187. }
  188. - (void)startTask:(id)sender
  189. {
  190. tableMetadata *metadata = [[NCManageDatabase sharedInstance] copyObjectWithMetadata:metadataForRecognizer];
  191. metadata.status = k_metadataStatusInUpload;
  192. metadata.session = NCCommunicationCommon.shared.sessionIdentifierUpload;
  193. [[NCManageDatabase sharedInstance] addMetadata:metadata];
  194. [[NCNetworking shared] uploadWithMetadata:metadata completion:^(NSInteger errorCode, NSString *errorDescription) { }];
  195. }
  196. #pragma --------------------------------------------------------------------------------------------
  197. #pragma mark - ==== Datasource ====
  198. #pragma --------------------------------------------------------------------------------------------
  199. - (void)reloadDatasource
  200. {
  201. // test
  202. if (appDelegate.account.length == 0 || self.view.window == nil) {
  203. return;
  204. }
  205. NSArray *recordsTableMetadata = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"(session CONTAINS 'upload') OR (session CONTAINS 'download')"] page:1 limit:100 sorted:@"sessionTaskIdentifier" ascending:NO];
  206. CCSectionDataSourceMetadata *sectionDataSourceTemp = [CCSectionDataSourceMetadata new];
  207. sectionDataSourceTemp = [CCSectionMetadata creataDataSourseSectionMetadata:recordsTableMetadata listProgressMetadata:appDelegate.listProgressMetadata groupBy:@"session" filterTypeFileImage:NO filterTypeFileVideo:NO filterLivePhoto:NO sort:@"fileName" ascending:YES directoryOnTop:NO account:appDelegate.account];
  208. sectionDataSource = sectionDataSourceTemp;
  209. [self.tableView reloadData];
  210. }
  211. #pragma --------------------------------------------------------------------------------------------
  212. #pragma mark - ==== Table ====
  213. #pragma --------------------------------------------------------------------------------------------
  214. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  215. {
  216. return 60;
  217. }
  218. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  219. {
  220. return [[sectionDataSource.sectionArrayRow allKeys] count];
  221. }
  222. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  223. {
  224. return [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]] count];
  225. }
  226. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  227. {
  228. return 13.0f;
  229. }
  230. -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  231. {
  232. UIVisualEffectView *visualEffectView;
  233. NSString *titleSection, *numberTitle;
  234. NSInteger typeOfSession = 0;
  235. NSString *sessionDownload = [[NCCommunicationCommon shared] sessionIdentifierDownload];
  236. NSInteger queueDownload = [[[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"session == %@", sessionDownload] page:0 limit:0 sorted:@"fileName" ascending:NO] count];
  237. NSInteger queueUpload = [[[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"session == %@", NCNetworking.shared.sessionIdentifierBackground] page:0 limit:0 sorted:@"fileName" ascending:NO] count];
  238. NSInteger queueUploadWWan = [[[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"session == %@", NCNetworking.shared.sessionIdentifierBackgroundWWan] page:0 limit:0 sorted:@"fileName" ascending:NO] count];
  239. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSString class]]) titleSection = [sectionDataSource.sections objectAtIndex:section];
  240. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSDate class]]) titleSection = [CCUtility getTitleSectionDate:[sectionDataSource.sections objectAtIndex:section]];
  241. NSArray *metadatas = [sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]];
  242. NSUInteger rowsCount = [metadatas count];
  243. visualEffectView = [[UIVisualEffectView alloc] init];
  244. visualEffectView.backgroundColor = [UIColor clearColor];
  245. // title section
  246. if ([titleSection isEqualToString:@"_none_"]) {
  247. titleSection = @"";
  248. } else if ([titleSection containsString:@"download"] && ![titleSection containsString:@"wwan"]) {
  249. typeOfSession = download;
  250. titleSection = NSLocalizedString(@"_title_section_download_",nil);
  251. } else if ([titleSection containsString:@"upload"] && ![titleSection containsString:@"wwan"]) {
  252. typeOfSession = upload;
  253. titleSection = NSLocalizedString(@"_title_section_upload_",nil);
  254. } else if ([titleSection containsString:@"upload"] && [titleSection containsString:@"wwan"]) {
  255. typeOfSession = uploadwwan;
  256. titleSection = [NSLocalizedString(@"_title_section_upload_",nil) stringByAppendingString:@" Wi-Fi"];
  257. } else {
  258. titleSection = NSLocalizedString(titleSection,nil);
  259. }
  260. // title label on left
  261. UILabel *titleLabel=[[UILabel alloc]initWithFrame:CGRectMake(8, 3, 0, 13)];
  262. titleLabel.textColor = [UIColor blackColor];
  263. titleLabel.font = [UIFont systemFontOfSize:9];
  264. titleLabel.textAlignment = NSTextAlignmentLeft;
  265. titleLabel.text = titleSection;
  266. titleLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  267. [visualEffectView.contentView addSubview:titleLabel];
  268. // element (s) on right
  269. UILabel *elementLabel=[[UILabel alloc]initWithFrame:CGRectMake(-8, 3, 0, 13)];
  270. elementLabel.textColor = [UIColor blackColor];
  271. elementLabel.font = [UIFont systemFontOfSize:9];
  272. elementLabel.textAlignment = NSTextAlignmentRight;
  273. elementLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  274. if ((typeOfSession == download && queueDownload > rowsCount) || (typeOfSession == upload && queueUpload > rowsCount) || (typeOfSession == uploadwwan && queueUploadWWan > rowsCount)) {
  275. numberTitle = [NSString stringWithFormat:@"%lu+", (unsigned long)rowsCount];
  276. } else {
  277. numberTitle = [NSString stringWithFormat:@"%lu", (unsigned long)rowsCount];
  278. }
  279. if (rowsCount > 1)
  280. elementLabel.text = [NSString stringWithFormat:@"%@ %@", numberTitle, NSLocalizedString(@"_elements_",nil)];
  281. else
  282. elementLabel.text = [NSString stringWithFormat:@"%@ %@", numberTitle, NSLocalizedString(@"_element_",nil)];
  283. // view
  284. [visualEffectView.contentView addSubview:elementLabel];
  285. return visualEffectView;
  286. }
  287. - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
  288. {
  289. NSString *titleSection;
  290. NSString *element_s;
  291. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSString class]]) titleSection = [sectionDataSource.sections objectAtIndex:section];
  292. // Prepare view for title in footer
  293. UIView *view = [[UIView alloc] initWithFrame:CGRectZero];
  294. UILabel *titleFooterLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 18)];
  295. titleFooterLabel.textColor = [UIColor blackColor];
  296. titleFooterLabel.font = [UIFont systemFontOfSize:12];
  297. titleFooterLabel.textAlignment = NSTextAlignmentCenter;
  298. // Footer Download
  299. if ([titleSection containsString:@"download"] && titleSection != nil) {
  300. NSString *session = [[NCCommunicationCommon shared] sessionIdentifierDownload];
  301. NSInteger queueDownload = [[[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"session == %@", session] page:0 limit:0 sorted:@"fileName" ascending:NO] count];
  302. // element or elements ?
  303. if (queueDownload > 1) element_s = NSLocalizedString(@"_elements_",nil);
  304. else element_s = NSLocalizedString(@"_element_",nil);
  305. // Num record to upload
  306. NSMutableAttributedString *stringFooter= [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:NSLocalizedString(@"_tite_footer_download_", nil), queueDownload, element_s]];
  307. titleFooterLabel.attributedText = stringFooter;
  308. [view addSubview:titleFooterLabel];
  309. return view;
  310. }
  311. // Footer Upload
  312. if ([titleSection containsString:@"upload"] && ![titleSection containsString:@"wwan"] && titleSection != nil) {
  313. NSInteger queueUpload = [[[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"session == %@", NCNetworking.shared.sessionIdentifierBackground] page:0 limit:0 sorted:@"fileName" ascending:NO] count];
  314. // element or elements ?
  315. if (queueUpload > 1) element_s = NSLocalizedString(@"_elements_",nil);
  316. else element_s = NSLocalizedString(@"_element_",nil);
  317. // Num record to upload
  318. NSMutableAttributedString *stringFooter= [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:NSLocalizedString(@"_tite_footer_upload_", nil), queueUpload, element_s]];
  319. titleFooterLabel.attributedText = stringFooter;
  320. [view addSubview:titleFooterLabel];
  321. return view;
  322. }
  323. // Footer Upload WWAN
  324. if ([titleSection containsString:@"upload"] && [titleSection containsString:@"wwan"] && titleSection != nil) {
  325. NSInteger queueUploadWWan = [[[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"session == %@", NCNetworking.shared.sessionIdentifierBackgroundWWan] page:0 limit:0 sorted:@"fileName" ascending:NO] count];
  326. // element or elements ?
  327. if (queueUploadWWan > 1) element_s = NSLocalizedString(@"_elements_",nil);
  328. else element_s = NSLocalizedString(@"_element_",nil);
  329. // Add the symbol WiFi and Num record
  330. NSTextAttachment *attachment = [[NSTextAttachment alloc] init];
  331. attachment.image = [UIImage imageNamed:@"WiFiSmall"];
  332. NSAttributedString *attachmentString = [NSAttributedString attributedStringWithAttachment:attachment];
  333. NSMutableAttributedString *stringFooter= [[NSMutableAttributedString alloc] initWithString:[@" " stringByAppendingString:[NSString stringWithFormat:NSLocalizedString(@"_tite_footer_upload_wwan_", nil), queueUploadWWan,element_s]]];
  334. [stringFooter insertAttributedString:attachmentString atIndex:0];
  335. titleFooterLabel.attributedText = stringFooter;
  336. [view addSubview:titleFooterLabel];
  337. return view;
  338. }
  339. return nil;
  340. }
  341. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
  342. {
  343. //NSString *titleSection;
  344. //if ([[_sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSString class]])
  345. // titleSection = [_sectionDataSource.sections objectAtIndex:section];
  346. //if ([titleSection rangeOfString:@"upload"].location != NSNotFound && [titleSection rangeOfString:@"wwan"].location != NSNotFound && titleSection != nil) return 18.0f;
  347. //else return 0.0f;
  348. return 18.0f;
  349. }
  350. - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
  351. {
  352. return [sectionDataSource.sections indexOfObject:title];
  353. }
  354. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  355. {
  356. NSString *ocId = [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:indexPath.section]] objectAtIndex:indexPath.row];
  357. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:ocId];
  358. if (metadata == nil || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata]) {
  359. return [CCCellMainTransfer new];
  360. }
  361. UITableViewCell *cell = [[NCMainCommon shared] cellForRowAtIndexPath:indexPath tableView:tableView metadata:metadata metadataFolder:nil serverUrl:metadata.serverUrl autoUploadFileName:@"" autoUploadDirectory:@"" tableShare:nil livePhoto:false];
  362. // TRANSFER
  363. if ([cell isKindOfClass:[CCCellMainTransfer class]]) {
  364. // gesture Transfer
  365. [((CCCellMainTransfer *)cell).transferButton.stopButton addTarget:self action:@selector(cancelTaskButton:withEvent:) forControlEvents:UIControlEventTouchUpInside];
  366. UILongPressGestureRecognizer *stopLongGesture = [UILongPressGestureRecognizer new];
  367. [stopLongGesture addTarget:self action:@selector(cancelAllTask:)];
  368. [((CCCellMainTransfer *)cell).transferButton.stopButton addGestureRecognizer:stopLongGesture];
  369. }
  370. return cell;
  371. }
  372. - (BOOL)indexPathIsValid:(NSIndexPath *)indexPath
  373. {
  374. if (!indexPath)
  375. return NO;
  376. NSInteger section = indexPath.section;
  377. NSInteger row = indexPath.row;
  378. NSInteger lastSectionIndex = [self numberOfSectionsInTableView:self.tableView] - 1;
  379. if (section > lastSectionIndex || lastSectionIndex < 0)
  380. return NO;
  381. NSInteger rowCount = [self.tableView numberOfRowsInSection:indexPath.section] - 1;
  382. if (rowCount < 0)
  383. return NO;
  384. return row <= rowCount;
  385. }
  386. @end