CCMain.m 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286
  1. //
  2. // CCMain.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 04/09/14.
  6. // Copyright (c) 2014 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 "CCMain.h"
  24. #import "AppDelegate.h"
  25. #import "NCAutoUpload.h"
  26. #import "NCBridgeSwift.h"
  27. #import "PKDownloadButton.h"
  28. @interface CCMain () <UITextViewDelegate, MGSwipeTableCellDelegate, NCSelectDelegate, UITextFieldDelegate, UIAdaptivePresentationControllerDelegate>
  29. {
  30. AppDelegate *appDelegate;
  31. BOOL _isRoot;
  32. BOOL _isViewDidLoad;
  33. UIImageView *_imageTitleHome;
  34. NSUInteger _failedAttempts;
  35. NSDate *_lockUntilDate;
  36. UIRefreshControl *refreshControl;
  37. CCHud *_hud;
  38. // Datasource
  39. CCSectionDataSourceMetadata *sectionDataSource;
  40. // Search
  41. NSString *_searchFileName;
  42. NSMutableArray *_searchResultMetadatas;
  43. NSString *_noFilesSearchTitle;
  44. NSString *_noFilesSearchDescription;
  45. NSTimer *_timerWaitInput;
  46. // Automatic Upload Folder
  47. NSString *_autoUploadFileName;
  48. NSString *_autoUploadDirectory;
  49. // Folder
  50. BOOL _loadingFolder;
  51. tableMetadata *_metadataFolder;
  52. CGFloat heightRichWorkspace;
  53. CGFloat heightSearchBar;
  54. //
  55. NSMutableArray *selectOcId;
  56. BOOL livePhoto;
  57. }
  58. @end
  59. @implementation CCMain
  60. #pragma --------------------------------------------------------------------------------------------
  61. #pragma mark ===== Init =====
  62. #pragma --------------------------------------------------------------------------------------------
  63. - (id)initWithCoder:(NSCoder *)aDecoder
  64. {
  65. if (self = [super initWithCoder:aDecoder]) {
  66. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  67. appDelegate.activeMain = self;
  68. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(initializeMain:) name:k_notificationCenter_initializeMain object:nil];
  69. }
  70. return self;
  71. }
  72. #pragma --------------------------------------------------------------------------------------------
  73. #pragma mark ===== View =====
  74. #pragma --------------------------------------------------------------------------------------------
  75. - (void)viewDidLoad
  76. {
  77. [super viewDidLoad];
  78. // init object
  79. self.metadata = [tableMetadata new];
  80. _hud = [[CCHud alloc] initWithView:[[[UIApplication sharedApplication] delegate] window]];
  81. _isViewDidLoad = YES;
  82. _searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
  83. _searchResultMetadatas = [NSMutableArray new];
  84. _searchFileName = @"";
  85. _noFilesSearchTitle = @"";
  86. _noFilesSearchDescription = @"";
  87. _cellFavouriteImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] width:50 height:50 color:[UIColor whiteColor]];
  88. _cellTrashImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"trash"] width:50 height:50 color:[UIColor whiteColor]];
  89. selectOcId = [NSMutableArray new];
  90. // delegate
  91. self.tableView.tableFooterView = [UIView new];
  92. self.tableView.emptyDataSetDelegate = self;
  93. self.tableView.emptyDataSetSource = self;
  94. self.searchController.delegate = self;
  95. self.searchController.searchBar.delegate = self;
  96. // Notification
  97. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadDatasource:) name:k_notificationCenter_reloadDataSource object:nil];
  98. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(setTitle) name:k_notificationCenter_setTitleMain object:nil];
  99. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:k_notificationCenter_changeTheming object:nil];
  100. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deleteFile:) name:k_notificationCenter_deleteFile object:nil];
  101. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(favoriteFile:) name:k_notificationCenter_favoriteFile object:nil];
  102. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moveFile:) name:k_notificationCenter_moveFile object:nil];
  103. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(copyFile:) name:k_notificationCenter_copyFile object:nil];
  104. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(createFolder:) name:k_notificationCenter_createFolder object:nil];
  105. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadDatasourceTransfer:) name:k_notificationCenter_renameFile object:nil];
  106. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadDatasourceTransfer:) name:k_notificationCenter_downloadStartFile object:nil];
  107. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadDatasourceTransfer:) name:k_notificationCenter_downloadedFile object:nil];
  108. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadDatasourceTransfer:) name:k_notificationCenter_downloadCancelFile object:nil];
  109. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadDatasourceTransfer:) name:k_notificationCenter_uploadStartFile object:nil];
  110. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadDatasourceTransfer:) name:k_notificationCenter_uploadedFile object:nil];
  111. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadDatasourceTransfer:) name:k_notificationCenter_uploadCancelFile object:nil];
  112. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:k_notificationCenter_progressTask object:nil];
  113. // Search
  114. self.definesPresentationContext = YES;
  115. self.searchController.searchResultsUpdater = self;
  116. self.searchController.dimsBackgroundDuringPresentation = NO;
  117. UIButton *searchButton = self.searchController.searchBar.subviews.firstObject.subviews.lastObject;
  118. if (searchButton && [searchButton isKindOfClass:[UIButton class]]) {
  119. [searchButton setTitleColor:NCBrandColor.sharedInstance.brandElement forState:UIControlStateNormal];
  120. }
  121. UITextField *searchTextField = [self.searchController.searchBar valueForKey:@"searchField"];
  122. if (searchTextField && [searchTextField isKindOfClass:[UITextField class]]) {
  123. searchTextField.textColor = NCBrandColor.sharedInstance.textView;
  124. }
  125. // Load Rich Workspace
  126. self.viewRichWorkspace = [[[NSBundle mainBundle] loadNibNamed:@"NCRichWorkspace" owner:self options:nil] firstObject];
  127. UITapGestureRecognizer *viewRichWorkspaceTapped = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(viewRichWorkspaceTapAction:)];
  128. viewRichWorkspaceTapped.numberOfTapsRequired = 1;
  129. viewRichWorkspaceTapped.delegate = self;
  130. [self.viewRichWorkspace.richView addGestureRecognizer:viewRichWorkspaceTapped];
  131. self.sortButton = self.viewRichWorkspace.sortButton;
  132. heightSearchBar = self.viewRichWorkspace.topView.frame.size.height;
  133. [self.sortButton setTitleColor:NCBrandColor.sharedInstance.brandElement forState:UIControlStateNormal];
  134. [self.sortButton addTarget:self action:@selector(toggleSortMenu) forControlEvents:UIControlEventTouchUpInside];
  135. heightRichWorkspace = UIScreen.mainScreen.bounds.size.height / 4 + heightSearchBar;
  136. [self.viewRichWorkspace setFrame:CGRectMake(0, 0, self.tableView.frame.size.width, heightRichWorkspace)];
  137. self.navigationItem.searchController = self.searchController;
  138. self.searchController.hidesNavigationBarDuringPresentation = true;
  139. self.navigationController.navigationBar.prefersLargeTitles = true;
  140. self.navigationItem.largeTitleDisplayMode = UINavigationItemLargeTitleDisplayModeAlways;
  141. // Table Header View
  142. [self.tableView setTableHeaderView:self.viewRichWorkspace];
  143. // Register cell
  144. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellMain" bundle:nil] forCellReuseIdentifier:@"CellMain"];
  145. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellMainTransfer" bundle:nil] forCellReuseIdentifier:@"CellMainTransfer"];
  146. self.tableView.contentInset = UIEdgeInsetsMake(0, 0, 35, 0);
  147. // long press recognizer TableView
  148. UILongPressGestureRecognizer* longPressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(onLongPressTableView:)];
  149. [self.tableView addGestureRecognizer:longPressRecognizer];
  150. // Pull-to-Refresh
  151. [self createRefreshControl];
  152. // Register for 3D Touch Previewing if available
  153. if ([self.traitCollection respondsToSelector:@selector(forceTouchCapability)] && (self.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable)) {
  154. [self registerForPreviewingWithDelegate:self sourceView:self.view];
  155. }
  156. // if this is not Main (the Main uses inizializeMain)
  157. if (_isRoot == NO && appDelegate.account.length > 0) {
  158. // Read (File) Folder
  159. [self readFileReloadFolder];
  160. }
  161. // Title
  162. [self setTitle];
  163. // changeTheming
  164. [self changeTheming];
  165. }
  166. - (void)willDismissSearchController:(UISearchController *)searchController
  167. {
  168. [self.tableView scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:YES];
  169. }
  170. - (void)willPresentSearchController:(UISearchController *)searchController
  171. {
  172. [self updateNavBarShadow:self.tableView force:true];
  173. }
  174. - (void)viewWillAppear:(BOOL)animated
  175. {
  176. [super viewWillAppear:animated];
  177. [self updateNavBarShadow:self.tableView force:false];
  178. if(_isViewDidLoad && _isRoot) {
  179. self.navigationItem.hidesSearchBarWhenScrolling = false;
  180. [self.navigationController.navigationBar sizeToFit];
  181. }
  182. // test
  183. if (appDelegate.account.length == 0)
  184. return;
  185. if (_isSelectedMode)
  186. [self setUINavigationBarSelected];
  187. else
  188. [self setUINavigationBarDefault];
  189. // If not editing mode remove _selectedocIds
  190. if (!self.tableView.editing)
  191. [selectOcId removeAllObjects];
  192. // Check server URL "/"
  193. if (self.navigationController.viewControllers.firstObject == self && self.serverUrl == nil) {
  194. self.serverUrl = [[NCUtility shared] getHomeServerWithUrlBase:appDelegate.urlBase account:appDelegate.account];
  195. }
  196. // RichWorkspace
  197. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.account, self.serverUrl]];
  198. if (![self.richWorkspaceText isEqualToString:directory.richWorkspace]) {
  199. self.richWorkspaceText = directory.richWorkspace;
  200. [self setTableViewHeader];
  201. }
  202. // Query data source
  203. if (self.searchController.isActive == false) {
  204. [self reloadDatasource:self.serverUrl ocId:nil];
  205. }
  206. appDelegate.activeServerUrl = self.serverUrl;
  207. }
  208. - (void)viewDidAppear:(BOOL)animated
  209. {
  210. [super viewDidAppear:animated];
  211. if(_isViewDidLoad && _isRoot) {
  212. self.navigationItem.hidesSearchBarWhenScrolling = true;
  213. }
  214. // Active Main
  215. appDelegate.activeMain = self;
  216. // Test viewDidLoad
  217. if (_isViewDidLoad) {
  218. _isViewDidLoad = NO;
  219. } else {
  220. if (appDelegate.account.length > 0 && [selectOcId count] == 0) {
  221. // Read (file) Folder
  222. [self readFileReloadFolder];
  223. }
  224. }
  225. // Title
  226. [self setTitle];
  227. }
  228. - (void)viewWillDisappear:(BOOL)animated
  229. {
  230. [super viewWillDisappear:animated];
  231. }
  232. - (void) viewDidLayoutSubviews
  233. {
  234. [super viewDidLayoutSubviews];
  235. [self setTableViewHeader];
  236. }
  237. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  238. {
  239. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  240. [coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  241. [self.tableView beginUpdates];
  242. [self.tableView endUpdates];
  243. [self setTableViewHeader];
  244. } completion:^(id<UIViewControllerTransitionCoordinatorContext> context){
  245. [self updateNavBarShadow:self.tableView force:false];
  246. }];
  247. }
  248. - (void)presentationControllerWillDismiss:(UIPresentationController *)presentationController
  249. {
  250. [self viewDidAppear:true];
  251. }
  252. - (BOOL)prefersStatusBarHidden
  253. {
  254. return NO;
  255. }
  256. // detect scroll for remove keyboard in search mode
  257. - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
  258. {
  259. if (self.searchController.isActive && scrollView == self.tableView) {
  260. [self.searchController.searchBar endEditing:YES];
  261. }
  262. }
  263. - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
  264. [self updateNavBarShadow:self.tableView force:false];
  265. }
  266. - (void)changeTheming
  267. {
  268. [appDelegate changeTheming:self tableView:self.tableView collectionView:nil form:false];
  269. // Refresh control
  270. refreshControl.tintColor = UIColor.lightGrayColor;
  271. refreshControl.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
  272. [self.sortButton setTitleColor:NCBrandColor.sharedInstance.brandElement forState:UIControlStateNormal];
  273. // color searchbar
  274. self.searchController.searchBar.tintColor = NCBrandColor.sharedInstance.brandElement;
  275. // color searchbbar button text (cancel)
  276. UIButton *searchButton = self.searchController.searchBar.subviews.firstObject.subviews.lastObject;
  277. if (searchButton && [searchButton isKindOfClass:[UIButton class]]) {
  278. [searchButton setTitleColor:NCBrandColor.sharedInstance.brandElement forState:UIControlStateNormal];
  279. }
  280. // color textview searchbbar
  281. UITextField *searchTextView = [self.searchController.searchBar valueForKey:@"searchField"];
  282. if (searchTextView && [searchTextView isKindOfClass:[UITextField class]]) {
  283. searchTextView.textColor = NCBrandColor.sharedInstance.textView;
  284. }
  285. // Rich Workspace
  286. [self.viewRichWorkspace loadWithRichWorkspaceText:self.richWorkspaceText];
  287. // Title
  288. [self setTitle];
  289. // Reload Table View
  290. [self tableViewReloadData];
  291. }
  292. #pragma --------------------------------------------------------------------------------------------
  293. #pragma mark ===== Initialization =====
  294. #pragma --------------------------------------------------------------------------------------------
  295. //
  296. // Callers :
  297. //
  298. // ChangeDefaultAccount (delegate)
  299. // Split : inizialize
  300. // Settings Advanced : removeAllFiles
  301. //
  302. - (void)initializeMain:(NSNotification *)notification
  303. {
  304. // test
  305. if (appDelegate.account.length == 0)
  306. return;
  307. if ([appDelegate.listMainVC count] == 0 || _isRoot) {
  308. // This is Root home main add list
  309. appDelegate.homeMain = self;
  310. _isRoot = YES;
  311. _serverUrl = [[NCUtility shared] getHomeServerWithUrlBase:appDelegate.urlBase account:appDelegate.account];
  312. [appDelegate.listMainVC setObject:self forKey:_serverUrl];
  313. // go Home
  314. [self.navigationController popToRootViewControllerAnimated:NO];
  315. // Remove search mode
  316. [self cancelSearchBar];
  317. // Clear error certificate
  318. [CCUtility setCertificateError:appDelegate.account error:NO];
  319. // Setting Theming
  320. [appDelegate settingThemingColorBrand];
  321. // Detail
  322. // If AVPlayer in play -> Stop
  323. if (appDelegate.player != nil && appDelegate.player.rate != 0) {
  324. [appDelegate.player pause];
  325. }
  326. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_menuDetailClose object:nil];
  327. // Not Photos Video in library ? then align and Init Auto Upload
  328. NSArray *recordsPhotoLibrary = [[NCManageDatabase sharedInstance] getPhotoLibraryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", appDelegate.account]];
  329. if ([recordsPhotoLibrary count] == 0) {
  330. [[NCAutoUpload sharedInstance] alignPhotoLibrary];
  331. }
  332. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  333. [[NCCommunicationCommon shared] writeLog:@"Request Service Server Nextcloud"];
  334. [[NCService shared] startRequestServicesServer];
  335. // Read this folder
  336. [self readFileReloadFolder];
  337. } else {
  338. // reload datasource
  339. [self reloadDatasource:_serverUrl ocId:nil];
  340. }
  341. // Registeration push notification
  342. [appDelegate pushNotification];
  343. // Registeration domain File Provider
  344. if (k_fileProvider_domain) {
  345. [FileProviderDomain.sharedInstance registerDomain];
  346. } else {
  347. [FileProviderDomain.sharedInstance removeAllDomain];
  348. }
  349. }
  350. #pragma --------------------------------------------------------------------------------------------
  351. #pragma mark ==== NotificationCenter ====
  352. #pragma --------------------------------------------------------------------------------------------
  353. - (void)createFolder:(NSNotification *)notification
  354. {
  355. if (self.view.window == nil) { return; }
  356. NSDictionary *userInfo = notification.userInfo;
  357. tableMetadata *metadata = userInfo[@"metadata"];
  358. if (metadata) {
  359. if (![metadata.serverUrl isEqualToString:self.serverUrl]) { return; }
  360. [self reloadDatasource:self.serverUrl ocId:nil];
  361. } else {
  362. [self readFolder:self.serverUrl];
  363. }
  364. }
  365. - (void)deleteFile:(NSNotification *)notification
  366. {
  367. if (self.view.window == nil) { return; }
  368. NSDictionary *userInfo = notification.userInfo;
  369. tableMetadata *metadata = userInfo[@"metadata"];
  370. if (![metadata.serverUrl isEqualToString:self.serverUrl]) { return; }
  371. [self reloadDatasource:self.serverUrl ocId:nil];
  372. }
  373. - (void)moveFile:(NSNotification *)notification
  374. {
  375. if (self.view.window == nil) { return; }
  376. NSDictionary *userInfo = notification.userInfo;
  377. tableMetadata *metadata = userInfo[@"metadata"];
  378. tableMetadata *metadataNew = userInfo[@"metadataNew"];
  379. if (![metadata.serverUrl isEqualToString:self.serverUrl] && ![metadataNew.serverUrl isEqualToString:self.serverUrl]) { return; }
  380. [self reloadDatasource:self.serverUrl ocId:nil];
  381. }
  382. - (void)copyFile:(NSNotification *)notification
  383. {
  384. if (self.view.window == nil) { return; }
  385. NSDictionary *userInfo = notification.userInfo;
  386. tableMetadata *metadata = userInfo[@"metadata"];
  387. NSString *serverUrlTo = userInfo[@"serverUrlTo"];
  388. if (![metadata.serverUrl isEqualToString:self.serverUrl] && ![serverUrlTo isEqualToString:self.serverUrl]) { return; }
  389. [self reloadDatasource:self.serverUrl ocId:nil];
  390. }
  391. - (void)favoriteFile:(NSNotification *)notification
  392. {
  393. if (self.view.window == nil) { return; }
  394. NSDictionary *userInfo = notification.userInfo;
  395. tableMetadata *metadata = userInfo[@"metadata"];
  396. if (![metadata.serverUrl isEqualToString:self.serverUrl]) { return; }
  397. if (self.searchController.isActive) {
  398. [self readFolder:self.serverUrl];
  399. } else {
  400. [self reloadDatasource:self.serverUrl ocId:nil];
  401. }
  402. }
  403. #pragma --------------------------------------------------------------------------------------------
  404. #pragma mark ==== DZNEmptyDataSetSource ====
  405. #pragma --------------------------------------------------------------------------------------------
  406. - (BOOL)emptyDataSetShouldAllowScroll:(UIScrollView *)scrollView
  407. {
  408. if (_loadingFolder)
  409. return NO;
  410. else
  411. return YES;
  412. }
  413. - (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView
  414. {
  415. CGFloat height = self.tabBarController.tabBar.frame.size.height;
  416. return -height;
  417. }
  418. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  419. {
  420. return NCBrandColor.sharedInstance.backgroundView;
  421. }
  422. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  423. {
  424. if (self.searchController.isActive)
  425. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"search"] width:300 height:300 color:NCBrandColor.sharedInstance.brandElement];
  426. else
  427. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder"] width:300 height:300 color:NCBrandColor.sharedInstance.brandElement];
  428. }
  429. - (UIView *)customViewForEmptyDataSet:(UIScrollView *)scrollView
  430. {
  431. if (_loadingFolder && refreshControl.isRefreshing == NO) {
  432. UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
  433. activityView.transform = CGAffineTransformMakeScale(1.5f, 1.5f);
  434. activityView.color = NCBrandColor.sharedInstance.brandElement;
  435. [activityView startAnimating];
  436. return activityView;
  437. }
  438. return nil;
  439. }
  440. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  441. {
  442. NSString *text;
  443. if (self.searchController.isActive) {
  444. text = _noFilesSearchTitle;
  445. } else {
  446. text = [NSString stringWithFormat:@"%@", NSLocalizedString(@"_files_no_files_", nil)];
  447. }
  448. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:[UIColor lightGrayColor]};
  449. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  450. }
  451. - (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
  452. {
  453. NSString *text;
  454. if (self.searchController.isActive) {
  455. text = _noFilesSearchDescription;
  456. } else {
  457. text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_no_file_pull_down_", nil)];
  458. }
  459. NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
  460. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  461. paragraph.alignment = NSTextAlignmentCenter;
  462. NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0], NSForegroundColorAttributeName: [UIColor lightGrayColor], NSParagraphStyleAttributeName: paragraph};
  463. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  464. }
  465. #pragma --------------------------------------------------------------------------------------------
  466. #pragma mark ===== Graphic Window =====
  467. #pragma --------------------------------------------------------------------------------------------
  468. - (void)createRefreshControl
  469. {
  470. refreshControl = [NCMainRefreshControl new];
  471. self.tableView.refreshControl = refreshControl;
  472. refreshControl.tintColor = UIColor.lightGrayColor;
  473. refreshControl.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
  474. [refreshControl addTarget:self action:@selector(refreshControlTarget) forControlEvents:UIControlEventValueChanged];
  475. }
  476. - (void)deleteRefreshControl
  477. {
  478. [refreshControl endRefreshing];
  479. [refreshControl removeFromSuperview];
  480. refreshControl = nil;
  481. }
  482. - (void)refreshControlTarget
  483. {
  484. [self readFolder:_serverUrl];
  485. // Actuate `Peek` feedback (weak boom)
  486. AudioServicesPlaySystemSound(1519);
  487. }
  488. - (void)setTitle
  489. {
  490. if (_isSelectedMode) {
  491. NSUInteger totali = [sectionDataSource.allRecordsDataSource count];
  492. NSUInteger selezionati = [[self.tableView indexPathsForSelectedRows] count];
  493. self.navigationItem.titleView = nil;
  494. self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)selezionati, (unsigned long)totali];
  495. } else {
  496. if (_isRoot) {
  497. self.navigationItem.title = NCBrandOptions.sharedInstance.brand;
  498. } else {
  499. self.navigationItem.title = _titleMain;
  500. }
  501. }
  502. NSString *titleButtonMenuSort = [[NCUtility shared] getTitleButtonForViewWithKey:k_layout_view_main];
  503. [self.sortButton setTitle:NSLocalizedString(titleButtonMenuSort, nil) forState:UIControlStateNormal];
  504. }
  505. - (void)setUINavigationBarDefault
  506. {
  507. UIBarButtonItem *buttonSelect = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_select_", @"") style:UIBarButtonItemStylePlain target:self action:@selector(tableViewToggle)];
  508. self.navigationController.navigationBar.hidden = NO;
  509. self.navigationItem.rightBarButtonItem = buttonSelect;
  510. self.navigationItem.leftBarButtonItem = nil;
  511. }
  512. - (void)setUINavigationBarSelected
  513. {
  514. UIBarButtonItem *buttonMore = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"navigationMore"] style:UIBarButtonItemStylePlain target:self action:@selector(toggleSelectMenu)];
  515. UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(cancelSelect)];
  516. self.navigationItem.leftBarButtonItem = leftButton;
  517. self.navigationItem.rightBarButtonItem = buttonMore; //[[NSArray alloc] initWithObjects:buttonMore, nil];
  518. }
  519. - (void)cancelSelect
  520. {
  521. [self tableViewSelect:false];
  522. }
  523. #pragma --------------------------------------------------------------------------------------------
  524. #pragma mark ===== Save selected File =====
  525. #pragma --------------------------------------------------------------------------------------------
  526. - (void)saveToPhotoAlbum:(tableMetadata *)metadata
  527. {
  528. NSString *fileNamePath = [CCUtility getDirectoryProviderStorageOcId:metadata.ocId fileNameView:metadata.fileNameView];
  529. PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus];
  530. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] && status == PHAuthorizationStatusAuthorized) {
  531. UIImage *image = [UIImage imageWithContentsOfFile:fileNamePath];
  532. if (image)
  533. UIImageWriteToSavedPhotosAlbum(image, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  534. else
  535. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorFileNotSaved forced:false];
  536. }
  537. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video] && status == PHAuthorizationStatusAuthorized) {
  538. if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(fileNamePath)) {
  539. UISaveVideoAtPathToSavedPhotosAlbum(fileNamePath, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  540. } else {
  541. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorFileNotSaved forced:false];
  542. }
  543. }
  544. if (status != PHAuthorizationStatusAuthorized) {
  545. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_access_photo_not_enabled_", nil) message:NSLocalizedString(@"_access_photo_not_enabled_msg_", nil) preferredStyle:UIAlertControllerStyleAlert];
  546. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  547. [alertController addAction:okAction];
  548. [self presentViewController:alertController animated:YES completion:nil];
  549. }
  550. }
  551. - (void)saveSelectedFilesSelector:(NSString *)path didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
  552. {
  553. if (error) {
  554. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code forced:false];
  555. }
  556. }
  557. - (void)saveSelectedFiles
  558. {
  559. if (_isSelectedMode && [selectOcId count] == 0)
  560. return;
  561. [_hud visibleHudTitle:@"" mode:MBProgressHUDModeIndeterminate color:nil];
  562. NSArray *metadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  563. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.01 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  564. for (tableMetadata *metadata in metadatas) {
  565. if (metadata.directory == NO && ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])) {
  566. [[NCOperationQueue shared] downloadWithMetadata:metadata selector:selectorSaveAlbum setFavorite:false];
  567. }
  568. }
  569. [_hud hideHud];
  570. });
  571. [self tableViewSelect:false];
  572. }
  573. #pragma mark -
  574. #pragma --------------------------------------------------------------------------------------------
  575. #pragma mark ===== Peek & Pop =====
  576. #pragma --------------------------------------------------------------------------------------------
  577. - (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location
  578. {
  579. CGPoint convertedLocation = [self.view convertPoint:location toView:self.tableView];
  580. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:convertedLocation];
  581. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  582. CCCellMain *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  583. if (cell) {
  584. previewingContext.sourceRect = cell.frame;
  585. CCPeekPop *viewController = [[UIStoryboard storyboardWithName:@"CCPeekPop" bundle:nil] instantiateViewControllerWithIdentifier:@"PeekPopImagePreview"];
  586. viewController.metadata = metadata;
  587. viewController.imageFile = cell.file.image;
  588. viewController.showOpenIn = true;
  589. viewController.showShare = true;
  590. viewController.showOpenQuickLook = [[NCUtility shared] isQuickLookDisplayableWithMetadata:metadata];
  591. return viewController;
  592. }
  593. return nil;
  594. }
  595. - (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit
  596. {
  597. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:previewingContext.sourceRect.origin];
  598. [self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
  599. }
  600. #pragma --------------------------------------------------------------------------------------------
  601. #pragma mark ==== Download ====
  602. #pragma --------------------------------------------------------------------------------------------
  603. - (void)downloadSelectedFilesFolders
  604. {
  605. if (_isSelectedMode && [selectOcId count] == 0)
  606. return;
  607. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  608. for (tableMetadata *metadata in selectedMetadatas) {
  609. [[NCOperationQueue shared] synchronizationMetadata:metadata selector:selectorDownloadFile];
  610. }
  611. [self tableViewSelect:false];
  612. }
  613. #pragma --------------------------------------------------------------------------------------------
  614. #pragma mark ==== Read Folder ====
  615. #pragma --------------------------------------------------------------------------------------------
  616. - (void)readFolder:(NSString *)serverUrl
  617. {
  618. // init control
  619. if (!serverUrl || !appDelegate.account || appDelegate.maintenanceMode) {
  620. [refreshControl endRefreshing];
  621. return;
  622. }
  623. // Search Mode
  624. if (self.searchController.isActive) {
  625. _searchFileName = @""; // forced reload searchg
  626. [self updateSearchResultsForSearchController:self.searchController];
  627. return;
  628. }
  629. _loadingFolder = YES;
  630. [refreshControl endRefreshing];
  631. [self tableViewReloadData];
  632. [[NCNetworking shared] readFolderWithServerUrl:serverUrl account:appDelegate.account completion:^(NSString *account, tableMetadata *metadataFolder, NSArray *metadatas, NSArray *metadatasUpdate, NSArray *metadatasLocalUpdate, NSInteger errorCode, NSString *errorDescription) {
  633. if (errorCode == 0 ) {
  634. _metadataFolder = metadataFolder;
  635. BOOL isFolderEncrypted = [CCUtility isFolderEncrypted:serverUrl e2eEncrypted:_metadataFolder.e2eEncrypted account:appDelegate.account urlBase:_metadataFolder.urlBase];
  636. [self setTitle];
  637. for (tableMetadata *metadata in metadatasLocalUpdate) {
  638. if (!metadata.directory) {
  639. [[NCNetworking shared] downloadWithMetadata:metadata selector:selectorDownloadFile setFavorite:false completion:^(NSInteger errorCode) { }];
  640. }
  641. }
  642. // E2EE Is encrypted folder get metadata
  643. if (isFolderEncrypted) {
  644. if ([CCUtility isEndToEndEnabled:account]) {
  645. [[NCCommunication shared] getE2EEMetadataWithFileId:metadataFolder.fileId e2eToken:nil customUserAgent:nil addCustomHeaders:nil completionHandler:^(NSString *account, NSString *e2eMetadata, NSInteger errorCode, NSString *errorDescription) {
  646. if (errorCode == 0 && e2eMetadata != nil) {
  647. BOOL result = [[NCEndToEndMetadata sharedInstance] decoderMetadata:e2eMetadata privateKey:[CCUtility getEndToEndPrivateKey:account] serverUrl:self.serverUrl account:account urlBase:appDelegate.urlBase];
  648. if (result == false) {
  649. [[NCContentPresenter shared] messageNotification:@"_error_e2ee_" description:@"_e2e_error_decode_metadata_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorDecodeMetadata forced:true];
  650. }
  651. } else if (errorCode != 404) {
  652. [[NCContentPresenter shared] messageNotification:@"_e2e_error_get_metadata_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:true];
  653. }
  654. [self reloadDatasource:_serverUrl ocId:nil];
  655. }];
  656. } else {
  657. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorE2EENotEnabled forced:true];
  658. }
  659. }
  660. } else {
  661. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:true];
  662. }
  663. _loadingFolder = NO;
  664. [self reloadDatasource:serverUrl ocId:nil];
  665. }];
  666. }
  667. - (void)readFileReloadFolder
  668. {
  669. if (!_serverUrl || !appDelegate.account || appDelegate.maintenanceMode)
  670. return;
  671. [[NCNetworking shared] readFileWithServerUrlFileName:self.serverUrl account:appDelegate.account completion:^(NSString *account, tableMetadata *metadata, NSInteger errorCode, NSString *errorDescription) {
  672. if (errorCode == 0 && [account isEqualToString:appDelegate.account]) {
  673. // Rich Workspace
  674. [[NCManageDatabase sharedInstance] setDirectoryWithRichWorkspace:metadata.richWorkspace serverUrl:self.serverUrl account:appDelegate.account];
  675. if (![self.richWorkspaceText isEqualToString:metadata.richWorkspace]) {
  676. self.richWorkspaceText = metadata.richWorkspace;
  677. }
  678. [self setTableViewHeader];
  679. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", account, self.serverUrl]];
  680. // Read folder: No record, Change etag or BLINK
  681. if ([sectionDataSource.allRecordsDataSource count] == 0 || [metadata.etag isEqualToString:directory.etag] == NO || self.blinkFileNamePath != nil) {
  682. [self readFolder:self.serverUrl];
  683. }
  684. } else if (errorCode != 0) {
  685. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:false];
  686. }
  687. }];
  688. }
  689. #pragma mark -
  690. #pragma --------------------------------------------------------------------------------------------
  691. #pragma mark ===== Search =====
  692. #pragma --------------------------------------------------------------------------------------------
  693. - (void)searchStartTimer
  694. {
  695. if (self.searchController.isActive == false) {
  696. return;
  697. }
  698. [[NCCommunication shared] searchLiteralWithServerUrl:appDelegate.urlBase depth:@"infinity" literal:_searchFileName showHiddenFiles:[CCUtility getShowHiddenFiles] customUserAgent:nil addCustomHeaders:nil user:appDelegate.user timeout:120 completionHandler:^(NSString *account, NSArray *files, NSInteger errorCode, NSString *errorDescription) {
  699. if (errorCode == 0 && [account isEqualToString:appDelegate.account] && files != nil) {
  700. [[NCManageDatabase sharedInstance] convertNCCommunicationFilesToMetadatas:files useMetadataFolder:false account:account completion:^(tableMetadata *metadataFolder, NSArray<tableMetadata *> *metadatasFolder, NSArray<tableMetadata *> *metadatas) {
  701. [[NCManageDatabase sharedInstance] addMetadatas:metadatas];
  702. _searchResultMetadatas = [[NSMutableArray alloc] initWithArray:metadatas];
  703. _metadataFolder = nil;
  704. [self reloadDatasource:_serverUrl ocId:nil];
  705. [self tableViewReloadData];
  706. [self setTitle];
  707. }];
  708. } else {
  709. if (errorCode != 0) {
  710. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:true];
  711. }
  712. _searchFileName = @"";
  713. [self cancelSearchBar];
  714. }
  715. }];
  716. _noFilesSearchTitle = @"";
  717. _noFilesSearchDescription = NSLocalizedString(@"_search_in_progress_", nil);
  718. [self.tableView reloadEmptyDataSet];
  719. }
  720. - (void)updateSearchResultsForSearchController:(UISearchController *)searchController
  721. {
  722. // Color text "Cancel"
  723. [[UIBarButtonItem appearanceWhenContainedInInstancesOfClasses:@[[UISearchBar class]]] setTintColor:NCBrandColor.sharedInstance.brandElement];
  724. if (searchController.isActive) {
  725. [self deleteRefreshControl];
  726. NSString *fileName = [CCUtility removeForbiddenCharactersServer:searchController.searchBar.text];
  727. if (fileName.length >= k_minCharsSearch && [fileName isEqualToString:_searchFileName] == NO) {
  728. _searchFileName = fileName;
  729. _metadataFolder = nil;
  730. // First : filter
  731. NSArray *records = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileNameView CONTAINS[cd] %@", appDelegate.account, _serverUrl, fileName] page:0 limit:0 sorted:@"fileName" ascending:NO];
  732. [_searchResultMetadatas removeAllObjects];
  733. for (tableMetadata *record in records) {
  734. [_searchResultMetadatas addObject:record];
  735. }
  736. // Version >= 12
  737. NSInteger serverVersionMajor = [[NCManageDatabase sharedInstance] getCapabilitiesServerIntWithAccount:appDelegate.account elements:NCElementsJSON.shared.capabilitiesVersionMajor];
  738. if (serverVersionMajor >= 12) {
  739. [_timerWaitInput invalidate];
  740. _timerWaitInput = [NSTimer scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(searchStartTimer) userInfo:nil repeats:NO];
  741. }
  742. [self setTitle];
  743. }
  744. if (_searchResultMetadatas.count == 0 && fileName.length == 0) {
  745. [self reloadDatasource:_serverUrl ocId:nil];
  746. }
  747. } else {
  748. [self createRefreshControl];
  749. [self reloadDatasource:_serverUrl ocId:nil];
  750. }
  751. }
  752. - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar
  753. {
  754. [self cancelSearchBar];
  755. }
  756. - (void)cancelSearchBar
  757. {
  758. if (self.searchController.active) {
  759. [self.searchController setActive:NO];
  760. _searchFileName = @"";
  761. _searchResultMetadatas = [NSMutableArray new];
  762. [self reloadDatasource:_serverUrl ocId:nil];
  763. }
  764. }
  765. #pragma mark -
  766. #pragma --------------------------------------------------------------------------------------------
  767. #pragma mark ===== Delete File or Folder =====
  768. #pragma --------------------------------------------------------------------------------------------
  769. - (void)deleteMetadatas
  770. {
  771. if (_isSelectedMode) {
  772. for (NSString *ocId in selectOcId) {
  773. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromOcId:ocId];
  774. if (metadata) {
  775. [[NCOperationQueue shared] deleteWithMetadata:metadata onlyLocal:false];
  776. }
  777. }
  778. [selectOcId removeAllObjects];
  779. [self tableViewSelect:false];
  780. } else {
  781. [[NCOperationQueue shared] deleteWithMetadata:self.metadata onlyLocal:false];
  782. }
  783. }
  784. // DELEGATE : Select
  785. - (void)dismissSelectWithServerUrl:(NSString *)serverUrl metadata:(tableMetadata *)metadata type:(NSString *)type array:(NSArray *)array buttonType:(NSString *)buttonType overwrite:(BOOL)overwrite
  786. {
  787. if (serverUrl != nil) {
  788. // E2EE DENIED
  789. if ([CCUtility isFolderEncrypted:serverUrl e2eEncrypted:metadata.e2eEncrypted account:appDelegate.account urlBase:appDelegate.urlBase]) {
  790. [[NCContentPresenter shared] messageNotification:@"_move_" description:@"_e2e_error_not_move_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorE2EENotMove forced:true];
  791. return;
  792. }
  793. BOOL move = true;
  794. if ([buttonType isEqualToString:@"done1"]) { move = false; }
  795. if (_isSelectedMode) {
  796. for (NSString *ocId in selectOcId) {
  797. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromOcId:ocId];
  798. if (metadata) {
  799. [[NCOperationQueue shared] copyMoveWithMetadata:metadata serverUrl:serverUrl overwrite:overwrite move:move];
  800. }
  801. }
  802. [selectOcId removeAllObjects];
  803. [self tableViewSelect:false];
  804. } else {
  805. [[NCOperationQueue shared] copyMoveWithMetadata:self.metadata serverUrl:serverUrl overwrite:overwrite move:move];
  806. }
  807. }
  808. }
  809. - (void)moveOpenWindow:(NSArray *)indexPaths
  810. {
  811. if (_isSelectedMode && [selectOcId count] == 0)
  812. return;
  813. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCSelect" bundle:nil] instantiateInitialViewController];
  814. NCSelect *viewController = (NCSelect *)navigationController.topViewController;
  815. viewController.delegate = self;
  816. viewController.hideButtonCreateFolder = false;
  817. viewController.selectFile = false;
  818. viewController.includeDirectoryE2EEncryption = false;
  819. viewController.includeImages = false;
  820. viewController.type = @"";
  821. viewController.titleButtonDone = NSLocalizedString(@"_move_", nil);
  822. viewController.titleButtonDone1 = NSLocalizedString(@"_copy_", nil);
  823. viewController.isButtonDone1Hide = false;
  824. viewController.isOverwriteHide = false;
  825. viewController.keyLayout = k_layout_view_move;
  826. viewController.array = selectOcId;
  827. [navigationController setModalPresentationStyle:UIModalPresentationFullScreen];
  828. [self presentViewController:navigationController animated:YES completion:nil];
  829. }
  830. #pragma --------------------------------------------------------------------------------------------
  831. #pragma mark ===== Progress & Task Button =====
  832. #pragma --------------------------------------------------------------------------------------------
  833. - (void)triggerProgressTask:(NSNotification *)notification
  834. {
  835. if (sectionDataSource.ocIdIndexPath != nil) {
  836. [[NCMainCommon shared] triggerProgressTask:notification sectionDataSourceocIdIndexPath:sectionDataSource.ocIdIndexPath tableView:self.tableView viewController:self serverUrlViewController:self.serverUrl];
  837. }
  838. }
  839. - (void)cancelTaskButton:(id)sender withEvent:(UIEvent *)event
  840. {
  841. UITouch *touch = [[event allTouches] anyObject];
  842. CGPoint location = [touch locationInView:self.tableView];
  843. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  844. if ([self indexPathIsValid:indexPath]) {
  845. tableMetadata *metadataSection = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  846. if (metadataSection) {
  847. [[NCNetworking shared] cancelTransferMetadata:metadataSection completion:^{ }];
  848. }
  849. }
  850. }
  851. - (void)cancelAllTask:(id)sender
  852. {
  853. CGPoint location = [sender locationInView:self.tableView];
  854. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  855. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  856. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_all_task_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  857. [NCUtility.shared startActivityIndicatorWithView:self.view bottom:0];
  858. [[NCNetworking shared] cancelAllTransferWithAccount:appDelegate.account completion:^{
  859. [self reloadDatasource:self.serverUrl ocId:nil];
  860. }];
  861. [NCUtility.shared stopActivityIndicator];
  862. }]];
  863. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) { }]];
  864. alertController.popoverPresentationController.sourceView = self.tableView;
  865. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  866. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  867. [alertController.view layoutIfNeeded];
  868. [self presentViewController:alertController animated:YES completion:nil];
  869. }
  870. #pragma --------------------------------------------------------------------------------------------
  871. #pragma mark ===== Tap =====
  872. #pragma --------------------------------------------------------------------------------------------
  873. - (void)tapActionComment:(UITapGestureRecognizer *)tapGesture
  874. {
  875. CGPoint location = [tapGesture locationInView:self.tableView];
  876. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  877. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  878. if (metadata && ![CCUtility isFolderEncrypted:self.serverUrl e2eEncrypted:metadata.e2eEncrypted account:appDelegate.account urlBase: appDelegate.urlBase]) {
  879. [[NCMainCommon shared] openShareWithViewController:self metadata:metadata indexPage:1];
  880. }
  881. }
  882. - (void)tapActionShared:(UITapGestureRecognizer *)tapGesture
  883. {
  884. CGPoint location = [tapGesture locationInView:self.tableView];
  885. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  886. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  887. if (metadata && ![CCUtility isFolderEncrypted:self.serverUrl e2eEncrypted:metadata.e2eEncrypted account:appDelegate.account urlBase:appDelegate.urlBase]) {
  888. [[NCMainCommon shared] openShareWithViewController:self metadata:metadata indexPage:2];
  889. }
  890. }
  891. - (void)tapActionConnectionMounted:(UITapGestureRecognizer *)tapGesture
  892. {
  893. CGPoint location = [tapGesture locationInView:self.tableView];
  894. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  895. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  896. if (metadata) {
  897. }
  898. }
  899. #pragma --------------------------------------------------------------------------------------------
  900. #pragma mark ===== Rich Workspace =====
  901. #pragma --------------------------------------------------------------------------------------------
  902. - (void)viewRichWorkspaceTapAction:(UITapGestureRecognizer *)tapGesture
  903. {
  904. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCViewerRichWorkspace" bundle:nil] instantiateInitialViewController];
  905. NCViewerRichWorkspace *viewerRichWorkspace = (NCViewerRichWorkspace *)[navigationController topViewController];
  906. viewerRichWorkspace.richWorkspaceText = self.richWorkspaceText;
  907. viewerRichWorkspace.serverUrl = self.serverUrl;
  908. navigationController.modalPresentationStyle = UIModalPresentationFullScreen;
  909. [self presentViewController:navigationController animated:NO completion:NULL];
  910. }
  911. - (void)toggleSortMenu
  912. {
  913. NCSortMenu *sortMenu = [NCSortMenu new];
  914. [sortMenu toggleMenuWithViewController:self key:k_layout_view_main sortButton:self.sortButton serverUrl:self.serverUrl hideDirectoryOnTop:false];
  915. }
  916. - (void)toggleSelectMenu
  917. {
  918. [self toggleSelectMenuWithViewController:self.navigationController];
  919. }
  920. #pragma --------------------------------------------------------------------------------------------
  921. #pragma mark ===== Long Press Recognized Table View / Menu Controller =====
  922. #pragma --------------------------------------------------------------------------------------------
  923. - (void)onLongPressTableView:(UILongPressGestureRecognizer*)recognizer
  924. {
  925. if (recognizer.state == UIGestureRecognizerStateBegan) {
  926. CGPoint touchPoint = [recognizer locationInView:self.tableView];
  927. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touchPoint];
  928. NSMutableArray *items = [NSMutableArray new];
  929. if ([self indexPathIsValid:indexPath])
  930. self.metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  931. [self becomeFirstResponder];
  932. UIMenuController *menuController = [UIMenuController sharedMenuController];
  933. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_file_", nil) action:@selector(copyTouchFile:)]];
  934. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_files_", nil) action:@selector(copyTouchFiles:)]];
  935. if ([NCBrandOptions sharedInstance].disable_openin_file == false) {
  936. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_open_in_", nil) action:@selector(openinTouchFile:)]];
  937. }
  938. if ([[NCUtility shared] isQuickLookDisplayableWithMetadata:self.metadata]) {
  939. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_open_quicklook_", nil) action:@selector(openQuickLookTouch:)]];
  940. }
  941. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_file_", nil) action:@selector(pasteTouchFile:)]];
  942. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_files_", nil) action:@selector(pasteTouchFiles:)]];
  943. [menuController setMenuItems:items];
  944. [menuController setTargetRect:CGRectMake(touchPoint.x, touchPoint.y, 0.0f, 0.0f) inView:self.tableView];
  945. [menuController setMenuVisible:YES animated:YES];
  946. }
  947. }
  948. - (BOOL)canBecomeFirstResponder
  949. {
  950. return YES;
  951. }
  952. - (BOOL)canPerformAction:(SEL)action withSender:(id)sender
  953. {
  954. // For copy file, copy files, Open in ... :
  955. //
  956. // NO Directory
  957. // NO Error Passcode
  958. // NO In Session mode (download/upload)
  959. // NO Template
  960. if (@selector(copyTouchFile:) == action || @selector(openinTouchFile:) == action || @selector(openQuickLookTouch:) == action) {
  961. if (_isSelectedMode == NO && self.metadata && !self.metadata.directory && self.metadata.status == k_metadataStatusNormal) return YES;
  962. else return NO;
  963. }
  964. if (@selector(copyTouchFiles:) == action) {
  965. if (_isSelectedMode) {
  966. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  967. for (tableMetadata *metadata in selectedMetadatas) {
  968. if (!metadata.directory && metadata.status == k_metadataStatusNormal)
  969. return YES;
  970. }
  971. }
  972. return NO;
  973. }
  974. if (@selector(pasteTouchFile:) == action) {
  975. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  976. NSArray *items = [pasteboard items];
  977. if ([items count] == 1) {
  978. // Value : (NSData) ocId
  979. NSDictionary *dic = [items objectAtIndex:0];
  980. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  981. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  982. if (ocId) {
  983. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocId]];
  984. if (metadata) {
  985. return [CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView];
  986. } else {
  987. return NO;
  988. }
  989. }
  990. }
  991. return NO;
  992. }
  993. if (@selector(pasteTouchFiles:) == action) {
  994. BOOL isValid = NO;
  995. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  996. NSArray *items = [pasteboard items];
  997. if ([items count] <= 1) return NO;
  998. for (NSDictionary *dic in items) {
  999. // Value : (NSData) ocId
  1000. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1001. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1002. if (ocId) {
  1003. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromOcId:ocId];
  1004. if (metadata) {
  1005. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1006. isValid = YES;
  1007. } else {
  1008. isValid = NO;
  1009. break;
  1010. }
  1011. } else {
  1012. isValid = NO;
  1013. break;
  1014. }
  1015. } else {
  1016. isValid = NO;
  1017. break;
  1018. }
  1019. }
  1020. return isValid;
  1021. }
  1022. return NO;
  1023. }
  1024. /************************************ COPY ************************************/
  1025. - (void)copyTouchFile:(id)sender
  1026. {
  1027. // Remove all item
  1028. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1029. pasteboard.items = [[NSArray alloc] init];
  1030. if ([CCUtility fileProviderStorageExists:self.metadata.ocId fileNameView:self.metadata.fileNameView]) {
  1031. [self copyFileToPasteboard:self.metadata];
  1032. } else {
  1033. [[NCNetworking shared] downloadWithMetadata:self.metadata selector:selectorLoadCopy setFavorite:false completion:^(NSInteger errorCode) { }];
  1034. }
  1035. }
  1036. - (void)copyTouchFiles:(id)sender
  1037. {
  1038. // Remove all item
  1039. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1040. pasteboard.items = [[NSArray alloc] init];
  1041. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  1042. for (tableMetadata *metadata in selectedMetadatas) {
  1043. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1044. [self copyFileToPasteboard:metadata];
  1045. } else {
  1046. [[NCNetworking shared] downloadWithMetadata:metadata selector:selectorLoadCopy setFavorite:false completion:^(NSInteger errorCode) { }];
  1047. }
  1048. }
  1049. [self tableViewSelect:false];
  1050. }
  1051. - (void)copyFileToPasteboard:(tableMetadata *)metadata
  1052. {
  1053. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1054. NSMutableArray *items = [[NSMutableArray alloc] initWithArray:pasteboard.items];
  1055. // Value : (NSData) ocId
  1056. NSDictionary *item = [NSDictionary dictionaryWithObjectsAndKeys:[NSKeyedArchiver archivedDataWithRootObject:metadata.ocId], k_metadataKeyedUnarchiver,nil];
  1057. [items addObject:item];
  1058. [pasteboard setItems:items];
  1059. }
  1060. /************************************ OPEN IN ... ******************************/
  1061. - (void)openinTouchFile:(id)sender
  1062. {
  1063. [[NCMainCommon shared] downloadOpenWithMetadata:self.metadata selector:selectorOpenIn];
  1064. }
  1065. /************************************ OPEN QUICK LOOK ******************************/
  1066. - (void)openQuickLookTouch:(id)sender
  1067. {
  1068. [[NCMainCommon shared] downloadOpenWithMetadata:self.metadata selector:selectorLoadFileQuickLook];
  1069. }
  1070. /************************************ PASTE ************************************/
  1071. - (void)pasteTouchFile:(id)sender
  1072. {
  1073. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1074. [self uploadFilePasteArray:[pasteboard items]];
  1075. }
  1076. - (void)pasteTouchFiles:(id)sender
  1077. {
  1078. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1079. [self uploadFilePasteArray:[pasteboard items]];
  1080. }
  1081. - (void)uploadFilePasteArray:(NSArray *)items
  1082. {
  1083. for (NSDictionary *dic in items) {
  1084. // Value : (NSData) ocId
  1085. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1086. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1087. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromOcId:ocId];
  1088. if (metadata) {
  1089. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1090. NSString *fileName = [[NCUtility shared] createFileName:metadata.fileNameView serverUrl:self.serverUrl account:appDelegate.account];
  1091. NSString *ocId = [[NSUUID UUID] UUIDString];
  1092. [CCUtility copyFileAtPath:[CCUtility getDirectoryProviderStorageOcId:metadata.ocId fileNameView:metadata.fileNameView] toPath:[CCUtility getDirectoryProviderStorageOcId:ocId fileNameView:fileName]];
  1093. // Prepare record metadata
  1094. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] createMetadataWithAccount:appDelegate.account fileName:fileName ocId:ocId serverUrl:self.serverUrl urlBase:appDelegate.urlBase url:@"" contentType:@"" livePhoto:false];
  1095. metadataForUpload.session = NCNetworking.shared.sessionIdentifierBackground;
  1096. metadataForUpload.sessionSelector = selectorUploadFile;
  1097. metadataForUpload.size = metadata.size;
  1098. metadataForUpload.status = k_metadataStatusWaitUpload;
  1099. // Add Medtadata for upload
  1100. [[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  1101. }
  1102. }
  1103. }
  1104. [[appDelegate networkingAutoUpload] startProcess];
  1105. }
  1106. #pragma mark -
  1107. #pragma --------------------------------------------------------------------------------------------
  1108. #pragma mark ===== menu action : Favorite, More, Delete [swipe] =====
  1109. #pragma --------------------------------------------------------------------------------------------
  1110. - (BOOL)canOpenMenuAction:(tableMetadata *)metadata
  1111. {
  1112. if (metadata == nil)
  1113. return NO;
  1114. // E2EE
  1115. if (_metadataFolder.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.account] == NO)
  1116. return NO;
  1117. return YES;
  1118. }
  1119. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell canSwipe:(MGSwipeDirection)direction
  1120. {
  1121. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  1122. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1123. return [self canOpenMenuAction:metadata];
  1124. }
  1125. -(void)swipeTableCell:(nonnull MGSwipeTableCell *)cell didChangeSwipeState:(MGSwipeState)state gestureIsActive:(BOOL)gestureIsActive
  1126. {
  1127. }
  1128. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell tappedButtonAtIndex:(NSInteger)index direction:(MGSwipeDirection)direction fromExpansion:(BOOL)fromExpansion
  1129. {
  1130. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  1131. self.metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1132. if (direction == MGSwipeDirectionRightToLeft) {
  1133. [self actionDelete:indexPath];
  1134. }
  1135. if (direction == MGSwipeDirectionLeftToRight) {
  1136. [[NCNetworking shared] favoriteMetadata:self.metadata urlBase:appDelegate.urlBase completion:^(NSInteger errorCode, NSString *errorDescription) {
  1137. if (errorCode != 0) {
  1138. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:false];
  1139. }
  1140. }];
  1141. }
  1142. return YES;
  1143. }
  1144. - (void)actionDelete:(NSIndexPath *)indexPath
  1145. {
  1146. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1147. tableLocalFile *localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  1148. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  1149. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1150. [self performSelector:@selector(deleteMetadatas) withObject:nil];
  1151. }]];
  1152. if (localFile) {
  1153. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_remove_local_file_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1154. tableMetadata *metadataLivePhoto = [[NCManageDatabase sharedInstance] isLivePhotoWithMetadata:metadata];
  1155. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  1156. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageOcId:metadata.ocId] error:nil];
  1157. if (metadataLivePhoto) {
  1158. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadataLivePhoto.ocId]];
  1159. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageOcId:metadataLivePhoto.ocId] error:nil];
  1160. }
  1161. [self reloadDatasource:metadata.serverUrl ocId:metadata.ocId];
  1162. }]];
  1163. }
  1164. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  1165. }]];
  1166. alertController.popoverPresentationController.sourceView = self.tableView;
  1167. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  1168. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  1169. [alertController.view layoutIfNeeded];
  1170. [self presentViewController:alertController animated:YES completion:nil];
  1171. }
  1172. - (void)actionMore:(UITapGestureRecognizer *)gestureRecognizer
  1173. {
  1174. CGPoint touch = [gestureRecognizer locationInView:self.tableView];
  1175. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touch];
  1176. self.metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1177. [self toggleMoreMenuWithViewController:self.tabBarController indexPath:indexPath metadata:self.metadata metadataFolder:_metadataFolder];
  1178. }
  1179. #pragma --------------------------------------------------------------------------------------------
  1180. #pragma mark - ==== Datasource ====
  1181. #pragma --------------------------------------------------------------------------------------------
  1182. - (void)reloadDatasource:(NSNotification *)notification
  1183. {
  1184. NSDictionary *userInfo = notification.userInfo;
  1185. NSString *ocId = userInfo[@"ocId"];
  1186. NSString *serverUrl = userInfo[@"serverUrl"];
  1187. [self reloadDatasource:serverUrl ocId:ocId];
  1188. }
  1189. - (void)reloadDatasourceTransfer:(NSNotification *)notification
  1190. {
  1191. if (self.view.window == nil) { return; }
  1192. NSDictionary *userInfo = notification.userInfo;
  1193. tableMetadata *metadata = userInfo[@"metadata"];
  1194. NSInteger errorCode = [userInfo[@"errorCode"] integerValue];
  1195. NSString *errorDescription = userInfo[@"errorDescription"];
  1196. if (errorCode != 0 && self.view.window != nil) {
  1197. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:false];
  1198. }
  1199. [self reloadDatasource:metadata.serverUrl ocId:metadata.ocId];
  1200. }
  1201. - (void)reloadDatasource:(NSString *)serverUrl ocId:(NSString *)ocId
  1202. {
  1203. // test
  1204. if (appDelegate.account.length == 0 || serverUrl.length == 0 || serverUrl == nil) // || self.view.window == nil)
  1205. return;
  1206. // Se non siamo nella dir appropriata esci
  1207. if ([serverUrl isEqualToString:self.serverUrl] == NO || self.serverUrl == nil)
  1208. return;
  1209. // live photo
  1210. livePhoto = [CCUtility getLivePhoto];
  1211. // load share
  1212. appDelegate.shares = [[NCManageDatabase sharedInstance] getTableSharesWithAccount:appDelegate.account];
  1213. // Search Mode
  1214. if (self.searchController.isActive) {
  1215. // Create metadatas
  1216. NSMutableArray *metadatas = [NSMutableArray new];
  1217. for (tableMetadata *resultMetadata in _searchResultMetadatas) {
  1218. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromOcId:resultMetadata.ocId];
  1219. if (metadata) {
  1220. [metadatas addObject:metadata];
  1221. }
  1222. }
  1223. // [CCUtility getGroupBySettings]
  1224. sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:metadatas listProgressMetadata:nil groupBy:nil filterTypeFileImage:NO filterTypeFileVideo:NO filterLivePhoto:YES sort:@"fileName" ascending:NO directoryOnTop:NO account:appDelegate.account];
  1225. [self tableViewReloadData];
  1226. if ([sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] >= k_minCharsSearch) {
  1227. _noFilesSearchTitle = NSLocalizedString(@"_search_no_record_found_", nil);
  1228. _noFilesSearchDescription = @"";
  1229. }
  1230. if ([sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] < k_minCharsSearch) {
  1231. _noFilesSearchTitle = @"";
  1232. _noFilesSearchDescription = NSLocalizedString(@"_search_instruction_", nil);
  1233. }
  1234. [self.tableView reloadEmptyDataSet];
  1235. return;
  1236. }
  1237. // Get MetadataFolder
  1238. if ([serverUrl isEqualToString:[[NCUtility shared] getHomeServerWithUrlBase:appDelegate.urlBase account:appDelegate.account]])
  1239. _metadataFolder = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.account, k_serverUrl_root]];
  1240. else
  1241. _metadataFolder = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.account, serverUrl]];
  1242. _autoUploadFileName = [[NCManageDatabase sharedInstance] getAccountAutoUploadFileName];
  1243. _autoUploadDirectory = [[NCManageDatabase sharedInstance] getAccountAutoUploadDirectoryWithUrlBase:appDelegate.urlBase account:appDelegate.account];
  1244. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1245. NSArray *recordsTableMetadata = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.account, serverUrl] page:0 limit:0 sorted:@"fileName" ascending:NO];
  1246. // [CCUtility getGroupBySettings]
  1247. NSString *sort = [[NCUtility shared] getSortedForViewWithKey:k_layout_view_main];
  1248. BOOL ascending = [[NCUtility shared] getAscendingForViewWithKey:k_layout_view_main];
  1249. BOOL directoryOnTop = [[NCUtility shared] getDirectoryOnTopForViewWithKey:k_layout_view_main];
  1250. CCSectionDataSourceMetadata *sectionDataSourceTemp = [CCSectionMetadata creataDataSourseSectionMetadata:recordsTableMetadata listProgressMetadata:nil groupBy:nil filterTypeFileImage:NO filterTypeFileVideo:NO filterLivePhoto:YES sort:sort ascending:ascending directoryOnTop:directoryOnTop account:appDelegate.account];
  1251. dispatch_async(dispatch_get_main_queue(), ^{
  1252. sectionDataSource = sectionDataSourceTemp;
  1253. [self tableViewReloadData];
  1254. });
  1255. });
  1256. // BLINK
  1257. if (self.blinkFileNamePath != nil) {
  1258. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1259. for (NSString *key in sectionDataSource.allRecordsDataSource) {
  1260. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:key];
  1261. NSString *metadataFileNamePath = [NSString stringWithFormat:@"%@/%@", metadata.serverUrl, metadata.fileName];
  1262. if ([metadataFileNamePath isEqualToString:self.blinkFileNamePath]) {
  1263. for (NSString *key in sectionDataSource.ocIdIndexPath) {
  1264. if ([key isEqualToString:metadata.ocId]) {
  1265. NSIndexPath *indexPath = [sectionDataSource.ocIdIndexPath objectForKey:key];
  1266. [self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];
  1267. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1268. CCCellMain *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  1269. if (cell) {
  1270. self.blinkFileNamePath = nil;
  1271. [[NCUtility shared] blinkWithCell:cell];
  1272. }
  1273. });
  1274. }
  1275. }
  1276. }
  1277. }
  1278. });
  1279. }
  1280. }
  1281. - (NSArray *)getMetadatasFromSelectedRows:(NSArray *)selectedRows
  1282. {
  1283. NSMutableArray *metadatas = [[NSMutableArray alloc] init];
  1284. if (selectedRows.count > 0) {
  1285. for (NSIndexPath *selectionIndex in selectedRows) {
  1286. NSString *ocId = [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:selectionIndex.section]] objectAtIndex:selectionIndex.row];
  1287. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:ocId];
  1288. [metadatas addObject:metadata];
  1289. }
  1290. }
  1291. return metadatas;
  1292. }
  1293. - (NSArray *)getMetadatasFromSectionDataSource:(NSInteger)section
  1294. {
  1295. NSInteger totSections =[sectionDataSource.sections count] ;
  1296. if ((totSections < (section + 1)) || ((section + 1) > totSections)) {
  1297. return nil;
  1298. }
  1299. id valueSection = [sectionDataSource.sections objectAtIndex:section];
  1300. return [sectionDataSource.sectionArrayRow objectForKey:valueSection];
  1301. }
  1302. #pragma --------------------------------------------------------------------------------------------
  1303. #pragma mark - ==== Table ====
  1304. #pragma --------------------------------------------------------------------------------------------
  1305. - (void)tableViewToggle
  1306. {
  1307. [self tableViewSelect:!_isSelectedMode];
  1308. }
  1309. - (void)tableViewSelect:(BOOL)toggle
  1310. {
  1311. _isSelectedMode = toggle;
  1312. // chiudiamo eventuali swipe aperti
  1313. if (_isSelectedMode)
  1314. [self.tableView setEditing:NO animated:NO];
  1315. [self.tableView setAllowsMultipleSelectionDuringEditing:_isSelectedMode];
  1316. [self.tableView setEditing:_isSelectedMode animated:YES];
  1317. if (_isSelectedMode)
  1318. [self setUINavigationBarSelected];
  1319. else
  1320. [self setUINavigationBarDefault];
  1321. [selectOcId removeAllObjects];
  1322. [self setTitle];
  1323. }
  1324. - (void)tableViewReloadData
  1325. {
  1326. // store selected cells before relod
  1327. NSArray *indexPaths = [self.tableView indexPathsForSelectedRows];
  1328. // reload table view
  1329. [self.tableView reloadData];
  1330. // selected cells stored
  1331. for (NSIndexPath *path in indexPaths)
  1332. [self.tableView selectRowAtIndexPath:path animated:NO scrollPosition:UITableViewScrollPositionNone];
  1333. [self setTableViewHeader];
  1334. [self setTableViewFooter];
  1335. if (self.tableView.editing)
  1336. [self setTitle];
  1337. [self.tableView reloadEmptyDataSet];
  1338. }
  1339. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
  1340. {
  1341. if (tableView.editing == 1) {
  1342. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1343. if (!metadata || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata])
  1344. return NO;
  1345. if (metadata == nil || metadata.status != k_metadataStatusNormal)
  1346. return NO;
  1347. else
  1348. return YES;
  1349. } else {
  1350. [selectOcId removeAllObjects];
  1351. }
  1352. return YES;
  1353. }
  1354. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  1355. {
  1356. return 60;
  1357. }
  1358. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  1359. {
  1360. return [[sectionDataSource.sectionArrayRow allKeys] count];
  1361. }
  1362. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  1363. {
  1364. return [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]] count];
  1365. }
  1366. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  1367. {
  1368. return 0.0f;
  1369. }
  1370. -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  1371. {
  1372. float shift;
  1373. UIVisualEffectView *visualEffectView;
  1374. NSString *titleSection = @"";
  1375. if (![self indexPathIsValid:[NSIndexPath indexPathForRow:0 inSection:section]])
  1376. return nil;
  1377. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSString class]])
  1378. titleSection = [sectionDataSource.sections objectAtIndex:section];
  1379. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSDate class]])
  1380. titleSection = [CCUtility getTitleSectionDate:[sectionDataSource.sections objectAtIndex:section]];
  1381. // Format title
  1382. UIVisualEffect *blurEffect;
  1383. blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
  1384. visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
  1385. visualEffectView.backgroundColor = [NCBrandColor.sharedInstance.brandElement colorWithAlphaComponent:0.2];
  1386. if ([[CCUtility getGroupBySettings] isEqualToString:@"alphabetic"]) {
  1387. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  1388. shift = - 35;
  1389. else
  1390. shift = - 20;
  1391. } else shift = - 10;
  1392. // Title
  1393. UILabel *titleLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, -12, 0, 44)];
  1394. titleLabel.backgroundColor = [UIColor clearColor];
  1395. titleLabel.textColor = NCBrandColor.sharedInstance.textView;
  1396. titleLabel.font = [UIFont systemFontOfSize:12];
  1397. titleLabel.textAlignment = NSTextAlignmentLeft;
  1398. titleLabel.text = titleSection;
  1399. titleLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  1400. [visualEffectView.contentView addSubview:titleLabel];
  1401. // Elements
  1402. UILabel *elementLabel= [[UILabel alloc]initWithFrame:CGRectMake(shift, -12, 0, 44)];
  1403. elementLabel.backgroundColor = [UIColor clearColor];
  1404. elementLabel.textColor = NCBrandColor.sharedInstance.textView;
  1405. elementLabel.font = [UIFont systemFontOfSize:12];
  1406. elementLabel.textAlignment = NSTextAlignmentRight;
  1407. elementLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  1408. NSArray *metadatas = [self getMetadatasFromSectionDataSource:section];
  1409. NSUInteger rowsCount = [metadatas count];
  1410. if (rowsCount == 0) return nil;
  1411. if (rowsCount == 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_element_",nil)];
  1412. if (rowsCount > 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_elements_",nil)];
  1413. [visualEffectView.contentView addSubview:elementLabel];
  1414. return visualEffectView;
  1415. }
  1416. - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
  1417. {
  1418. return [sectionDataSource.sections indexOfObject:title];
  1419. }
  1420. - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
  1421. {
  1422. if ([[CCUtility getGroupBySettings] isEqualToString:@"alphabetic"])
  1423. return [[UILocalizedIndexedCollation currentCollation] sectionIndexTitles];
  1424. else
  1425. return nil;
  1426. }
  1427. /*
  1428. -(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
  1429. {
  1430. if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){
  1431. }
  1432. }
  1433. */
  1434. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  1435. {
  1436. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1437. tableShare *shareCell;
  1438. if (metadata == nil || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata] || (_metadataFolder != nil && [[NCManageDatabase sharedInstance] isTableInvalidated:_metadataFolder])) {
  1439. return [CCCellMain new];
  1440. }
  1441. for (tableShare *share in appDelegate.shares) {
  1442. if ([share.serverUrl isEqualToString:metadata.serverUrl] && [share.fileName isEqualToString:metadata.fileName]) {
  1443. shareCell = share;
  1444. break;
  1445. }
  1446. }
  1447. UITableViewCell *cell = [[NCMainCommon shared] cellForRowAtIndexPath:indexPath tableView:tableView metadata:metadata metadataFolder:_metadataFolder serverUrl:self.serverUrl autoUploadFileName:_autoUploadFileName autoUploadDirectory:_autoUploadDirectory tableShare:shareCell livePhoto:livePhoto];
  1448. // NORMAL - > MAIN
  1449. if ([cell isKindOfClass:[CCCellMain class]]) {
  1450. // Comment tap
  1451. if (metadata.commentsUnread) {
  1452. UITapGestureRecognizer *tapComment = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionComment:)];
  1453. [tapComment setNumberOfTapsRequired:1];
  1454. ((CCCellMain *)cell).comment.userInteractionEnabled = YES;
  1455. [((CCCellMain *)cell).comment addGestureRecognizer:tapComment];
  1456. }
  1457. // Share add Tap
  1458. UITapGestureRecognizer *tapShare = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionShared:)];
  1459. [tapShare setNumberOfTapsRequired:1];
  1460. ((CCCellMain *)cell).viewShared.userInteractionEnabled = YES;
  1461. [((CCCellMain *)cell).viewShared addGestureRecognizer:tapShare];
  1462. // More
  1463. if ([self canOpenMenuAction:metadata]) {
  1464. UITapGestureRecognizer *tapMore = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(actionMore:)];
  1465. [tapMore setNumberOfTapsRequired:1];
  1466. ((CCCellMain *)cell).more.userInteractionEnabled = YES;
  1467. [((CCCellMain *)cell).more addGestureRecognizer:tapMore];
  1468. }
  1469. // MGSwipeButton
  1470. ((CCCellMain *)cell).delegate = self;
  1471. // LEFT
  1472. ((CCCellMain *)cell).leftButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:self.cellFavouriteImage backgroundColor:NCBrandColor.sharedInstance.yellowFavorite padding:25]];
  1473. ((CCCellMain *)cell).leftExpansion.buttonIndex = 0;
  1474. ((CCCellMain *)cell).leftExpansion.fillOnTrigger = NO;
  1475. //centerIconOverText
  1476. MGSwipeButton *favoriteButton = (MGSwipeButton *)[((CCCellMain *)cell).leftButtons objectAtIndex:0];
  1477. [favoriteButton centerIconOverText];
  1478. // RIGHT
  1479. ((CCCellMain *)cell).rightButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:self.cellTrashImage backgroundColor:[UIColor redColor] padding:25]];
  1480. ((CCCellMain *)cell).rightExpansion.buttonIndex = 0;
  1481. ((CCCellMain *)cell).rightExpansion.fillOnTrigger = NO;
  1482. //centerIconOverText
  1483. MGSwipeButton *deleteButton = (MGSwipeButton *)[((CCCellMain *)cell).rightButtons objectAtIndex:0];
  1484. [deleteButton centerIconOverText];
  1485. }
  1486. // TRANSFER
  1487. if ([cell isKindOfClass:[CCCellMainTransfer class]]) {
  1488. // gesture Transfer
  1489. [((CCCellMainTransfer *)cell).transferButton.stopButton addTarget:self action:@selector(cancelTaskButton:withEvent:) forControlEvents:UIControlEventTouchUpInside];
  1490. UILongPressGestureRecognizer *stopLongGesture = [UILongPressGestureRecognizer new];
  1491. [stopLongGesture addTarget:self action:@selector(cancelAllTask:)];
  1492. [((CCCellMainTransfer *)cell).transferButton.stopButton addGestureRecognizer:stopLongGesture];
  1493. }
  1494. return cell;
  1495. }
  1496. - (void)setTableViewHeader
  1497. {
  1498. NSInteger serverVersionMajor = [[NCManageDatabase sharedInstance] getCapabilitiesServerIntWithAccount:appDelegate.account elements:NCElementsJSON.shared.capabilitiesVersionMajor];
  1499. NSString *trimmedRichWorkspaceText = [self.richWorkspaceText stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
  1500. if (serverVersionMajor < k_nextcloud_version_18_0 || trimmedRichWorkspaceText.length == 0 ) {
  1501. [self.tableView.tableHeaderView setFrame:CGRectMake(self.tableView.tableHeaderView.frame.origin.x, self.tableView.tableHeaderView.frame.origin.y, self.tableView.frame.size.width, heightSearchBar)];
  1502. } else {
  1503. [self.viewRichWorkspace setFrame:CGRectMake(self.tableView.tableHeaderView.frame.origin.x, self.tableView.tableHeaderView.frame.origin.y, self.tableView.frame.size.width, heightRichWorkspace)];
  1504. }
  1505. if (self.searchController.isActive == true) {
  1506. [self.tableView.tableHeaderView setFrame:CGRectMake(self.tableView.tableHeaderView.frame.origin.x, self.tableView.tableHeaderView.frame.origin.y, self.tableView.frame.size.width, 0)];
  1507. }
  1508. [self.viewRichWorkspace setNeedsLayout];
  1509. [self.viewRichWorkspace loadWithRichWorkspaceText:self.richWorkspaceText];
  1510. }
  1511. - (void)setTableViewFooter
  1512. {
  1513. UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  1514. [footerView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  1515. UILabel *footerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  1516. [footerLabel setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  1517. UIFont *appFont = [UIFont systemFontOfSize:12];
  1518. footerLabel.font = appFont;
  1519. footerLabel.textColor = [UIColor grayColor];
  1520. footerLabel.backgroundColor = [UIColor clearColor];
  1521. footerLabel.textAlignment = NSTextAlignmentCenter;
  1522. NSString *folders;
  1523. NSString *files;
  1524. NSString *footerText;
  1525. if (sectionDataSource.directories > 1) {
  1526. folders = [NSString stringWithFormat:@"%ld %@", (long)sectionDataSource.directories, NSLocalizedString(@"_folders_", nil)];
  1527. } else if (sectionDataSource.directories == 1){
  1528. folders = [NSString stringWithFormat:@"%ld %@", (long)sectionDataSource.directories, NSLocalizedString(@"_folder_", nil)];
  1529. } else {
  1530. folders = @"";
  1531. }
  1532. if (sectionDataSource.files > 1) {
  1533. files = [NSString stringWithFormat:@"%ld %@ %@", (long)sectionDataSource.files, NSLocalizedString(@"_files_", nil), [CCUtility transformedSize:sectionDataSource.totalSize]];
  1534. } else if (sectionDataSource.files == 1){
  1535. files = [NSString stringWithFormat:@"%ld %@ %@", (long)sectionDataSource.files, NSLocalizedString(@"_file_", nil), [CCUtility transformedSize:sectionDataSource.totalSize]];
  1536. } else {
  1537. files = @"";
  1538. }
  1539. if ([folders isEqualToString:@""]) {
  1540. footerText = files;
  1541. } else if ([files isEqualToString:@""]) {
  1542. footerText = folders;
  1543. } else {
  1544. footerText = [NSString stringWithFormat:@"%@, %@", folders, files];
  1545. }
  1546. footerLabel.text = footerText;
  1547. [footerView addSubview:footerLabel];
  1548. [self.tableView setTableFooterView:footerView];
  1549. }
  1550. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  1551. {
  1552. CCCellMain *cell = [tableView cellForRowAtIndexPath:indexPath];
  1553. // settiamo il record file.
  1554. self.metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1555. if (!self.metadata)
  1556. return;
  1557. // se non può essere selezionata deseleziona
  1558. if ([cell isEditing] == NO)
  1559. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  1560. // se siamo in modalità editing impostiamo il titolo dei selezioati e usciamo subito
  1561. if (self.tableView.editing) {
  1562. [selectOcId addObject:self.metadata.ocId];
  1563. [self setTitle];
  1564. return;
  1565. }
  1566. if (self.metadata.status != k_metadataStatusNormal && self.metadata.status != k_metadataStatusDownloadError) {
  1567. return;
  1568. }
  1569. // file
  1570. if (self.metadata.directory == NO) {
  1571. // se il file esiste andiamo direttamente al delegato altrimenti carichiamolo
  1572. if ([CCUtility fileProviderStorageExists:self.metadata.ocId fileNameView:self.metadata.fileNameView]) {
  1573. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_downloadedFile object:nil userInfo:@{@"metadata": self.metadata, @"selector": selectorLoadFileView, @"errorCode": @(0), @"errorDescription": @""}];
  1574. } else {
  1575. if (_metadataFolder.e2eEncrypted && ![CCUtility isEndToEndEnabled:appDelegate.account]) {
  1576. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorE2EENotEnabled forced:true];
  1577. } else {
  1578. if (([self.metadata.typeFile isEqualToString: k_metadataTypeFile_video] || [self.metadata.typeFile isEqualToString: k_metadataTypeFile_audio]) && _metadataFolder.e2eEncrypted == NO) {
  1579. [self shouldPerformSegue:self.metadata selector:@""];
  1580. } else if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_document] && [[NCUtility shared] isDirectEditingWithAccount:self.metadata.account contentType:self.metadata.contentType] != nil) {
  1581. if (NCCommunication.shared.isNetworkReachable) {
  1582. [self shouldPerformSegue:self.metadata selector:@""];
  1583. } else {
  1584. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_go_online_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorOffline forced:true];
  1585. }
  1586. } else if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_document] && [[NCUtility shared] isRichDocument:self.metadata]) {
  1587. if (NCCommunication.shared.isNetworkReachable) {
  1588. [self shouldPerformSegue:self.metadata selector:@""];
  1589. } else {
  1590. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_go_online_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorOffline forced:true];
  1591. }
  1592. } else {
  1593. if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_image]) {
  1594. [self shouldPerformSegue:self.metadata selector:selectorLoadFileView];
  1595. }
  1596. [[NCNetworking shared] downloadWithMetadata:self.metadata selector:selectorLoadFileView setFavorite:false completion:^(NSInteger errorCode) { }];
  1597. }
  1598. }
  1599. }
  1600. }
  1601. if (self.metadata.directory) {
  1602. [self performSegueDirectoryWithMetadata:self.metadata blinkFileNamePath:self.blinkFileNamePath];
  1603. }
  1604. }
  1605. - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(nonnull NSIndexPath *)indexPath
  1606. {
  1607. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1608. [selectOcId removeObject:metadata.ocId];
  1609. [self setTitle];
  1610. }
  1611. - (void)didSelectAll
  1612. {
  1613. for (int i = 0; i < self.tableView.numberOfSections; i++) {
  1614. for (int j = 0; j < [self.tableView numberOfRowsInSection:i]; j++) {
  1615. NSIndexPath *indexPath = [NSIndexPath indexPathForRow:j inSection:i];
  1616. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1617. [selectOcId addObject:metadata.ocId];
  1618. [self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
  1619. }
  1620. }
  1621. [self setTitle];
  1622. }
  1623. - (BOOL)indexPathIsValid:(NSIndexPath *)indexPath
  1624. {
  1625. if (!indexPath)
  1626. return NO;
  1627. NSInteger section = indexPath.section;
  1628. NSInteger row = indexPath.row;
  1629. NSInteger lastSectionIndex = [self numberOfSectionsInTableView:self.tableView] - 1;
  1630. if (section > lastSectionIndex || lastSectionIndex < 0)
  1631. return NO;
  1632. NSInteger rowCount = [self.tableView numberOfRowsInSection:indexPath.section] - 1;
  1633. if (rowCount < 0)
  1634. return NO;
  1635. return row <= rowCount;
  1636. }
  1637. #pragma --------------------------------------------------------------------------------------------
  1638. #pragma mark ===== Navigation ====
  1639. #pragma --------------------------------------------------------------------------------------------
  1640. - (void)shouldPerformSegue:(tableMetadata *)metadata selector:(NSString *)selector
  1641. {
  1642. // if background return
  1643. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return;
  1644. if (self.view.window == NO)
  1645. return;
  1646. // Collapsed ma siamo già in detail esci
  1647. if (self.splitViewController.isCollapsed) {
  1648. if (appDelegate.activeDetail.isViewLoaded && appDelegate.activeDetail.view.window) return;
  1649. }
  1650. // Metadata for push detail
  1651. self.metadataForPushDetail = metadata;
  1652. self.selectorForPushDetail = selector;
  1653. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  1654. }
  1655. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  1656. {
  1657. tableMetadata *metadata;
  1658. NSMutableArray *photoDataSource = [NSMutableArray new];
  1659. UINavigationController *navigationController = segue.destinationViewController;
  1660. NCDetailViewController *detailViewController = (NCDetailViewController *)navigationController.topViewController;
  1661. if ([sender isKindOfClass:[tableMetadata class]]) {
  1662. metadata = sender;
  1663. [photoDataSource addObject:sender];
  1664. } else {
  1665. metadata = self.metadataForPushDetail;
  1666. for (NSString *ocId in sectionDataSource.allOcId) {
  1667. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:ocId];
  1668. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  1669. [photoDataSource addObject:metadata];
  1670. }
  1671. }
  1672. detailViewController.metadata = metadata;
  1673. detailViewController.selector = self.selectorForPushDetail;
  1674. [detailViewController setTitle:metadata.fileNameView];
  1675. }
  1676. // can i go to next viewcontroller
  1677. - (void)performSegueDirectoryWithMetadata:(tableMetadata *)metadata blinkFileNamePath:(NSString *)blinkFileNamePath
  1678. {
  1679. NSString *nomeDir;
  1680. if (self.tableView.editing == NO) {
  1681. // E2EE Check enable
  1682. if (metadata.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.account] == NO) {
  1683. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorE2EENotEnabled forced:true];
  1684. return;
  1685. }
  1686. nomeDir = metadata.fileName;
  1687. NSString *serverUrlPush = [CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:nomeDir];
  1688. CCMain *viewController = [appDelegate.listMainVC objectForKey:serverUrlPush];
  1689. if (!viewController) {
  1690. viewController = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMain"];
  1691. viewController.serverUrl = serverUrlPush;
  1692. viewController.titleMain = metadata.fileNameView;
  1693. viewController.blinkFileNamePath = blinkFileNamePath;
  1694. // save self
  1695. [appDelegate.listMainVC setObject:viewController forKey:serverUrlPush];
  1696. [self.navigationController pushViewController:viewController animated:YES];
  1697. } else {
  1698. if (viewController.isViewLoaded) {
  1699. viewController.titleMain = metadata.fileNameView;
  1700. viewController.blinkFileNamePath = blinkFileNamePath;
  1701. // Fix : Application tried to present modally an active controller
  1702. if ([self.navigationController isBeingPresented]) {
  1703. // being presented
  1704. } else if ([self.navigationController isMovingToParentViewController]) {
  1705. // being pushed
  1706. } else {
  1707. [self.navigationController pushViewController:viewController animated:YES];
  1708. }
  1709. }
  1710. }
  1711. }
  1712. }
  1713. @end