CCMain.m 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445
  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, createFormUploadAssetsDelegate, 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 ===== Text Field =====
  467. #pragma --------------------------------------------------------------------------------------------
  468. - (void)minCharTextFieldDidChange:(UITextField *)sender
  469. {
  470. UIAlertController *alertController = (UIAlertController *)self.presentedViewController;
  471. if (alertController)
  472. {
  473. UITextField *fileName = alertController.textFields.firstObject;
  474. UIAlertAction *okAction = alertController.actions.lastObject;
  475. okAction.enabled = fileName.text.length > 0;
  476. }
  477. }
  478. - (void)textFieldDidBeginEditing:(UITextField *)textField
  479. {
  480. [CCUtility selectFileNameFrom:textField];
  481. }
  482. #pragma --------------------------------------------------------------------------------------------
  483. #pragma mark ===== Graphic Window =====
  484. #pragma --------------------------------------------------------------------------------------------
  485. - (void)createRefreshControl
  486. {
  487. refreshControl = [NCMainRefreshControl new];
  488. self.tableView.refreshControl = refreshControl;
  489. refreshControl.tintColor = UIColor.lightGrayColor;
  490. refreshControl.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
  491. [refreshControl addTarget:self action:@selector(refreshControlTarget) forControlEvents:UIControlEventValueChanged];
  492. }
  493. - (void)deleteRefreshControl
  494. {
  495. [refreshControl endRefreshing];
  496. [refreshControl removeFromSuperview];
  497. refreshControl = nil;
  498. }
  499. - (void)refreshControlTarget
  500. {
  501. [self readFolder:_serverUrl];
  502. // Actuate `Peek` feedback (weak boom)
  503. AudioServicesPlaySystemSound(1519);
  504. }
  505. - (void)setTitle
  506. {
  507. if (_isSelectedMode) {
  508. NSUInteger totali = [sectionDataSource.allRecordsDataSource count];
  509. NSUInteger selezionati = [[self.tableView indexPathsForSelectedRows] count];
  510. self.navigationItem.titleView = nil;
  511. self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)selezionati, (unsigned long)totali];
  512. } else {
  513. if (_isRoot) {
  514. self.navigationItem.title = NCBrandOptions.sharedInstance.brand;
  515. } else {
  516. self.navigationItem.title = _titleMain;
  517. }
  518. }
  519. NSString *titleButtonMenuSort = [[NCUtility shared] getTitleButtonForViewWithKey:k_layout_view_main];
  520. [self.sortButton setTitle:NSLocalizedString(titleButtonMenuSort, nil) forState:UIControlStateNormal];
  521. }
  522. - (void)setUINavigationBarDefault
  523. {
  524. UIBarButtonItem *buttonSelect = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_select_", @"") style:UIBarButtonItemStylePlain target:self action:@selector(tableViewToggle)];
  525. self.navigationController.navigationBar.hidden = NO;
  526. self.navigationItem.rightBarButtonItem = buttonSelect;
  527. self.navigationItem.leftBarButtonItem = nil;
  528. }
  529. - (void)setUINavigationBarSelected
  530. {
  531. UIBarButtonItem *buttonMore = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"navigationMore"] style:UIBarButtonItemStylePlain target:self action:@selector(toggleSelectMenu)];
  532. UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(cancelSelect)];
  533. self.navigationItem.leftBarButtonItem = leftButton;
  534. self.navigationItem.rightBarButtonItem = buttonMore; //[[NSArray alloc] initWithObjects:buttonMore, nil];
  535. }
  536. - (void)cancelSelect
  537. {
  538. [self tableViewSelect:false];
  539. }
  540. #pragma --------------------------------------------------------------------------------------------
  541. #pragma mark ===== Save selected File =====
  542. #pragma --------------------------------------------------------------------------------------------
  543. - (void)saveToPhotoAlbum:(tableMetadata *)metadata
  544. {
  545. NSString *fileNamePath = [CCUtility getDirectoryProviderStorageOcId:metadata.ocId fileNameView:metadata.fileNameView];
  546. PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus];
  547. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] && status == PHAuthorizationStatusAuthorized) {
  548. UIImage *image = [UIImage imageWithContentsOfFile:fileNamePath];
  549. if (image)
  550. UIImageWriteToSavedPhotosAlbum(image, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  551. else
  552. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorFileNotSaved forced:false];
  553. }
  554. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video] && status == PHAuthorizationStatusAuthorized) {
  555. if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(fileNamePath)) {
  556. UISaveVideoAtPathToSavedPhotosAlbum(fileNamePath, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  557. } else {
  558. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorFileNotSaved forced:false];
  559. }
  560. }
  561. if (status != PHAuthorizationStatusAuthorized) {
  562. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_access_photo_not_enabled_", nil) message:NSLocalizedString(@"_access_photo_not_enabled_msg_", nil) preferredStyle:UIAlertControllerStyleAlert];
  563. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  564. [alertController addAction:okAction];
  565. [self presentViewController:alertController animated:YES completion:nil];
  566. }
  567. }
  568. - (void)saveSelectedFilesSelector:(NSString *)path didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
  569. {
  570. if (error) {
  571. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code forced:false];
  572. }
  573. }
  574. - (void)saveSelectedFiles
  575. {
  576. if (_isSelectedMode && [selectOcId count] == 0)
  577. return;
  578. [_hud visibleHudTitle:@"" mode:MBProgressHUDModeIndeterminate color:nil];
  579. NSArray *metadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  580. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.01 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  581. for (tableMetadata *metadata in metadatas) {
  582. if (metadata.directory == NO && ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])) {
  583. [[NCOperationQueue shared] downloadWithMetadata:metadata selector:selectorSaveAlbum setFavorite:false];
  584. }
  585. }
  586. [_hud hideHud];
  587. });
  588. [self tableViewSelect:false];
  589. }
  590. #pragma mark -
  591. #pragma --------------------------------------------------------------------------------------------
  592. #pragma mark ===== Peek & Pop =====
  593. #pragma --------------------------------------------------------------------------------------------
  594. - (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location
  595. {
  596. CGPoint convertedLocation = [self.view convertPoint:location toView:self.tableView];
  597. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:convertedLocation];
  598. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  599. CCCellMain *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  600. if (cell) {
  601. previewingContext.sourceRect = cell.frame;
  602. CCPeekPop *viewController = [[UIStoryboard storyboardWithName:@"CCPeekPop" bundle:nil] instantiateViewControllerWithIdentifier:@"PeekPopImagePreview"];
  603. viewController.metadata = metadata;
  604. viewController.imageFile = cell.file.image;
  605. viewController.showOpenIn = true;
  606. viewController.showShare = true;
  607. viewController.showOpenQuickLook = [[NCUtility shared] isQuickLookDisplayableWithMetadata:metadata];
  608. return viewController;
  609. }
  610. return nil;
  611. }
  612. - (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit
  613. {
  614. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:previewingContext.sourceRect.origin];
  615. [self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
  616. }
  617. #pragma --------------------------------------------------------------------------------------------
  618. #pragma mark ==== Download ====
  619. #pragma --------------------------------------------------------------------------------------------
  620. - (void)downloadSelectedFilesFolders
  621. {
  622. if (_isSelectedMode && [selectOcId count] == 0)
  623. return;
  624. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  625. for (tableMetadata *metadata in selectedMetadatas) {
  626. [[NCOperationQueue shared] synchronizationMetadata:metadata selector:selectorDownloadFile];
  627. }
  628. [self tableViewSelect:false];
  629. }
  630. #pragma --------------------------------------------------------------------------------------------
  631. #pragma mark ===== Upload new Photos/Videos =====
  632. #pragma --------------------------------------------------------------------------------------------
  633. - (void)uploadFileAsset:(NSMutableArray *)assets serverUrl:(NSString *)serverUrl useSubFolder:(BOOL)useSubFolder session:(NSString *)session
  634. {
  635. // if request create the folder for Auto Upload & the subfolders
  636. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  637. NSString *autoUploadPath = [[NCManageDatabase sharedInstance] getAccountAutoUploadPathWithUrlBase:appDelegate.urlBase account:appDelegate.account];
  638. if ([autoUploadPath isEqualToString:serverUrl]) {
  639. if ([[NCNetworking shared] createFolderWithAssets:(PHFetchResult *)assets selector:selectorUploadFile useSubFolder:useSubFolder account:appDelegate.account urlBase:appDelegate.urlBase]) {
  640. [[NCContentPresenter shared] messageNotification:@"_error_" description:@"_error_createsubfolders_upload_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorInternalError forced:true];
  641. return;
  642. }
  643. }
  644. [self uploadFileAsset:assets serverUrl:serverUrl autoUploadPath:autoUploadPath useSubFolder:useSubFolder session:session];
  645. });
  646. }
  647. - (void)uploadFileAsset:(NSArray *)assets serverUrl:(NSString *)serverUrl autoUploadPath:(NSString *)autoUploadPath useSubFolder:(BOOL)useSubFolder session:(NSString *)session
  648. {
  649. NSMutableArray *metadatasNOConflict = [NSMutableArray new];
  650. NSMutableArray *metadatasMOV = [NSMutableArray new];
  651. NSMutableArray *metadatasUploadInConflict = [NSMutableArray new];
  652. for (PHAsset *asset in assets) {
  653. BOOL livePhoto = false;
  654. NSString *fileName = [CCUtility createFileName:[asset valueForKey:@"filename"] fileDate:asset.creationDate fileType:asset.mediaType keyFileName:k_keyFileNameMask keyFileNameType:k_keyFileNameType keyFileNameOriginal:k_keyFileNameOriginal];
  655. NSDate *assetDate = asset.creationDate;
  656. NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
  657. // Detect LivePhoto Upload
  658. if ((asset.mediaSubtypes == PHAssetMediaSubtypePhotoLive || asset.mediaSubtypes == PHAssetMediaSubtypePhotoLive+PHAssetMediaSubtypePhotoHDR) && CCUtility.getLivePhoto) {
  659. livePhoto = true;
  660. }
  661. // Create serverUrl if use sub folder
  662. if (useSubFolder) {
  663. [formatter setDateFormat:@"yyyy"];
  664. NSString *yearString = [formatter stringFromDate:assetDate];
  665. [formatter setDateFormat:@"MM"];
  666. NSString *monthString = [formatter stringFromDate:assetDate];
  667. serverUrl = [NSString stringWithFormat:@"%@/%@/%@", autoUploadPath, yearString, monthString];
  668. }
  669. // Check if is in upload
  670. NSArray *isRecordInSessions = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileName == %@ AND session != ''", appDelegate.account, serverUrl, fileName] page:0 limit:0 sorted:@"fileName" ascending:NO];
  671. if ([isRecordInSessions count] > 0)
  672. continue;
  673. // Prepare record metadata
  674. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] createMetadataWithAccount:appDelegate.account fileName:fileName ocId:[[NSUUID UUID] UUIDString] serverUrl:serverUrl urlBase:appDelegate.urlBase url:@"" contentType:@"" livePhoto:livePhoto];
  675. metadataForUpload.assetLocalIdentifier = asset.localIdentifier;
  676. metadataForUpload.session = session;
  677. metadataForUpload.sessionSelector = selectorUploadFile;
  678. metadataForUpload.size = [[NCUtilityFileSystem shared] getFileSizeWithAsset:asset];
  679. metadataForUpload.status = k_metadataStatusWaitUpload;
  680. // Add Medtadata MOV LIVE PHOTO for upload
  681. if (livePhoto) {
  682. NSString *fileNameMove = [NSString stringWithFormat:@"%@.mov", fileName.stringByDeletingPathExtension];
  683. NSString *ocId = [[NSUUID UUID] UUIDString];
  684. NSString *filePath = [CCUtility getDirectoryProviderStorageOcId:ocId fileNameView:fileNameMove];
  685. dispatch_semaphore_t semaphore = dispatch_semaphore_create(0);
  686. [CCUtility extractLivePhotoAsset:asset filePath:filePath withCompletion:^(NSURL *url) {
  687. if (url != nil) {
  688. unsigned long long fileSize = [[[NSFileManager defaultManager] attributesOfItemAtPath:url.path error:nil] fileSize];
  689. tableMetadata *metadataMOVForUpload = [[NCManageDatabase sharedInstance] createMetadataWithAccount:appDelegate.account fileName:fileNameMove ocId:ocId serverUrl:serverUrl urlBase:appDelegate.urlBase url:@"" contentType:@"" livePhoto:livePhoto];
  690. metadataForUpload.livePhoto = true;
  691. metadataMOVForUpload.livePhoto = true;
  692. metadataMOVForUpload.session = session;
  693. metadataMOVForUpload.sessionSelector = selectorUploadFile;
  694. metadataMOVForUpload.size = fileSize;
  695. metadataMOVForUpload.status = k_metadataStatusWaitUpload;
  696. metadataMOVForUpload.typeFile = k_metadataTypeFile_video;
  697. [metadatasMOV addObject:metadataMOVForUpload];
  698. }
  699. dispatch_semaphore_signal(semaphore);
  700. }];
  701. while (dispatch_semaphore_wait(semaphore, DISPATCH_TIME_FOREVER))
  702. [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:30]];
  703. }
  704. if ([[NCUtility shared] getMetadataConflictWithAccount:appDelegate.account serverUrl:serverUrl fileName:fileName] != nil) {
  705. [metadatasUploadInConflict addObject:metadataForUpload];
  706. } else {
  707. [metadatasNOConflict addObject:metadataForUpload];
  708. }
  709. }
  710. dispatch_async(dispatch_get_main_queue(), ^{
  711. // Verify if file(s) exists
  712. if (metadatasUploadInConflict.count > 0) {
  713. NCCreateFormUploadConflict *conflict = [[UIStoryboard storyboardWithName:@"NCCreateFormUploadConflict" bundle:nil] instantiateInitialViewController];
  714. conflict.serverUrl = self.serverUrl;
  715. conflict.metadatasNOConflict = metadatasNOConflict;
  716. conflict.metadatasMOV = metadatasMOV;
  717. conflict.metadatasUploadInConflict = metadatasUploadInConflict;
  718. [self presentViewController:conflict animated:YES completion:nil];
  719. } else {
  720. [[NCManageDatabase sharedInstance] addMetadatas:metadatasNOConflict];
  721. [[NCManageDatabase sharedInstance] addMetadatas:metadatasMOV];
  722. [[appDelegate networkingAutoUpload] startProcess];
  723. }
  724. });
  725. }
  726. #pragma --------------------------------------------------------------------------------------------
  727. #pragma mark ==== Read Folder ====
  728. #pragma --------------------------------------------------------------------------------------------
  729. - (void)readFolder:(NSString *)serverUrl
  730. {
  731. // init control
  732. if (!serverUrl || !appDelegate.account || appDelegate.maintenanceMode) {
  733. [refreshControl endRefreshing];
  734. return;
  735. }
  736. // Search Mode
  737. if (self.searchController.isActive) {
  738. _searchFileName = @""; // forced reload searchg
  739. [self updateSearchResultsForSearchController:self.searchController];
  740. return;
  741. }
  742. _loadingFolder = YES;
  743. [refreshControl endRefreshing];
  744. [self tableViewReloadData];
  745. [[NCNetworking shared] readFolderWithServerUrl:serverUrl account:appDelegate.account completion:^(NSString *account, tableMetadata *metadataFolder, NSArray *metadatas, NSArray *metadatasUpdate, NSArray *metadatasLocalUpdate, NSInteger errorCode, NSString *errorDescription) {
  746. if (errorCode == 0 ) {
  747. _metadataFolder = metadataFolder;
  748. BOOL isFolderEncrypted = [CCUtility isFolderEncrypted:serverUrl e2eEncrypted:_metadataFolder.e2eEncrypted account:appDelegate.account urlBase:_metadataFolder.urlBase];
  749. [self setTitle];
  750. for (tableMetadata *metadata in metadatasLocalUpdate) {
  751. if (!metadata.directory) {
  752. [[NCNetworking shared] downloadWithMetadata:metadata selector:selectorDownloadFile setFavorite:false completion:^(NSInteger errorCode) { }];
  753. }
  754. }
  755. // E2EE Is encrypted folder get metadata
  756. if (isFolderEncrypted) {
  757. if ([CCUtility isEndToEndEnabled:account]) {
  758. [[NCCommunication shared] getE2EEMetadataWithFileId:metadataFolder.fileId e2eToken:nil customUserAgent:nil addCustomHeaders:nil completionHandler:^(NSString *account, NSString *e2eMetadata, NSInteger errorCode, NSString *errorDescription) {
  759. if (errorCode == 0 && e2eMetadata != nil) {
  760. BOOL result = [[NCEndToEndMetadata sharedInstance] decoderMetadata:e2eMetadata privateKey:[CCUtility getEndToEndPrivateKey:account] serverUrl:self.serverUrl account:account urlBase:appDelegate.urlBase];
  761. if (result == false) {
  762. [[NCContentPresenter shared] messageNotification:@"_error_e2ee_" description:@"_e2e_error_decode_metadata_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorDecodeMetadata forced:true];
  763. }
  764. } else if (errorCode != 404) {
  765. [[NCContentPresenter shared] messageNotification:@"_e2e_error_get_metadata_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:true];
  766. }
  767. [self reloadDatasource:_serverUrl ocId:nil];
  768. }];
  769. } else {
  770. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorE2EENotEnabled forced:true];
  771. }
  772. }
  773. } else {
  774. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:true];
  775. }
  776. _loadingFolder = NO;
  777. [self reloadDatasource:serverUrl ocId:nil];
  778. }];
  779. }
  780. - (void)readFileReloadFolder
  781. {
  782. if (!_serverUrl || !appDelegate.account || appDelegate.maintenanceMode)
  783. return;
  784. [[NCNetworking shared] readFileWithServerUrlFileName:self.serverUrl account:appDelegate.account completion:^(NSString *account, tableMetadata *metadata, NSInteger errorCode, NSString *errorDescription) {
  785. if (errorCode == 0 && [account isEqualToString:appDelegate.account]) {
  786. // Rich Workspace
  787. [[NCManageDatabase sharedInstance] setDirectoryWithRichWorkspace:metadata.richWorkspace serverUrl:self.serverUrl account:appDelegate.account];
  788. if (![self.richWorkspaceText isEqualToString:metadata.richWorkspace]) {
  789. self.richWorkspaceText = metadata.richWorkspace;
  790. }
  791. [self setTableViewHeader];
  792. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", account, self.serverUrl]];
  793. // Read folder: No record, Change etag or BLINK
  794. if ([sectionDataSource.allRecordsDataSource count] == 0 || [metadata.etag isEqualToString:directory.etag] == NO || self.blinkFileNamePath != nil) {
  795. [self readFolder:self.serverUrl];
  796. }
  797. } else if (errorCode != 0) {
  798. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:false];
  799. }
  800. }];
  801. }
  802. #pragma mark -
  803. #pragma --------------------------------------------------------------------------------------------
  804. #pragma mark ===== Search =====
  805. #pragma --------------------------------------------------------------------------------------------
  806. - (void)searchStartTimer
  807. {
  808. if (self.searchController.isActive == false) {
  809. return;
  810. }
  811. [[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) {
  812. if (errorCode == 0 && [account isEqualToString:appDelegate.account] && files != nil) {
  813. [[NCManageDatabase sharedInstance] convertNCCommunicationFilesToMetadatas:files useMetadataFolder:false account:account completion:^(tableMetadata *metadataFolder, NSArray<tableMetadata *> *metadatasFolder, NSArray<tableMetadata *> *metadatas) {
  814. [[NCManageDatabase sharedInstance] addMetadatas:metadatas];
  815. _searchResultMetadatas = [[NSMutableArray alloc] initWithArray:metadatas];
  816. _metadataFolder = nil;
  817. [self reloadDatasource:_serverUrl ocId:nil];
  818. [self tableViewReloadData];
  819. [self setTitle];
  820. }];
  821. } else {
  822. if (errorCode != 0) {
  823. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:true];
  824. }
  825. _searchFileName = @"";
  826. [self cancelSearchBar];
  827. }
  828. }];
  829. _noFilesSearchTitle = @"";
  830. _noFilesSearchDescription = NSLocalizedString(@"_search_in_progress_", nil);
  831. [self.tableView reloadEmptyDataSet];
  832. }
  833. - (void)updateSearchResultsForSearchController:(UISearchController *)searchController
  834. {
  835. // Color text "Cancel"
  836. [[UIBarButtonItem appearanceWhenContainedInInstancesOfClasses:@[[UISearchBar class]]] setTintColor:NCBrandColor.sharedInstance.brandElement];
  837. if (searchController.isActive) {
  838. [self deleteRefreshControl];
  839. NSString *fileName = [CCUtility removeForbiddenCharactersServer:searchController.searchBar.text];
  840. if (fileName.length >= k_minCharsSearch && [fileName isEqualToString:_searchFileName] == NO) {
  841. _searchFileName = fileName;
  842. _metadataFolder = nil;
  843. // First : filter
  844. 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];
  845. [_searchResultMetadatas removeAllObjects];
  846. for (tableMetadata *record in records) {
  847. [_searchResultMetadatas addObject:record];
  848. }
  849. // Version >= 12
  850. NSInteger serverVersionMajor = [[NCManageDatabase sharedInstance] getCapabilitiesServerIntWithAccount:appDelegate.account elements:NCElementsJSON.shared.capabilitiesVersionMajor];
  851. if (serverVersionMajor >= 12) {
  852. [_timerWaitInput invalidate];
  853. _timerWaitInput = [NSTimer scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(searchStartTimer) userInfo:nil repeats:NO];
  854. }
  855. [self setTitle];
  856. }
  857. if (_searchResultMetadatas.count == 0 && fileName.length == 0) {
  858. [self reloadDatasource:_serverUrl ocId:nil];
  859. }
  860. } else {
  861. [self createRefreshControl];
  862. [self reloadDatasource:_serverUrl ocId:nil];
  863. }
  864. }
  865. - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar
  866. {
  867. [self cancelSearchBar];
  868. }
  869. - (void)cancelSearchBar
  870. {
  871. if (self.searchController.active) {
  872. [self.searchController setActive:NO];
  873. _searchFileName = @"";
  874. _searchResultMetadatas = [NSMutableArray new];
  875. [self reloadDatasource:_serverUrl ocId:nil];
  876. }
  877. }
  878. #pragma mark -
  879. #pragma --------------------------------------------------------------------------------------------
  880. #pragma mark ===== Delete File or Folder =====
  881. #pragma --------------------------------------------------------------------------------------------
  882. - (void)deleteMetadatas
  883. {
  884. if (_isSelectedMode) {
  885. for (NSString *ocId in selectOcId) {
  886. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromOcId:ocId];
  887. if (metadata) {
  888. [[NCOperationQueue shared] deleteWithMetadata:metadata onlyLocal:false];
  889. }
  890. }
  891. [selectOcId removeAllObjects];
  892. [self tableViewSelect:false];
  893. } else {
  894. [[NCOperationQueue shared] deleteWithMetadata:self.metadata onlyLocal:false];
  895. }
  896. }
  897. // DELEGATE : Select
  898. - (void)dismissSelectWithServerUrl:(NSString *)serverUrl metadata:(tableMetadata *)metadata type:(NSString *)type array:(NSArray *)array buttonType:(NSString *)buttonType overwrite:(BOOL)overwrite
  899. {
  900. if (serverUrl != nil) {
  901. // E2EE DENIED
  902. if ([CCUtility isFolderEncrypted:serverUrl e2eEncrypted:metadata.e2eEncrypted account:appDelegate.account urlBase:appDelegate.urlBase]) {
  903. [[NCContentPresenter shared] messageNotification:@"_move_" description:@"_e2e_error_not_move_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorE2EENotMove forced:true];
  904. return;
  905. }
  906. BOOL move = true;
  907. if ([buttonType isEqualToString:@"done1"]) { move = false; }
  908. if (_isSelectedMode) {
  909. for (NSString *ocId in selectOcId) {
  910. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromOcId:ocId];
  911. if (metadata) {
  912. [[NCOperationQueue shared] copyMoveWithMetadata:metadata serverUrl:serverUrl overwrite:overwrite move:move];
  913. }
  914. }
  915. [selectOcId removeAllObjects];
  916. [self tableViewSelect:false];
  917. } else {
  918. [[NCOperationQueue shared] copyMoveWithMetadata:self.metadata serverUrl:serverUrl overwrite:overwrite move:move];
  919. }
  920. }
  921. }
  922. - (void)moveOpenWindow:(NSArray *)indexPaths
  923. {
  924. if (_isSelectedMode && [selectOcId count] == 0)
  925. return;
  926. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCSelect" bundle:nil] instantiateInitialViewController];
  927. NCSelect *viewController = (NCSelect *)navigationController.topViewController;
  928. viewController.delegate = self;
  929. viewController.hideButtonCreateFolder = false;
  930. viewController.selectFile = false;
  931. viewController.includeDirectoryE2EEncryption = false;
  932. viewController.includeImages = false;
  933. viewController.type = @"";
  934. viewController.titleButtonDone = NSLocalizedString(@"_move_", nil);
  935. viewController.titleButtonDone1 = NSLocalizedString(@"_copy_", nil);
  936. viewController.isButtonDone1Hide = false;
  937. viewController.isOverwriteHide = false;
  938. viewController.keyLayout = k_layout_view_move;
  939. viewController.array = selectOcId;
  940. [navigationController setModalPresentationStyle:UIModalPresentationFullScreen];
  941. [self presentViewController:navigationController animated:YES completion:nil];
  942. }
  943. #pragma --------------------------------------------------------------------------------------------
  944. #pragma mark ===== Progress & Task Button =====
  945. #pragma --------------------------------------------------------------------------------------------
  946. - (void)triggerProgressTask:(NSNotification *)notification
  947. {
  948. if (sectionDataSource.ocIdIndexPath != nil) {
  949. [[NCMainCommon shared] triggerProgressTask:notification sectionDataSourceocIdIndexPath:sectionDataSource.ocIdIndexPath tableView:self.tableView viewController:self serverUrlViewController:self.serverUrl];
  950. }
  951. }
  952. - (void)cancelTaskButton:(id)sender withEvent:(UIEvent *)event
  953. {
  954. UITouch *touch = [[event allTouches] anyObject];
  955. CGPoint location = [touch locationInView:self.tableView];
  956. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  957. if ([self indexPathIsValid:indexPath]) {
  958. tableMetadata *metadataSection = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  959. if (metadataSection) {
  960. [[NCMainCommon shared] cancelTransferMetadata:metadataSection uploadStatusForcedStart:false];
  961. }
  962. }
  963. }
  964. - (void)cancelAllTask:(id)sender
  965. {
  966. CGPoint location = [sender locationInView:self.tableView];
  967. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  968. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  969. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_all_task_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  970. [NCUtility.shared startActivityIndicatorWithView:self.view bottom:0];
  971. [[NCMainCommon shared] cancelAllTransfer];
  972. [NCUtility.shared stopActivityIndicator];
  973. }]];
  974. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) { }]];
  975. alertController.popoverPresentationController.sourceView = self.tableView;
  976. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  977. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  978. [alertController.view layoutIfNeeded];
  979. [self presentViewController:alertController animated:YES completion:nil];
  980. }
  981. #pragma --------------------------------------------------------------------------------------------
  982. #pragma mark ===== Tap =====
  983. #pragma --------------------------------------------------------------------------------------------
  984. - (void)tapActionComment:(UITapGestureRecognizer *)tapGesture
  985. {
  986. CGPoint location = [tapGesture locationInView:self.tableView];
  987. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  988. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  989. if (metadata && ![CCUtility isFolderEncrypted:self.serverUrl e2eEncrypted:metadata.e2eEncrypted account:appDelegate.account urlBase: appDelegate.urlBase]) {
  990. [[NCMainCommon shared] openShareWithViewController:self metadata:metadata indexPage:1];
  991. }
  992. }
  993. - (void)tapActionShared:(UITapGestureRecognizer *)tapGesture
  994. {
  995. CGPoint location = [tapGesture locationInView:self.tableView];
  996. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  997. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  998. if (metadata && ![CCUtility isFolderEncrypted:self.serverUrl e2eEncrypted:metadata.e2eEncrypted account:appDelegate.account urlBase:appDelegate.urlBase]) {
  999. [[NCMainCommon shared] openShareWithViewController:self metadata:metadata indexPage:2];
  1000. }
  1001. }
  1002. - (void)tapActionConnectionMounted:(UITapGestureRecognizer *)tapGesture
  1003. {
  1004. CGPoint location = [tapGesture locationInView:self.tableView];
  1005. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1006. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1007. if (metadata) {
  1008. }
  1009. }
  1010. #pragma --------------------------------------------------------------------------------------------
  1011. #pragma mark ===== Rich Workspace =====
  1012. #pragma --------------------------------------------------------------------------------------------
  1013. - (void)viewRichWorkspaceTapAction:(UITapGestureRecognizer *)tapGesture
  1014. {
  1015. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCViewerRichWorkspace" bundle:nil] instantiateInitialViewController];
  1016. NCViewerRichWorkspace *viewerRichWorkspace = (NCViewerRichWorkspace *)[navigationController topViewController];
  1017. viewerRichWorkspace.richWorkspaceText = self.richWorkspaceText;
  1018. viewerRichWorkspace.serverUrl = self.serverUrl;
  1019. navigationController.modalPresentationStyle = UIModalPresentationFullScreen;
  1020. [self presentViewController:navigationController animated:NO completion:NULL];
  1021. }
  1022. - (void)toggleSortMenu
  1023. {
  1024. NCSortMenu *sortMenu = [NCSortMenu new];
  1025. [sortMenu toggleMenuWithViewController:self key:k_layout_view_main sortButton:self.sortButton serverUrl:self.serverUrl hideDirectoryOnTop:false];
  1026. }
  1027. - (void)toggleSelectMenu
  1028. {
  1029. [self toggleSelectMenuWithViewController:self.navigationController];
  1030. }
  1031. #pragma --------------------------------------------------------------------------------------------
  1032. #pragma mark ===== Long Press Recognized Table View / Menu Controller =====
  1033. #pragma --------------------------------------------------------------------------------------------
  1034. - (void)onLongPressTableView:(UILongPressGestureRecognizer*)recognizer
  1035. {
  1036. if (recognizer.state == UIGestureRecognizerStateBegan) {
  1037. CGPoint touchPoint = [recognizer locationInView:self.tableView];
  1038. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touchPoint];
  1039. NSMutableArray *items = [NSMutableArray new];
  1040. if ([self indexPathIsValid:indexPath])
  1041. self.metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1042. [self becomeFirstResponder];
  1043. UIMenuController *menuController = [UIMenuController sharedMenuController];
  1044. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_file_", nil) action:@selector(copyTouchFile:)]];
  1045. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_files_", nil) action:@selector(copyTouchFiles:)]];
  1046. if ([NCBrandOptions sharedInstance].disable_openin_file == false) {
  1047. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_open_in_", nil) action:@selector(openinTouchFile:)]];
  1048. }
  1049. if ([[NCUtility shared] isQuickLookDisplayableWithMetadata:self.metadata]) {
  1050. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_open_quicklook_", nil) action:@selector(openQuickLookTouch:)]];
  1051. }
  1052. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_file_", nil) action:@selector(pasteTouchFile:)]];
  1053. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_files_", nil) action:@selector(pasteTouchFiles:)]];
  1054. [menuController setMenuItems:items];
  1055. [menuController setTargetRect:CGRectMake(touchPoint.x, touchPoint.y, 0.0f, 0.0f) inView:self.tableView];
  1056. [menuController setMenuVisible:YES animated:YES];
  1057. }
  1058. }
  1059. - (BOOL)canBecomeFirstResponder
  1060. {
  1061. return YES;
  1062. }
  1063. - (BOOL)canPerformAction:(SEL)action withSender:(id)sender
  1064. {
  1065. // For copy file, copy files, Open in ... :
  1066. //
  1067. // NO Directory
  1068. // NO Error Passcode
  1069. // NO In Session mode (download/upload)
  1070. // NO Template
  1071. if (@selector(copyTouchFile:) == action || @selector(openinTouchFile:) == action || @selector(openQuickLookTouch:) == action) {
  1072. if (_isSelectedMode == NO && self.metadata && !self.metadata.directory && self.metadata.status == k_metadataStatusNormal) return YES;
  1073. else return NO;
  1074. }
  1075. if (@selector(copyTouchFiles:) == action) {
  1076. if (_isSelectedMode) {
  1077. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  1078. for (tableMetadata *metadata in selectedMetadatas) {
  1079. if (!metadata.directory && metadata.status == k_metadataStatusNormal)
  1080. return YES;
  1081. }
  1082. }
  1083. return NO;
  1084. }
  1085. if (@selector(pasteTouchFile:) == action) {
  1086. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1087. NSArray *items = [pasteboard items];
  1088. if ([items count] == 1) {
  1089. // Value : (NSData) ocId
  1090. NSDictionary *dic = [items objectAtIndex:0];
  1091. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1092. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1093. if (ocId) {
  1094. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocId]];
  1095. if (metadata) {
  1096. return [CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView];
  1097. } else {
  1098. return NO;
  1099. }
  1100. }
  1101. }
  1102. return NO;
  1103. }
  1104. if (@selector(pasteTouchFiles:) == action) {
  1105. BOOL isValid = NO;
  1106. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1107. NSArray *items = [pasteboard items];
  1108. if ([items count] <= 1) return NO;
  1109. for (NSDictionary *dic in items) {
  1110. // Value : (NSData) ocId
  1111. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1112. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1113. if (ocId) {
  1114. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromOcId:ocId];
  1115. if (metadata) {
  1116. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1117. isValid = YES;
  1118. } else {
  1119. isValid = NO;
  1120. break;
  1121. }
  1122. } else {
  1123. isValid = NO;
  1124. break;
  1125. }
  1126. } else {
  1127. isValid = NO;
  1128. break;
  1129. }
  1130. }
  1131. return isValid;
  1132. }
  1133. return NO;
  1134. }
  1135. /************************************ COPY ************************************/
  1136. - (void)copyTouchFile:(id)sender
  1137. {
  1138. // Remove all item
  1139. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1140. pasteboard.items = [[NSArray alloc] init];
  1141. if ([CCUtility fileProviderStorageExists:self.metadata.ocId fileNameView:self.metadata.fileNameView]) {
  1142. [self copyFileToPasteboard:self.metadata];
  1143. } else {
  1144. [[NCNetworking shared] downloadWithMetadata:self.metadata selector:selectorLoadCopy setFavorite:false completion:^(NSInteger errorCode) { }];
  1145. }
  1146. }
  1147. - (void)copyTouchFiles:(id)sender
  1148. {
  1149. // Remove all item
  1150. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1151. pasteboard.items = [[NSArray alloc] init];
  1152. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  1153. for (tableMetadata *metadata in selectedMetadatas) {
  1154. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1155. [self copyFileToPasteboard:metadata];
  1156. } else {
  1157. [[NCNetworking shared] downloadWithMetadata:metadata selector:selectorLoadCopy setFavorite:false completion:^(NSInteger errorCode) { }];
  1158. }
  1159. }
  1160. [self tableViewSelect:false];
  1161. }
  1162. - (void)copyFileToPasteboard:(tableMetadata *)metadata
  1163. {
  1164. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1165. NSMutableArray *items = [[NSMutableArray alloc] initWithArray:pasteboard.items];
  1166. // Value : (NSData) ocId
  1167. NSDictionary *item = [NSDictionary dictionaryWithObjectsAndKeys:[NSKeyedArchiver archivedDataWithRootObject:metadata.ocId], k_metadataKeyedUnarchiver,nil];
  1168. [items addObject:item];
  1169. [pasteboard setItems:items];
  1170. }
  1171. /************************************ OPEN IN ... ******************************/
  1172. - (void)openinTouchFile:(id)sender
  1173. {
  1174. [[NCMainCommon shared] downloadOpenWithMetadata:self.metadata selector:selectorOpenIn];
  1175. }
  1176. /************************************ OPEN QUICK LOOK ******************************/
  1177. - (void)openQuickLookTouch:(id)sender
  1178. {
  1179. [[NCMainCommon shared] downloadOpenWithMetadata:self.metadata selector:selectorLoadFileQuickLook];
  1180. }
  1181. /************************************ PASTE ************************************/
  1182. - (void)pasteTouchFile:(id)sender
  1183. {
  1184. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1185. [self uploadFilePasteArray:[pasteboard items]];
  1186. }
  1187. - (void)pasteTouchFiles:(id)sender
  1188. {
  1189. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1190. [self uploadFilePasteArray:[pasteboard items]];
  1191. }
  1192. - (void)uploadFilePasteArray:(NSArray *)items
  1193. {
  1194. for (NSDictionary *dic in items) {
  1195. // Value : (NSData) ocId
  1196. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1197. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1198. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromOcId:ocId];
  1199. if (metadata) {
  1200. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1201. NSString *fileName = [[NCUtility shared] createFileName:metadata.fileNameView serverUrl:self.serverUrl account:appDelegate.account];
  1202. NSString *ocId = [[NSUUID UUID] UUIDString];
  1203. [CCUtility copyFileAtPath:[CCUtility getDirectoryProviderStorageOcId:metadata.ocId fileNameView:metadata.fileNameView] toPath:[CCUtility getDirectoryProviderStorageOcId:ocId fileNameView:fileName]];
  1204. // Prepare record metadata
  1205. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] createMetadataWithAccount:appDelegate.account fileName:fileName ocId:ocId serverUrl:self.serverUrl urlBase:appDelegate.urlBase url:@"" contentType:@"" livePhoto:false];
  1206. metadataForUpload.session = NCNetworking.shared.sessionIdentifierBackground;
  1207. metadataForUpload.sessionSelector = selectorUploadFile;
  1208. metadataForUpload.size = metadata.size;
  1209. metadataForUpload.status = k_metadataStatusWaitUpload;
  1210. // Add Medtadata for upload
  1211. [[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  1212. }
  1213. }
  1214. }
  1215. [[appDelegate networkingAutoUpload] startProcess];
  1216. }
  1217. #pragma mark -
  1218. #pragma --------------------------------------------------------------------------------------------
  1219. #pragma mark ===== menu action : Favorite, More, Delete [swipe] =====
  1220. #pragma --------------------------------------------------------------------------------------------
  1221. - (BOOL)canOpenMenuAction:(tableMetadata *)metadata
  1222. {
  1223. if (metadata == nil)
  1224. return NO;
  1225. // E2EE
  1226. if (_metadataFolder.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.account] == NO)
  1227. return NO;
  1228. return YES;
  1229. }
  1230. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell canSwipe:(MGSwipeDirection)direction
  1231. {
  1232. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  1233. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1234. return [self canOpenMenuAction:metadata];
  1235. }
  1236. -(void)swipeTableCell:(nonnull MGSwipeTableCell *)cell didChangeSwipeState:(MGSwipeState)state gestureIsActive:(BOOL)gestureIsActive
  1237. {
  1238. }
  1239. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell tappedButtonAtIndex:(NSInteger)index direction:(MGSwipeDirection)direction fromExpansion:(BOOL)fromExpansion
  1240. {
  1241. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  1242. self.metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1243. if (direction == MGSwipeDirectionRightToLeft) {
  1244. [self actionDelete:indexPath];
  1245. }
  1246. if (direction == MGSwipeDirectionLeftToRight) {
  1247. [[NCNetworking shared] favoriteMetadata:self.metadata urlBase:appDelegate.urlBase completion:^(NSInteger errorCode, NSString *errorDescription) {
  1248. if (errorCode != 0) {
  1249. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:false];
  1250. }
  1251. }];
  1252. }
  1253. return YES;
  1254. }
  1255. - (void)actionDelete:(NSIndexPath *)indexPath
  1256. {
  1257. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1258. tableLocalFile *localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  1259. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  1260. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1261. [self performSelector:@selector(deleteMetadatas) withObject:nil];
  1262. }]];
  1263. if (localFile) {
  1264. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_remove_local_file_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1265. tableMetadata *metadataLivePhoto = [[NCManageDatabase sharedInstance] isLivePhotoWithMetadata:metadata];
  1266. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  1267. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageOcId:metadata.ocId] error:nil];
  1268. if (metadataLivePhoto) {
  1269. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadataLivePhoto.ocId]];
  1270. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageOcId:metadataLivePhoto.ocId] error:nil];
  1271. }
  1272. [self reloadDatasource:metadata.serverUrl ocId:metadata.ocId];
  1273. }]];
  1274. }
  1275. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  1276. }]];
  1277. alertController.popoverPresentationController.sourceView = self.tableView;
  1278. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  1279. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  1280. [alertController.view layoutIfNeeded];
  1281. [self presentViewController:alertController animated:YES completion:nil];
  1282. }
  1283. - (void)actionMore:(UITapGestureRecognizer *)gestureRecognizer
  1284. {
  1285. CGPoint touch = [gestureRecognizer locationInView:self.tableView];
  1286. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touch];
  1287. self.metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1288. [self toggleMoreMenuWithViewController:self.tabBarController indexPath:indexPath metadata:self.metadata metadataFolder:_metadataFolder];
  1289. }
  1290. #pragma --------------------------------------------------------------------------------------------
  1291. #pragma mark - ==== Datasource ====
  1292. #pragma --------------------------------------------------------------------------------------------
  1293. - (void)reloadDatasource:(NSNotification *)notification
  1294. {
  1295. NSDictionary *userInfo = notification.userInfo;
  1296. NSString *ocId = userInfo[@"ocId"];
  1297. NSString *serverUrl = userInfo[@"serverUrl"];
  1298. [self reloadDatasource:serverUrl ocId:ocId];
  1299. }
  1300. - (void)reloadDatasourceTransfer:(NSNotification *)notification
  1301. {
  1302. NSDictionary *userInfo = notification.userInfo;
  1303. tableMetadata *metadata = userInfo[@"metadata"];
  1304. NSInteger errorCode = [userInfo[@"errorCode"] integerValue];
  1305. NSString *errorDescription = userInfo[@"errorDescription"];
  1306. if (errorCode != 0 && self.view.window != nil) {
  1307. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode forced:false];
  1308. }
  1309. [self reloadDatasource:metadata.serverUrl ocId:metadata.ocId];
  1310. }
  1311. - (void)reloadDatasource:(NSString *)serverUrl ocId:(NSString *)ocId
  1312. {
  1313. // test
  1314. if (appDelegate.account.length == 0 || serverUrl.length == 0 || serverUrl == nil) // || self.view.window == nil)
  1315. return;
  1316. // Se non siamo nella dir appropriata esci
  1317. if ([serverUrl isEqualToString:self.serverUrl] == NO || self.serverUrl == nil)
  1318. return;
  1319. // live photo
  1320. livePhoto = [CCUtility getLivePhoto];
  1321. // load share
  1322. appDelegate.shares = [[NCManageDatabase sharedInstance] getTableSharesWithAccount:appDelegate.account];
  1323. // Search Mode
  1324. if (self.searchController.isActive) {
  1325. // Create metadatas
  1326. NSMutableArray *metadatas = [NSMutableArray new];
  1327. for (tableMetadata *resultMetadata in _searchResultMetadatas) {
  1328. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromOcId:resultMetadata.ocId];
  1329. if (metadata) {
  1330. [metadatas addObject:metadata];
  1331. }
  1332. }
  1333. // [CCUtility getGroupBySettings]
  1334. sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:metadatas listProgressMetadata:nil groupBy:nil filterTypeFileImage:NO filterTypeFileVideo:NO filterLivePhoto:YES sort:@"fileName" ascending:NO directoryOnTop:NO account:appDelegate.account];
  1335. [self tableViewReloadData];
  1336. if ([sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] >= k_minCharsSearch) {
  1337. _noFilesSearchTitle = NSLocalizedString(@"_search_no_record_found_", nil);
  1338. _noFilesSearchDescription = @"";
  1339. }
  1340. if ([sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] < k_minCharsSearch) {
  1341. _noFilesSearchTitle = @"";
  1342. _noFilesSearchDescription = NSLocalizedString(@"_search_instruction_", nil);
  1343. }
  1344. [self.tableView reloadEmptyDataSet];
  1345. return;
  1346. }
  1347. // Get MetadataFolder
  1348. if ([serverUrl isEqualToString:[[NCUtility shared] getHomeServerWithUrlBase:appDelegate.urlBase account:appDelegate.account]])
  1349. _metadataFolder = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.account, k_serverUrl_root]];
  1350. else
  1351. _metadataFolder = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.account, serverUrl]];
  1352. _autoUploadFileName = [[NCManageDatabase sharedInstance] getAccountAutoUploadFileName];
  1353. _autoUploadDirectory = [[NCManageDatabase sharedInstance] getAccountAutoUploadDirectoryWithUrlBase:appDelegate.urlBase account:appDelegate.account];
  1354. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1355. NSArray *recordsTableMetadata = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.account, serverUrl] page:0 limit:0 sorted:@"fileName" ascending:NO];
  1356. // [CCUtility getGroupBySettings]
  1357. NSString *sort = [[NCUtility shared] getSortedForViewWithKey:k_layout_view_main];
  1358. BOOL ascending = [[NCUtility shared] getAscendingForViewWithKey:k_layout_view_main];
  1359. BOOL directoryOnTop = [[NCUtility shared] getDirectoryOnTopForViewWithKey:k_layout_view_main];
  1360. CCSectionDataSourceMetadata *sectionDataSourceTemp = [CCSectionMetadata creataDataSourseSectionMetadata:recordsTableMetadata listProgressMetadata:nil groupBy:nil filterTypeFileImage:NO filterTypeFileVideo:NO filterLivePhoto:YES sort:sort ascending:ascending directoryOnTop:directoryOnTop account:appDelegate.account];
  1361. dispatch_async(dispatch_get_main_queue(), ^{
  1362. sectionDataSource = sectionDataSourceTemp;
  1363. [self tableViewReloadData];
  1364. });
  1365. });
  1366. // BLINK
  1367. if (self.blinkFileNamePath != nil) {
  1368. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1369. for (NSString *key in sectionDataSource.allRecordsDataSource) {
  1370. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:key];
  1371. NSString *metadataFileNamePath = [NSString stringWithFormat:@"%@/%@", metadata.serverUrl, metadata.fileName];
  1372. if ([metadataFileNamePath isEqualToString:self.blinkFileNamePath]) {
  1373. for (NSString *key in sectionDataSource.ocIdIndexPath) {
  1374. if ([key isEqualToString:metadata.ocId]) {
  1375. NSIndexPath *indexPath = [sectionDataSource.ocIdIndexPath objectForKey:key];
  1376. [self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];
  1377. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1378. CCCellMain *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  1379. if (cell) {
  1380. self.blinkFileNamePath = nil;
  1381. [[NCUtility shared] blinkWithCell:cell];
  1382. }
  1383. });
  1384. }
  1385. }
  1386. }
  1387. }
  1388. });
  1389. }
  1390. }
  1391. - (NSArray *)getMetadatasFromSelectedRows:(NSArray *)selectedRows
  1392. {
  1393. NSMutableArray *metadatas = [[NSMutableArray alloc] init];
  1394. if (selectedRows.count > 0) {
  1395. for (NSIndexPath *selectionIndex in selectedRows) {
  1396. NSString *ocId = [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:selectionIndex.section]] objectAtIndex:selectionIndex.row];
  1397. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:ocId];
  1398. [metadatas addObject:metadata];
  1399. }
  1400. }
  1401. return metadatas;
  1402. }
  1403. - (NSArray *)getMetadatasFromSectionDataSource:(NSInteger)section
  1404. {
  1405. NSInteger totSections =[sectionDataSource.sections count] ;
  1406. if ((totSections < (section + 1)) || ((section + 1) > totSections)) {
  1407. return nil;
  1408. }
  1409. id valueSection = [sectionDataSource.sections objectAtIndex:section];
  1410. return [sectionDataSource.sectionArrayRow objectForKey:valueSection];
  1411. }
  1412. #pragma --------------------------------------------------------------------------------------------
  1413. #pragma mark - ==== Table ====
  1414. #pragma --------------------------------------------------------------------------------------------
  1415. - (void)tableViewToggle
  1416. {
  1417. [self tableViewSelect:!_isSelectedMode];
  1418. }
  1419. - (void)tableViewSelect:(BOOL)toggle
  1420. {
  1421. _isSelectedMode = toggle;
  1422. // chiudiamo eventuali swipe aperti
  1423. if (_isSelectedMode)
  1424. [self.tableView setEditing:NO animated:NO];
  1425. [self.tableView setAllowsMultipleSelectionDuringEditing:_isSelectedMode];
  1426. [self.tableView setEditing:_isSelectedMode animated:YES];
  1427. if (_isSelectedMode)
  1428. [self setUINavigationBarSelected];
  1429. else
  1430. [self setUINavigationBarDefault];
  1431. [selectOcId removeAllObjects];
  1432. [self setTitle];
  1433. }
  1434. - (void)tableViewReloadData
  1435. {
  1436. // store selected cells before relod
  1437. NSArray *indexPaths = [self.tableView indexPathsForSelectedRows];
  1438. // reload table view
  1439. [self.tableView reloadData];
  1440. // selected cells stored
  1441. for (NSIndexPath *path in indexPaths)
  1442. [self.tableView selectRowAtIndexPath:path animated:NO scrollPosition:UITableViewScrollPositionNone];
  1443. [self setTableViewHeader];
  1444. [self setTableViewFooter];
  1445. if (self.tableView.editing)
  1446. [self setTitle];
  1447. [self.tableView reloadEmptyDataSet];
  1448. }
  1449. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
  1450. {
  1451. if (tableView.editing == 1) {
  1452. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1453. if (!metadata || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata])
  1454. return NO;
  1455. if (metadata == nil || metadata.status != k_metadataStatusNormal)
  1456. return NO;
  1457. else
  1458. return YES;
  1459. } else {
  1460. [selectOcId removeAllObjects];
  1461. }
  1462. return YES;
  1463. }
  1464. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  1465. {
  1466. return 60;
  1467. }
  1468. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  1469. {
  1470. return [[sectionDataSource.sectionArrayRow allKeys] count];
  1471. }
  1472. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  1473. {
  1474. return [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]] count];
  1475. }
  1476. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  1477. {
  1478. NSArray *sections = [sectionDataSource.sectionArrayRow allKeys];
  1479. NSString *sectionTitle = [sections objectAtIndex:section];
  1480. if ([sectionTitle isKindOfClass:[NSString class]] && [sectionTitle rangeOfString:@"download"].location != NSNotFound) return 18.f;
  1481. if ([sectionTitle isKindOfClass:[NSString class]] && [sectionTitle rangeOfString:@"upload"].location != NSNotFound) return 18.f;
  1482. if ([[CCUtility getGroupBySettings] isEqualToString:@"none"] && [sections count] <= 1) return 0.0f;
  1483. return 20.f;
  1484. }
  1485. -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  1486. {
  1487. float shift;
  1488. UIVisualEffectView *visualEffectView;
  1489. NSString *titleSection;
  1490. if (![self indexPathIsValid:[NSIndexPath indexPathForRow:0 inSection:section]])
  1491. return nil;
  1492. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSString class]])
  1493. titleSection = [sectionDataSource.sections objectAtIndex:section];
  1494. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSDate class]])
  1495. titleSection = [CCUtility getTitleSectionDate:[sectionDataSource.sections objectAtIndex:section]];
  1496. if ([titleSection isEqualToString:@"_none_"]) titleSection = @"";
  1497. else if ([titleSection rangeOfString:@"download"].location != NSNotFound) titleSection = NSLocalizedString(@"_title_section_download_",nil);
  1498. else if ([titleSection rangeOfString:@"upload"].location != NSNotFound) titleSection = NSLocalizedString(@"_title_section_upload_",nil);
  1499. else titleSection = NSLocalizedString(titleSection,nil);
  1500. // Format title
  1501. UIVisualEffect *blurEffect;
  1502. blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
  1503. visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
  1504. visualEffectView.backgroundColor = [NCBrandColor.sharedInstance.brandElement colorWithAlphaComponent:0.2];
  1505. if ([[CCUtility getGroupBySettings] isEqualToString:@"alphabetic"]) {
  1506. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  1507. shift = - 35;
  1508. else
  1509. shift = - 20;
  1510. } else shift = - 10;
  1511. // Title
  1512. UILabel *titleLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, -12, 0, 44)];
  1513. titleLabel.backgroundColor = [UIColor clearColor];
  1514. titleLabel.textColor = NCBrandColor.sharedInstance.textView;
  1515. titleLabel.font = [UIFont systemFontOfSize:12];
  1516. titleLabel.textAlignment = NSTextAlignmentLeft;
  1517. titleLabel.text = titleSection;
  1518. titleLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  1519. [visualEffectView.contentView addSubview:titleLabel];
  1520. // Elements
  1521. UILabel *elementLabel= [[UILabel alloc]initWithFrame:CGRectMake(shift, -12, 0, 44)];
  1522. elementLabel.backgroundColor = [UIColor clearColor];
  1523. elementLabel.textColor = NCBrandColor.sharedInstance.textView;
  1524. elementLabel.font = [UIFont systemFontOfSize:12];
  1525. elementLabel.textAlignment = NSTextAlignmentRight;
  1526. elementLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  1527. NSArray *metadatas = [self getMetadatasFromSectionDataSource:section];
  1528. NSUInteger rowsCount = [metadatas count];
  1529. if (rowsCount == 0) return nil;
  1530. if (rowsCount == 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_element_",nil)];
  1531. if (rowsCount > 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_elements_",nil)];
  1532. [visualEffectView.contentView addSubview:elementLabel];
  1533. return visualEffectView;
  1534. }
  1535. - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
  1536. {
  1537. return [sectionDataSource.sections indexOfObject:title];
  1538. }
  1539. - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
  1540. {
  1541. if ([[CCUtility getGroupBySettings] isEqualToString:@"alphabetic"])
  1542. return [[UILocalizedIndexedCollation currentCollation] sectionIndexTitles];
  1543. else
  1544. return nil;
  1545. }
  1546. /*
  1547. -(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
  1548. {
  1549. if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){
  1550. }
  1551. }
  1552. */
  1553. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  1554. {
  1555. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1556. tableShare *shareCell;
  1557. if (metadata == nil || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata] || (_metadataFolder != nil && [[NCManageDatabase sharedInstance] isTableInvalidated:_metadataFolder])) {
  1558. return [CCCellMain new];
  1559. }
  1560. for (tableShare *share in appDelegate.shares) {
  1561. if ([share.serverUrl isEqualToString:metadata.serverUrl] && [share.fileName isEqualToString:metadata.fileName]) {
  1562. shareCell = share;
  1563. break;
  1564. }
  1565. }
  1566. UITableViewCell *cell = [[NCMainCommon shared] cellForRowAtIndexPath:indexPath tableView:tableView metadata:metadata metadataFolder:_metadataFolder serverUrl:self.serverUrl autoUploadFileName:_autoUploadFileName autoUploadDirectory:_autoUploadDirectory tableShare:shareCell livePhoto:livePhoto];
  1567. // NORMAL - > MAIN
  1568. if ([cell isKindOfClass:[CCCellMain class]]) {
  1569. // Comment tap
  1570. if (metadata.commentsUnread) {
  1571. UITapGestureRecognizer *tapComment = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionComment:)];
  1572. [tapComment setNumberOfTapsRequired:1];
  1573. ((CCCellMain *)cell).comment.userInteractionEnabled = YES;
  1574. [((CCCellMain *)cell).comment addGestureRecognizer:tapComment];
  1575. }
  1576. // Share add Tap
  1577. UITapGestureRecognizer *tapShare = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionShared:)];
  1578. [tapShare setNumberOfTapsRequired:1];
  1579. ((CCCellMain *)cell).viewShared.userInteractionEnabled = YES;
  1580. [((CCCellMain *)cell).viewShared addGestureRecognizer:tapShare];
  1581. // More
  1582. if ([self canOpenMenuAction:metadata]) {
  1583. UITapGestureRecognizer *tapMore = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(actionMore:)];
  1584. [tapMore setNumberOfTapsRequired:1];
  1585. ((CCCellMain *)cell).more.userInteractionEnabled = YES;
  1586. [((CCCellMain *)cell).more addGestureRecognizer:tapMore];
  1587. }
  1588. // MGSwipeButton
  1589. ((CCCellMain *)cell).delegate = self;
  1590. // LEFT
  1591. ((CCCellMain *)cell).leftButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:self.cellFavouriteImage backgroundColor:NCBrandColor.sharedInstance.yellowFavorite padding:25]];
  1592. ((CCCellMain *)cell).leftExpansion.buttonIndex = 0;
  1593. ((CCCellMain *)cell).leftExpansion.fillOnTrigger = NO;
  1594. //centerIconOverText
  1595. MGSwipeButton *favoriteButton = (MGSwipeButton *)[((CCCellMain *)cell).leftButtons objectAtIndex:0];
  1596. [favoriteButton centerIconOverText];
  1597. // RIGHT
  1598. ((CCCellMain *)cell).rightButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:self.cellTrashImage backgroundColor:[UIColor redColor] padding:25]];
  1599. ((CCCellMain *)cell).rightExpansion.buttonIndex = 0;
  1600. ((CCCellMain *)cell).rightExpansion.fillOnTrigger = NO;
  1601. //centerIconOverText
  1602. MGSwipeButton *deleteButton = (MGSwipeButton *)[((CCCellMain *)cell).rightButtons objectAtIndex:0];
  1603. [deleteButton centerIconOverText];
  1604. }
  1605. // TRANSFER
  1606. if ([cell isKindOfClass:[CCCellMainTransfer class]]) {
  1607. // gesture Transfer
  1608. [((CCCellMainTransfer *)cell).transferButton.stopButton addTarget:self action:@selector(cancelTaskButton:withEvent:) forControlEvents:UIControlEventTouchUpInside];
  1609. UILongPressGestureRecognizer *stopLongGesture = [UILongPressGestureRecognizer new];
  1610. [stopLongGesture addTarget:self action:@selector(cancelAllTask:)];
  1611. [((CCCellMainTransfer *)cell).transferButton.stopButton addGestureRecognizer:stopLongGesture];
  1612. }
  1613. return cell;
  1614. }
  1615. - (void)setTableViewHeader
  1616. {
  1617. NSInteger serverVersionMajor = [[NCManageDatabase sharedInstance] getCapabilitiesServerIntWithAccount:appDelegate.account elements:NCElementsJSON.shared.capabilitiesVersionMajor];
  1618. NSString *trimmedRichWorkspaceText = [self.richWorkspaceText stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
  1619. if (serverVersionMajor < k_nextcloud_version_18_0 || trimmedRichWorkspaceText.length == 0 ) {
  1620. [self.tableView.tableHeaderView setFrame:CGRectMake(self.tableView.tableHeaderView.frame.origin.x, self.tableView.tableHeaderView.frame.origin.y, self.tableView.frame.size.width, heightSearchBar)];
  1621. } else {
  1622. [self.viewRichWorkspace setFrame:CGRectMake(self.tableView.tableHeaderView.frame.origin.x, self.tableView.tableHeaderView.frame.origin.y, self.tableView.frame.size.width, heightRichWorkspace)];
  1623. }
  1624. if (self.searchController.isActive == true) {
  1625. [self.tableView.tableHeaderView setFrame:CGRectMake(self.tableView.tableHeaderView.frame.origin.x, self.tableView.tableHeaderView.frame.origin.y, self.tableView.frame.size.width, 0)];
  1626. }
  1627. [self.viewRichWorkspace setNeedsLayout];
  1628. [self.viewRichWorkspace loadWithRichWorkspaceText:self.richWorkspaceText];
  1629. }
  1630. - (void)setTableViewFooter
  1631. {
  1632. UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  1633. [footerView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  1634. UILabel *footerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  1635. [footerLabel setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  1636. UIFont *appFont = [UIFont systemFontOfSize:12];
  1637. footerLabel.font = appFont;
  1638. footerLabel.textColor = [UIColor grayColor];
  1639. footerLabel.backgroundColor = [UIColor clearColor];
  1640. footerLabel.textAlignment = NSTextAlignmentCenter;
  1641. NSString *folders;
  1642. NSString *files;
  1643. NSString *footerText;
  1644. if (sectionDataSource.directories > 1) {
  1645. folders = [NSString stringWithFormat:@"%ld %@", (long)sectionDataSource.directories, NSLocalizedString(@"_folders_", nil)];
  1646. } else if (sectionDataSource.directories == 1){
  1647. folders = [NSString stringWithFormat:@"%ld %@", (long)sectionDataSource.directories, NSLocalizedString(@"_folder_", nil)];
  1648. } else {
  1649. folders = @"";
  1650. }
  1651. if (sectionDataSource.files > 1) {
  1652. files = [NSString stringWithFormat:@"%ld %@ %@", (long)sectionDataSource.files, NSLocalizedString(@"_files_", nil), [CCUtility transformedSize:sectionDataSource.totalSize]];
  1653. } else if (sectionDataSource.files == 1){
  1654. files = [NSString stringWithFormat:@"%ld %@ %@", (long)sectionDataSource.files, NSLocalizedString(@"_file_", nil), [CCUtility transformedSize:sectionDataSource.totalSize]];
  1655. } else {
  1656. files = @"";
  1657. }
  1658. if ([folders isEqualToString:@""]) {
  1659. footerText = files;
  1660. } else if ([files isEqualToString:@""]) {
  1661. footerText = folders;
  1662. } else {
  1663. footerText = [NSString stringWithFormat:@"%@, %@", folders, files];
  1664. }
  1665. footerLabel.text = footerText;
  1666. [footerView addSubview:footerLabel];
  1667. [self.tableView setTableFooterView:footerView];
  1668. }
  1669. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  1670. {
  1671. CCCellMain *cell = [tableView cellForRowAtIndexPath:indexPath];
  1672. // settiamo il record file.
  1673. self.metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1674. if (!self.metadata)
  1675. return;
  1676. // se non può essere selezionata deseleziona
  1677. if ([cell isEditing] == NO)
  1678. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  1679. // se siamo in modalità editing impostiamo il titolo dei selezioati e usciamo subito
  1680. if (self.tableView.editing) {
  1681. [selectOcId addObject:self.metadata.ocId];
  1682. [self setTitle];
  1683. return;
  1684. }
  1685. if (self.metadata.status != k_metadataStatusNormal && self.metadata.status != k_metadataStatusDownloadError) {
  1686. return;
  1687. }
  1688. // file
  1689. if (self.metadata.directory == NO) {
  1690. // se il file esiste andiamo direttamente al delegato altrimenti carichiamolo
  1691. if ([CCUtility fileProviderStorageExists:self.metadata.ocId fileNameView:self.metadata.fileNameView]) {
  1692. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_downloadedFile object:nil userInfo:@{@"metadata": self.metadata, @"selector": selectorLoadFileView, @"errorCode": @(0), @"errorDescription": @""}];
  1693. } else {
  1694. if (_metadataFolder.e2eEncrypted && ![CCUtility isEndToEndEnabled:appDelegate.account]) {
  1695. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorE2EENotEnabled forced:true];
  1696. } else {
  1697. if (([self.metadata.typeFile isEqualToString: k_metadataTypeFile_video] || [self.metadata.typeFile isEqualToString: k_metadataTypeFile_audio]) && _metadataFolder.e2eEncrypted == NO) {
  1698. [self shouldPerformSegue:self.metadata selector:@""];
  1699. } else if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_document] && [[NCUtility shared] isDirectEditingWithAccount:self.metadata.account contentType:self.metadata.contentType] != nil) {
  1700. if (NCCommunication.shared.isNetworkReachable) {
  1701. [self shouldPerformSegue:self.metadata selector:@""];
  1702. } else {
  1703. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_go_online_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorOffline forced:true];
  1704. }
  1705. } else if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_document] && [[NCUtility shared] isRichDocument:self.metadata]) {
  1706. if (NCCommunication.shared.isNetworkReachable) {
  1707. [self shouldPerformSegue:self.metadata selector:@""];
  1708. } else {
  1709. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_go_online_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorOffline forced:true];
  1710. }
  1711. } else {
  1712. if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_image]) {
  1713. [self shouldPerformSegue:self.metadata selector:selectorLoadFileView];
  1714. }
  1715. [[NCNetworking shared] downloadWithMetadata:self.metadata selector:selectorLoadFileView setFavorite:false completion:^(NSInteger errorCode) { }];
  1716. }
  1717. }
  1718. }
  1719. }
  1720. if (self.metadata.directory) {
  1721. [self performSegueDirectoryWithMetadata:self.metadata blinkFileNamePath:self.blinkFileNamePath];
  1722. }
  1723. }
  1724. - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(nonnull NSIndexPath *)indexPath
  1725. {
  1726. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1727. [selectOcId removeObject:metadata.ocId];
  1728. [self setTitle];
  1729. }
  1730. - (void)didSelectAll
  1731. {
  1732. for (int i = 0; i < self.tableView.numberOfSections; i++) {
  1733. for (int j = 0; j < [self.tableView numberOfRowsInSection:i]; j++) {
  1734. NSIndexPath *indexPath = [NSIndexPath indexPathForRow:j inSection:i];
  1735. tableMetadata *metadata = [[NCMainCommon shared] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1736. [selectOcId addObject:metadata.ocId];
  1737. [self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
  1738. }
  1739. }
  1740. [self setTitle];
  1741. }
  1742. - (BOOL)indexPathIsValid:(NSIndexPath *)indexPath
  1743. {
  1744. if (!indexPath)
  1745. return NO;
  1746. NSInteger section = indexPath.section;
  1747. NSInteger row = indexPath.row;
  1748. NSInteger lastSectionIndex = [self numberOfSectionsInTableView:self.tableView] - 1;
  1749. if (section > lastSectionIndex || lastSectionIndex < 0)
  1750. return NO;
  1751. NSInteger rowCount = [self.tableView numberOfRowsInSection:indexPath.section] - 1;
  1752. if (rowCount < 0)
  1753. return NO;
  1754. return row <= rowCount;
  1755. }
  1756. #pragma --------------------------------------------------------------------------------------------
  1757. #pragma mark ===== Navigation ====
  1758. #pragma --------------------------------------------------------------------------------------------
  1759. - (void)shouldPerformSegue:(tableMetadata *)metadata selector:(NSString *)selector
  1760. {
  1761. // if background return
  1762. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return;
  1763. if (self.view.window == NO)
  1764. return;
  1765. // Collapsed ma siamo già in detail esci
  1766. if (self.splitViewController.isCollapsed) {
  1767. if (appDelegate.activeDetail.isViewLoaded && appDelegate.activeDetail.view.window) return;
  1768. }
  1769. // Metadata for push detail
  1770. self.metadataForPushDetail = metadata;
  1771. self.selectorForPushDetail = selector;
  1772. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  1773. }
  1774. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  1775. {
  1776. tableMetadata *metadata;
  1777. NSMutableArray *photoDataSource = [NSMutableArray new];
  1778. UINavigationController *navigationController = segue.destinationViewController;
  1779. NCDetailViewController *detailViewController = (NCDetailViewController *)navigationController.topViewController;
  1780. if ([sender isKindOfClass:[tableMetadata class]]) {
  1781. metadata = sender;
  1782. [photoDataSource addObject:sender];
  1783. } else {
  1784. metadata = self.metadataForPushDetail;
  1785. for (NSString *ocId in sectionDataSource.allOcId) {
  1786. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:ocId];
  1787. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  1788. [photoDataSource addObject:metadata];
  1789. }
  1790. }
  1791. detailViewController.metadata = metadata;
  1792. detailViewController.selector = self.selectorForPushDetail;
  1793. [detailViewController setTitle:metadata.fileNameView];
  1794. }
  1795. // can i go to next viewcontroller
  1796. - (void)performSegueDirectoryWithMetadata:(tableMetadata *)metadata blinkFileNamePath:(NSString *)blinkFileNamePath
  1797. {
  1798. NSString *nomeDir;
  1799. if (self.tableView.editing == NO) {
  1800. // E2EE Check enable
  1801. if (metadata.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.account] == NO) {
  1802. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorE2EENotEnabled forced:true];
  1803. return;
  1804. }
  1805. nomeDir = metadata.fileName;
  1806. NSString *serverUrlPush = [CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:nomeDir];
  1807. CCMain *viewController = [appDelegate.listMainVC objectForKey:serverUrlPush];
  1808. if (!viewController) {
  1809. viewController = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMain"];
  1810. viewController.serverUrl = serverUrlPush;
  1811. viewController.titleMain = metadata.fileNameView;
  1812. viewController.blinkFileNamePath = blinkFileNamePath;
  1813. // save self
  1814. [appDelegate.listMainVC setObject:viewController forKey:serverUrlPush];
  1815. [self.navigationController pushViewController:viewController animated:YES];
  1816. } else {
  1817. if (viewController.isViewLoaded) {
  1818. viewController.titleMain = metadata.fileNameView;
  1819. viewController.blinkFileNamePath = blinkFileNamePath;
  1820. // Fix : Application tried to present modally an active controller
  1821. if ([self.navigationController isBeingPresented]) {
  1822. // being presented
  1823. } else if ([self.navigationController isMovingToParentViewController]) {
  1824. // being pushed
  1825. } else {
  1826. [self.navigationController pushViewController:viewController animated:YES];
  1827. }
  1828. }
  1829. }
  1830. }
  1831. }
  1832. @end