CCMain.m 114 KB

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