CCMain.m 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237
  1. //
  2. // CCMain.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 04/09/14.
  6. // Copyright (c) 2017 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "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 "NCNetworkingEndToEnd.h"
  34. #import "PKDownloadButton.h"
  35. @interface CCMain () <UITextViewDelegate, createFormUploadAssetsDelegate, MGSwipeTableCellDelegate, NCSelectDelegate, UITextFieldDelegate, UIAdaptivePresentationControllerDelegate>
  36. {
  37. AppDelegate *appDelegate;
  38. BOOL _isRoot;
  39. BOOL _isViewDidLoad;
  40. NSMutableDictionary *_selectedocIdsMetadatas;
  41. UIImageView *_imageTitleHome;
  42. NSUInteger _failedAttempts;
  43. NSDate *_lockUntilDate;
  44. NCMainRefreshControl *refreshControl;
  45. CCHud *_hud;
  46. // Datasource
  47. CCSectionDataSourceMetadata *sectionDataSource;
  48. NSDate *_dateReadDataSource;
  49. // Search
  50. NSString *_searchFileName;
  51. NSMutableArray *_searchResultMetadatas;
  52. NSString *_noFilesSearchTitle;
  53. NSString *_noFilesSearchDescription;
  54. NSTimer *_timerWaitInput;
  55. // Automatic Upload Folder
  56. NSString *_autoUploadFileName;
  57. NSString *_autoUploadDirectory;
  58. // Folder
  59. BOOL _loadingFolder;
  60. tableMetadata *_metadataFolder;
  61. CGFloat heightRichWorkspace;
  62. CGFloat heightSearchBar;
  63. }
  64. @end
  65. @implementation CCMain
  66. #pragma --------------------------------------------------------------------------------------------
  67. #pragma mark ===== Init =====
  68. #pragma --------------------------------------------------------------------------------------------
  69. - (id)initWithCoder:(NSCoder *)aDecoder
  70. {
  71. if (self = [super initWithCoder:aDecoder]) {
  72. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  73. appDelegate.activeMain = self;
  74. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(initializeMain:) name:k_notificationCenter_initializeMain object:nil];
  75. }
  76. return self;
  77. }
  78. #pragma --------------------------------------------------------------------------------------------
  79. #pragma mark ===== View =====
  80. #pragma --------------------------------------------------------------------------------------------
  81. - (void)viewDidLoad
  82. {
  83. [super viewDidLoad];
  84. // init object
  85. self.metadata = [tableMetadata new];
  86. _hud = [[CCHud alloc] initWithView:[[[UIApplication sharedApplication] delegate] window]];
  87. _selectedocIdsMetadatas = [NSMutableDictionary new];
  88. _isViewDidLoad = YES;
  89. _searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
  90. _searchResultMetadatas = [NSMutableArray new];
  91. _searchFileName = @"";
  92. _noFilesSearchTitle = @"";
  93. _noFilesSearchDescription = @"";
  94. _cellFavouriteImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] width:50 height:50 color:[UIColor whiteColor]];
  95. _cellTrashImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"trash"] width:50 height:50 color:[UIColor whiteColor]];
  96. // delegate
  97. self.tableView.delegate = self;
  98. self.tableView.tableFooterView = [UIView new];
  99. self.tableView.emptyDataSetDelegate = self;
  100. self.tableView.emptyDataSetSource = self;
  101. self.searchController.delegate = self;
  102. self.searchController.searchBar.delegate = self;
  103. // Notification
  104. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(clearDateReadDataSource:) name:k_notificationCenter_clearDateReadDataSource object:nil];
  105. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(setTitle) name:k_notificationCenter_setTitleMain object:nil];
  106. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:k_notificationCenter_progressTask object:nil];
  107. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deleteFile:) name:k_notificationCenter_deleteFile object:nil];
  108. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(favoriteFile:) name:k_notificationCenter_favoriteFile object:nil];
  109. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(renameFile:) name:k_notificationCenter_renameFile object:nil];
  110. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moveFile:) name:k_notificationCenter_moveFile object:nil];
  111. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(copyFile:) name:k_notificationCenter_copyFile object:nil];
  112. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(createFolder:) name:k_notificationCenter_createFolder object:nil];
  113. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:k_notificationCenter_changeTheming object:nil];
  114. // Search
  115. self.definesPresentationContext = YES;
  116. self.searchController.searchResultsUpdater = self;
  117. self.searchController.dimsBackgroundDuringPresentation = NO;
  118. self.searchController.searchBar.translucent = NO;
  119. [self.searchController.searchBar sizeToFit];
  120. self.searchController.searchBar.delegate = self;
  121. self.searchController.searchBar.barTintColor = NCBrandColor.sharedInstance.brand;
  122. self.searchController.searchBar.backgroundColor = NCBrandColor.sharedInstance.brand;
  123. self.searchController.searchBar.backgroundImage = [UIImage new];
  124. UIButton *searchButton = self.searchController.searchBar.subviews.firstObject.subviews.lastObject;
  125. if (searchButton && [searchButton isKindOfClass:[UIButton class]]) {
  126. [searchButton setTitleColor:NCBrandColor.sharedInstance.brandText forState:UIControlStateNormal];
  127. }
  128. UITextField *searchTextView = [self.searchController.searchBar valueForKey:@"searchField"];
  129. if (searchTextView && [searchTextView isKindOfClass:[UITextField class]]) {
  130. searchTextView.backgroundColor = NCBrandColor.sharedInstance.backgroundForm;
  131. searchTextView.textColor = NCBrandColor.sharedInstance.textView;
  132. }
  133. heightSearchBar = self.searchController.searchBar.frame.size.height;
  134. // Load Rich Workspace
  135. self.viewRichWorkspace = [[[NSBundle mainBundle] loadNibNamed:@"NCRichWorkspace" owner:self options:nil] firstObject];
  136. if (@available(iOS 11, *)) {
  137. UITapGestureRecognizer *viewRichWorkspaceTapped = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(viewRichWorkspaceTapAction:)];
  138. viewRichWorkspaceTapped.numberOfTapsRequired = 1;
  139. viewRichWorkspaceTapped.delegate = self;
  140. [self.viewRichWorkspace addGestureRecognizer:viewRichWorkspaceTapped];
  141. }
  142. heightRichWorkspace = UIScreen.mainScreen.bounds.size.height/4 + heightSearchBar;
  143. self.viewRichWorkspace.textViewTopConstraint.constant = heightSearchBar;
  144. [self.viewRichWorkspace setFrame:CGRectMake(0, 0, self.tableView.frame.size.width, heightRichWorkspace)];
  145. // Table Header View
  146. [self.tableView setTableHeaderView:self.viewRichWorkspace];
  147. [self.tableView.tableHeaderView addSubview:self.searchController.searchBar];
  148. // Register cell
  149. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellMain" bundle:nil] forCellReuseIdentifier:@"CellMain"];
  150. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellMainTransfer" bundle:nil] forCellReuseIdentifier:@"CellMainTransfer"];
  151. // long press recognizer TableView
  152. UILongPressGestureRecognizer* longPressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(onLongPressTableView:)];
  153. [self.tableView addGestureRecognizer:longPressRecognizer];
  154. // Pull-to-Refresh
  155. [self createRefreshControl];
  156. // Register for 3D Touch Previewing if available
  157. if ([self.traitCollection respondsToSelector:@selector(forceTouchCapability)] && (self.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable)) {
  158. [self registerForPreviewingWithDelegate:self sourceView:self.view];
  159. }
  160. // if this is not Main (the Main uses inizializeMain)
  161. if (_isRoot == NO && appDelegate.activeAccount.length > 0) {
  162. // Read (File) Folder
  163. [self readFileReloadFolder];
  164. }
  165. // Title
  166. [self setTitle];
  167. // changeTheming
  168. [self changeTheming];
  169. }
  170. - (void)viewWillAppear:(BOOL)animated
  171. {
  172. [super viewWillAppear:animated];
  173. // test
  174. if (appDelegate.activeAccount.length == 0)
  175. return;
  176. if (_isSelectedMode)
  177. [self setUINavigationBarSelected];
  178. else
  179. [self setUINavigationBarDefault];
  180. // If not editing mode remove _selectedocIds
  181. if (!self.tableView.editing)
  182. [_selectedocIdsMetadatas removeAllObjects];
  183. // Check server URL "/"
  184. if (self.navigationController.viewControllers.firstObject == self && self.serverUrl == nil) {
  185. self.serverUrl = [CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl];
  186. }
  187. // Query data source
  188. if (self.searchController.isActive == false) {
  189. [self queryDatasourceWithReloadData:YES serverUrl:self.serverUrl];
  190. }
  191. }
  192. - (void)viewDidAppear:(BOOL)animated
  193. {
  194. [super viewDidAppear:animated];
  195. // Active Main
  196. appDelegate.activeMain = self;
  197. // Test viewDidLoad
  198. if (_isViewDidLoad) {
  199. _isViewDidLoad = NO;
  200. } else {
  201. if (appDelegate.activeAccount.length > 0 && [_selectedocIdsMetadatas count] == 0) {
  202. // Read (file) Folder
  203. [self readFileReloadFolder];
  204. }
  205. }
  206. if (appDelegate.activeAccount.length > 0 && self.serverUrl != nil) {
  207. // Get Shares
  208. appDelegate.shares = [[NCManageDatabase sharedInstance] getTableSharesWithAccount:appDelegate.activeAccount serverUrl:self.serverUrl];
  209. // Get RichWorkspace
  210. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, self.serverUrl]];
  211. self.richWorkspaceText = directory.richWorkspace;
  212. }
  213. // Title
  214. [self setTitle];
  215. }
  216. - (void)viewWillDisappear:(BOOL)animated
  217. {
  218. [super viewWillDisappear:animated];
  219. }
  220. - (void) viewDidLayoutSubviews
  221. {
  222. [super viewDidLayoutSubviews];
  223. [self setTableViewHeader];
  224. }
  225. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  226. {
  227. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  228. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  229. if (self.view.frame.size.width == ([[UIScreen mainScreen] bounds].size.width*([[UIScreen mainScreen] bounds].size.width<[[UIScreen mainScreen] bounds].size.height))+([[UIScreen mainScreen] bounds].size.height*([[UIScreen mainScreen] bounds].size.width>[[UIScreen mainScreen] bounds].size.height))) {
  230. // Portrait
  231. } else {
  232. // Landscape
  233. }
  234. [self setTableViewHeader];
  235. }];
  236. }
  237. - (void)presentationControllerWillDismiss:(UIPresentationController *)presentationController
  238. {
  239. [self viewDidAppear:true];
  240. }
  241. - (BOOL)prefersStatusBarHidden
  242. {
  243. return NO;
  244. }
  245. // detect scroll for remove keyboard in search mode
  246. - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
  247. {
  248. if (self.searchController.isActive && scrollView == self.tableView) {
  249. [self.searchController.searchBar endEditing:YES];
  250. }
  251. }
  252. - (void)changeTheming
  253. {
  254. [appDelegate changeTheming:self tableView:self.tableView collectionView:nil form:false];
  255. // createImagesThemingColor
  256. [[NCMainCommon sharedInstance] createImagesThemingColor];
  257. // Refresh control
  258. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText;
  259. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brand;
  260. // color searchbar
  261. self.searchController.searchBar.barTintColor = NCBrandColor.sharedInstance.brand;
  262. self.searchController.searchBar.backgroundColor = NCBrandColor.sharedInstance.brand;
  263. // color searchbbar button text (cancel)
  264. UIButton *searchButton = self.searchController.searchBar.subviews.firstObject.subviews.lastObject;
  265. if (searchButton && [searchButton isKindOfClass:[UIButton class]]) {
  266. [searchButton setTitleColor:NCBrandColor.sharedInstance.brandText forState:UIControlStateNormal];
  267. }
  268. // color textview searchbbar
  269. UITextField *searchTextView = [self.searchController.searchBar valueForKey:@"searchField"];
  270. if (searchTextView && [searchTextView isKindOfClass:[UITextField class]]) {
  271. searchTextView.backgroundColor = NCBrandColor.sharedInstance.backgroundForm;
  272. searchTextView.textColor = NCBrandColor.sharedInstance.textView;
  273. }
  274. // Rich Workspace
  275. [self.viewRichWorkspace loadWithRichWorkspaceText:self.richWorkspaceText];
  276. // Title
  277. [self setTitle];
  278. // Reload Table View
  279. [self tableViewReloadData];
  280. }
  281. #pragma --------------------------------------------------------------------------------------------
  282. #pragma mark ===== Initialization =====
  283. #pragma --------------------------------------------------------------------------------------------
  284. //
  285. // Callers :
  286. //
  287. // ChangeDefaultAccount (delegate)
  288. // Split : inizialize
  289. // Settings Advanced : removeAllFiles
  290. //
  291. - (void)initializeMain:(NSNotification *)notification
  292. {
  293. _dateReadDataSource = nil;
  294. // test
  295. if (appDelegate.activeAccount.length == 0)
  296. return;
  297. if ([appDelegate.listMainVC count] == 0 || _isRoot) {
  298. // This is Root home main add list
  299. appDelegate.homeMain = self;
  300. _isRoot = YES;
  301. _serverUrl = [CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl];
  302. [appDelegate.listMainVC setObject:self forKey:_serverUrl];
  303. // go Home
  304. [self.navigationController popToRootViewControllerAnimated:NO];
  305. // Remove search mode
  306. [self cancelSearchBar];
  307. // Clear error certificate
  308. [CCUtility setCertificateError:appDelegate.activeAccount error:NO];
  309. // Setting Theming
  310. [appDelegate settingThemingColorBrand];
  311. // Detail
  312. // If AVPlayer in play -> Stop
  313. if (appDelegate.player != nil && appDelegate.player.rate != 0) {
  314. [appDelegate.player pause];
  315. }
  316. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_menuDetailClose object:nil];
  317. // remove all Notification Messages
  318. [appDelegate.listOfNotifications removeAllObjects];
  319. // Not Photos Video in library ? then align and Init Auto Upload
  320. NSArray *recordsPhotoLibrary = [[NCManageDatabase sharedInstance] getPhotoLibraryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", appDelegate.activeAccount]];
  321. if ([recordsPhotoLibrary count] == 0) {
  322. [[NCAutoUpload sharedInstance] alignPhotoLibrary];
  323. }
  324. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  325. NSLog(@"[LOG] Request Service Server Nextcloud");
  326. [[NCService sharedInstance] startRequestServicesServer];
  327. // Clear datasorce
  328. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:_serverUrl ocId:nil action:k_action_NULL];
  329. // Read this folder
  330. [self readFileReloadFolder];
  331. } else {
  332. // reload datasource
  333. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:_serverUrl ocId:nil action:k_action_NULL];
  334. }
  335. // Registeration push notification
  336. [appDelegate pushNotification];
  337. // Registeration domain File Provider
  338. if (@available(iOS 11, *) ) {
  339. if (k_fileProvider_domain) {
  340. [FileProviderDomain.sharedInstance registerDomain];
  341. } else {
  342. [FileProviderDomain.sharedInstance removeAllDomain];
  343. }
  344. }
  345. }
  346. #pragma --------------------------------------------------------------------------------------------
  347. #pragma mark ==== NotificationCenter ====
  348. #pragma --------------------------------------------------------------------------------------------
  349. - (void)deleteFile:(NSNotification *)notification
  350. {
  351. if (self.view.window == nil) { return; }
  352. NSDictionary *userInfo = notification.userInfo;
  353. tableMetadata *metadata = userInfo[@"metadata"];
  354. NSInteger errorCode = [userInfo[@"errorCode"] integerValue];
  355. NSString *errorDescription = userInfo[@"errorDescription"];
  356. if (errorCode == 0 && metadata) {
  357. if ([metadata.serverUrl isEqualToString:self.serverUrl]) {
  358. if ([metadata.fileNameView.lowercaseString isEqualToString:k_fileNameRichWorkspace.lowercaseString]) {
  359. [self readFileReloadFolder];
  360. } else {
  361. if (self.searchController.isActive) {
  362. [self readFolder:self.serverUrl];
  363. } else {
  364. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  365. }
  366. }
  367. }
  368. } else {
  369. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  370. }
  371. }
  372. - (void)moveFile:(NSNotification *)notification
  373. {
  374. if (self.view.window == nil) { return; }
  375. NSDictionary *userInfo = notification.userInfo;
  376. tableMetadata *metadata = userInfo[@"metadata"];
  377. tableMetadata *metadataNew = userInfo[@"metadataNew"];
  378. NSInteger errorCode = [userInfo[@"errorCode"] integerValue];
  379. NSString *errorDescription = userInfo[@"errorDescription"];
  380. if (errorCode == 0) {
  381. if ([metadata.serverUrl isEqualToString:self.serverUrl] || [metadataNew.serverUrl isEqualToString:self.serverUrl]) {
  382. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  383. }
  384. } else {
  385. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  386. }
  387. }
  388. - (void)copyFile:(NSNotification *)notification
  389. {
  390. if (self.view.window == nil) { return; }
  391. NSDictionary *userInfo = notification.userInfo;
  392. tableMetadata *metadata = userInfo[@"metadata"];
  393. NSString *serverUrlTo = userInfo[@"serverUrlTo"];
  394. NSInteger errorCode = [userInfo[@"errorCode"] integerValue];
  395. NSString *errorDescription = userInfo[@"errorDescription"];
  396. if (errorCode == 0) {
  397. if ([metadata.serverUrl isEqualToString:self.serverUrl] || [serverUrlTo isEqualToString:self.serverUrl]) {
  398. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  399. }
  400. } else {
  401. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  402. }
  403. }
  404. - (void)favoriteFile:(NSNotification *)notification
  405. {
  406. if (self.view.window == nil) { return; }
  407. NSDictionary *userInfo = notification.userInfo;
  408. tableMetadata *metadata = userInfo[@"metadata"];
  409. NSInteger errorCode = [userInfo[@"errorCode"] integerValue];
  410. NSString *errorDescription = userInfo[@"errorDescription"];
  411. BOOL favorite = [userInfo[@"favorite"] boolValue];
  412. if (errorCode == 0) {
  413. _dateReadDataSource = nil;
  414. if (self.searchController.isActive) {
  415. [self readFolder:self.serverUrl];
  416. } else {
  417. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:metadata.ocId action:k_action_MOD];
  418. }
  419. if (metadata.directory && favorite) {
  420. NSString *selector;
  421. if ([CCUtility getFavoriteOffline])
  422. selector = selectorReadFolderWithDownload;
  423. else
  424. selector = selectorReadFolder;
  425. [[CCSynchronize sharedSynchronize] readFolder:[CCUtility stringAppendServerUrl:self.serverUrl addFileName:metadata.fileName] selector:selector account:appDelegate.activeAccount];
  426. }
  427. if (!metadata.directory && favorite && [CCUtility getFavoriteOffline]) {
  428. metadata.favorite = favorite;
  429. metadata.session = k_download_session;
  430. metadata.sessionError = @"";
  431. metadata.sessionSelector = selectorDownloadSynchronize;
  432. metadata.status = k_metadataStatusWaitDownload;
  433. // Add Metadata for Download
  434. [[NCManageDatabase sharedInstance] addMetadata:metadata];
  435. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:metadata.ocId action:k_action_MOD];
  436. [appDelegate startLoadAutoDownloadUpload];
  437. }
  438. } else {
  439. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  440. }
  441. }
  442. - (void)renameFile:(NSNotification *)notification {
  443. if (self.view.window == nil) { return; }
  444. NSDictionary *userInfo = notification.userInfo;
  445. NSInteger errorCode = [userInfo[@"errorCode"] integerValue];
  446. NSString *errorDescription = userInfo[@"errorDescription"];
  447. if (errorCode == 0) {
  448. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  449. } else {
  450. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  451. }
  452. }
  453. - (void)createFolder:(NSNotification *)notification {
  454. if (self.view.window == nil) { return; }
  455. NSDictionary *userInfo = notification.userInfo;
  456. NSInteger errorCode = [userInfo[@"errorCode"] integerValue];
  457. NSString *errorDescription = userInfo[@"errorDescription"];
  458. if (errorCode == 0) {
  459. [self readFolder:self.serverUrl];
  460. } else {
  461. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  462. }
  463. }
  464. #pragma --------------------------------------------------------------------------------------------
  465. #pragma mark ==== DZNEmptyDataSetSource ====
  466. #pragma --------------------------------------------------------------------------------------------
  467. - (BOOL)emptyDataSetShouldAllowScroll:(UIScrollView *)scrollView
  468. {
  469. if (_loadingFolder)
  470. return NO;
  471. else
  472. return YES;
  473. }
  474. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  475. {
  476. return NCBrandColor.sharedInstance.backgroundView;
  477. }
  478. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  479. {
  480. if (self.searchController.isActive)
  481. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"search"] width:300 height:300 color:NCBrandColor.sharedInstance.brandElement];
  482. else
  483. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder"] width:300 height:300 color:NCBrandColor.sharedInstance.brandElement];
  484. }
  485. - (UIView *)customViewForEmptyDataSet:(UIScrollView *)scrollView
  486. {
  487. if (_loadingFolder && refreshControl.isRefreshing == NO) {
  488. UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
  489. activityView.transform = CGAffineTransformMakeScale(1.5f, 1.5f);
  490. activityView.color = NCBrandColor.sharedInstance.brandElement;
  491. [activityView startAnimating];
  492. return activityView;
  493. }
  494. return nil;
  495. }
  496. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  497. {
  498. NSString *text;
  499. if (self.searchController.isActive) {
  500. text = _noFilesSearchTitle;
  501. } else {
  502. text = [NSString stringWithFormat:@"%@", NSLocalizedString(@"_files_no_files_", nil)];
  503. }
  504. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:[UIColor lightGrayColor]};
  505. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  506. }
  507. - (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
  508. {
  509. NSString *text;
  510. if (self.searchController.isActive) {
  511. text = _noFilesSearchDescription;
  512. } else {
  513. text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_no_file_pull_down_", nil)];
  514. }
  515. NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
  516. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  517. paragraph.alignment = NSTextAlignmentCenter;
  518. NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0], NSForegroundColorAttributeName: [UIColor lightGrayColor], NSParagraphStyleAttributeName: paragraph};
  519. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  520. }
  521. #pragma --------------------------------------------------------------------------------------------
  522. #pragma mark ===== Text Field =====
  523. #pragma --------------------------------------------------------------------------------------------
  524. - (void)minCharTextFieldDidChange:(UITextField *)sender
  525. {
  526. UIAlertController *alertController = (UIAlertController *)self.presentedViewController;
  527. if (alertController)
  528. {
  529. UITextField *fileName = alertController.textFields.firstObject;
  530. UIAlertAction *okAction = alertController.actions.lastObject;
  531. okAction.enabled = fileName.text.length > 0;
  532. }
  533. }
  534. - (void)textFieldDidBeginEditing:(UITextField *)textField
  535. {
  536. [CCUtility selectFileNameFrom:textField];
  537. }
  538. #pragma --------------------------------------------------------------------------------------------
  539. #pragma mark ===== Graphic Window =====
  540. #pragma --------------------------------------------------------------------------------------------
  541. - (void)createRefreshControl
  542. {
  543. refreshControl = [NCMainRefreshControl new];
  544. self.tableView.refreshControl = refreshControl;
  545. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText;
  546. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brand;
  547. [refreshControl addTarget:self action:@selector(refreshControlTarget) forControlEvents:UIControlEventValueChanged];
  548. }
  549. - (void)deleteRefreshControl
  550. {
  551. [refreshControl endRefreshing];
  552. for (UIView *subview in [_tableView subviews]) {
  553. if (subview == refreshControl)
  554. [subview removeFromSuperview];
  555. }
  556. if (@available(iOS 10, *)) {
  557. self.tableView.refreshControl = nil;
  558. }
  559. refreshControl = nil;
  560. }
  561. - (void)refreshControlTarget
  562. {
  563. [self readFolder:_serverUrl];
  564. // Actuate `Peek` feedback (weak boom)
  565. AudioServicesPlaySystemSound(1519);
  566. }
  567. - (void)setTitle
  568. {
  569. if (_isSelectedMode) {
  570. NSUInteger totali = [sectionDataSource.allRecordsDataSource count];
  571. NSUInteger selezionati = [[self.tableView indexPathsForSelectedRows] count];
  572. self.navigationItem.titleView = nil;
  573. self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)selezionati, (unsigned long)totali];
  574. } else {
  575. // we are in home : LOGO BRAND
  576. if ([_serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]]) {
  577. self.navigationItem.title = nil;
  578. UIImage *image = [self getImageLogoHome];
  579. _imageTitleHome = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 60, 30)]; // IMAGE = 120 x 60
  580. _imageTitleHome.contentMode = UIViewContentModeScaleAspectFill;
  581. _imageTitleHome.translatesAutoresizingMaskIntoConstraints = NO;
  582. _imageTitleHome.image = image;
  583. // backbutton
  584. self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal] style:UIBarButtonItemStylePlain target:nil action:nil];
  585. [_imageTitleHome setUserInteractionEnabled:YES];
  586. UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(menuLogo:)];
  587. [singleTap setNumberOfTapsRequired:1];
  588. [_imageTitleHome addGestureRecognizer:singleTap];
  589. self.navigationItem.titleView = _imageTitleHome;
  590. } else {
  591. self.navigationItem.title = _titleMain;
  592. self.navigationItem.titleView = nil;
  593. }
  594. }
  595. }
  596. - (UIImage *)getImageLogoHome
  597. {
  598. UIImage *image = [UIImage imageNamed:@"themingLogo"];
  599. tableCapabilities *capabilities = [[NCManageDatabase sharedInstance] getCapabilitesWithAccount:appDelegate.activeAccount];
  600. if ([NCBrandOptions sharedInstance].use_themingColor && [capabilities.themingColorText isEqualToString:@"#000000"] && [UIImage imageNamed:@"themingLogoBlack"]) {
  601. image = [UIImage imageNamed:@"themingLogoBlack"];
  602. }
  603. if ([NCBrandOptions sharedInstance].use_themingLogo) {
  604. image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@-themingLogo.png", [CCUtility getDirectoryUserData], [CCUtility getStringUser:appDelegate.activeUser activeUrl:appDelegate.activeUrl]]];
  605. if (image == nil) image = [UIImage imageNamed:@"themingLogo"];
  606. }
  607. if ([appDelegate.reachability isReachable] == NO) {
  608. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"nonetwork"] width:50 height:50 color:NCBrandColor.sharedInstance.icon];
  609. } else {
  610. return image;
  611. }
  612. }
  613. - (void)setUINavigationBarDefault
  614. {
  615. UIBarButtonItem *buttonMore, *buttonNotification, *buttonSelect;
  616. // =
  617. buttonMore = [[UIBarButtonItem alloc] initWithImage:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"navigationSort"] width:50 height:50 color:NCBrandColor.sharedInstance.textView] style:UIBarButtonItemStylePlain target:self action:@selector(toggleReMainMenu)];
  618. buttonMore.enabled = true;
  619. buttonSelect = [[UIBarButtonItem alloc] initWithImage:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"select"] width:50 height:50 color:NCBrandColor.sharedInstance.textView] style:UIBarButtonItemStylePlain target:self action:@selector(tableViewToggle)];
  620. buttonSelect.enabled = true;
  621. // <
  622. self.navigationController.navigationBar.hidden = NO;
  623. // Notification
  624. if ([appDelegate.listOfNotifications count] > 0) {
  625. buttonNotification = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"notification"] style:UIBarButtonItemStylePlain target:self action:@selector(viewNotification)];
  626. buttonNotification.tintColor = NCBrandColor.sharedInstance.brandText;
  627. buttonNotification.enabled = true;
  628. }
  629. if (buttonNotification)
  630. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonMore, buttonSelect, buttonNotification, nil];
  631. else
  632. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonMore, buttonSelect, nil];
  633. self.navigationItem.leftBarButtonItem = nil;
  634. }
  635. - (void)setUINavigationBarSelected
  636. {
  637. UIImage *icon = [UIImage imageNamed:@"navigationMore"];
  638. UIBarButtonItem *buttonMore = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(toggleReSelectMenu)];
  639. UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(cancelSelect)];
  640. self.navigationItem.leftBarButtonItem = leftButton;
  641. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonMore, nil];
  642. }
  643. - (void)cancelSelect
  644. {
  645. [self tableViewSelect:false];
  646. }
  647. #pragma --------------------------------------------------------------------------------------------
  648. #pragma mark ===== Document Picker =====
  649. #pragma --------------------------------------------------------------------------------------------
  650. - (void)documentMenuWasCancelled:(UIDocumentMenuViewController *)documentMenu
  651. {
  652. NSLog(@"[LOG] Cancelled");
  653. }
  654. - (void)documentPickerWasCancelled:(UIDocumentPickerViewController *)controller
  655. {
  656. NSLog(@"[LOG] Cancelled");
  657. }
  658. - (void)documentMenu:(UIDocumentMenuViewController *)documentMenu didPickDocumentPicker:(UIDocumentPickerViewController *)documentPicker
  659. {
  660. documentPicker.delegate = self;
  661. [self presentViewController:documentPicker animated:YES completion:nil];
  662. }
  663. - (void)documentPicker:(UIDocumentPickerViewController *)controller didPickDocumentAtURL:(NSURL *)url
  664. {
  665. if (controller.documentPickerMode == UIDocumentPickerModeImport) {
  666. NSFileCoordinator *coordinator = [[NSFileCoordinator alloc] initWithFilePresenter:nil];
  667. __block NSError *error;
  668. [coordinator coordinateReadingItemAtURL:url options:NSFileCoordinatorReadingForUploading error:&error byAccessor:^(NSURL *newURL) {
  669. NSString *serverUrl = [appDelegate getTabBarControllerActiveServerUrl];
  670. NSString *fileName = [url lastPathComponent];
  671. NSString *ocId = [CCUtility createMetadataIDFromAccount:appDelegate.activeAccount serverUrl:serverUrl fileNameView:fileName directory:false];
  672. NSData *data = [NSData dataWithContentsOfURL:newURL];
  673. if (data && error == nil) {
  674. if ([data writeToFile:[CCUtility getDirectoryProviderStorageOcId:ocId fileNameView:fileName] options:NSDataWritingAtomic error:&error]) {
  675. tableMetadata *metadataForUpload = [tableMetadata new];
  676. metadataForUpload.account = appDelegate.activeAccount;
  677. metadataForUpload.date = [NSDate new];
  678. metadataForUpload.ocId = ocId;
  679. metadataForUpload.fileName = fileName;
  680. metadataForUpload.fileNameView = fileName;
  681. metadataForUpload.serverUrl = serverUrl;
  682. metadataForUpload.session = k_upload_session;
  683. metadataForUpload.sessionSelector = selectorUploadFile;
  684. metadataForUpload.size = data.length;
  685. metadataForUpload.status = k_metadataStatusWaitUpload;
  686. if ([[NCUtility sharedInstance] getMetadataConflictWithAccount:appDelegate.activeAccount serverUrl:serverUrl fileName:fileName] != nil) {
  687. NCCreateFormUploadConflict *conflict = [[UIStoryboard storyboardWithName:@"NCCreateFormUploadConflict" bundle:nil] instantiateInitialViewController];
  688. conflict.serverUrl = self.serverUrl;
  689. conflict.metadatasUploadInConflict = @[metadataForUpload];
  690. [self presentViewController:conflict animated:YES completion:nil];
  691. } else {
  692. [[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  693. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  694. [appDelegate startLoadAutoDownloadUpload];
  695. }
  696. } else {
  697. [[NCContentPresenter shared] messageNotification:@"_error_" description:error.description delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code];
  698. }
  699. } else {
  700. [[NCContentPresenter shared] messageNotification:@"_error_" description:@"_read_file_error_" delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code];
  701. }
  702. }];
  703. }
  704. }
  705. - (void)openImportDocumentPicker
  706. {
  707. UIDocumentMenuViewController *documentProviderMenu = [[UIDocumentMenuViewController alloc] initWithDocumentTypes:@[@"public.data"] inMode:UIDocumentPickerModeImport];
  708. documentProviderMenu.modalPresentationStyle = UIModalPresentationFormSheet;
  709. documentProviderMenu.popoverPresentationController.sourceView = self.tabBarController.tabBar;
  710. documentProviderMenu.popoverPresentationController.sourceRect = self.tabBarController.tabBar.bounds;
  711. documentProviderMenu.delegate = self;
  712. [self presentViewController:documentProviderMenu animated:YES completion:nil];
  713. }
  714. #pragma --------------------------------------------------------------------------------------------
  715. #pragma mark ===== Assets Picker =====
  716. #pragma --------------------------------------------------------------------------------------------
  717. -(void)dismissFormUploadAssets
  718. {
  719. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  720. }
  721. - (void)openAssetsPickerController
  722. {
  723. NCPhotosPickerViewController *viewController = [[NCPhotosPickerViewController alloc] init:self maxSelectedAssets:100 singleSelectedMode:false];
  724. [viewController openPhotosPickerViewControllerWithPhAssets:^(NSArray<PHAsset *> * _Nullable assets, NSArray<NSURL *> * urls) {
  725. if (assets.count > 0) {
  726. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  727. NSString *serverUrl = [appDelegate getTabBarControllerActiveServerUrl];
  728. NCCreateFormUploadAssets *form = [[NCCreateFormUploadAssets alloc] initWithServerUrl:serverUrl assets:(NSMutableArray *)assets urls:(NSMutableArray *)urls cryptated:NO session:k_upload_session delegate:self];
  729. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:form];
  730. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  731. [self presentViewController:navigationController animated:YES completion:nil];
  732. });
  733. }
  734. }];
  735. }
  736. #pragma --------------------------------------------------------------------------------------------
  737. #pragma mark ===== Save selected File =====
  738. #pragma --------------------------------------------------------------------------------------------
  739. - (void)saveToPhotoAlbum:(tableMetadata *)metadata
  740. {
  741. NSString *fileNamePath = [CCUtility getDirectoryProviderStorageOcId:metadata.ocId fileNameView:metadata.fileNameView];
  742. PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus];
  743. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] && status == PHAuthorizationStatusAuthorized) {
  744. UIImage *image = [UIImage imageWithContentsOfFile:fileNamePath];
  745. if (image)
  746. UIImageWriteToSavedPhotosAlbum(image, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  747. else
  748. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorInternalError];
  749. }
  750. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video] && status == PHAuthorizationStatusAuthorized) {
  751. if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(fileNamePath)) {
  752. UISaveVideoAtPathToSavedPhotosAlbum(fileNamePath, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  753. } else {
  754. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorInternalError];
  755. }
  756. }
  757. if (status != PHAuthorizationStatusAuthorized) {
  758. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_access_photo_not_enabled_", nil) message:NSLocalizedString(@"_access_photo_not_enabled_msg_", nil) preferredStyle:UIAlertControllerStyleAlert];
  759. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  760. [alertController addAction:okAction];
  761. [self presentViewController:alertController animated:YES completion:nil];
  762. }
  763. }
  764. - (void)saveSelectedFilesSelector:(NSString *)path didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
  765. {
  766. if (error) {
  767. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code];
  768. }
  769. }
  770. - (void)saveSelectedFiles
  771. {
  772. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  773. return;
  774. NSLog(@"[LOG] Start download selected files ...");
  775. [_hud visibleHudTitle:@"" mode:MBProgressHUDModeIndeterminate color:nil];
  776. NSArray *metadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  777. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.01 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  778. for (tableMetadata *metadata in metadatas) {
  779. if (metadata.directory == NO && ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])) {
  780. metadata.session = k_download_session;
  781. metadata.sessionError = @"";
  782. metadata.sessionSelector = selectorSave;
  783. metadata.status = k_metadataStatusWaitDownload;
  784. // Add Metadata for Download
  785. [[NCManageDatabase sharedInstance] addMetadata:metadata];
  786. [appDelegate startLoadAutoDownloadUpload];
  787. }
  788. }
  789. [_hud hideHud];
  790. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  791. });
  792. [self tableViewSelect:false];
  793. }
  794. #pragma --------------------------------------------------------------------------------------------
  795. #pragma mark ==== View Notification ====
  796. #pragma --------------------------------------------------------------------------------------------
  797. - (void)viewNotification
  798. {
  799. if ([appDelegate.listOfNotifications count] > 0) {
  800. CCNotification *notificationVC = [[UIStoryboard storyboardWithName:@"CCNotification" bundle:nil] instantiateViewControllerWithIdentifier:@"CCNotification"];
  801. [notificationVC setModalPresentationStyle:UIModalPresentationFormSheet];
  802. [self presentViewController:notificationVC animated:YES completion:nil];
  803. }
  804. }
  805. #pragma mark -
  806. #pragma --------------------------------------------------------------------------------------------
  807. #pragma mark ===== Peek & Pop =====
  808. #pragma --------------------------------------------------------------------------------------------
  809. - (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location
  810. {
  811. CGPoint convertedLocation = [self.view convertPoint:location toView:self.tableView];
  812. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:convertedLocation];
  813. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  814. CCCellMain *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  815. if (cell) {
  816. previewingContext.sourceRect = cell.frame;
  817. CCPeekPop *viewController = [[UIStoryboard storyboardWithName:@"CCPeekPop" bundle:nil] instantiateViewControllerWithIdentifier:@"PeekPopImagePreview"];
  818. viewController.metadata = metadata;
  819. viewController.imageFile = cell.file.image;
  820. viewController.showOpenIn = true;
  821. viewController.showShare = true;
  822. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_document]) {
  823. viewController.showOpenInternalViewer = true;
  824. }
  825. return viewController;
  826. }
  827. return nil;
  828. }
  829. - (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit
  830. {
  831. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:previewingContext.sourceRect.origin];
  832. [self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
  833. }
  834. #pragma --------------------------------------------------------------------------------------------
  835. #pragma mark ==== Download ====
  836. #pragma --------------------------------------------------------------------------------------------
  837. - (void)downloadSelectedFilesFolders
  838. {
  839. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  840. return;
  841. NSLog(@"[LOG] Start download selected ...");
  842. [_hud visibleHudTitle:NSLocalizedString(@"_downloading_progress_", nil) mode:MBProgressHUDModeIndeterminate color:nil];
  843. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  844. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  845. for (tableMetadata *metadata in selectedMetadatas) {
  846. if (metadata.directory) {
  847. [[CCSynchronize sharedSynchronize] readFolder:[CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:metadata.fileName] selector:selectorReadFolderWithDownload account:appDelegate.activeAccount];
  848. } else {
  849. [[CCSynchronize sharedSynchronize] readFile:metadata.ocId fileName:metadata.fileName serverUrl:metadata.serverUrl selector:selectorReadFileWithDownload account:appDelegate.activeAccount];
  850. }
  851. }
  852. [_hud hideHud];
  853. });
  854. [self tableViewSelect:false];
  855. }
  856. #pragma --------------------------------------------------------------------------------------------
  857. #pragma mark ===== Upload new Photos/Videos =====
  858. #pragma --------------------------------------------------------------------------------------------
  859. //
  860. // This procedure with performSelectorOnMainThread it's necessary after (Bridge) for use the function "Sync" in OCNetworking
  861. //
  862. - (void)uploadFileAsset:(NSMutableArray *)assets urls:(NSMutableArray *)urls serverUrl:(NSString *)serverUrl useSubFolder:(BOOL)useSubFolder session:(NSString *)session
  863. {
  864. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  865. NSString *autoUploadPath = [[NCManageDatabase sharedInstance] getAccountAutoUploadPath:appDelegate.activeUrl];
  866. // if request create the folder for Auto Upload & the subfolders
  867. if ([autoUploadPath isEqualToString:serverUrl])
  868. if (![[NCAutoUpload sharedInstance] createAutoUploadFolderWithSubFolder:useSubFolder assets:(PHFetchResult *)assets selector:selectorUploadFile])
  869. return;
  870. dispatch_async(dispatch_get_main_queue(), ^{
  871. [self uploadFileAsset:assets urls:urls serverUrl:serverUrl autoUploadPath:autoUploadPath useSubFolder:useSubFolder session:session];
  872. });
  873. });
  874. }
  875. - (void)uploadFileAsset:(NSArray *)assets urls:(NSArray *)urls serverUrl:(NSString *)serverUrl autoUploadPath:(NSString *)autoUploadPath useSubFolder:(BOOL)useSubFolder session:(NSString *)session
  876. {
  877. NSMutableArray *metadatasNOConflict = [NSMutableArray new];
  878. NSMutableArray *metadatasMOV = [NSMutableArray new];
  879. NSMutableArray *metadatasUploadInConflict = [NSMutableArray new];
  880. for (PHAsset *asset in assets) {
  881. NSString *fileName = [CCUtility createFileName:[asset valueForKey:@"filename"] fileDate:asset.creationDate fileType:asset.mediaType keyFileName:k_keyFileNameMask keyFileNameType:k_keyFileNameType keyFileNameOriginal:k_keyFileNameOriginal];
  882. NSDate *assetDate = asset.creationDate;
  883. NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
  884. // Create serverUrl if use sub folder
  885. if (useSubFolder) {
  886. [formatter setDateFormat:@"yyyy"];
  887. NSString *yearString = [formatter stringFromDate:assetDate];
  888. [formatter setDateFormat:@"MM"];
  889. NSString *monthString = [formatter stringFromDate:assetDate];
  890. serverUrl = [NSString stringWithFormat:@"%@/%@/%@", autoUploadPath, yearString, monthString];
  891. }
  892. // Check if is in upload
  893. NSArray *isRecordInSessions = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileName == %@ AND session != ''", appDelegate.activeAccount, serverUrl, fileName] sorted:nil ascending:NO];
  894. if ([isRecordInSessions count] > 0)
  895. continue;
  896. // Prepare record metadata
  897. tableMetadata *metadataForUpload = [tableMetadata new];
  898. metadataForUpload.account = appDelegate.activeAccount;
  899. metadataForUpload.assetLocalIdentifier = asset.localIdentifier;
  900. metadataForUpload.date = [NSDate new];
  901. metadataForUpload.ocId = [CCUtility createMetadataIDFromAccount:appDelegate.activeAccount serverUrl:serverUrl fileNameView:fileName directory:false];
  902. metadataForUpload.fileName = fileName;
  903. metadataForUpload.fileNameView = fileName;
  904. metadataForUpload.serverUrl = serverUrl;
  905. metadataForUpload.session = session;
  906. metadataForUpload.sessionSelector = selectorUploadFile;
  907. metadataForUpload.size = [[NCUtility sharedInstance] getFileSizeWithAsset:asset];
  908. metadataForUpload.status = k_metadataStatusWaitUpload;
  909. [CCUtility insertTypeFileIconName:fileName metadata:metadataForUpload];
  910. if ([[NCUtility sharedInstance] getMetadataConflictWithAccount:appDelegate.activeAccount serverUrl:serverUrl fileName:fileName] != nil) {
  911. [metadatasUploadInConflict addObject:metadataForUpload];
  912. } else {
  913. [metadatasNOConflict addObject:metadataForUpload];
  914. }
  915. // Add Medtadata MOV LIVE PHOTO for upload
  916. if ((asset.mediaSubtypes == PHAssetMediaSubtypePhotoLive || asset.mediaSubtypes == PHAssetMediaSubtypePhotoLive+PHAssetMediaSubtypePhotoHDR) && CCUtility.getLivePhoto && urls.count == assets.count) {
  917. NSUInteger index = [assets indexOfObject:asset];
  918. NSURL *url = [urls objectAtIndex:index];
  919. tableMetadata *metadataMOVForUpload = [tableMetadata new];
  920. NSString *fileNameNoExt = [fileName stringByDeletingPathExtension];
  921. NSString *fileName = [NSString stringWithFormat:@"%@.mov", fileNameNoExt];
  922. unsigned long long fileSize = [[[NSFileManager defaultManager] attributesOfItemAtPath:url.path error:nil] fileSize];
  923. metadataMOVForUpload.account = appDelegate.activeAccount;
  924. metadataMOVForUpload.date = [NSDate new];
  925. metadataMOVForUpload.ocId = [CCUtility createMetadataIDFromAccount:appDelegate.activeAccount serverUrl:serverUrl fileNameView:fileName directory:false];
  926. metadataMOVForUpload.fileName = fileName;
  927. metadataMOVForUpload.fileNameView = fileName;
  928. metadataMOVForUpload.serverUrl = serverUrl;
  929. metadataMOVForUpload.session = session;
  930. metadataMOVForUpload.sessionSelector = selectorUploadFile;
  931. metadataMOVForUpload.size = fileSize;
  932. metadataMOVForUpload.status = k_metadataStatusWaitUpload;
  933. // Prepare file and directory
  934. [CCUtility moveFileAtPath:url.path toPath:[CCUtility getDirectoryProviderStorageOcId:metadataMOVForUpload.ocId fileNameView:fileName]];
  935. [metadatasMOV addObject:metadataMOVForUpload];
  936. }
  937. }
  938. // Verify if file(s) exists
  939. if (metadatasUploadInConflict.count > 0) {
  940. NCCreateFormUploadConflict *conflict = [[UIStoryboard storyboardWithName:@"NCCreateFormUploadConflict" bundle:nil] instantiateInitialViewController];
  941. conflict.serverUrl = self.serverUrl;
  942. conflict.metadatasNOConflict = metadatasNOConflict;
  943. conflict.metadatasMOV = metadatasMOV;
  944. conflict.metadatasUploadInConflict = metadatasUploadInConflict;
  945. [self presentViewController:conflict animated:YES completion:nil];
  946. } else {
  947. [[NCManageDatabase sharedInstance] addMetadatas:metadatasNOConflict];
  948. [[NCManageDatabase sharedInstance] addMetadatas:metadatasMOV];
  949. [appDelegate startLoadAutoDownloadUpload];
  950. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  951. }
  952. }
  953. #pragma --------------------------------------------------------------------------------------------
  954. #pragma mark ==== Read Folder ====
  955. #pragma --------------------------------------------------------------------------------------------
  956. - (void)readFolder:(NSString *)serverUrl
  957. {
  958. // init control
  959. if (!serverUrl || !appDelegate.activeAccount || appDelegate.maintenanceMode) {
  960. [refreshControl endRefreshing];
  961. return;
  962. }
  963. // Search Mode
  964. if (self.searchController.isActive) {
  965. [[NCManageDatabase sharedInstance] clearDateReadWithServerUrl:serverUrl account:appDelegate.activeAccount];
  966. _searchFileName = @""; // forced reload searchg
  967. [self updateSearchResultsForSearchController:self.searchController];
  968. return;
  969. }
  970. _loadingFolder = YES;
  971. [self tableViewReloadData];
  972. [[NCNetworking sharedInstance] readFolderWithServerUrl:serverUrl account:appDelegate.activeAccount completion:^(NSString *account, tableMetadata *metadataFolder, NSArray *metadatas, NSInteger errorCode, NSString *errorDescription) {
  973. [refreshControl endRefreshing];
  974. if (errorCode == 0 ) {
  975. _metadataFolder = metadataFolder;
  976. BOOL isFolderEncrypted = [CCUtility isFolderEncrypted:serverUrl e2eEncrypted:_metadataFolder.e2eEncrypted account:appDelegate.activeAccount];
  977. [self setTitle];
  978. // File is changed ??
  979. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
  980. [[CCSynchronize sharedSynchronize] verifyChangeMedatas:metadatas serverUrl:serverUrl account:account withDownload:NO];
  981. });
  982. // E2EE Is encrypted folder get metadata
  983. if (isFolderEncrypted) {
  984. NSString *metadataFolderFileId = metadataFolder.fileId;
  985. // Read Metadata
  986. if ([CCUtility isEndToEndEnabled:account]) {
  987. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
  988. NSString *metadata;
  989. NSError *error = [[NCNetworkingEndToEnd sharedManager] getEndToEndMetadata:&metadata fileId:metadataFolderFileId user:appDelegate.activeUser userID:appDelegate.activeUserID password:[CCUtility getPassword:appDelegate.activeAccount] url:appDelegate.activeUrl];
  990. dispatch_async(dispatch_get_main_queue(), ^{
  991. if (error) {
  992. if (error.code != kOCErrorServerPathNotFound)
  993. [[NCContentPresenter shared] messageNotification:@"_e2e_error_get_metadata_" description:error.localizedDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code];
  994. } else {
  995. if ([[NCEndToEndMetadata sharedInstance] decoderMetadata:metadata privateKey:[CCUtility getEndToEndPrivateKey:account] serverUrl:self.serverUrl account:account url:appDelegate.activeUrl] == false)
  996. [[NCContentPresenter shared] messageNotification:@"_error_e2ee_" description:@"_e2e_error_decode_metadata_" delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code];
  997. else
  998. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:serverUrl ocId:nil action:k_action_NULL];
  999. }
  1000. });
  1001. });
  1002. } else {
  1003. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  1004. }
  1005. }
  1006. if ([serverUrl isEqualToString:_serverUrl]) {
  1007. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:serverUrl ocId:nil action:k_action_NULL];
  1008. [self tableViewReloadData];
  1009. }
  1010. } else {
  1011. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  1012. }
  1013. _loadingFolder = NO;
  1014. }];
  1015. }
  1016. - (void)readFileReloadFolder
  1017. {
  1018. if (!_serverUrl || !appDelegate.activeAccount || appDelegate.maintenanceMode)
  1019. return;
  1020. // RichWorkspace
  1021. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, self.serverUrl]];
  1022. self.richWorkspaceText = directory.richWorkspace;
  1023. [self setTableViewHeader];
  1024. // Load Datasource
  1025. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.001 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1026. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1027. });
  1028. [[NCNetworking sharedInstance] readFileWithServerUrlFileName:self.serverUrl account:appDelegate.activeAccount completion:^(NSString *account, tableMetadata *metadata, NSInteger errorCode, NSString *errorDescription) {
  1029. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount]) {
  1030. // Rich Workspace
  1031. [[NCManageDatabase sharedInstance] setDirectoryWithOcId:metadata.ocId serverUrl:self.serverUrl richWorkspace:metadata.richWorkspace account:account];
  1032. self.richWorkspaceText = metadata.richWorkspace;
  1033. [self setTableViewHeader];
  1034. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", account, self.serverUrl]];
  1035. // Read folder: No record, Change etag or BLINK
  1036. if ([sectionDataSource.allRecordsDataSource count] == 0 || [metadata.etag isEqualToString:directory.etag] == NO || self.blinkFileNamePath != nil) {
  1037. [self readFolder:self.serverUrl];
  1038. }
  1039. } else if (errorCode != 0) {
  1040. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  1041. }
  1042. }];
  1043. }
  1044. #pragma mark -
  1045. #pragma --------------------------------------------------------------------------------------------
  1046. #pragma mark ===== Search =====
  1047. #pragma --------------------------------------------------------------------------------------------
  1048. - (void)searchStartTimer
  1049. {
  1050. if (self.searchController.isActive == false) {
  1051. return;
  1052. }
  1053. [[NCCommunication sharedInstance] searchLiteralWithServerUrl:appDelegate.activeUrl depth:@"infinity" literal:_searchFileName showHiddenFiles:[CCUtility getShowHiddenFiles] customUserAgent:nil addCustomHeaders:nil user:appDelegate.activeUser account:appDelegate.activeAccount completionHandler:^(NSString *account, NSArray *files, NSInteger errorCode, NSString *errorDescription) {
  1054. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount] && files != nil) {
  1055. [[NCManageDatabase sharedInstance] convertNCFilesToMetadatas:files useMetadataFolder:false account:account completion:^(tableMetadata *metadataFolder, NSArray<tableMetadata *> *metadatasFolder, NSArray<tableMetadata *> *metadatas) {
  1056. NSMutableArray *metadatasDB = (NSMutableArray *)[[NCManageDatabase sharedInstance] addMetadatas:metadatas];
  1057. _searchResultMetadatas = [[NSMutableArray alloc] initWithArray:metadatasDB];
  1058. _metadataFolder = nil;
  1059. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:_serverUrl ocId:nil action:k_action_NULL];
  1060. [self tableViewReloadData];
  1061. [self setTitle];
  1062. }];
  1063. } else {
  1064. if (errorCode != 0) {
  1065. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  1066. }
  1067. _searchFileName = @"";
  1068. }
  1069. }];
  1070. _noFilesSearchTitle = @"";
  1071. _noFilesSearchDescription = NSLocalizedString(@"_search_in_progress_", nil);
  1072. [self.tableView reloadEmptyDataSet];
  1073. }
  1074. - (void)updateSearchResultsForSearchController:(UISearchController *)searchController
  1075. {
  1076. // Color text "Cancel"
  1077. [[UIBarButtonItem appearanceWhenContainedInInstancesOfClasses:@[[UISearchBar class]]] setTintColor:NCBrandColor.sharedInstance.brandText];
  1078. if (searchController.isActive) {
  1079. [self deleteRefreshControl];
  1080. NSString *fileName = [CCUtility removeForbiddenCharactersServer:searchController.searchBar.text];
  1081. if (fileName.length >= k_minCharsSearch && [fileName isEqualToString:_searchFileName] == NO) {
  1082. _searchFileName = fileName;
  1083. _metadataFolder = nil;
  1084. // First : filter
  1085. NSArray *records = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileNameView CONTAINS[cd] %@", appDelegate.activeAccount, _serverUrl, fileName] sorted:nil ascending:NO];
  1086. [_searchResultMetadatas removeAllObjects];
  1087. for (tableMetadata *record in records) {
  1088. [_searchResultMetadatas addObject:record];
  1089. }
  1090. // Version >= 12
  1091. if ([[NCManageDatabase sharedInstance] getServerVersionWithAccount:appDelegate.activeAccount] >= 12) {
  1092. [_timerWaitInput invalidate];
  1093. _timerWaitInput = [NSTimer scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(searchStartTimer) userInfo:nil repeats:NO];
  1094. }
  1095. [self setTitle];
  1096. }
  1097. if (_searchResultMetadatas.count == 0 && fileName.length == 0) {
  1098. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1099. }
  1100. } else {
  1101. [self createRefreshControl];
  1102. [self reloadDatasource:self.serverUrl ocId:nil action:k_action_NULL];
  1103. }
  1104. }
  1105. - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar
  1106. {
  1107. [self cancelSearchBar];
  1108. }
  1109. - (void)cancelSearchBar
  1110. {
  1111. if (self.searchController.active) {
  1112. [self.searchController setActive:NO];
  1113. _searchFileName = @"";
  1114. _dateReadDataSource = nil;
  1115. _searchResultMetadatas = [NSMutableArray new];
  1116. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1117. }
  1118. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1119. [self setTableViewHeader];
  1120. });
  1121. }
  1122. #pragma mark -
  1123. #pragma --------------------------------------------------------------------------------------------
  1124. #pragma mark ===== Delete File or Folder =====
  1125. #pragma --------------------------------------------------------------------------------------------
  1126. - (void)deleteMetadatas
  1127. {
  1128. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  1129. return;
  1130. if ([_selectedocIdsMetadatas count] > 0) {
  1131. [appDelegate.arrayDeleteMetadata addObjectsFromArray:[_selectedocIdsMetadatas allValues]];
  1132. } else {
  1133. [appDelegate.arrayDeleteMetadata addObject:self.metadata];
  1134. }
  1135. [[NCNetworking sharedInstance] deleteMetadata:appDelegate.arrayDeleteMetadata.firstObject user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl completion:^(NSInteger errorCode, NSString *errorDescription) { }];
  1136. [appDelegate.arrayDeleteMetadata removeObjectAtIndex:0];
  1137. // End Select Table View
  1138. [self tableViewSelect:false];
  1139. }
  1140. #pragma --------------------------------------------------------------------------------------------
  1141. #pragma mark ===== Move / Copy =====
  1142. #pragma --------------------------------------------------------------------------------------------
  1143. - (void)moveCopyFileOrFolderMetadata:(tableMetadata *)metadata serverUrlTo:(NSString *)serverUrlTo move:(BOOL)move overwrite:(BOOL)overwrite
  1144. {
  1145. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  1146. return;
  1147. NSMutableArray *arrayMetadata, *arrayServerUrlTo;
  1148. if (move) {
  1149. arrayMetadata = appDelegate.arrayMoveMetadata;
  1150. arrayServerUrlTo = appDelegate.arrayMoveServerUrlTo;
  1151. } else {
  1152. arrayMetadata = appDelegate.arrayCopyMetadata;
  1153. arrayServerUrlTo = appDelegate.arrayCopyServerUrlTo;
  1154. }
  1155. if ([_selectedocIdsMetadatas count] > 0) {
  1156. for (NSString *key in _selectedocIdsMetadatas) {
  1157. tableMetadata *metadata = [_selectedocIdsMetadatas objectForKey:key];
  1158. [arrayMetadata addObject:metadata];
  1159. [arrayServerUrlTo addObject:serverUrlTo];
  1160. }
  1161. } else {
  1162. [arrayMetadata addObject:metadata];
  1163. [arrayServerUrlTo addObject:serverUrlTo];
  1164. }
  1165. if (move) {
  1166. [[NCNetworking sharedInstance] moveMetadata:arrayMetadata.firstObject serverUrlTo:arrayServerUrlTo.firstObject overwrite:overwrite completion:^(NSInteger errorCode, NSString * errorDesctiption) { }];
  1167. } else {
  1168. [[NCNetworking sharedInstance] copyMetadata:arrayMetadata.firstObject serverUrlTo:arrayServerUrlTo.firstObject overwrite:overwrite completion:^(NSInteger errorCode, NSString * errorDesctiption) { }];
  1169. }
  1170. [arrayMetadata removeObjectAtIndex:0];
  1171. [arrayServerUrlTo removeObjectAtIndex:0];
  1172. // End Select Table View
  1173. [self tableViewSelect:false];
  1174. }
  1175. // DELEGATE : Select
  1176. - (void)dismissSelectWithServerUrl:(NSString *)serverUrl metadata:(tableMetadata *)metadata type:(NSString *)type buttonType:(NSString *)buttonType overwrite:(BOOL)overwrite
  1177. {
  1178. if (serverUrl == nil) {
  1179. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1180. } else {
  1181. // E2EE DENIED
  1182. if ([CCUtility isFolderEncrypted:serverUrl e2eEncrypted:metadata.e2eEncrypted account:appDelegate.activeAccount]) {
  1183. [[NCContentPresenter shared] messageNotification:@"_move_" description:@"Not possible move files to encrypted directory" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  1184. return;
  1185. }
  1186. BOOL move = true;
  1187. if ([buttonType isEqualToString:@"done1"]) { move = false; }
  1188. if ([_selectedocIdsMetadatas count] > 0) {
  1189. NSArray *metadatas = [_selectedocIdsMetadatas allValues];
  1190. [self moveCopyFileOrFolderMetadata:[metadatas objectAtIndex:0] serverUrlTo:serverUrl move:move overwrite:overwrite];
  1191. } else {
  1192. [self moveCopyFileOrFolderMetadata:self.metadata serverUrlTo:serverUrl move:move overwrite:overwrite];
  1193. }
  1194. }
  1195. }
  1196. - (void)moveOpenWindow:(NSArray *)indexPaths
  1197. {
  1198. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  1199. return;
  1200. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCSelect" bundle:nil] instantiateInitialViewController];
  1201. NCSelect *viewController = (NCSelect *)navigationController.topViewController;
  1202. viewController.delegate = self;
  1203. viewController.hideButtonCreateFolder = false;
  1204. viewController.selectFile = false;
  1205. viewController.includeDirectoryE2EEncryption = false;
  1206. viewController.includeImages = false;
  1207. viewController.type = @"";
  1208. viewController.titleButtonDone = NSLocalizedString(@"_move_", nil);
  1209. viewController.titleButtonDone1 = NSLocalizedString(@"_copy_", nil);
  1210. viewController.isButtonDone1Hide = false;
  1211. viewController.isOverwriteHide = false;
  1212. viewController.layoutViewSelect = k_layout_view_move;
  1213. [navigationController setModalPresentationStyle:UIModalPresentationFullScreen];
  1214. [self presentViewController:navigationController animated:YES completion:nil];
  1215. }
  1216. #pragma --------------------------------------------------------------------------------------------
  1217. #pragma mark ===== Create folder =====
  1218. #pragma --------------------------------------------------------------------------------------------
  1219. - (void)createFolder
  1220. {
  1221. NSString *serverUrl = [appDelegate getTabBarControllerActiveServerUrl];
  1222. NSString *message;
  1223. UIAlertController *alertController;
  1224. if ([serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]]) {
  1225. message = @"/";
  1226. } else {
  1227. message = [serverUrl lastPathComponent];
  1228. }
  1229. alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_create_folder_on_",nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  1230. [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  1231. [textField addTarget:self action:@selector(minCharTextFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
  1232. textField.autocapitalizationType = UITextAutocapitalizationTypeSentences;
  1233. }];
  1234. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_",nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  1235. NSLog(@"[LOG] Cancel action");
  1236. }];
  1237. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  1238. UITextField *fileName = alertController.textFields.firstObject;
  1239. [[NCNetworking sharedInstance] createFolderWithFileName:fileName.text serverUrl:serverUrl account:appDelegate.activeAccount user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl completion:^(NSInteger errorCode, NSString *errorDescription) { }];
  1240. }];
  1241. okAction.enabled = NO;
  1242. [alertController addAction:cancelAction];
  1243. [alertController addAction:okAction];
  1244. [self presentViewController:alertController animated:YES completion:nil];
  1245. }
  1246. #pragma --------------------------------------------------------------------------------------------
  1247. #pragma mark ===== Progress & Task Button =====
  1248. #pragma --------------------------------------------------------------------------------------------
  1249. - (void)triggerProgressTask:(NSNotification *)notification
  1250. {
  1251. if (sectionDataSource.ocIdIndexPath != nil) {
  1252. [[NCMainCommon sharedInstance] triggerProgressTask:notification sectionDataSourceocIdIndexPath:sectionDataSource.ocIdIndexPath tableView:self.tableView viewController:self serverUrlViewController:self.serverUrl];
  1253. }
  1254. }
  1255. - (void)cancelTaskButton:(id)sender withEvent:(UIEvent *)event
  1256. {
  1257. UITouch *touch = [[event allTouches] anyObject];
  1258. CGPoint location = [touch locationInView:self.tableView];
  1259. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1260. if ([self indexPathIsValid:indexPath]) {
  1261. tableMetadata *metadataSection = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1262. if (metadataSection) {
  1263. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadataSection.ocId]];
  1264. if (metadata)
  1265. [[NCMainCommon sharedInstance] cancelTransferMetadata:metadata reloadDatasource:true uploadStatusForcedStart:false];
  1266. }
  1267. }
  1268. }
  1269. - (void)cancelAllTask:(id)sender
  1270. {
  1271. CGPoint location = [sender locationInView:self.tableView];
  1272. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1273. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  1274. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_all_task_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1275. [NCUtility.sharedInstance startActivityIndicatorWithView:self.view bottom:0];
  1276. [[NCMainCommon sharedInstance] cancelAllTransfer];
  1277. [NCUtility.sharedInstance stopActivityIndicator];
  1278. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:nil ocId:nil action:k_action_NULL];
  1279. }]];
  1280. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) { }]];
  1281. alertController.popoverPresentationController.sourceView = self.tableView;
  1282. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  1283. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  1284. [alertController.view layoutIfNeeded];
  1285. [self presentViewController:alertController animated:YES completion:nil];
  1286. }
  1287. #pragma --------------------------------------------------------------------------------------------
  1288. #pragma mark ===== Tap =====
  1289. #pragma --------------------------------------------------------------------------------------------
  1290. - (void)tapActionComment:(UITapGestureRecognizer *)tapGesture
  1291. {
  1292. CGPoint location = [tapGesture locationInView:self.tableView];
  1293. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1294. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1295. if (metadata) {
  1296. [[NCMainCommon sharedInstance] openShareWithViewController:self metadata:metadata indexPage:1];
  1297. }
  1298. }
  1299. - (void)tapActionShared:(UITapGestureRecognizer *)tapGesture
  1300. {
  1301. CGPoint location = [tapGesture locationInView:self.tableView];
  1302. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1303. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1304. if (metadata) {
  1305. [[NCMainCommon sharedInstance] openShareWithViewController:self metadata:metadata indexPage:2];
  1306. }
  1307. }
  1308. - (void)tapActionConnectionMounted:(UITapGestureRecognizer *)tapGesture
  1309. {
  1310. CGPoint location = [tapGesture locationInView:self.tableView];
  1311. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1312. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1313. if (metadata) {
  1314. }
  1315. }
  1316. #pragma --------------------------------------------------------------------------------------------
  1317. #pragma mark ===== Rich Workspace =====
  1318. #pragma --------------------------------------------------------------------------------------------
  1319. - (void)viewRichWorkspaceTapAction:(UITapGestureRecognizer *)tapGesture
  1320. {
  1321. [UIView animateWithDuration:0.5 animations:^{
  1322. [self.tableView setContentOffset:CGPointMake(0, heightSearchBar)];
  1323. } completion:^(BOOL finished) {
  1324. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCViewerRichWorkspace" bundle:nil] instantiateInitialViewController];
  1325. NCViewerRichWorkspace *viewerRichWorkspace = (NCViewerRichWorkspace *)[navigationController topViewController];
  1326. viewerRichWorkspace.richWorkspaceText = self.richWorkspaceText;
  1327. viewerRichWorkspace.serverUrl = self.serverUrl;
  1328. navigationController.modalPresentationStyle = UIModalPresentationFullScreen;
  1329. [self presentViewController:navigationController animated:NO completion:NULL];
  1330. }];
  1331. }
  1332. - (void)createRichWorkspace
  1333. {
  1334. NCRichWorkspaceCommon *richWorkspaceCommon = [NCRichWorkspaceCommon new];
  1335. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileNameView LIKE[c] %@", appDelegate.activeAccount, self.serverUrl, k_fileNameRichWorkspace.lowercaseString]];
  1336. if (metadata) {
  1337. [richWorkspaceCommon openViewerNextcloudTextWithServerUrl:self.serverUrl viewController:self];
  1338. } else {
  1339. [richWorkspaceCommon createViewerNextcloudTextWithServerUrl:self.serverUrl viewController:self];
  1340. }
  1341. }
  1342. #pragma --------------------------------------------------------------------------------------------
  1343. #pragma mark ==== Menu LOGO ====
  1344. #pragma --------------------------------------------------------------------------------------------
  1345. - (void)menuLogo:(UIGestureRecognizer *)theGestureRecognizer
  1346. {
  1347. // Brand
  1348. if ([NCBrandOptions sharedInstance].disable_multiaccount)
  1349. return;
  1350. NSArray *listAccount = [[NCManageDatabase sharedInstance] getAccounts];
  1351. NSMutableArray *menuArray = [NSMutableArray new];
  1352. for (NSString *account in listAccount) {
  1353. CCMenuItem *item = [[CCMenuItem alloc] init];
  1354. item.title = [account stringByTruncatingToWidth:self.view.bounds.size.width - 100 withFont:[UIFont systemFontOfSize:12.0] atEnd:YES];
  1355. item.argument = account;
  1356. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ ", account]];
  1357. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@-%@.png", [CCUtility getDirectoryUserData], [CCUtility getStringUser:tableAccount.user activeUrl:tableAccount.url], tableAccount.user];
  1358. UIImage *avatar = [UIImage imageWithContentsOfFile:fileNamePath];
  1359. if (avatar) {
  1360. avatar = [CCGraphics scaleImage:avatar toSize:CGSizeMake(25, 25) isAspectRation:YES];
  1361. CCAvatar *avatarImageView = [[CCAvatar alloc] initWithImage:avatar borderColor:[UIColor lightGrayColor] borderWidth:0.5];
  1362. CGSize imageSize = avatarImageView.bounds.size;
  1363. UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
  1364. CGContextRef context = UIGraphicsGetCurrentContext();
  1365. [avatarImageView.layer renderInContext:context];
  1366. avatar = UIGraphicsGetImageFromCurrentImageContext();
  1367. UIGraphicsEndImageContext();
  1368. } else {
  1369. avatar = [UIImage imageNamed:@"menuLogoUser"];
  1370. }
  1371. item.image = avatar;
  1372. item.target = self;
  1373. if ([account isEqualToString:appDelegate.activeAccount]) {
  1374. item.action = nil;
  1375. [menuArray insertObject:item atIndex:0];
  1376. } else {
  1377. item.action = @selector(changeDefaultAccount:);
  1378. [menuArray addObject:item];
  1379. }
  1380. }
  1381. // Add + new account
  1382. CCMenuItem *item = [[CCMenuItem alloc] init];
  1383. item.title = NSLocalizedString(@"_add_account_", nil);
  1384. item.argument = @"";
  1385. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"add"] width:50 height:50 color:NCBrandColor.sharedInstance.textView];
  1386. item.target = self;
  1387. item.action = @selector(addNewAccount:);
  1388. [menuArray addObject:item];
  1389. OptionalConfiguration options;
  1390. Color backgroundColor;
  1391. const CGFloat *componentsBackgroundColor = CGColorGetComponents(NCBrandColor.sharedInstance.backgroundForm.CGColor);
  1392. backgroundColor.R = componentsBackgroundColor[0];
  1393. backgroundColor.G = componentsBackgroundColor[1];
  1394. backgroundColor.B = componentsBackgroundColor[2];
  1395. options.arrowSize = 9;
  1396. options.marginXSpacing = 7;
  1397. options.marginYSpacing = 10;
  1398. options.intervalSpacing = 20;
  1399. options.menuCornerRadius = 6.5;
  1400. options.maskToBackground = NO;
  1401. options.shadowOfMenu = YES;
  1402. options.hasSeperatorLine = YES;
  1403. options.seperatorLineHasInsets = YES;
  1404. options.textColor = NCBrandColor.sharedInstance.textView;
  1405. options.menuBackgroundColor = backgroundColor;
  1406. options.separatorColor = NCBrandColor.sharedInstance.separator;
  1407. CGRect rect = self.view.frame;
  1408. CGFloat locationY = [theGestureRecognizer locationInView: self.navigationController.navigationBar].y;
  1409. CGFloat safeAreaTop = 0;
  1410. CGFloat offsetY = 35;
  1411. if (@available(iOS 11, *)) {
  1412. safeAreaTop = [UIApplication sharedApplication].delegate.window.safeAreaInsets.top / 2;
  1413. }
  1414. rect.origin.y = locationY + safeAreaTop + offsetY;
  1415. rect.size.height = rect.size.height - locationY - safeAreaTop - offsetY;
  1416. [CCMenuAccount setTitleFont:[UIFont systemFontOfSize:12.0]];
  1417. [CCMenuAccount showMenuInView:self.navigationController.view fromRect:rect menuItems:menuArray withOptions:options];
  1418. }
  1419. - (void)changeDefaultAccount:(CCMenuItem *)sender
  1420. {
  1421. // LOGOUT
  1422. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] setAccountActive:[sender argument]];
  1423. if (tableAccount) {
  1424. // LOGIN
  1425. [appDelegate settingActiveAccount:tableAccount.account activeUrl:tableAccount.url activeUser:tableAccount.user activeUserID:tableAccount.userID activePassword:[CCUtility getPassword:tableAccount.account]];
  1426. // go to home sweet home
  1427. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
  1428. }
  1429. }
  1430. - (void)addNewAccount:(CCMenuItem *)sender
  1431. {
  1432. [appDelegate openLoginView:self selector:k_intro_login openLoginWeb:false];
  1433. }
  1434. - (void)toggleReMainMenu
  1435. {
  1436. [self toggleMenuWithViewController:self.navigationController];
  1437. }
  1438. - (void)toggleReSelectMenu
  1439. {
  1440. [self toggleSelectMenuWithViewController:self.navigationController];
  1441. }
  1442. #pragma --------------------------------------------------------------------------------------------
  1443. #pragma mark ===== Long Press Recognized Table View / Menu Controller =====
  1444. #pragma --------------------------------------------------------------------------------------------
  1445. - (void)onLongPressTableView:(UILongPressGestureRecognizer*)recognizer
  1446. {
  1447. if (recognizer.state == UIGestureRecognizerStateBegan) {
  1448. CGPoint touchPoint = [recognizer locationInView:self.tableView];
  1449. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touchPoint];
  1450. NSMutableArray *items = [NSMutableArray new];
  1451. if ([self indexPathIsValid:indexPath])
  1452. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1453. else
  1454. self.metadata = nil;
  1455. [self becomeFirstResponder];
  1456. UIMenuController *menuController = [UIMenuController sharedMenuController];
  1457. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_file_", nil) action:@selector(copyTouchFile:)]];
  1458. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_files_", nil) action:@selector(copyTouchFiles:)]];
  1459. if ([NCBrandOptions sharedInstance].disable_openin_file == false) {
  1460. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_open_in_", nil) action:@selector(openinTouchFile:)]];
  1461. }
  1462. if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_document]) {
  1463. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_open_internal_view_", nil) action:@selector(openInternalViewerTouch:)]];
  1464. }
  1465. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_file_", nil) action:@selector(pasteTouchFile:)]];
  1466. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_files_", nil) action:@selector(pasteTouchFiles:)]];
  1467. [menuController setMenuItems:items];
  1468. [menuController setTargetRect:CGRectMake(touchPoint.x, touchPoint.y, 0.0f, 0.0f) inView:self.tableView];
  1469. [menuController setMenuVisible:YES animated:YES];
  1470. }
  1471. }
  1472. - (BOOL)canBecomeFirstResponder
  1473. {
  1474. return YES;
  1475. }
  1476. - (BOOL)canPerformAction:(SEL)action withSender:(id)sender
  1477. {
  1478. // For copy file, copy files, Open in ... :
  1479. //
  1480. // NO Directory
  1481. // NO Error Passcode
  1482. // NO In Session mode (download/upload)
  1483. // NO Template
  1484. if (@selector(copyTouchFile:) == action || @selector(openinTouchFile:) == action || @selector(openInternalViewerTouch:) == action) {
  1485. if (_isSelectedMode == NO && self.metadata && !self.metadata.directory && self.metadata.status == k_metadataStatusNormal) return YES;
  1486. else return NO;
  1487. }
  1488. if (@selector(copyTouchFiles:) == action) {
  1489. if (_isSelectedMode) {
  1490. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  1491. for (tableMetadata *metadata in selectedMetadatas) {
  1492. if (!metadata.directory && metadata.status == k_metadataStatusNormal)
  1493. return YES;
  1494. }
  1495. }
  1496. return NO;
  1497. }
  1498. if (@selector(pasteTouchFile:) == action) {
  1499. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1500. NSArray *items = [pasteboard items];
  1501. if ([items count] == 1) {
  1502. // Value : (NSData) ocId
  1503. NSDictionary *dic = [items objectAtIndex:0];
  1504. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1505. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1506. if (ocId) {
  1507. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocId]];
  1508. if (metadata) {
  1509. return [CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView];
  1510. } else {
  1511. return NO;
  1512. }
  1513. }
  1514. }
  1515. return NO;
  1516. }
  1517. if (@selector(pasteTouchFiles:) == action) {
  1518. BOOL isValid = NO;
  1519. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1520. NSArray *items = [pasteboard items];
  1521. if ([items count] <= 1) return NO;
  1522. for (NSDictionary *dic in items) {
  1523. // Value : (NSData) ocId
  1524. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1525. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1526. if (ocId) {
  1527. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocId]];
  1528. if (metadata) {
  1529. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1530. isValid = YES;
  1531. } else {
  1532. isValid = NO;
  1533. break;
  1534. }
  1535. } else {
  1536. isValid = NO;
  1537. break;
  1538. }
  1539. } else {
  1540. isValid = NO;
  1541. break;
  1542. }
  1543. }
  1544. return isValid;
  1545. }
  1546. return NO;
  1547. }
  1548. /************************************ COPY ************************************/
  1549. - (void)copyTouchFile:(id)sender
  1550. {
  1551. // Remove all item
  1552. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1553. pasteboard.items = [[NSArray alloc] init];
  1554. if ([CCUtility fileProviderStorageExists:self.metadata.ocId fileNameView:self.metadata.fileNameView]) {
  1555. [self copyFileToPasteboard:self.metadata];
  1556. } else {
  1557. self.metadata.session = k_download_session;
  1558. self.metadata.sessionError = @"";
  1559. self.metadata.sessionSelector = selectorLoadCopy;
  1560. self.metadata.status = k_metadataStatusWaitDownload;
  1561. // Add Metadata for Download
  1562. [[NCManageDatabase sharedInstance] addMetadata:self.metadata];
  1563. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:self.metadata.ocId action:k_action_MOD];
  1564. [appDelegate startLoadAutoDownloadUpload];
  1565. }
  1566. }
  1567. - (void)copyTouchFiles:(id)sender
  1568. {
  1569. // Remove all item
  1570. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1571. pasteboard.items = [[NSArray alloc] init];
  1572. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  1573. for (tableMetadata *metadata in selectedMetadatas) {
  1574. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1575. [self copyFileToPasteboard:metadata];
  1576. } else {
  1577. metadata.session = k_download_session;
  1578. metadata.sessionError = @"";
  1579. metadata.sessionSelector = selectorLoadCopy;
  1580. metadata.status = k_metadataStatusWaitDownload;
  1581. // Add Metadata for Download
  1582. [[NCManageDatabase sharedInstance] addMetadata:metadata];
  1583. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:metadata.ocId action:k_action_MOD];
  1584. [appDelegate startLoadAutoDownloadUpload];
  1585. }
  1586. }
  1587. [self tableViewSelect:false];
  1588. }
  1589. - (void)copyFileToPasteboard:(tableMetadata *)metadata
  1590. {
  1591. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1592. NSMutableArray *items = [[NSMutableArray alloc] initWithArray:pasteboard.items];
  1593. // Value : (NSData) ocId
  1594. NSDictionary *item = [NSDictionary dictionaryWithObjectsAndKeys:[NSKeyedArchiver archivedDataWithRootObject:metadata.ocId], k_metadataKeyedUnarchiver,nil];
  1595. [items addObject:item];
  1596. [pasteboard setItems:items];
  1597. }
  1598. /************************************ OPEN IN ... ******************************/
  1599. - (void)openinTouchFile:(id)sender
  1600. {
  1601. [[NCMainCommon sharedInstance] downloadOpenWithMetadata:self.metadata selector:selectorOpenIn];
  1602. }
  1603. /************************************ OPEN INTERNAL VIEWER ... ******************************/
  1604. - (void)openInternalViewerTouch:(id)sender
  1605. {
  1606. [[NCMainCommon sharedInstance] downloadOpenWithMetadata:self.metadata selector:selectorLoadFileInternalView];
  1607. }
  1608. /************************************ PASTE ************************************/
  1609. - (void)pasteTouchFile:(id)sender
  1610. {
  1611. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1612. [self uploadFilePasteArray:[pasteboard items]];
  1613. }
  1614. - (void)pasteTouchFiles:(id)sender
  1615. {
  1616. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1617. [self uploadFilePasteArray:[pasteboard items]];
  1618. }
  1619. - (void)uploadFilePasteArray:(NSArray *)items
  1620. {
  1621. for (NSDictionary *dic in items) {
  1622. // Value : (NSData) ocId
  1623. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1624. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1625. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocId]];
  1626. if (metadata) {
  1627. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1628. NSString *fileName = [[NCUtility sharedInstance] createFileName:metadata.fileNameView serverUrl:self.serverUrl account:appDelegate.activeAccount];
  1629. NSString *ocId = [CCUtility createMetadataIDFromAccount:appDelegate.activeAccount serverUrl:self.serverUrl fileNameView:fileName directory:false];
  1630. [CCUtility copyFileAtPath:[CCUtility getDirectoryProviderStorageOcId:metadata.ocId fileNameView:metadata.fileNameView] toPath:[CCUtility getDirectoryProviderStorageOcId:ocId fileNameView:fileName]];
  1631. tableMetadata *metadataForUpload = [tableMetadata new];
  1632. metadataForUpload.account = appDelegate.activeAccount;
  1633. metadataForUpload.date = [NSDate new];
  1634. metadataForUpload.ocId = ocId;
  1635. metadataForUpload.fileName = fileName;
  1636. metadataForUpload.fileNameView = fileName;
  1637. metadataForUpload.serverUrl = self.serverUrl;
  1638. metadataForUpload.session = k_upload_session;
  1639. metadataForUpload.sessionSelector = selectorUploadFile;
  1640. metadataForUpload.size = metadata.size;
  1641. metadataForUpload.status = k_metadataStatusWaitUpload;
  1642. // Add Medtadata for upload
  1643. [[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  1644. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1645. }
  1646. }
  1647. }
  1648. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1649. [appDelegate startLoadAutoDownloadUpload];
  1650. }
  1651. #pragma --------------------------------------------------------------------------------------------
  1652. #pragma mark ===== Lock Passcode =====
  1653. #pragma --------------------------------------------------------------------------------------------
  1654. - (NSUInteger)passcodeViewControllerNumberOfFailedAttempts:(CCBKPasscode *)aViewController
  1655. {
  1656. return _failedAttempts;
  1657. }
  1658. - (NSDate *)passcodeViewControllerLockUntilDate:(CCBKPasscode *)aViewController
  1659. {
  1660. return _lockUntilDate;
  1661. }
  1662. - (void)passcodeViewCloseButtonPressed:(id)sender
  1663. {
  1664. [self dismissViewControllerAnimated:YES completion:nil];
  1665. }
  1666. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  1667. {
  1668. if (aViewController.fromType == CCBKPasscodeFromLockScreen || aViewController.fromType == CCBKPasscodeFromLockDirectory || aViewController.fromType == CCBKPasscodeFromDisactivateDirectory ) {
  1669. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  1670. _lockUntilDate = nil;
  1671. _failedAttempts = 0;
  1672. aResultHandler(YES);
  1673. } else aResultHandler(NO);
  1674. } else aResultHandler(YES);
  1675. }
  1676. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  1677. {
  1678. [aViewController dismissViewControllerAnimated:YES completion:nil];
  1679. switch (aViewController.type) {
  1680. case BKPasscodeViewControllerCheckPasscodeType: {
  1681. if (aViewController.fromType == CCBKPasscodeFromLockDirectory) {
  1682. // possiamo procedere alla prossima directory
  1683. [self performSegueDirectoryWithControlPasscode:false metadata:self.metadata blinkFileNamePath:self.blinkFileNamePath];
  1684. // avviamo la sessione Passcode Lock con now
  1685. appDelegate.sessionePasscodeLock = [NSDate date];
  1686. }
  1687. // disattivazione lock cartella
  1688. if (aViewController.fromType == CCBKPasscodeFromDisactivateDirectory) {
  1689. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.metadata.serverUrl addFileName:self.metadata.fileName];
  1690. if (![[NCManageDatabase sharedInstance] setDirectoryLockWithServerUrl:lockServerUrl lock:NO account:appDelegate.activeAccount]) {
  1691. [[NCContentPresenter shared] messageNotification:@"_error_" description:@"_error_operation_canc_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorInternalError];
  1692. }
  1693. [self tableViewReloadData];
  1694. }
  1695. }
  1696. break;
  1697. default:
  1698. break;
  1699. }
  1700. }
  1701. - (void)comandoLockPassword
  1702. {
  1703. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.metadata.serverUrl addFileName:self.metadata.fileName];
  1704. // se non è abilitato il Lock Passcode esci
  1705. if ([[CCUtility getBlockCode] length] == 0) {
  1706. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_warning_", nil) message:NSLocalizedString(@"_only_lock_passcode_", nil) preferredStyle:UIAlertControllerStyleAlert];
  1707. UIAlertAction *goToSettingsAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_go_to_app_settings_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  1708. [self.tabBarController setSelectedIndex:4];
  1709. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1710. NSIndexPath *selectedIndex = [NSIndexPath indexPathForRow:0 inSection:1];
  1711. [appDelegate.activeMore.tableView selectRowAtIndexPath:selectedIndex animated:true scrollPosition: UITableViewScrollPositionNone];
  1712. [appDelegate.activeMore tableView:appDelegate.activeMore.tableView didSelectRowAtIndexPath:selectedIndex];
  1713. });
  1714. }];
  1715. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  1716. [alertController addAction:goToSettingsAction];
  1717. [alertController addAction:okAction];
  1718. [self presentViewController:alertController animated:YES completion:nil];
  1719. return;
  1720. }
  1721. // se è richiesta la disattivazione si chiede la password
  1722. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  1723. if (directory.lock) {
  1724. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  1725. viewController.delegate = self;
  1726. viewController.fromType = CCBKPasscodeFromDisactivateDirectory;
  1727. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  1728. viewController.inputViewTitlePassword = YES;
  1729. if ([CCUtility getSimplyBlockCode]) {
  1730. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  1731. viewController.passcodeInputView.maximumLength = 6;
  1732. } else {
  1733. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  1734. viewController.passcodeInputView.maximumLength = 64;
  1735. }
  1736. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  1737. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  1738. viewController.touchIDManager = touchIDManager;
  1739. viewController.title = NSLocalizedString(@"_passcode_protection_", nil);
  1740. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  1741. viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
  1742. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  1743. navigationController.modalPresentationStyle = UIModalPresentationFullScreen;
  1744. [self presentViewController:navigationController animated:YES completion:nil];
  1745. return;
  1746. }
  1747. // ---------------- ACTIVATE PASSWORD
  1748. if ([[NCManageDatabase sharedInstance] setDirectoryLockWithServerUrl:lockServerUrl lock:YES account:appDelegate.activeAccount]) {
  1749. NSIndexPath *indexPath = [sectionDataSource.ocIdIndexPath objectForKey:self.metadata.ocId];
  1750. if ([self indexPathIsValid:indexPath])
  1751. [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationAutomatic];
  1752. } else {
  1753. [[NCContentPresenter shared] messageNotification:@"_error_" description:@"_error_operation_canc_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorInternalError];
  1754. }
  1755. }
  1756. #pragma mark -
  1757. #pragma --------------------------------------------------------------------------------------------
  1758. #pragma mark ===== menu action : Favorite, More, Delete [swipe] =====
  1759. #pragma --------------------------------------------------------------------------------------------
  1760. - (BOOL)canOpenMenuAction:(tableMetadata *)metadata
  1761. {
  1762. if (metadata == nil || _metadataFolder == nil || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata] || metadata.status != k_metadataStatusNormal || [[NCManageDatabase sharedInstance] isTableInvalidated:_metadataFolder])
  1763. return NO;
  1764. // E2EE
  1765. if (_metadataFolder.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount] == NO)
  1766. return NO;
  1767. return YES;
  1768. }
  1769. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell canSwipe:(MGSwipeDirection)direction
  1770. {
  1771. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  1772. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1773. return [self canOpenMenuAction:metadata];
  1774. }
  1775. -(void)swipeTableCell:(nonnull MGSwipeTableCell *)cell didChangeSwipeState:(MGSwipeState)state gestureIsActive:(BOOL)gestureIsActive
  1776. {
  1777. }
  1778. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell tappedButtonAtIndex:(NSInteger)index direction:(MGSwipeDirection)direction fromExpansion:(BOOL)fromExpansion
  1779. {
  1780. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  1781. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1782. if (direction == MGSwipeDirectionRightToLeft) {
  1783. [self actionDelete:indexPath];
  1784. }
  1785. if (direction == MGSwipeDirectionLeftToRight) {
  1786. [[NCNetworking sharedInstance] favoriteMetadata:self.metadata url:appDelegate.activeUrl completion:^(NSInteger errorCode, NSString *errorDescription) { }];
  1787. }
  1788. return YES;
  1789. }
  1790. - (void)actionDelete:(NSIndexPath *)indexPath
  1791. {
  1792. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1793. // Directory locked ?
  1794. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.metadata.serverUrl addFileName:metadata.fileName];
  1795. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  1796. tableLocalFile *localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  1797. if (directory.lock && [[CCUtility getBlockCode] length] && appDelegate.sessionePasscodeLock == nil) {
  1798. [[NCContentPresenter shared] messageNotification:@"_error_" description:@"_folder_blocked_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorInternalError];
  1799. return;
  1800. }
  1801. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  1802. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1803. [self performSelector:@selector(deleteMetadatas) withObject:nil];
  1804. }]];
  1805. if (localFile) {
  1806. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_remove_local_file_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1807. tableMetadata *metadataLivePhoto = [[NCUtility sharedInstance] isLivePhotoWithMetadata:metadata];
  1808. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  1809. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageOcId:metadata.ocId] error:nil];
  1810. if (metadataLivePhoto) {
  1811. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadataLivePhoto.ocId]];
  1812. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageOcId:metadataLivePhoto.ocId] error:nil];
  1813. }
  1814. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1815. }]];
  1816. }
  1817. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  1818. }]];
  1819. alertController.popoverPresentationController.sourceView = self.tableView;
  1820. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  1821. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  1822. [alertController.view layoutIfNeeded];
  1823. [self presentViewController:alertController animated:YES completion:nil];
  1824. }
  1825. - (void)actionMore:(UITapGestureRecognizer *)gestureRecognizer
  1826. {
  1827. CGPoint touch = [gestureRecognizer locationInView:self.tableView];
  1828. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touch];
  1829. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1830. [self toggleMoreMenuWithViewController:self.tabBarController indexPath:indexPath metadata:self.metadata metadataFolder:_metadataFolder];
  1831. }
  1832. #pragma --------------------------------------------------------------------------------------------
  1833. #pragma mark - ==== Datasource ====
  1834. #pragma --------------------------------------------------------------------------------------------
  1835. - (void)clearDateReadDataSource:(NSNotification *)notification
  1836. {
  1837. _dateReadDataSource = Nil;
  1838. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1839. }
  1840. - (void)reloadDatasource:(NSString *)serverUrl ocId:(NSString *)ocId action:(NSInteger)action
  1841. {
  1842. // test
  1843. if (appDelegate.activeAccount.length == 0 || serverUrl.length == 0 || serverUrl == nil || self.view.window == nil)
  1844. return;
  1845. // Search Mode
  1846. if (self.searchController.isActive) {
  1847. // Create metadatas
  1848. NSMutableArray *metadatas = [NSMutableArray new];
  1849. for (tableMetadata *resultMetadata in _searchResultMetadatas) {
  1850. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", resultMetadata.ocId]];
  1851. if (metadata) {
  1852. [metadatas addObject:metadata];
  1853. }
  1854. }
  1855. // [CCUtility getGroupBySettings]
  1856. sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:metadatas listProgressMetadata:nil groupByField:nil filterTypeFileImage:NO filterTypeFileVideo:NO sorted:@"fileName" ascending:NO activeAccount:appDelegate.activeAccount];
  1857. [self tableViewReloadData];
  1858. if ([sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] >= k_minCharsSearch) {
  1859. _noFilesSearchTitle = NSLocalizedString(@"_search_no_record_found_", nil);
  1860. _noFilesSearchDescription = @"";
  1861. }
  1862. if ([sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] < k_minCharsSearch) {
  1863. _noFilesSearchTitle = @"";
  1864. _noFilesSearchDescription = NSLocalizedString(@"_search_instruction_", nil);
  1865. }
  1866. [self.tableView reloadEmptyDataSet];
  1867. return;
  1868. }
  1869. // Se non siamo nella dir appropriata esci
  1870. if ([serverUrl isEqualToString:self.serverUrl] == NO || self.serverUrl == nil) {
  1871. return;
  1872. }
  1873. // Controllo data lettura Data Source
  1874. tableDirectory *tableDirectory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, serverUrl]];
  1875. if (tableDirectory == nil) {
  1876. return;
  1877. }
  1878. // Get MetadataFolder
  1879. if ([serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]])
  1880. _metadataFolder = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, k_serverUrl_root]];
  1881. else
  1882. _metadataFolder = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", tableDirectory.ocId]];
  1883. // Remove optimization for encrypted directory
  1884. if (_metadataFolder.e2eEncrypted)
  1885. _dateReadDataSource = nil;
  1886. NSDate *dateDateRecordDirectory = tableDirectory.dateReadDirectory;
  1887. if ([dateDateRecordDirectory compare:_dateReadDataSource] == NSOrderedDescending || dateDateRecordDirectory == nil || _dateReadDataSource == nil) {
  1888. NSLog(@"[LOG] Rebuild Data Source File : %@", _serverUrl);
  1889. _dateReadDataSource = [NSDate date];
  1890. // Data Source
  1891. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1892. CCSectionDataSourceMetadata *sectionDataSourceTemp = [self queryDatasourceWithReloadData:NO serverUrl:serverUrl];
  1893. dispatch_async(dispatch_get_main_queue(), ^{
  1894. sectionDataSource = sectionDataSourceTemp;
  1895. [self tableViewReloadData];
  1896. });
  1897. });
  1898. } else {
  1899. [self tableViewReloadData];
  1900. NSLog(@"[LOG] [OPTIMIZATION] Rebuild Data Source File : %@ - %@", _serverUrl, _dateReadDataSource);
  1901. }
  1902. // BLINK
  1903. if (self.blinkFileNamePath != nil) {
  1904. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1905. for (NSString *key in sectionDataSource.allRecordsDataSource) {
  1906. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:key];
  1907. NSString *metadataFileNamePath = [NSString stringWithFormat:@"%@/%@", metadata.serverUrl, metadata.fileName];
  1908. if ([metadataFileNamePath isEqualToString:self.blinkFileNamePath]) {
  1909. for (NSString *key in sectionDataSource.ocIdIndexPath) {
  1910. if ([key isEqualToString:metadata.ocId]) {
  1911. NSIndexPath *indexPath = [sectionDataSource.ocIdIndexPath objectForKey:key];
  1912. [self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];
  1913. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1914. CCCellMain *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  1915. if (cell) {
  1916. self.blinkFileNamePath = nil;
  1917. [[NCUtility sharedInstance] blinkWithCell:cell];
  1918. }
  1919. });
  1920. }
  1921. }
  1922. }
  1923. }
  1924. });
  1925. }
  1926. }
  1927. - (CCSectionDataSourceMetadata *)queryDatasourceWithReloadData:(BOOL)withReloadData serverUrl:(NSString *)serverUrl
  1928. {
  1929. // test
  1930. if (appDelegate.activeAccount.length == 0 || serverUrl == nil) {
  1931. return nil;
  1932. }
  1933. // get auto upload folder
  1934. _autoUploadFileName = [[NCManageDatabase sharedInstance] getAccountAutoUploadFileName];
  1935. _autoUploadDirectory = [[NCManageDatabase sharedInstance] getAccountAutoUploadDirectory:appDelegate.activeUrl];
  1936. CCSectionDataSourceMetadata *sectionDataSourceTemp = [CCSectionDataSourceMetadata new];
  1937. NSArray *recordsTableMetadata = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, serverUrl] sorted:nil ascending:NO];
  1938. // [CCUtility getGroupBySettings]
  1939. sectionDataSourceTemp = [CCSectionMetadata creataDataSourseSectionMetadata:recordsTableMetadata listProgressMetadata:nil groupByField:nil filterTypeFileImage:NO filterTypeFileVideo:NO sorted:[CCUtility getOrderSettings] ascending:[CCUtility getAscendingSettings] activeAccount:appDelegate.activeAccount];
  1940. if (withReloadData) {
  1941. sectionDataSource = sectionDataSourceTemp;
  1942. [self tableViewReloadData];
  1943. }
  1944. return sectionDataSourceTemp;
  1945. }
  1946. - (NSArray *)getMetadatasFromSelectedRows:(NSArray *)selectedRows
  1947. {
  1948. NSMutableArray *metadatas = [[NSMutableArray alloc] init];
  1949. if (selectedRows.count > 0) {
  1950. for (NSIndexPath *selectionIndex in selectedRows) {
  1951. NSString *ocId = [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:selectionIndex.section]] objectAtIndex:selectionIndex.row];
  1952. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:ocId];
  1953. [metadatas addObject:metadata];
  1954. }
  1955. }
  1956. return metadatas;
  1957. }
  1958. - (NSArray *)getMetadatasFromSectionDataSource:(NSInteger)section
  1959. {
  1960. NSInteger totSections =[sectionDataSource.sections count] ;
  1961. if ((totSections < (section + 1)) || ((section + 1) > totSections)) {
  1962. return nil;
  1963. }
  1964. id valueSection = [sectionDataSource.sections objectAtIndex:section];
  1965. return [sectionDataSource.sectionArrayRow objectForKey:valueSection];
  1966. }
  1967. #pragma --------------------------------------------------------------------------------------------
  1968. #pragma mark - ==== Table ====
  1969. #pragma --------------------------------------------------------------------------------------------
  1970. - (void)tableViewToggle
  1971. {
  1972. [self tableViewSelect:!_isSelectedMode];
  1973. }
  1974. - (void)tableViewSelect:(BOOL)toggle
  1975. {
  1976. _isSelectedMode = toggle;
  1977. // chiudiamo eventuali swipe aperti
  1978. if (_isSelectedMode)
  1979. [self.tableView setEditing:NO animated:NO];
  1980. [self.tableView setAllowsMultipleSelectionDuringEditing:_isSelectedMode];
  1981. [self.tableView setEditing:_isSelectedMode animated:YES];
  1982. if (_isSelectedMode)
  1983. [self setUINavigationBarSelected];
  1984. else
  1985. [self setUINavigationBarDefault];
  1986. [_selectedocIdsMetadatas removeAllObjects];
  1987. [self setTitle];
  1988. }
  1989. - (void)tableViewReloadData
  1990. {
  1991. // store selected cells before relod
  1992. NSArray *indexPaths = [self.tableView indexPathsForSelectedRows];
  1993. // reload table view
  1994. [self.tableView reloadData];
  1995. // selected cells stored
  1996. for (NSIndexPath *path in indexPaths)
  1997. [self.tableView selectRowAtIndexPath:path animated:NO scrollPosition:UITableViewScrollPositionNone];
  1998. [self setTableViewHeader];
  1999. [self setTableViewFooter];
  2000. if (self.tableView.editing)
  2001. [self setTitle];
  2002. [self.tableView reloadEmptyDataSet];
  2003. }
  2004. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
  2005. {
  2006. if (tableView.editing == 1) {
  2007. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2008. if (!metadata || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata])
  2009. return NO;
  2010. if (metadata == nil || metadata.status != k_metadataStatusNormal)
  2011. return NO;
  2012. else
  2013. return YES;
  2014. } else {
  2015. [_selectedocIdsMetadatas removeAllObjects];
  2016. }
  2017. return YES;
  2018. }
  2019. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  2020. {
  2021. return 60;
  2022. }
  2023. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  2024. {
  2025. return [[sectionDataSource.sectionArrayRow allKeys] count];
  2026. }
  2027. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  2028. {
  2029. return [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]] count];
  2030. }
  2031. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  2032. {
  2033. NSArray *sections = [sectionDataSource.sectionArrayRow allKeys];
  2034. NSString *sectionTitle = [sections objectAtIndex:section];
  2035. if ([sectionTitle isKindOfClass:[NSString class]] && [sectionTitle rangeOfString:@"download"].location != NSNotFound) return 18.f;
  2036. if ([sectionTitle isKindOfClass:[NSString class]] && [sectionTitle rangeOfString:@"upload"].location != NSNotFound) return 18.f;
  2037. if ([[CCUtility getGroupBySettings] isEqualToString:@"none"] && [sections count] <= 1) return 0.0f;
  2038. return 20.f;
  2039. }
  2040. -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  2041. {
  2042. float shift;
  2043. UIVisualEffectView *visualEffectView;
  2044. NSString *titleSection;
  2045. if (![self indexPathIsValid:[NSIndexPath indexPathForRow:0 inSection:section]])
  2046. return nil;
  2047. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSString class]])
  2048. titleSection = [sectionDataSource.sections objectAtIndex:section];
  2049. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSDate class]])
  2050. titleSection = [CCUtility getTitleSectionDate:[sectionDataSource.sections objectAtIndex:section]];
  2051. if ([titleSection isEqualToString:@"_none_"]) titleSection = @"";
  2052. else if ([titleSection rangeOfString:@"download"].location != NSNotFound) titleSection = NSLocalizedString(@"_title_section_download_",nil);
  2053. else if ([titleSection rangeOfString:@"upload"].location != NSNotFound) titleSection = NSLocalizedString(@"_title_section_upload_",nil);
  2054. else titleSection = NSLocalizedString(titleSection,nil);
  2055. // Format title
  2056. UIVisualEffect *blurEffect;
  2057. blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
  2058. visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
  2059. visualEffectView.backgroundColor = [NCBrandColor.sharedInstance.brand colorWithAlphaComponent:0.2];
  2060. if ([[CCUtility getGroupBySettings] isEqualToString:@"alphabetic"]) {
  2061. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  2062. shift = - 35;
  2063. else
  2064. shift = - 20;
  2065. } else shift = - 10;
  2066. // Title
  2067. UILabel *titleLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, -12, 0, 44)];
  2068. titleLabel.backgroundColor = [UIColor clearColor];
  2069. titleLabel.textColor = NCBrandColor.sharedInstance.textView;
  2070. titleLabel.font = [UIFont systemFontOfSize:12];
  2071. titleLabel.textAlignment = NSTextAlignmentLeft;
  2072. titleLabel.text = titleSection;
  2073. titleLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  2074. [visualEffectView.contentView addSubview:titleLabel];
  2075. // Elements
  2076. UILabel *elementLabel= [[UILabel alloc]initWithFrame:CGRectMake(shift, -12, 0, 44)];
  2077. elementLabel.backgroundColor = [UIColor clearColor];
  2078. elementLabel.textColor = NCBrandColor.sharedInstance.textView;
  2079. elementLabel.font = [UIFont systemFontOfSize:12];
  2080. elementLabel.textAlignment = NSTextAlignmentRight;
  2081. elementLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  2082. NSArray *metadatas = [self getMetadatasFromSectionDataSource:section];
  2083. NSUInteger rowsCount = [metadatas count];
  2084. if (rowsCount == 0) return nil;
  2085. if (rowsCount == 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_element_",nil)];
  2086. if (rowsCount > 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_elements_",nil)];
  2087. [visualEffectView.contentView addSubview:elementLabel];
  2088. return visualEffectView;
  2089. }
  2090. - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
  2091. {
  2092. return [sectionDataSource.sections indexOfObject:title];
  2093. }
  2094. - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
  2095. {
  2096. if ([[CCUtility getGroupBySettings] isEqualToString:@"alphabetic"])
  2097. return [[UILocalizedIndexedCollation currentCollation] sectionIndexTitles];
  2098. else
  2099. return nil;
  2100. }
  2101. /*
  2102. -(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
  2103. {
  2104. if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){
  2105. }
  2106. }
  2107. */
  2108. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  2109. {
  2110. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2111. tableShare *shareCell;
  2112. if (metadata == nil || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata] || (_metadataFolder != nil && [[NCManageDatabase sharedInstance] isTableInvalidated:_metadataFolder])) {
  2113. return [CCCellMain new];
  2114. }
  2115. for (tableShare *share in appDelegate.shares) {
  2116. if ([share.serverUrl isEqualToString:metadata.serverUrl] && [share.fileName isEqualToString:metadata.fileName]) {
  2117. shareCell = share;
  2118. break;
  2119. }
  2120. }
  2121. UITableViewCell *cell = [[NCMainCommon sharedInstance] cellForRowAtIndexPath:indexPath tableView:tableView metadata:metadata metadataFolder:_metadataFolder serverUrl:self.serverUrl autoUploadFileName:_autoUploadFileName autoUploadDirectory:_autoUploadDirectory tableShare:shareCell];
  2122. // NORMAL - > MAIN
  2123. if ([cell isKindOfClass:[CCCellMain class]]) {
  2124. // Comment tap
  2125. if (metadata.commentsUnread) {
  2126. UITapGestureRecognizer *tapComment = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionComment:)];
  2127. [tapComment setNumberOfTapsRequired:1];
  2128. ((CCCellMain *)cell).comment.userInteractionEnabled = YES;
  2129. [((CCCellMain *)cell).comment addGestureRecognizer:tapComment];
  2130. }
  2131. // Share add Tap
  2132. UITapGestureRecognizer *tapShare = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionShared:)];
  2133. [tapShare setNumberOfTapsRequired:1];
  2134. ((CCCellMain *)cell).viewShared.userInteractionEnabled = YES;
  2135. [((CCCellMain *)cell).viewShared addGestureRecognizer:tapShare];
  2136. // More
  2137. if ([self canOpenMenuAction:metadata]) {
  2138. UITapGestureRecognizer *tapMore = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(actionMore:)];
  2139. [tapMore setNumberOfTapsRequired:1];
  2140. ((CCCellMain *)cell).more.userInteractionEnabled = YES;
  2141. [((CCCellMain *)cell).more addGestureRecognizer:tapMore];
  2142. }
  2143. // MGSwipeButton
  2144. ((CCCellMain *)cell).delegate = self;
  2145. // LEFT
  2146. ((CCCellMain *)cell).leftButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:self.cellFavouriteImage backgroundColor:NCBrandColor.sharedInstance.yellowFavorite padding:25]];
  2147. ((CCCellMain *)cell).leftExpansion.buttonIndex = 0;
  2148. ((CCCellMain *)cell).leftExpansion.fillOnTrigger = NO;
  2149. //centerIconOverText
  2150. MGSwipeButton *favoriteButton = (MGSwipeButton *)[((CCCellMain *)cell).leftButtons objectAtIndex:0];
  2151. [favoriteButton centerIconOverText];
  2152. // RIGHT
  2153. ((CCCellMain *)cell).rightButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:self.cellTrashImage backgroundColor:[UIColor redColor] padding:25]];
  2154. ((CCCellMain *)cell).rightExpansion.buttonIndex = 0;
  2155. ((CCCellMain *)cell).rightExpansion.fillOnTrigger = NO;
  2156. //centerIconOverText
  2157. MGSwipeButton *deleteButton = (MGSwipeButton *)[((CCCellMain *)cell).rightButtons objectAtIndex:0];
  2158. [deleteButton centerIconOverText];
  2159. }
  2160. // TRANSFER
  2161. if ([cell isKindOfClass:[CCCellMainTransfer class]]) {
  2162. // gesture Transfer
  2163. [((CCCellMainTransfer *)cell).transferButton.stopButton addTarget:self action:@selector(cancelTaskButton:withEvent:) forControlEvents:UIControlEventTouchUpInside];
  2164. UILongPressGestureRecognizer *stopLongGesture = [UILongPressGestureRecognizer new];
  2165. [stopLongGesture addTarget:self action:@selector(cancelAllTask:)];
  2166. [((CCCellMainTransfer *)cell).transferButton.stopButton addGestureRecognizer:stopLongGesture];
  2167. }
  2168. return cell;
  2169. }
  2170. - (void)setTableViewHeader
  2171. {
  2172. tableCapabilities *capabilities = [[NCManageDatabase sharedInstance] getCapabilitesWithAccount:appDelegate.activeAccount];
  2173. if (capabilities.versionMajor < k_nextcloud_version_18_0 || self.richWorkspaceText.length == 0 || self.searchController.isActive) {
  2174. [self.tableView.tableHeaderView setFrame:CGRectMake(self.tableView.tableHeaderView.frame.origin.x, self.tableView.tableHeaderView.frame.origin.y, self.tableView.frame.size.width, heightSearchBar)];
  2175. } else {
  2176. [self.viewRichWorkspace setFrame:CGRectMake(self.tableView.tableHeaderView.frame.origin.x, self.tableView.tableHeaderView.frame.origin.y, self.tableView.frame.size.width, heightRichWorkspace)];
  2177. }
  2178. [self.viewRichWorkspace loadWithRichWorkspaceText:self.richWorkspaceText];
  2179. self.searchController.searchBar.frame = CGRectMake(self.searchController.searchBar.frame.origin.x, self.searchController.searchBar.frame.origin.y, self.tableView.frame.size.width, heightSearchBar);
  2180. [self.tableView reloadData];
  2181. }
  2182. - (void)setTableViewFooter
  2183. {
  2184. UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  2185. [footerView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  2186. UILabel *footerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  2187. [footerLabel setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  2188. UIFont *appFont = [UIFont systemFontOfSize:12];
  2189. footerLabel.font = appFont;
  2190. footerLabel.textColor = [UIColor grayColor];
  2191. footerLabel.backgroundColor = [UIColor clearColor];
  2192. footerLabel.textAlignment = NSTextAlignmentCenter;
  2193. NSString *folders;
  2194. NSString *files;
  2195. NSString *footerText;
  2196. if (sectionDataSource.directories > 1) {
  2197. folders = [NSString stringWithFormat:@"%ld %@", (long)sectionDataSource.directories, NSLocalizedString(@"_folders_", nil)];
  2198. } else if (sectionDataSource.directories == 1){
  2199. folders = [NSString stringWithFormat:@"%ld %@", (long)sectionDataSource.directories, NSLocalizedString(@"_folder_", nil)];
  2200. } else {
  2201. folders = @"";
  2202. }
  2203. if (sectionDataSource.files > 1) {
  2204. files = [NSString stringWithFormat:@"%ld %@ %@", (long)sectionDataSource.files, NSLocalizedString(@"_files_", nil), [CCUtility transformedSize:sectionDataSource.totalSize]];
  2205. } else if (sectionDataSource.files == 1){
  2206. files = [NSString stringWithFormat:@"%ld %@ %@", (long)sectionDataSource.files, NSLocalizedString(@"_file_", nil), [CCUtility transformedSize:sectionDataSource.totalSize]];
  2207. } else {
  2208. files = @"";
  2209. }
  2210. if ([folders isEqualToString:@""]) {
  2211. footerText = files;
  2212. } else if ([files isEqualToString:@""]) {
  2213. footerText = folders;
  2214. } else {
  2215. footerText = [NSString stringWithFormat:@"%@, %@", folders, files];
  2216. }
  2217. footerLabel.text = footerText;
  2218. [footerView addSubview:footerLabel];
  2219. [self.tableView setTableFooterView:footerView];
  2220. }
  2221. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  2222. {
  2223. CCCellMain *cell = [tableView cellForRowAtIndexPath:indexPath];
  2224. // settiamo il record file.
  2225. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2226. if (!self.metadata)
  2227. return;
  2228. // se non può essere selezionata deseleziona
  2229. if ([cell isEditing] == NO)
  2230. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  2231. // se siamo in modalità editing impostiamo il titolo dei selezioati e usciamo subito
  2232. if (self.tableView.editing) {
  2233. [_selectedocIdsMetadatas setObject:self.metadata forKey:self.metadata.ocId];
  2234. [self setTitle];
  2235. return;
  2236. }
  2237. // se è in corso una sessione
  2238. if (self.metadata.status != k_metadataStatusNormal)
  2239. return;
  2240. // file
  2241. if (self.metadata.directory == NO) {
  2242. // se il file esiste andiamo direttamente al delegato altrimenti carichiamolo
  2243. if ([CCUtility fileProviderStorageExists:self.metadata.ocId fileNameView:self.metadata.fileNameView]) {
  2244. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_downloadedFile object:nil userInfo:@{@"metadata": self.metadata, @"selector": selectorLoadFileView, @"errorCode": @(0), @"errorDescription": @""}];
  2245. } else {
  2246. if (_metadataFolder.e2eEncrypted && ![CCUtility isEndToEndEnabled:appDelegate.activeAccount]) {
  2247. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  2248. } else {
  2249. if (([self.metadata.typeFile isEqualToString: k_metadataTypeFile_video] || [self.metadata.typeFile isEqualToString: k_metadataTypeFile_audio]) && _metadataFolder.e2eEncrypted == NO) {
  2250. [self shouldPerformSegue:self.metadata selector:@""];
  2251. } else if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_document] && [[NCUtility sharedInstance] isDirectEditing:self.metadata] != nil) {
  2252. if (appDelegate.reachability.isReachable) {
  2253. [self shouldPerformSegue:self.metadata selector:@""];
  2254. } else {
  2255. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_go_online_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  2256. }
  2257. } else if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_document] && [[NCUtility sharedInstance] isRichDocument:self.metadata]) {
  2258. if (appDelegate.reachability.isReachable) {
  2259. [self shouldPerformSegue:self.metadata selector:@""];
  2260. } else {
  2261. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_go_online_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  2262. }
  2263. } else {
  2264. if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_image]) {
  2265. [self shouldPerformSegue:self.metadata selector:selectorLoadFileView];
  2266. }
  2267. self.metadata.session = k_download_session;
  2268. self.metadata.sessionError = @"";
  2269. self.metadata.sessionSelector = selectorLoadFileView;
  2270. self.metadata.status = k_metadataStatusWaitDownload;
  2271. // Add Metadata for Download
  2272. [[NCManageDatabase sharedInstance] addMetadata:self.metadata];
  2273. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:self.metadata.ocId action:k_action_MOD];
  2274. [appDelegate startLoadAutoDownloadUpload];
  2275. }
  2276. }
  2277. }
  2278. }
  2279. if (self.metadata.directory) {
  2280. [self performSegueDirectoryWithControlPasscode:true metadata:self.metadata blinkFileNamePath:self.blinkFileNamePath];
  2281. }
  2282. }
  2283. - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(nonnull NSIndexPath *)indexPath
  2284. {
  2285. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2286. [_selectedocIdsMetadatas removeObjectForKey:metadata.ocId];
  2287. [self setTitle];
  2288. }
  2289. - (void)didSelectAll
  2290. {
  2291. for (int i = 0; i < self.tableView.numberOfSections; i++) {
  2292. for (int j = 0; j < [self.tableView numberOfRowsInSection:i]; j++) {
  2293. NSIndexPath *indexPath = [NSIndexPath indexPathForRow:j inSection:i];
  2294. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2295. [_selectedocIdsMetadatas setObject:metadata forKey:metadata.ocId];
  2296. [self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
  2297. }
  2298. }
  2299. [self setTitle];
  2300. }
  2301. - (BOOL)indexPathIsValid:(NSIndexPath *)indexPath
  2302. {
  2303. if (!indexPath)
  2304. return NO;
  2305. NSInteger section = indexPath.section;
  2306. NSInteger row = indexPath.row;
  2307. NSInteger lastSectionIndex = [self numberOfSectionsInTableView:self.tableView] - 1;
  2308. if (section > lastSectionIndex || lastSectionIndex < 0)
  2309. return NO;
  2310. NSInteger rowCount = [self.tableView numberOfRowsInSection:indexPath.section] - 1;
  2311. if (rowCount < 0)
  2312. return NO;
  2313. return row <= rowCount;
  2314. }
  2315. #pragma --------------------------------------------------------------------------------------------
  2316. #pragma mark ===== Navigation ====
  2317. #pragma --------------------------------------------------------------------------------------------
  2318. - (void)shouldPerformSegue:(tableMetadata *)metadata selector:(NSString *)selector
  2319. {
  2320. // if background return
  2321. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return;
  2322. if (self.view.window == NO)
  2323. return;
  2324. // Collapsed ma siamo già in detail esci
  2325. if (self.splitViewController.isCollapsed) {
  2326. if (appDelegate.activeDetail.isViewLoaded && appDelegate.activeDetail.view.window) return;
  2327. }
  2328. // Metadata for push detail
  2329. self.metadataForPushDetail = metadata;
  2330. self.selectorForPushDetail = selector;
  2331. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  2332. }
  2333. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  2334. {
  2335. tableMetadata *metadata;
  2336. NSMutableArray *photoDataSource = [NSMutableArray new];
  2337. UINavigationController *navigationController = segue.destinationViewController;
  2338. NCDetailViewController *detailViewController = (NCDetailViewController *)navigationController.topViewController;
  2339. if ([sender isKindOfClass:[tableMetadata class]]) {
  2340. metadata = sender;
  2341. [photoDataSource addObject:sender];
  2342. } else {
  2343. metadata = self.metadataForPushDetail;
  2344. for (NSString *ocId in sectionDataSource.allOcId) {
  2345. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:ocId];
  2346. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  2347. [photoDataSource addObject:metadata];
  2348. }
  2349. }
  2350. detailViewController.metadata = metadata;
  2351. detailViewController.selector = self.selectorForPushDetail;
  2352. [detailViewController setTitle:metadata.fileNameView];
  2353. }
  2354. // can i go to next viewcontroller
  2355. - (void)performSegueDirectoryWithControlPasscode:(BOOL)controlPasscode metadata:(tableMetadata *)metadata blinkFileNamePath:(NSString *)blinkFileNamePath
  2356. {
  2357. NSString *nomeDir;
  2358. if (self.tableView.editing == NO) {
  2359. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:metadata.fileName];
  2360. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", metadata.account, lockServerUrl]];
  2361. // SE siamo in presenza di una directory bloccata E è attivo il block E la sessione password Lock è senza data ALLORA chiediamo la password per procedere
  2362. if (directory.lock && [[CCUtility getBlockCode] length] && appDelegate.sessionePasscodeLock == nil && controlPasscode) {
  2363. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  2364. viewController.delegate = self;
  2365. viewController.fromType = CCBKPasscodeFromLockDirectory;
  2366. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  2367. viewController.inputViewTitlePassword = YES;
  2368. if ([CCUtility getSimplyBlockCode]) {
  2369. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  2370. viewController.passcodeInputView.maximumLength = 6;
  2371. } else {
  2372. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  2373. viewController.passcodeInputView.maximumLength = 64;
  2374. }
  2375. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  2376. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  2377. viewController.touchIDManager = touchIDManager;
  2378. viewController.title = NSLocalizedString(@"_folder_blocked_", nil);
  2379. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  2380. viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
  2381. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  2382. navigationController.modalPresentationStyle = UIModalPresentationFullScreen;
  2383. [self presentViewController:navigationController animated:YES completion:nil];
  2384. return;
  2385. }
  2386. // E2EE Check enable
  2387. if (metadata.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount] == NO) {
  2388. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  2389. return;
  2390. }
  2391. nomeDir = metadata.fileName;
  2392. NSString *serverUrlPush = [CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:nomeDir];
  2393. CCMain *viewController = [appDelegate.listMainVC objectForKey:serverUrlPush];
  2394. if (!viewController) {
  2395. viewController = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMain"];
  2396. viewController.serverUrl = serverUrlPush;
  2397. viewController.titleMain = metadata.fileNameView;
  2398. viewController.blinkFileNamePath = blinkFileNamePath;
  2399. // save self
  2400. [appDelegate.listMainVC setObject:viewController forKey:serverUrlPush];
  2401. [self.navigationController pushViewController:viewController animated:YES];
  2402. } else {
  2403. if (viewController.isViewLoaded) {
  2404. viewController.titleMain = metadata.fileNameView;
  2405. viewController.blinkFileNamePath = blinkFileNamePath;
  2406. // Fix : Application tried to present modally an active controller
  2407. if ([self.navigationController isBeingPresented]) {
  2408. // being presented
  2409. } else if ([self.navigationController isMovingToParentViewController]) {
  2410. // being pushed
  2411. } else {
  2412. [self.navigationController pushViewController:viewController animated:YES];
  2413. }
  2414. }
  2415. }
  2416. }
  2417. }
  2418. @end