CCMain.m 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240
  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, NCCreateFormUploadConflictDelegate>
  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 = [[NCUtility sharedInstance] createFileName:[url lastPathComponent] serverUrl:serverUrl account:appDelegate.activeAccount];
  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. [[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  687. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  688. [appDelegate startLoadAutoDownloadUpload];
  689. } else {
  690. [[NCContentPresenter shared] messageNotification:@"_error_" description:error.description delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code];
  691. }
  692. } else {
  693. [[NCContentPresenter shared] messageNotification:@"_error_" description:@"_read_file_error_" delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code];
  694. }
  695. }];
  696. }
  697. }
  698. - (void)openImportDocumentPicker
  699. {
  700. UIDocumentMenuViewController *documentProviderMenu = [[UIDocumentMenuViewController alloc] initWithDocumentTypes:@[@"public.data"] inMode:UIDocumentPickerModeImport];
  701. documentProviderMenu.modalPresentationStyle = UIModalPresentationFormSheet;
  702. documentProviderMenu.popoverPresentationController.sourceView = self.tabBarController.tabBar;
  703. documentProviderMenu.popoverPresentationController.sourceRect = self.tabBarController.tabBar.bounds;
  704. documentProviderMenu.delegate = self;
  705. [self presentViewController:documentProviderMenu animated:YES completion:nil];
  706. }
  707. #pragma --------------------------------------------------------------------------------------------
  708. #pragma mark ===== Assets Picker =====
  709. #pragma --------------------------------------------------------------------------------------------
  710. -(void)dismissFormUploadAssets
  711. {
  712. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  713. }
  714. - (void)openAssetsPickerController
  715. {
  716. NCPhotosPickerViewController *viewController = [[NCPhotosPickerViewController alloc] init:self maxSelectedAssets:100 singleSelectedMode:false];
  717. [viewController openPhotosPickerViewControllerWithPhAssets:^(NSArray<PHAsset *> * _Nullable assets, NSArray<NSURL *> * urls) {
  718. if (assets.count > 0) {
  719. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  720. NSString *serverUrl = [appDelegate getTabBarControllerActiveServerUrl];
  721. NCCreateFormUploadAssets *form = [[NCCreateFormUploadAssets alloc] initWithServerUrl:serverUrl assets:(NSMutableArray *)assets urls:(NSMutableArray *)urls cryptated:NO session:k_upload_session delegate:self];
  722. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:form];
  723. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  724. [self presentViewController:navigationController animated:YES completion:nil];
  725. });
  726. }
  727. }];
  728. }
  729. #pragma --------------------------------------------------------------------------------------------
  730. #pragma mark ===== Save selected File =====
  731. #pragma --------------------------------------------------------------------------------------------
  732. - (void)saveToPhotoAlbum:(tableMetadata *)metadata
  733. {
  734. NSString *fileNamePath = [CCUtility getDirectoryProviderStorageOcId:metadata.ocId fileNameView:metadata.fileNameView];
  735. PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus];
  736. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] && status == PHAuthorizationStatusAuthorized) {
  737. UIImage *image = [UIImage imageWithContentsOfFile:fileNamePath];
  738. if (image)
  739. UIImageWriteToSavedPhotosAlbum(image, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  740. else
  741. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorInternalError];
  742. }
  743. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video] && status == PHAuthorizationStatusAuthorized) {
  744. if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(fileNamePath)) {
  745. UISaveVideoAtPathToSavedPhotosAlbum(fileNamePath, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  746. } else {
  747. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorInternalError];
  748. }
  749. }
  750. if (status != PHAuthorizationStatusAuthorized) {
  751. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_access_photo_not_enabled_", nil) message:NSLocalizedString(@"_access_photo_not_enabled_msg_", nil) preferredStyle:UIAlertControllerStyleAlert];
  752. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  753. [alertController addAction:okAction];
  754. [self presentViewController:alertController animated:YES completion:nil];
  755. }
  756. }
  757. - (void)saveSelectedFilesSelector:(NSString *)path didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
  758. {
  759. if (error) {
  760. [[NCContentPresenter shared] messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code];
  761. }
  762. }
  763. - (void)saveSelectedFiles
  764. {
  765. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  766. return;
  767. NSLog(@"[LOG] Start download selected files ...");
  768. [_hud visibleHudTitle:@"" mode:MBProgressHUDModeIndeterminate color:nil];
  769. NSArray *metadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  770. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.01 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  771. for (tableMetadata *metadata in metadatas) {
  772. if (metadata.directory == NO && ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])) {
  773. metadata.session = k_download_session;
  774. metadata.sessionError = @"";
  775. metadata.sessionSelector = selectorSave;
  776. metadata.status = k_metadataStatusWaitDownload;
  777. // Add Metadata for Download
  778. [[NCManageDatabase sharedInstance] addMetadata:metadata];
  779. [appDelegate startLoadAutoDownloadUpload];
  780. }
  781. }
  782. [_hud hideHud];
  783. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  784. });
  785. [self tableViewSelect:false];
  786. }
  787. #pragma --------------------------------------------------------------------------------------------
  788. #pragma mark ==== View Notification ====
  789. #pragma --------------------------------------------------------------------------------------------
  790. - (void)viewNotification
  791. {
  792. if ([appDelegate.listOfNotifications count] > 0) {
  793. CCNotification *notificationVC = [[UIStoryboard storyboardWithName:@"CCNotification" bundle:nil] instantiateViewControllerWithIdentifier:@"CCNotification"];
  794. [notificationVC setModalPresentationStyle:UIModalPresentationFormSheet];
  795. [self presentViewController:notificationVC animated:YES completion:nil];
  796. }
  797. }
  798. #pragma mark -
  799. #pragma --------------------------------------------------------------------------------------------
  800. #pragma mark ===== Peek & Pop =====
  801. #pragma --------------------------------------------------------------------------------------------
  802. - (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location
  803. {
  804. CGPoint convertedLocation = [self.view convertPoint:location toView:self.tableView];
  805. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:convertedLocation];
  806. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  807. CCCellMain *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  808. if (cell) {
  809. previewingContext.sourceRect = cell.frame;
  810. CCPeekPop *viewController = [[UIStoryboard storyboardWithName:@"CCPeekPop" bundle:nil] instantiateViewControllerWithIdentifier:@"PeekPopImagePreview"];
  811. viewController.metadata = metadata;
  812. viewController.imageFile = cell.file.image;
  813. viewController.showOpenIn = true;
  814. viewController.showShare = true;
  815. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_document]) {
  816. viewController.showOpenInternalViewer = true;
  817. }
  818. return viewController;
  819. }
  820. return nil;
  821. }
  822. - (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit
  823. {
  824. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:previewingContext.sourceRect.origin];
  825. [self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
  826. }
  827. #pragma --------------------------------------------------------------------------------------------
  828. #pragma mark ==== Download ====
  829. #pragma --------------------------------------------------------------------------------------------
  830. - (void)downloadSelectedFilesFolders
  831. {
  832. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  833. return;
  834. NSLog(@"[LOG] Start download selected ...");
  835. [_hud visibleHudTitle:NSLocalizedString(@"_downloading_progress_", nil) mode:MBProgressHUDModeIndeterminate color:nil];
  836. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  837. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  838. for (tableMetadata *metadata in selectedMetadatas) {
  839. if (metadata.directory) {
  840. [[CCSynchronize sharedSynchronize] readFolder:[CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:metadata.fileName] selector:selectorReadFolderWithDownload account:appDelegate.activeAccount];
  841. } else {
  842. [[CCSynchronize sharedSynchronize] readFile:metadata.ocId fileName:metadata.fileName serverUrl:metadata.serverUrl selector:selectorReadFileWithDownload account:appDelegate.activeAccount];
  843. }
  844. }
  845. [_hud hideHud];
  846. });
  847. [self tableViewSelect:false];
  848. }
  849. #pragma --------------------------------------------------------------------------------------------
  850. #pragma mark ===== Upload new Photos/Videos =====
  851. #pragma --------------------------------------------------------------------------------------------
  852. //
  853. // This procedure with performSelectorOnMainThread it's necessary after (Bridge) for use the function "Sync" in OCNetworking
  854. //
  855. - (void)uploadFileAsset:(NSMutableArray *)assets urls:(NSMutableArray *)urls serverUrl:(NSString *)serverUrl useSubFolder:(BOOL)useSubFolder session:(NSString *)session
  856. {
  857. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  858. NSString *autoUploadPath = [[NCManageDatabase sharedInstance] getAccountAutoUploadPath:appDelegate.activeUrl];
  859. // if request create the folder for Auto Upload & the subfolders
  860. if ([autoUploadPath isEqualToString:serverUrl])
  861. if (![[NCAutoUpload sharedInstance] createAutoUploadFolderWithSubFolder:useSubFolder assets:(PHFetchResult *)assets selector:selectorUploadFile])
  862. return;
  863. dispatch_async(dispatch_get_main_queue(), ^{
  864. [self uploadFileAsset:assets urls:urls serverUrl:serverUrl autoUploadPath:autoUploadPath useSubFolder:useSubFolder session:session];
  865. });
  866. });
  867. }
  868. - (void)uploadFileAsset:(NSArray *)assets urls:(NSArray *)urls serverUrl:(NSString *)serverUrl autoUploadPath:(NSString *)autoUploadPath useSubFolder:(BOOL)useSubFolder session:(NSString *)session
  869. {
  870. NSMutableArray *metadatas = [NSMutableArray new];
  871. NSMutableArray *metadatasMOV = [NSMutableArray new];
  872. NSMutableArray *metadatasConflict = [NSMutableArray new];
  873. for (PHAsset *asset in assets) {
  874. NSString *fileName = [CCUtility createFileName:[asset valueForKey:@"filename"] fileDate:asset.creationDate fileType:asset.mediaType keyFileName:k_keyFileNameMask keyFileNameType:k_keyFileNameType keyFileNameOriginal:k_keyFileNameOriginal];
  875. NSDate *assetDate = asset.creationDate;
  876. NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
  877. // Create serverUrl if use sub folder
  878. if (useSubFolder) {
  879. [formatter setDateFormat:@"yyyy"];
  880. NSString *yearString = [formatter stringFromDate:assetDate];
  881. [formatter setDateFormat:@"MM"];
  882. NSString *monthString = [formatter stringFromDate:assetDate];
  883. serverUrl = [NSString stringWithFormat:@"%@/%@/%@", autoUploadPath, yearString, monthString];
  884. }
  885. // Check if is in upload
  886. NSArray *isRecordInSessions = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileName == %@ AND session != ''", appDelegate.activeAccount, serverUrl, fileName] sorted:nil ascending:NO];
  887. if ([isRecordInSessions count] > 0)
  888. continue;
  889. // Prepare record metadata
  890. tableMetadata *metadataForUpload = [tableMetadata new];
  891. metadataForUpload.account = appDelegate.activeAccount;
  892. metadataForUpload.assetLocalIdentifier = asset.localIdentifier;
  893. metadataForUpload.date = [NSDate new];
  894. metadataForUpload.ocId = [CCUtility createMetadataIDFromAccount:appDelegate.activeAccount serverUrl:serverUrl fileNameView:fileName directory:false];
  895. metadataForUpload.fileName = fileName;
  896. metadataForUpload.fileNameView = fileName;
  897. metadataForUpload.serverUrl = serverUrl;
  898. metadataForUpload.session = session;
  899. metadataForUpload.sessionSelector = selectorUploadFile;
  900. metadataForUpload.size = [[NCUtility sharedInstance] getFileSizeWithAsset:asset];
  901. metadataForUpload.status = k_metadataStatusWaitUpload;
  902. [CCUtility insertTypeFileIconName:fileName metadata:metadataForUpload];
  903. // verify exists conflict
  904. NSString *fileNameExtension = [fileName pathExtension].lowercaseString;
  905. NSString *fileNameWithoutExtension = [fileName stringByDeletingPathExtension];
  906. NSString *fileNameConflict = fileName;
  907. if ([fileNameExtension isEqualToString:@"heic"] && [CCUtility getFormatCompatibility]) {
  908. fileNameConflict = [fileNameWithoutExtension stringByAppendingString:@".jpg"];
  909. }
  910. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileNameView == %@", appDelegate.activeAccount, serverUrl, fileNameConflict]];
  911. if (metadata) {
  912. [metadatasConflict addObject:metadataForUpload];
  913. } else {
  914. [metadatas addObject:metadataForUpload];
  915. }
  916. // Add Medtadata MOV LIVE PHOTO for upload
  917. if ((asset.mediaSubtypes == PHAssetMediaSubtypePhotoLive || asset.mediaSubtypes == PHAssetMediaSubtypePhotoLive+PHAssetMediaSubtypePhotoHDR) && CCUtility.getMOVLivePhoto && urls.count == assets.count) {
  918. NSUInteger index = [assets indexOfObject:asset];
  919. NSURL *url = [urls objectAtIndex:index];
  920. tableMetadata *metadataMOVForUpload = [tableMetadata new];
  921. NSString *fileNameNoExt = [fileName stringByDeletingPathExtension];
  922. NSString *fileName = [NSString stringWithFormat:@"%@.mov", fileNameNoExt];
  923. unsigned long long fileSize = [[[NSFileManager defaultManager] attributesOfItemAtPath:url.path error:nil] fileSize];
  924. metadataMOVForUpload.account = appDelegate.activeAccount;
  925. metadataMOVForUpload.date = [NSDate new];
  926. metadataMOVForUpload.ocId = [CCUtility createMetadataIDFromAccount:appDelegate.activeAccount serverUrl:serverUrl fileNameView:fileName directory:false];
  927. metadataMOVForUpload.fileName = fileName;
  928. metadataMOVForUpload.fileNameView = fileName;
  929. metadataMOVForUpload.serverUrl = serverUrl;
  930. metadataMOVForUpload.session = session;
  931. metadataMOVForUpload.sessionSelector = selectorUploadFile;
  932. metadataMOVForUpload.size = fileSize;
  933. metadataMOVForUpload.status = k_metadataStatusWaitUpload;
  934. // Prepare file and directory
  935. [CCUtility moveFileAtPath:url.path toPath:[CCUtility getDirectoryProviderStorageOcId:metadataMOVForUpload.ocId fileNameView:fileName]];
  936. [metadatasMOV addObject:metadataMOVForUpload];
  937. }
  938. }
  939. // Verify if file(s) exists
  940. if (metadatasConflict.count > 0) {
  941. NCCreateFormUploadConflict *conflict = [[UIStoryboard storyboardWithName:@"NCCreateFormUploadConflict" bundle:nil] instantiateInitialViewController];
  942. conflict.delegate = self;
  943. conflict.metadatas = metadatas;
  944. conflict.metadatasMOV = metadatasMOV;
  945. conflict.metadatasConflict = metadatasConflict;
  946. [self presentViewController:conflict animated:YES completion:nil];
  947. } else {
  948. [[NCManageDatabase sharedInstance] addMetadatas:metadatas];
  949. [[NCManageDatabase sharedInstance] addMetadatas:metadatasMOV];
  950. [appDelegate startLoadAutoDownloadUpload];
  951. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  952. }
  953. }
  954. #pragma --------------------------------------------------------------------------------------------
  955. #pragma mark ==== NCCreateFormUploadConflictDelegate ====
  956. #pragma --------------------------------------------------------------------------------------------
  957. - (void)dismissCreateFormUploadConflictWithMetadatas:(NSArray *)metadatas
  958. {
  959. if (metadatas.count > 0) {
  960. [[NCManageDatabase sharedInstance] addMetadatas:metadatas];
  961. [appDelegate startLoadAutoDownloadUpload];
  962. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  963. }
  964. }
  965. #pragma --------------------------------------------------------------------------------------------
  966. #pragma mark ==== Read Folder ====
  967. #pragma --------------------------------------------------------------------------------------------
  968. - (void)readFolder:(NSString *)serverUrl
  969. {
  970. // init control
  971. if (!serverUrl || !appDelegate.activeAccount || appDelegate.maintenanceMode) {
  972. [refreshControl endRefreshing];
  973. return;
  974. }
  975. // Search Mode
  976. if (self.searchController.isActive) {
  977. [[NCManageDatabase sharedInstance] clearDateReadWithServerUrl:serverUrl account:appDelegate.activeAccount];
  978. _searchFileName = @""; // forced reload searchg
  979. [self updateSearchResultsForSearchController:self.searchController];
  980. return;
  981. }
  982. _loadingFolder = YES;
  983. [self tableViewReloadData];
  984. [[NCNetworking sharedInstance] readFolderWithServerUrl:serverUrl account:appDelegate.activeAccount completion:^(NSString *account, tableMetadata *metadataFolder, NSInteger errorCode, NSString *errorDescription) {
  985. [refreshControl endRefreshing];
  986. if (errorCode == 0 ) {
  987. _metadataFolder = metadataFolder;
  988. [self setTitle];
  989. // File is changed ??
  990. /*
  991. if (!self.searchController.isActive && metadatas) {
  992. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
  993. [[CCSynchronize sharedSynchronize] verifyChangeMedatas:metadatas serverUrl:serverUrl account:account withDownload:NO];
  994. });
  995. }
  996. */
  997. // E2EE Is encrypted folder get metadata
  998. if (_metadataFolder.e2eEncrypted) {
  999. NSString *metadataFolderocId = metadataFolder.ocId;
  1000. // Read Metadata
  1001. if ([CCUtility isEndToEndEnabled:account]) {
  1002. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
  1003. NSString *metadata;
  1004. NSError *error = [[NCNetworkingEndToEnd sharedManager] getEndToEndMetadata:&metadata ocId:metadataFolderocId user:appDelegate.activeUrl userID:appDelegate.activeUserID password:[CCUtility getPassword:appDelegate.activeAccount] url:appDelegate.activeUrl];
  1005. dispatch_async(dispatch_get_main_queue(), ^{
  1006. if (error) {
  1007. if (error.code != kOCErrorServerPathNotFound)
  1008. [[NCContentPresenter shared] messageNotification:@"_e2e_error_get_metadata_" description:error.localizedDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code];
  1009. } else {
  1010. if ([[NCEndToEndMetadata sharedInstance] decoderMetadata:metadata privateKey:[CCUtility getEndToEndPrivateKey:account] serverUrl:self.serverUrl account:account url:appDelegate.activeUrl] == false)
  1011. [[NCContentPresenter shared] messageNotification:@"_error_e2ee_" description:@"_e2e_error_decode_metadata_" delay:k_dismissAfterSecond type:messageTypeError errorCode:error.code];
  1012. else
  1013. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:serverUrl ocId:nil action:k_action_NULL];
  1014. }
  1015. });
  1016. });
  1017. } else {
  1018. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  1019. }
  1020. }
  1021. if ([serverUrl isEqualToString:_serverUrl]) {
  1022. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:serverUrl ocId:nil action:k_action_NULL];
  1023. [self tableViewReloadData];
  1024. }
  1025. } else {
  1026. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  1027. }
  1028. _loadingFolder = NO;
  1029. }];
  1030. }
  1031. - (void)readFileReloadFolder
  1032. {
  1033. if (!_serverUrl || !appDelegate.activeAccount || appDelegate.maintenanceMode)
  1034. return;
  1035. // RichWorkspace
  1036. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, self.serverUrl]];
  1037. self.richWorkspaceText = directory.richWorkspace;
  1038. [self setTableViewHeader];
  1039. // Load Datasource
  1040. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.001 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1041. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1042. });
  1043. [[NCNetworking sharedInstance] readFileWithServerUrlFileName:self.serverUrl account:appDelegate.activeAccount completion:^(NSString *account, tableMetadata *metadata, NSInteger errorCode, NSString *errorDescription) {
  1044. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount]) {
  1045. // Rich Workspace
  1046. [[NCManageDatabase sharedInstance] setDirectoryWithOcId:metadata.ocId serverUrl:self.serverUrl richWorkspace:metadata.richWorkspace account:account];
  1047. self.richWorkspaceText = metadata.richWorkspace;
  1048. [self setTableViewHeader];
  1049. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", account, self.serverUrl]];
  1050. // Read folder: No record, Change etag or BLINK
  1051. if ([sectionDataSource.allRecordsDataSource count] == 0 || [metadata.etag isEqualToString:directory.etag] == NO || self.blinkFileNamePath != nil) {
  1052. [self readFolder:self.serverUrl];
  1053. }
  1054. } else if (errorCode != 0) {
  1055. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  1056. }
  1057. }];
  1058. }
  1059. #pragma mark -
  1060. #pragma --------------------------------------------------------------------------------------------
  1061. #pragma mark ===== Search =====
  1062. #pragma --------------------------------------------------------------------------------------------
  1063. - (void)searchStartTimer
  1064. {
  1065. if (self.searchController.isActive == false) {
  1066. return;
  1067. }
  1068. [[NCCommunication sharedInstance] searchLiteralWithServerUrl:appDelegate.activeUrl user:appDelegate.activeUser depth:@"infinity" literal:_searchFileName showHiddenFiles:[CCUtility getShowHiddenFiles] account:appDelegate.activeAccount completionHandler:^(NSString *account, NSArray *files, NSInteger errorCode, NSString *errorDescription) {
  1069. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount] && files != nil) {
  1070. NSArray *metadatas = [[NCNetworking sharedInstance] convertFilesToMetadatas:files metadataFolder:nil];
  1071. NSMutableArray *metadatasDB = (NSMutableArray *)[[NCManageDatabase sharedInstance] addMetadatas:metadatas];
  1072. _searchResultMetadatas = [[NSMutableArray alloc] initWithArray:metadatasDB];
  1073. _metadataFolder = nil;
  1074. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:_serverUrl ocId:nil action:k_action_NULL];
  1075. [self tableViewReloadData];
  1076. [self setTitle];
  1077. } else {
  1078. if (errorCode != 0) {
  1079. [[NCContentPresenter shared] messageNotification:@"_error_" description:errorDescription delay:k_dismissAfterSecond type:messageTypeError errorCode:errorCode];
  1080. }
  1081. _searchFileName = @"";
  1082. }
  1083. }];
  1084. _noFilesSearchTitle = @"";
  1085. _noFilesSearchDescription = NSLocalizedString(@"_search_in_progress_", nil);
  1086. [self.tableView reloadEmptyDataSet];
  1087. }
  1088. - (void)updateSearchResultsForSearchController:(UISearchController *)searchController
  1089. {
  1090. // Color text "Cancel"
  1091. [[UIBarButtonItem appearanceWhenContainedInInstancesOfClasses:@[[UISearchBar class]]] setTintColor:NCBrandColor.sharedInstance.brandText];
  1092. if (searchController.isActive) {
  1093. [self deleteRefreshControl];
  1094. NSString *fileName = [CCUtility removeForbiddenCharactersServer:searchController.searchBar.text];
  1095. if (fileName.length >= k_minCharsSearch && [fileName isEqualToString:_searchFileName] == NO) {
  1096. _searchFileName = fileName;
  1097. _metadataFolder = nil;
  1098. // First : filter
  1099. NSArray *records = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileNameView CONTAINS[cd] %@", appDelegate.activeAccount, _serverUrl, fileName] sorted:nil ascending:NO];
  1100. [_searchResultMetadatas removeAllObjects];
  1101. for (tableMetadata *record in records) {
  1102. [_searchResultMetadatas addObject:record];
  1103. }
  1104. // Version >= 12
  1105. if ([[NCManageDatabase sharedInstance] getServerVersionWithAccount:appDelegate.activeAccount] >= 12) {
  1106. [_timerWaitInput invalidate];
  1107. _timerWaitInput = [NSTimer scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(searchStartTimer) userInfo:nil repeats:NO];
  1108. }
  1109. [self setTitle];
  1110. }
  1111. if (_searchResultMetadatas.count == 0 && fileName.length == 0) {
  1112. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1113. }
  1114. } else {
  1115. [self createRefreshControl];
  1116. [self reloadDatasource:self.serverUrl ocId:nil action:k_action_NULL];
  1117. }
  1118. }
  1119. - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar
  1120. {
  1121. [self cancelSearchBar];
  1122. }
  1123. - (void)cancelSearchBar
  1124. {
  1125. if (self.searchController.active) {
  1126. [self.searchController setActive:NO];
  1127. _searchFileName = @"";
  1128. _dateReadDataSource = nil;
  1129. _searchResultMetadatas = [NSMutableArray new];
  1130. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1131. }
  1132. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1133. [self setTableViewHeader];
  1134. });
  1135. }
  1136. #pragma mark -
  1137. #pragma --------------------------------------------------------------------------------------------
  1138. #pragma mark ===== Delete File or Folder =====
  1139. #pragma --------------------------------------------------------------------------------------------
  1140. - (void)deleteMetadatas
  1141. {
  1142. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  1143. return;
  1144. if ([_selectedocIdsMetadatas count] > 0) {
  1145. [appDelegate.arrayDeleteMetadata addObjectsFromArray:[_selectedocIdsMetadatas allValues]];
  1146. } else {
  1147. [appDelegate.arrayDeleteMetadata addObject:self.metadata];
  1148. }
  1149. [[NCNetworking sharedInstance] deleteMetadata:appDelegate.arrayDeleteMetadata.firstObject user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl completion:^(NSInteger errorCode, NSString *errorDescription) { }];
  1150. [appDelegate.arrayDeleteMetadata removeObjectAtIndex:0];
  1151. // End Select Table View
  1152. [self tableViewSelect:false];
  1153. }
  1154. #pragma --------------------------------------------------------------------------------------------
  1155. #pragma mark ===== Move / Copy =====
  1156. #pragma --------------------------------------------------------------------------------------------
  1157. - (void)moveCopyFileOrFolderMetadata:(tableMetadata *)metadata serverUrlTo:(NSString *)serverUrlTo move:(BOOL)move overwrite:(BOOL)overwrite
  1158. {
  1159. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  1160. return;
  1161. NSMutableArray *arrayMetadata, *arrayServerUrlTo;
  1162. if (move) {
  1163. arrayMetadata = appDelegate.arrayMoveMetadata;
  1164. arrayServerUrlTo = appDelegate.arrayMoveServerUrlTo;
  1165. } else {
  1166. arrayMetadata = appDelegate.arrayCopyMetadata;
  1167. arrayServerUrlTo = appDelegate.arrayCopyServerUrlTo;
  1168. }
  1169. if ([_selectedocIdsMetadatas count] > 0) {
  1170. for (NSString *key in _selectedocIdsMetadatas) {
  1171. tableMetadata *metadata = [_selectedocIdsMetadatas objectForKey:key];
  1172. [arrayMetadata addObject:metadata];
  1173. [arrayServerUrlTo addObject:serverUrlTo];
  1174. }
  1175. } else {
  1176. [arrayMetadata addObject:metadata];
  1177. [arrayServerUrlTo addObject:serverUrlTo];
  1178. }
  1179. if (move) {
  1180. [[NCNetworking sharedInstance] moveMetadata:arrayMetadata.firstObject serverUrlTo:arrayServerUrlTo.firstObject overwrite:overwrite completion:^(NSInteger errorCode, NSString * errorDesctiption) { }];
  1181. } else {
  1182. [[NCNetworking sharedInstance] copyMetadata:arrayMetadata.firstObject serverUrlTo:arrayServerUrlTo.firstObject overwrite:overwrite completion:^(NSInteger errorCode, NSString * errorDesctiption) { }];
  1183. }
  1184. [arrayMetadata removeObjectAtIndex:0];
  1185. [arrayServerUrlTo removeObjectAtIndex:0];
  1186. // End Select Table View
  1187. [self tableViewSelect:false];
  1188. }
  1189. // DELEGATE : Select
  1190. - (void)dismissSelectWithServerUrl:(NSString *)serverUrl metadata:(tableMetadata *)metadata type:(NSString *)type buttonType:(NSString *)buttonType overwrite:(BOOL)overwrite
  1191. {
  1192. if (serverUrl == nil) {
  1193. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1194. } else {
  1195. // E2EE DENIED
  1196. if ([CCUtility isFolderEncrypted:serverUrl e2eEncrypted:metadata.e2eEncrypted account:appDelegate.activeAccount]) {
  1197. [[NCContentPresenter shared] messageNotification:@"_move_" description:@"Not possible move files to encrypted directory" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  1198. return;
  1199. }
  1200. BOOL move = true;
  1201. if ([buttonType isEqualToString:@"done1"]) { move = false; }
  1202. if ([_selectedocIdsMetadatas count] > 0) {
  1203. NSArray *metadatas = [_selectedocIdsMetadatas allValues];
  1204. [self moveCopyFileOrFolderMetadata:[metadatas objectAtIndex:0] serverUrlTo:serverUrl move:move overwrite:overwrite];
  1205. } else {
  1206. [self moveCopyFileOrFolderMetadata:self.metadata serverUrlTo:serverUrl move:move overwrite:overwrite];
  1207. }
  1208. }
  1209. }
  1210. - (void)moveOpenWindow:(NSArray *)indexPaths
  1211. {
  1212. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  1213. return;
  1214. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCSelect" bundle:nil] instantiateInitialViewController];
  1215. NCSelect *viewController = (NCSelect *)navigationController.topViewController;
  1216. viewController.delegate = self;
  1217. viewController.hideButtonCreateFolder = false;
  1218. viewController.selectFile = false;
  1219. viewController.includeDirectoryE2EEncryption = false;
  1220. viewController.includeImages = false;
  1221. viewController.type = @"";
  1222. viewController.titleButtonDone = NSLocalizedString(@"_move_", nil);
  1223. viewController.titleButtonDone1 = NSLocalizedString(@"_copy_", nil);
  1224. viewController.isButtonDone1Hide = false;
  1225. viewController.isOverwriteHide = false;
  1226. viewController.layoutViewSelect = k_layout_view_move;
  1227. [navigationController setModalPresentationStyle:UIModalPresentationFullScreen];
  1228. [self presentViewController:navigationController animated:YES completion:nil];
  1229. }
  1230. #pragma --------------------------------------------------------------------------------------------
  1231. #pragma mark ===== Create folder =====
  1232. #pragma --------------------------------------------------------------------------------------------
  1233. - (void)createFolder
  1234. {
  1235. NSString *serverUrl = [appDelegate getTabBarControllerActiveServerUrl];
  1236. NSString *message;
  1237. UIAlertController *alertController;
  1238. if ([serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]]) {
  1239. message = @"/";
  1240. } else {
  1241. message = [serverUrl lastPathComponent];
  1242. }
  1243. alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_create_folder_on_",nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  1244. [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  1245. [textField addTarget:self action:@selector(minCharTextFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
  1246. textField.autocapitalizationType = UITextAutocapitalizationTypeSentences;
  1247. }];
  1248. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_",nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  1249. NSLog(@"[LOG] Cancel action");
  1250. }];
  1251. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  1252. UITextField *fileName = alertController.textFields.firstObject;
  1253. [[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) { }];
  1254. }];
  1255. okAction.enabled = NO;
  1256. [alertController addAction:cancelAction];
  1257. [alertController addAction:okAction];
  1258. [self presentViewController:alertController animated:YES completion:nil];
  1259. }
  1260. #pragma --------------------------------------------------------------------------------------------
  1261. #pragma mark ===== Progress & Task Button =====
  1262. #pragma --------------------------------------------------------------------------------------------
  1263. - (void)triggerProgressTask:(NSNotification *)notification
  1264. {
  1265. if (sectionDataSource.ocIdIndexPath != nil) {
  1266. [[NCMainCommon sharedInstance] triggerProgressTask:notification sectionDataSourceocIdIndexPath:sectionDataSource.ocIdIndexPath tableView:self.tableView viewController:self serverUrlViewController:self.serverUrl];
  1267. }
  1268. }
  1269. - (void)cancelTaskButton:(id)sender withEvent:(UIEvent *)event
  1270. {
  1271. UITouch *touch = [[event allTouches] anyObject];
  1272. CGPoint location = [touch locationInView:self.tableView];
  1273. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1274. if ([self indexPathIsValid:indexPath]) {
  1275. tableMetadata *metadataSection = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1276. if (metadataSection) {
  1277. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadataSection.ocId]];
  1278. if (metadata)
  1279. [[NCMainCommon sharedInstance] cancelTransferMetadata:metadata reloadDatasource:true uploadStatusForcedStart:false];
  1280. }
  1281. }
  1282. }
  1283. - (void)cancelAllTask:(id)sender
  1284. {
  1285. CGPoint location = [sender locationInView:self.tableView];
  1286. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1287. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  1288. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_all_task_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1289. [NCUtility.sharedInstance startActivityIndicatorWithView:self.view bottom:0];
  1290. [[NCMainCommon sharedInstance] cancelAllTransfer];
  1291. [NCUtility.sharedInstance stopActivityIndicator];
  1292. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:nil ocId:nil action:k_action_NULL];
  1293. }]];
  1294. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) { }]];
  1295. alertController.popoverPresentationController.sourceView = self.tableView;
  1296. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  1297. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  1298. [alertController.view layoutIfNeeded];
  1299. [self presentViewController:alertController animated:YES completion:nil];
  1300. }
  1301. #pragma --------------------------------------------------------------------------------------------
  1302. #pragma mark ===== Tap =====
  1303. #pragma --------------------------------------------------------------------------------------------
  1304. - (void)tapActionComment:(UITapGestureRecognizer *)tapGesture
  1305. {
  1306. CGPoint location = [tapGesture locationInView:self.tableView];
  1307. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1308. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1309. if (metadata) {
  1310. [[NCMainCommon sharedInstance] openShareWithViewController:self metadata:metadata indexPage:1];
  1311. }
  1312. }
  1313. - (void)tapActionShared:(UITapGestureRecognizer *)tapGesture
  1314. {
  1315. CGPoint location = [tapGesture locationInView:self.tableView];
  1316. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1317. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1318. if (metadata) {
  1319. [[NCMainCommon sharedInstance] openShareWithViewController:self metadata:metadata indexPage:2];
  1320. }
  1321. }
  1322. - (void)tapActionConnectionMounted:(UITapGestureRecognizer *)tapGesture
  1323. {
  1324. CGPoint location = [tapGesture locationInView:self.tableView];
  1325. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1326. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1327. if (metadata) {
  1328. }
  1329. }
  1330. #pragma --------------------------------------------------------------------------------------------
  1331. #pragma mark ===== Rich Workspace =====
  1332. #pragma --------------------------------------------------------------------------------------------
  1333. - (void)viewRichWorkspaceTapAction:(UITapGestureRecognizer *)tapGesture
  1334. {
  1335. [UIView animateWithDuration:0.5 animations:^{
  1336. [self.tableView setContentOffset:CGPointMake(0, heightSearchBar)];
  1337. } completion:^(BOOL finished) {
  1338. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCViewerRichWorkspace" bundle:nil] instantiateInitialViewController];
  1339. NCViewerRichWorkspace *viewerRichWorkspace = (NCViewerRichWorkspace *)[navigationController topViewController];
  1340. viewerRichWorkspace.richWorkspaceText = self.richWorkspaceText;
  1341. viewerRichWorkspace.serverUrl = self.serverUrl;
  1342. navigationController.modalPresentationStyle = UIModalPresentationFullScreen;
  1343. [self presentViewController:navigationController animated:NO completion:NULL];
  1344. }];
  1345. }
  1346. - (void)createRichWorkspace
  1347. {
  1348. NCRichWorkspaceCommon *richWorkspaceCommon = [NCRichWorkspaceCommon new];
  1349. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileNameView LIKE[c] %@", appDelegate.activeAccount, self.serverUrl, k_fileNameRichWorkspace.lowercaseString]];
  1350. if (metadata) {
  1351. [richWorkspaceCommon openViewerNextcloudTextWithServerUrl:self.serverUrl viewController:self];
  1352. } else {
  1353. [richWorkspaceCommon createViewerNextcloudTextWithServerUrl:self.serverUrl viewController:self];
  1354. }
  1355. }
  1356. #pragma --------------------------------------------------------------------------------------------
  1357. #pragma mark ==== Menu LOGO ====
  1358. #pragma --------------------------------------------------------------------------------------------
  1359. - (void)menuLogo:(UIGestureRecognizer *)theGestureRecognizer
  1360. {
  1361. // Brand
  1362. if ([NCBrandOptions sharedInstance].disable_multiaccount)
  1363. return;
  1364. NSArray *listAccount = [[NCManageDatabase sharedInstance] getAccounts];
  1365. NSMutableArray *menuArray = [NSMutableArray new];
  1366. for (NSString *account in listAccount) {
  1367. CCMenuItem *item = [[CCMenuItem alloc] init];
  1368. item.title = [account stringByTruncatingToWidth:self.view.bounds.size.width - 100 withFont:[UIFont systemFontOfSize:12.0] atEnd:YES];
  1369. item.argument = account;
  1370. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ ", account]];
  1371. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@-%@.png", [CCUtility getDirectoryUserData], [CCUtility getStringUser:tableAccount.user activeUrl:tableAccount.url], tableAccount.user];
  1372. UIImage *avatar = [UIImage imageWithContentsOfFile:fileNamePath];
  1373. if (avatar) {
  1374. avatar = [CCGraphics scaleImage:avatar toSize:CGSizeMake(25, 25) isAspectRation:YES];
  1375. CCAvatar *avatarImageView = [[CCAvatar alloc] initWithImage:avatar borderColor:[UIColor lightGrayColor] borderWidth:0.5];
  1376. CGSize imageSize = avatarImageView.bounds.size;
  1377. UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
  1378. CGContextRef context = UIGraphicsGetCurrentContext();
  1379. [avatarImageView.layer renderInContext:context];
  1380. avatar = UIGraphicsGetImageFromCurrentImageContext();
  1381. UIGraphicsEndImageContext();
  1382. } else {
  1383. avatar = [UIImage imageNamed:@"menuLogoUser"];
  1384. }
  1385. item.image = avatar;
  1386. item.target = self;
  1387. if ([account isEqualToString:appDelegate.activeAccount]) {
  1388. item.action = nil;
  1389. [menuArray insertObject:item atIndex:0];
  1390. } else {
  1391. item.action = @selector(changeDefaultAccount:);
  1392. [menuArray addObject:item];
  1393. }
  1394. }
  1395. // Add + new account
  1396. CCMenuItem *item = [[CCMenuItem alloc] init];
  1397. item.title = NSLocalizedString(@"_add_account_", nil);
  1398. item.argument = @"";
  1399. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"add"] width:50 height:50 color:NCBrandColor.sharedInstance.textView];
  1400. item.target = self;
  1401. item.action = @selector(addNewAccount:);
  1402. [menuArray addObject:item];
  1403. OptionalConfiguration options;
  1404. Color backgroundColor;
  1405. const CGFloat *componentsBackgroundColor = CGColorGetComponents(NCBrandColor.sharedInstance.backgroundForm.CGColor);
  1406. backgroundColor.R = componentsBackgroundColor[0];
  1407. backgroundColor.G = componentsBackgroundColor[1];
  1408. backgroundColor.B = componentsBackgroundColor[2];
  1409. options.arrowSize = 9;
  1410. options.marginXSpacing = 7;
  1411. options.marginYSpacing = 10;
  1412. options.intervalSpacing = 20;
  1413. options.menuCornerRadius = 6.5;
  1414. options.maskToBackground = NO;
  1415. options.shadowOfMenu = YES;
  1416. options.hasSeperatorLine = YES;
  1417. options.seperatorLineHasInsets = YES;
  1418. options.textColor = NCBrandColor.sharedInstance.textView;
  1419. options.menuBackgroundColor = backgroundColor;
  1420. options.separatorColor = NCBrandColor.sharedInstance.separator;
  1421. CGRect rect = self.view.frame;
  1422. CGFloat locationY = [theGestureRecognizer locationInView: self.navigationController.navigationBar].y;
  1423. CGFloat safeAreaTop = 0;
  1424. CGFloat offsetY = 35;
  1425. if (@available(iOS 11, *)) {
  1426. safeAreaTop = [UIApplication sharedApplication].delegate.window.safeAreaInsets.top / 2;
  1427. }
  1428. rect.origin.y = locationY + safeAreaTop + offsetY;
  1429. rect.size.height = rect.size.height - locationY - safeAreaTop - offsetY;
  1430. [CCMenuAccount setTitleFont:[UIFont systemFontOfSize:12.0]];
  1431. [CCMenuAccount showMenuInView:self.navigationController.view fromRect:rect menuItems:menuArray withOptions:options];
  1432. }
  1433. - (void)changeDefaultAccount:(CCMenuItem *)sender
  1434. {
  1435. // LOGOUT
  1436. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] setAccountActive:[sender argument]];
  1437. if (tableAccount) {
  1438. // LOGIN
  1439. [appDelegate settingActiveAccount:tableAccount.account activeUrl:tableAccount.url activeUser:tableAccount.user activeUserID:tableAccount.userID activePassword:[CCUtility getPassword:tableAccount.account]];
  1440. // go to home sweet home
  1441. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
  1442. }
  1443. }
  1444. - (void)addNewAccount:(CCMenuItem *)sender
  1445. {
  1446. [appDelegate openLoginView:self selector:k_intro_login openLoginWeb:false];
  1447. }
  1448. - (void)toggleReMainMenu
  1449. {
  1450. [self toggleMenuWithViewController:self.navigationController];
  1451. }
  1452. - (void)toggleReSelectMenu
  1453. {
  1454. [self toggleSelectMenuWithViewController:self.navigationController];
  1455. }
  1456. #pragma --------------------------------------------------------------------------------------------
  1457. #pragma mark ===== Long Press Recognized Table View / Menu Controller =====
  1458. #pragma --------------------------------------------------------------------------------------------
  1459. - (void)onLongPressTableView:(UILongPressGestureRecognizer*)recognizer
  1460. {
  1461. if (recognizer.state == UIGestureRecognizerStateBegan) {
  1462. CGPoint touchPoint = [recognizer locationInView:self.tableView];
  1463. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touchPoint];
  1464. NSMutableArray *items = [NSMutableArray new];
  1465. if ([self indexPathIsValid:indexPath])
  1466. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1467. else
  1468. self.metadata = nil;
  1469. [self becomeFirstResponder];
  1470. UIMenuController *menuController = [UIMenuController sharedMenuController];
  1471. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_file_", nil) action:@selector(copyTouchFile:)]];
  1472. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_files_", nil) action:@selector(copyTouchFiles:)]];
  1473. if ([NCBrandOptions sharedInstance].disable_openin_file == false) {
  1474. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_open_in_", nil) action:@selector(openinTouchFile:)]];
  1475. }
  1476. if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_document]) {
  1477. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_open_internal_view_", nil) action:@selector(openInternalViewerTouch:)]];
  1478. }
  1479. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_file_", nil) action:@selector(pasteTouchFile:)]];
  1480. [items addObject:[[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_files_", nil) action:@selector(pasteTouchFiles:)]];
  1481. [menuController setMenuItems:items];
  1482. [menuController setTargetRect:CGRectMake(touchPoint.x, touchPoint.y, 0.0f, 0.0f) inView:self.tableView];
  1483. [menuController setMenuVisible:YES animated:YES];
  1484. }
  1485. }
  1486. - (BOOL)canBecomeFirstResponder
  1487. {
  1488. return YES;
  1489. }
  1490. - (BOOL)canPerformAction:(SEL)action withSender:(id)sender
  1491. {
  1492. // For copy file, copy files, Open in ... :
  1493. //
  1494. // NO Directory
  1495. // NO Error Passcode
  1496. // NO In Session mode (download/upload)
  1497. // NO Template
  1498. if (@selector(copyTouchFile:) == action || @selector(openinTouchFile:) == action || @selector(openInternalViewerTouch:) == action) {
  1499. if (_isSelectedMode == NO && self.metadata && !self.metadata.directory && self.metadata.status == k_metadataStatusNormal) return YES;
  1500. else return NO;
  1501. }
  1502. if (@selector(copyTouchFiles:) == action) {
  1503. if (_isSelectedMode) {
  1504. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  1505. for (tableMetadata *metadata in selectedMetadatas) {
  1506. if (!metadata.directory && metadata.status == k_metadataStatusNormal)
  1507. return YES;
  1508. }
  1509. }
  1510. return NO;
  1511. }
  1512. if (@selector(pasteTouchFile:) == action) {
  1513. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1514. NSArray *items = [pasteboard items];
  1515. if ([items count] == 1) {
  1516. // Value : (NSData) ocId
  1517. NSDictionary *dic = [items objectAtIndex:0];
  1518. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1519. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1520. if (ocId) {
  1521. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocId]];
  1522. if (metadata) {
  1523. return [CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView];
  1524. } else {
  1525. return NO;
  1526. }
  1527. }
  1528. }
  1529. return NO;
  1530. }
  1531. if (@selector(pasteTouchFiles:) == action) {
  1532. BOOL isValid = NO;
  1533. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1534. NSArray *items = [pasteboard items];
  1535. if ([items count] <= 1) return NO;
  1536. for (NSDictionary *dic in items) {
  1537. // Value : (NSData) ocId
  1538. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1539. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1540. if (ocId) {
  1541. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocId]];
  1542. if (metadata) {
  1543. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1544. isValid = YES;
  1545. } else {
  1546. isValid = NO;
  1547. break;
  1548. }
  1549. } else {
  1550. isValid = NO;
  1551. break;
  1552. }
  1553. } else {
  1554. isValid = NO;
  1555. break;
  1556. }
  1557. }
  1558. return isValid;
  1559. }
  1560. return NO;
  1561. }
  1562. /************************************ COPY ************************************/
  1563. - (void)copyTouchFile:(id)sender
  1564. {
  1565. // Remove all item
  1566. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1567. pasteboard.items = [[NSArray alloc] init];
  1568. if ([CCUtility fileProviderStorageExists:self.metadata.ocId fileNameView:self.metadata.fileNameView]) {
  1569. [self copyFileToPasteboard:self.metadata];
  1570. } else {
  1571. self.metadata.session = k_download_session;
  1572. self.metadata.sessionError = @"";
  1573. self.metadata.sessionSelector = selectorLoadCopy;
  1574. self.metadata.status = k_metadataStatusWaitDownload;
  1575. // Add Metadata for Download
  1576. [[NCManageDatabase sharedInstance] addMetadata:self.metadata];
  1577. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:self.metadata.ocId action:k_action_MOD];
  1578. [appDelegate startLoadAutoDownloadUpload];
  1579. }
  1580. }
  1581. - (void)copyTouchFiles:(id)sender
  1582. {
  1583. // Remove all item
  1584. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1585. pasteboard.items = [[NSArray alloc] init];
  1586. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  1587. for (tableMetadata *metadata in selectedMetadatas) {
  1588. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1589. [self copyFileToPasteboard:metadata];
  1590. } else {
  1591. metadata.session = k_download_session;
  1592. metadata.sessionError = @"";
  1593. metadata.sessionSelector = selectorLoadCopy;
  1594. metadata.status = k_metadataStatusWaitDownload;
  1595. // Add Metadata for Download
  1596. [[NCManageDatabase sharedInstance] addMetadata:metadata];
  1597. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:metadata.ocId action:k_action_MOD];
  1598. [appDelegate startLoadAutoDownloadUpload];
  1599. }
  1600. }
  1601. [self tableViewSelect:false];
  1602. }
  1603. - (void)copyFileToPasteboard:(tableMetadata *)metadata
  1604. {
  1605. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1606. NSMutableArray *items = [[NSMutableArray alloc] initWithArray:pasteboard.items];
  1607. // Value : (NSData) ocId
  1608. NSDictionary *item = [NSDictionary dictionaryWithObjectsAndKeys:[NSKeyedArchiver archivedDataWithRootObject:metadata.ocId], k_metadataKeyedUnarchiver,nil];
  1609. [items addObject:item];
  1610. [pasteboard setItems:items];
  1611. }
  1612. /************************************ OPEN IN ... ******************************/
  1613. - (void)openinTouchFile:(id)sender
  1614. {
  1615. [[NCMainCommon sharedInstance] downloadOpenWithMetadata:self.metadata selector:selectorOpenIn];
  1616. }
  1617. /************************************ OPEN INTERNAL VIEWER ... ******************************/
  1618. - (void)openInternalViewerTouch:(id)sender
  1619. {
  1620. [[NCMainCommon sharedInstance] downloadOpenWithMetadata:self.metadata selector:selectorLoadFileInternalView];
  1621. }
  1622. /************************************ PASTE ************************************/
  1623. - (void)pasteTouchFile:(id)sender
  1624. {
  1625. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1626. [self uploadFilePasteArray:[pasteboard items]];
  1627. }
  1628. - (void)pasteTouchFiles:(id)sender
  1629. {
  1630. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1631. [self uploadFilePasteArray:[pasteboard items]];
  1632. }
  1633. - (void)uploadFilePasteArray:(NSArray *)items
  1634. {
  1635. for (NSDictionary *dic in items) {
  1636. // Value : (NSData) ocId
  1637. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1638. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1639. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocId]];
  1640. if (metadata) {
  1641. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1642. NSString *fileName = [[NCUtility sharedInstance] createFileName:metadata.fileNameView serverUrl:self.serverUrl account:appDelegate.activeAccount];
  1643. NSString *ocId = [CCUtility createMetadataIDFromAccount:appDelegate.activeAccount serverUrl:self.serverUrl fileNameView:fileName directory:false];
  1644. [CCUtility copyFileAtPath:[CCUtility getDirectoryProviderStorageOcId:metadata.ocId fileNameView:metadata.fileNameView] toPath:[CCUtility getDirectoryProviderStorageOcId:ocId fileNameView:fileName]];
  1645. tableMetadata *metadataForUpload = [tableMetadata new];
  1646. metadataForUpload.account = appDelegate.activeAccount;
  1647. metadataForUpload.date = [NSDate new];
  1648. metadataForUpload.ocId = ocId;
  1649. metadataForUpload.fileName = fileName;
  1650. metadataForUpload.fileNameView = fileName;
  1651. metadataForUpload.serverUrl = self.serverUrl;
  1652. metadataForUpload.session = k_upload_session;
  1653. metadataForUpload.sessionSelector = selectorUploadFile;
  1654. metadataForUpload.size = metadata.size;
  1655. metadataForUpload.status = k_metadataStatusWaitUpload;
  1656. // Add Medtadata for upload
  1657. [[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  1658. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1659. }
  1660. }
  1661. }
  1662. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1663. [appDelegate startLoadAutoDownloadUpload];
  1664. }
  1665. #pragma --------------------------------------------------------------------------------------------
  1666. #pragma mark ===== Lock Passcode =====
  1667. #pragma --------------------------------------------------------------------------------------------
  1668. - (NSUInteger)passcodeViewControllerNumberOfFailedAttempts:(CCBKPasscode *)aViewController
  1669. {
  1670. return _failedAttempts;
  1671. }
  1672. - (NSDate *)passcodeViewControllerLockUntilDate:(CCBKPasscode *)aViewController
  1673. {
  1674. return _lockUntilDate;
  1675. }
  1676. - (void)passcodeViewCloseButtonPressed:(id)sender
  1677. {
  1678. [self dismissViewControllerAnimated:YES completion:nil];
  1679. }
  1680. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  1681. {
  1682. if (aViewController.fromType == CCBKPasscodeFromLockScreen || aViewController.fromType == CCBKPasscodeFromLockDirectory || aViewController.fromType == CCBKPasscodeFromDisactivateDirectory ) {
  1683. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  1684. _lockUntilDate = nil;
  1685. _failedAttempts = 0;
  1686. aResultHandler(YES);
  1687. } else aResultHandler(NO);
  1688. } else aResultHandler(YES);
  1689. }
  1690. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  1691. {
  1692. [aViewController dismissViewControllerAnimated:YES completion:nil];
  1693. switch (aViewController.type) {
  1694. case BKPasscodeViewControllerCheckPasscodeType: {
  1695. if (aViewController.fromType == CCBKPasscodeFromLockDirectory) {
  1696. // possiamo procedere alla prossima directory
  1697. [self performSegueDirectoryWithControlPasscode:false metadata:self.metadata blinkFileNamePath:self.blinkFileNamePath];
  1698. // avviamo la sessione Passcode Lock con now
  1699. appDelegate.sessionePasscodeLock = [NSDate date];
  1700. }
  1701. // disattivazione lock cartella
  1702. if (aViewController.fromType == CCBKPasscodeFromDisactivateDirectory) {
  1703. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.metadata.serverUrl addFileName:self.metadata.fileName];
  1704. if (![[NCManageDatabase sharedInstance] setDirectoryLockWithServerUrl:lockServerUrl lock:NO account:appDelegate.activeAccount]) {
  1705. [[NCContentPresenter shared] messageNotification:@"_error_" description:@"_error_operation_canc_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorInternalError];
  1706. }
  1707. [self tableViewReloadData];
  1708. }
  1709. }
  1710. break;
  1711. default:
  1712. break;
  1713. }
  1714. }
  1715. - (void)comandoLockPassword
  1716. {
  1717. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.metadata.serverUrl addFileName:self.metadata.fileName];
  1718. // se non è abilitato il Lock Passcode esci
  1719. if ([[CCUtility getBlockCode] length] == 0) {
  1720. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_warning_", nil) message:NSLocalizedString(@"_only_lock_passcode_", nil) preferredStyle:UIAlertControllerStyleAlert];
  1721. UIAlertAction *goToSettingsAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_go_to_app_settings_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  1722. [self.tabBarController setSelectedIndex:4];
  1723. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1724. NSIndexPath *selectedIndex = [NSIndexPath indexPathForRow:0 inSection:1];
  1725. [appDelegate.activeMore.tableView selectRowAtIndexPath:selectedIndex animated:true scrollPosition: UITableViewScrollPositionNone];
  1726. [appDelegate.activeMore tableView:appDelegate.activeMore.tableView didSelectRowAtIndexPath:selectedIndex];
  1727. });
  1728. }];
  1729. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  1730. [alertController addAction:goToSettingsAction];
  1731. [alertController addAction:okAction];
  1732. [self presentViewController:alertController animated:YES completion:nil];
  1733. return;
  1734. }
  1735. // se è richiesta la disattivazione si chiede la password
  1736. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  1737. if (directory.lock) {
  1738. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  1739. viewController.delegate = self;
  1740. viewController.fromType = CCBKPasscodeFromDisactivateDirectory;
  1741. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  1742. viewController.inputViewTitlePassword = YES;
  1743. if ([CCUtility getSimplyBlockCode]) {
  1744. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  1745. viewController.passcodeInputView.maximumLength = 6;
  1746. } else {
  1747. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  1748. viewController.passcodeInputView.maximumLength = 64;
  1749. }
  1750. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  1751. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  1752. viewController.touchIDManager = touchIDManager;
  1753. viewController.title = NSLocalizedString(@"_passcode_protection_", nil);
  1754. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  1755. viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
  1756. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  1757. navigationController.modalPresentationStyle = UIModalPresentationFullScreen;
  1758. [self presentViewController:navigationController animated:YES completion:nil];
  1759. return;
  1760. }
  1761. // ---------------- ACTIVATE PASSWORD
  1762. if ([[NCManageDatabase sharedInstance] setDirectoryLockWithServerUrl:lockServerUrl lock:YES account:appDelegate.activeAccount]) {
  1763. NSIndexPath *indexPath = [sectionDataSource.ocIdIndexPath objectForKey:self.metadata.ocId];
  1764. if ([self indexPathIsValid:indexPath])
  1765. [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationAutomatic];
  1766. } else {
  1767. [[NCContentPresenter shared] messageNotification:@"_error_" description:@"_error_operation_canc_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorInternalError];
  1768. }
  1769. }
  1770. #pragma mark -
  1771. #pragma --------------------------------------------------------------------------------------------
  1772. #pragma mark ===== menu action : Favorite, More, Delete [swipe] =====
  1773. #pragma --------------------------------------------------------------------------------------------
  1774. - (BOOL)canOpenMenuAction:(tableMetadata *)metadata
  1775. {
  1776. if (metadata == nil || _metadataFolder == nil || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata] || metadata.status != k_metadataStatusNormal || [[NCManageDatabase sharedInstance] isTableInvalidated:_metadataFolder])
  1777. return NO;
  1778. // E2EE
  1779. if (_metadataFolder.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount] == NO)
  1780. return NO;
  1781. return YES;
  1782. }
  1783. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell canSwipe:(MGSwipeDirection)direction
  1784. {
  1785. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  1786. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1787. return [self canOpenMenuAction:metadata];
  1788. }
  1789. -(void)swipeTableCell:(nonnull MGSwipeTableCell *)cell didChangeSwipeState:(MGSwipeState)state gestureIsActive:(BOOL)gestureIsActive
  1790. {
  1791. }
  1792. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell tappedButtonAtIndex:(NSInteger)index direction:(MGSwipeDirection)direction fromExpansion:(BOOL)fromExpansion
  1793. {
  1794. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  1795. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1796. if (direction == MGSwipeDirectionRightToLeft) {
  1797. [self actionDelete:indexPath];
  1798. }
  1799. if (direction == MGSwipeDirectionLeftToRight) {
  1800. [[NCNetworking sharedInstance] favoriteMetadata:self.metadata url:appDelegate.activeUrl completion:^(NSInteger errorCode, NSString *errorDescription) { }];
  1801. }
  1802. return YES;
  1803. }
  1804. - (void)actionDelete:(NSIndexPath *)indexPath
  1805. {
  1806. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1807. // Directory locked ?
  1808. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.metadata.serverUrl addFileName:metadata.fileName];
  1809. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  1810. tableLocalFile *localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  1811. if (directory.lock && [[CCUtility getBlockCode] length] && appDelegate.sessionePasscodeLock == nil) {
  1812. [[NCContentPresenter shared] messageNotification:@"_error_" description:@"_folder_blocked_" delay:k_dismissAfterSecond type:messageTypeError errorCode:k_CCErrorInternalError];
  1813. return;
  1814. }
  1815. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  1816. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1817. [self performSelector:@selector(deleteMetadatas) withObject:nil];
  1818. }]];
  1819. if (localFile) {
  1820. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_remove_local_file_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1821. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  1822. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageOcId:metadata.ocId] error:nil];
  1823. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1824. }]];
  1825. }
  1826. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  1827. }]];
  1828. alertController.popoverPresentationController.sourceView = self.tableView;
  1829. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  1830. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  1831. [alertController.view layoutIfNeeded];
  1832. [self presentViewController:alertController animated:YES completion:nil];
  1833. }
  1834. - (void)actionMore:(UITapGestureRecognizer *)gestureRecognizer
  1835. {
  1836. CGPoint touch = [gestureRecognizer locationInView:self.tableView];
  1837. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touch];
  1838. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1839. [self toggleMoreMenuWithViewController:self.tabBarController indexPath:indexPath metadata:self.metadata metadataFolder:_metadataFolder];
  1840. }
  1841. #pragma --------------------------------------------------------------------------------------------
  1842. #pragma mark - ==== Datasource ====
  1843. #pragma --------------------------------------------------------------------------------------------
  1844. - (void)clearDateReadDataSource:(NSNotification *)notification
  1845. {
  1846. _dateReadDataSource = Nil;
  1847. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1848. }
  1849. - (void)reloadDatasource:(NSString *)serverUrl ocId:(NSString *)ocId action:(NSInteger)action
  1850. {
  1851. // test
  1852. if (appDelegate.activeAccount.length == 0 || serverUrl.length == 0 || serverUrl == nil || self.view.window == nil)
  1853. return;
  1854. // Search Mode
  1855. if (self.searchController.isActive) {
  1856. // Create metadatas
  1857. NSMutableArray *metadatas = [NSMutableArray new];
  1858. for (tableMetadata *resultMetadata in _searchResultMetadatas) {
  1859. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", resultMetadata.ocId]];
  1860. if (metadata) {
  1861. [metadatas addObject:metadata];
  1862. }
  1863. }
  1864. // [CCUtility getGroupBySettings]
  1865. sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:metadatas listProgressMetadata:nil groupByField:nil filterocId:appDelegate.filterocId filterTypeFileImage:NO filterTypeFileVideo:NO sorted:@"fileName" ascending:NO activeAccount:appDelegate.activeAccount];
  1866. [self tableViewReloadData];
  1867. if ([sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] >= k_minCharsSearch) {
  1868. _noFilesSearchTitle = NSLocalizedString(@"_search_no_record_found_", nil);
  1869. _noFilesSearchDescription = @"";
  1870. }
  1871. if ([sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] < k_minCharsSearch) {
  1872. _noFilesSearchTitle = @"";
  1873. _noFilesSearchDescription = NSLocalizedString(@"_search_instruction_", nil);
  1874. }
  1875. [self.tableView reloadEmptyDataSet];
  1876. return;
  1877. }
  1878. // Se non siamo nella dir appropriata esci
  1879. if ([serverUrl isEqualToString:self.serverUrl] == NO || self.serverUrl == nil) {
  1880. return;
  1881. }
  1882. // Controllo data lettura Data Source
  1883. tableDirectory *tableDirectory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, serverUrl]];
  1884. if (tableDirectory == nil) {
  1885. return;
  1886. }
  1887. // Get MetadataFolder
  1888. if ([serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]])
  1889. _metadataFolder = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, k_serverUrl_root]];
  1890. else
  1891. _metadataFolder = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", tableDirectory.ocId]];
  1892. // Remove optimization for encrypted directory
  1893. if (_metadataFolder.e2eEncrypted)
  1894. _dateReadDataSource = nil;
  1895. NSDate *dateDateRecordDirectory = tableDirectory.dateReadDirectory;
  1896. if ([dateDateRecordDirectory compare:_dateReadDataSource] == NSOrderedDescending || dateDateRecordDirectory == nil || _dateReadDataSource == nil) {
  1897. NSLog(@"[LOG] Rebuild Data Source File : %@", _serverUrl);
  1898. _dateReadDataSource = [NSDate date];
  1899. // Data Source
  1900. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1901. CCSectionDataSourceMetadata *sectionDataSourceTemp = [self queryDatasourceWithReloadData:NO serverUrl:serverUrl];
  1902. dispatch_async(dispatch_get_main_queue(), ^{
  1903. sectionDataSource = sectionDataSourceTemp;
  1904. [self tableViewReloadData];
  1905. });
  1906. });
  1907. } else {
  1908. [self tableViewReloadData];
  1909. NSLog(@"[LOG] [OPTIMIZATION] Rebuild Data Source File : %@ - %@", _serverUrl, _dateReadDataSource);
  1910. }
  1911. // BLINK
  1912. if (self.blinkFileNamePath != nil) {
  1913. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1914. for (NSString *key in sectionDataSource.allRecordsDataSource) {
  1915. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:key];
  1916. NSString *metadataFileNamePath = [NSString stringWithFormat:@"%@/%@", metadata.serverUrl, metadata.fileName];
  1917. if ([metadataFileNamePath isEqualToString:self.blinkFileNamePath]) {
  1918. for (NSString *key in sectionDataSource.ocIdIndexPath) {
  1919. if ([key isEqualToString:metadata.ocId]) {
  1920. NSIndexPath *indexPath = [sectionDataSource.ocIdIndexPath objectForKey:key];
  1921. [self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];
  1922. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1923. CCCellMain *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  1924. if (cell) {
  1925. self.blinkFileNamePath = nil;
  1926. [[NCUtility sharedInstance] blinkWithCell:cell];
  1927. }
  1928. });
  1929. }
  1930. }
  1931. }
  1932. }
  1933. });
  1934. }
  1935. }
  1936. - (CCSectionDataSourceMetadata *)queryDatasourceWithReloadData:(BOOL)withReloadData serverUrl:(NSString *)serverUrl
  1937. {
  1938. // test
  1939. if (appDelegate.activeAccount.length == 0 || serverUrl == nil) {
  1940. return nil;
  1941. }
  1942. // get auto upload folder
  1943. _autoUploadFileName = [[NCManageDatabase sharedInstance] getAccountAutoUploadFileName];
  1944. _autoUploadDirectory = [[NCManageDatabase sharedInstance] getAccountAutoUploadDirectory:appDelegate.activeUrl];
  1945. CCSectionDataSourceMetadata *sectionDataSourceTemp = [CCSectionDataSourceMetadata new];
  1946. NSArray *recordsTableMetadata = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, serverUrl] sorted:nil ascending:NO];
  1947. // [CCUtility getGroupBySettings]
  1948. sectionDataSourceTemp = [CCSectionMetadata creataDataSourseSectionMetadata:recordsTableMetadata listProgressMetadata:nil groupByField:nil filterocId:appDelegate.filterocId filterTypeFileImage:NO filterTypeFileVideo:NO sorted:[CCUtility getOrderSettings] ascending:[CCUtility getAscendingSettings] activeAccount:appDelegate.activeAccount];
  1949. if (withReloadData) {
  1950. sectionDataSource = sectionDataSourceTemp;
  1951. [self tableViewReloadData];
  1952. }
  1953. return sectionDataSourceTemp;
  1954. }
  1955. - (NSArray *)getMetadatasFromSelectedRows:(NSArray *)selectedRows
  1956. {
  1957. NSMutableArray *metadatas = [[NSMutableArray alloc] init];
  1958. if (selectedRows.count > 0) {
  1959. for (NSIndexPath *selectionIndex in selectedRows) {
  1960. NSString *ocId = [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:selectionIndex.section]] objectAtIndex:selectionIndex.row];
  1961. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:ocId];
  1962. [metadatas addObject:metadata];
  1963. }
  1964. }
  1965. return metadatas;
  1966. }
  1967. - (NSArray *)getMetadatasFromSectionDataSource:(NSInteger)section
  1968. {
  1969. NSInteger totSections =[sectionDataSource.sections count] ;
  1970. if ((totSections < (section + 1)) || ((section + 1) > totSections)) {
  1971. return nil;
  1972. }
  1973. id valueSection = [sectionDataSource.sections objectAtIndex:section];
  1974. return [sectionDataSource.sectionArrayRow objectForKey:valueSection];
  1975. }
  1976. #pragma --------------------------------------------------------------------------------------------
  1977. #pragma mark - ==== Table ====
  1978. #pragma --------------------------------------------------------------------------------------------
  1979. - (void)tableViewToggle
  1980. {
  1981. [self tableViewSelect:!_isSelectedMode];
  1982. }
  1983. - (void)tableViewSelect:(BOOL)toggle
  1984. {
  1985. _isSelectedMode = toggle;
  1986. // chiudiamo eventuali swipe aperti
  1987. if (_isSelectedMode)
  1988. [self.tableView setEditing:NO animated:NO];
  1989. [self.tableView setAllowsMultipleSelectionDuringEditing:_isSelectedMode];
  1990. [self.tableView setEditing:_isSelectedMode animated:YES];
  1991. if (_isSelectedMode)
  1992. [self setUINavigationBarSelected];
  1993. else
  1994. [self setUINavigationBarDefault];
  1995. [_selectedocIdsMetadatas removeAllObjects];
  1996. [self setTitle];
  1997. }
  1998. - (void)tableViewReloadData
  1999. {
  2000. // store selected cells before relod
  2001. NSArray *indexPaths = [self.tableView indexPathsForSelectedRows];
  2002. // reload table view
  2003. [self.tableView reloadData];
  2004. // selected cells stored
  2005. for (NSIndexPath *path in indexPaths)
  2006. [self.tableView selectRowAtIndexPath:path animated:NO scrollPosition:UITableViewScrollPositionNone];
  2007. [self setTableViewHeader];
  2008. [self setTableViewFooter];
  2009. if (self.tableView.editing)
  2010. [self setTitle];
  2011. [self.tableView reloadEmptyDataSet];
  2012. }
  2013. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
  2014. {
  2015. if (tableView.editing == 1) {
  2016. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2017. if (!metadata || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata])
  2018. return NO;
  2019. if (metadata == nil || metadata.status != k_metadataStatusNormal)
  2020. return NO;
  2021. else
  2022. return YES;
  2023. } else {
  2024. [_selectedocIdsMetadatas removeAllObjects];
  2025. }
  2026. return YES;
  2027. }
  2028. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  2029. {
  2030. return 60;
  2031. }
  2032. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  2033. {
  2034. return [[sectionDataSource.sectionArrayRow allKeys] count];
  2035. }
  2036. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  2037. {
  2038. return [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]] count];
  2039. }
  2040. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  2041. {
  2042. NSArray *sections = [sectionDataSource.sectionArrayRow allKeys];
  2043. NSString *sectionTitle = [sections objectAtIndex:section];
  2044. if ([sectionTitle isKindOfClass:[NSString class]] && [sectionTitle rangeOfString:@"download"].location != NSNotFound) return 18.f;
  2045. if ([sectionTitle isKindOfClass:[NSString class]] && [sectionTitle rangeOfString:@"upload"].location != NSNotFound) return 18.f;
  2046. if ([[CCUtility getGroupBySettings] isEqualToString:@"none"] && [sections count] <= 1) return 0.0f;
  2047. return 20.f;
  2048. }
  2049. -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  2050. {
  2051. float shift;
  2052. UIVisualEffectView *visualEffectView;
  2053. NSString *titleSection;
  2054. if (![self indexPathIsValid:[NSIndexPath indexPathForRow:0 inSection:section]])
  2055. return nil;
  2056. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSString class]])
  2057. titleSection = [sectionDataSource.sections objectAtIndex:section];
  2058. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSDate class]])
  2059. titleSection = [CCUtility getTitleSectionDate:[sectionDataSource.sections objectAtIndex:section]];
  2060. if ([titleSection isEqualToString:@"_none_"]) titleSection = @"";
  2061. else if ([titleSection rangeOfString:@"download"].location != NSNotFound) titleSection = NSLocalizedString(@"_title_section_download_",nil);
  2062. else if ([titleSection rangeOfString:@"upload"].location != NSNotFound) titleSection = NSLocalizedString(@"_title_section_upload_",nil);
  2063. else titleSection = NSLocalizedString(titleSection,nil);
  2064. // Format title
  2065. UIVisualEffect *blurEffect;
  2066. blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
  2067. visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
  2068. visualEffectView.backgroundColor = [NCBrandColor.sharedInstance.brand colorWithAlphaComponent:0.2];
  2069. if ([[CCUtility getGroupBySettings] isEqualToString:@"alphabetic"]) {
  2070. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  2071. shift = - 35;
  2072. else
  2073. shift = - 20;
  2074. } else shift = - 10;
  2075. // Title
  2076. UILabel *titleLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, -12, 0, 44)];
  2077. titleLabel.backgroundColor = [UIColor clearColor];
  2078. titleLabel.textColor = NCBrandColor.sharedInstance.textView;
  2079. titleLabel.font = [UIFont systemFontOfSize:12];
  2080. titleLabel.textAlignment = NSTextAlignmentLeft;
  2081. titleLabel.text = titleSection;
  2082. titleLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  2083. [visualEffectView.contentView addSubview:titleLabel];
  2084. // Elements
  2085. UILabel *elementLabel= [[UILabel alloc]initWithFrame:CGRectMake(shift, -12, 0, 44)];
  2086. elementLabel.backgroundColor = [UIColor clearColor];
  2087. elementLabel.textColor = NCBrandColor.sharedInstance.textView;
  2088. elementLabel.font = [UIFont systemFontOfSize:12];
  2089. elementLabel.textAlignment = NSTextAlignmentRight;
  2090. elementLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  2091. NSArray *metadatas = [self getMetadatasFromSectionDataSource:section];
  2092. NSUInteger rowsCount = [metadatas count];
  2093. if (rowsCount == 0) return nil;
  2094. if (rowsCount == 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_element_",nil)];
  2095. if (rowsCount > 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_elements_",nil)];
  2096. [visualEffectView.contentView addSubview:elementLabel];
  2097. return visualEffectView;
  2098. }
  2099. - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
  2100. {
  2101. return [sectionDataSource.sections indexOfObject:title];
  2102. }
  2103. - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
  2104. {
  2105. if ([[CCUtility getGroupBySettings] isEqualToString:@"alphabetic"])
  2106. return [[UILocalizedIndexedCollation currentCollation] sectionIndexTitles];
  2107. else
  2108. return nil;
  2109. }
  2110. /*
  2111. -(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
  2112. {
  2113. if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){
  2114. }
  2115. }
  2116. */
  2117. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  2118. {
  2119. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2120. tableShare *shareCell;
  2121. if (metadata == nil || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata] || (_metadataFolder != nil && [[NCManageDatabase sharedInstance] isTableInvalidated:_metadataFolder])) {
  2122. return [CCCellMain new];
  2123. }
  2124. for (tableShare *share in appDelegate.shares) {
  2125. if ([share.serverUrl isEqualToString:metadata.serverUrl] && [share.fileName isEqualToString:metadata.fileName]) {
  2126. shareCell = share;
  2127. break;
  2128. }
  2129. }
  2130. UITableViewCell *cell = [[NCMainCommon sharedInstance] cellForRowAtIndexPath:indexPath tableView:tableView metadata:metadata metadataFolder:_metadataFolder serverUrl:self.serverUrl autoUploadFileName:_autoUploadFileName autoUploadDirectory:_autoUploadDirectory tableShare:shareCell];
  2131. // NORMAL - > MAIN
  2132. if ([cell isKindOfClass:[CCCellMain class]]) {
  2133. // Comment tap
  2134. if (metadata.commentsUnread) {
  2135. UITapGestureRecognizer *tapComment = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionComment:)];
  2136. [tapComment setNumberOfTapsRequired:1];
  2137. ((CCCellMain *)cell).comment.userInteractionEnabled = YES;
  2138. [((CCCellMain *)cell).comment addGestureRecognizer:tapComment];
  2139. }
  2140. // Share add Tap
  2141. UITapGestureRecognizer *tapShare = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionShared:)];
  2142. [tapShare setNumberOfTapsRequired:1];
  2143. ((CCCellMain *)cell).viewShared.userInteractionEnabled = YES;
  2144. [((CCCellMain *)cell).viewShared addGestureRecognizer:tapShare];
  2145. // More
  2146. if ([self canOpenMenuAction:metadata]) {
  2147. UITapGestureRecognizer *tapMore = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(actionMore:)];
  2148. [tapMore setNumberOfTapsRequired:1];
  2149. ((CCCellMain *)cell).more.userInteractionEnabled = YES;
  2150. [((CCCellMain *)cell).more addGestureRecognizer:tapMore];
  2151. }
  2152. // MGSwipeButton
  2153. ((CCCellMain *)cell).delegate = self;
  2154. // LEFT
  2155. ((CCCellMain *)cell).leftButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:self.cellFavouriteImage backgroundColor:NCBrandColor.sharedInstance.yellowFavorite padding:25]];
  2156. ((CCCellMain *)cell).leftExpansion.buttonIndex = 0;
  2157. ((CCCellMain *)cell).leftExpansion.fillOnTrigger = NO;
  2158. //centerIconOverText
  2159. MGSwipeButton *favoriteButton = (MGSwipeButton *)[((CCCellMain *)cell).leftButtons objectAtIndex:0];
  2160. [favoriteButton centerIconOverText];
  2161. // RIGHT
  2162. ((CCCellMain *)cell).rightButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:self.cellTrashImage backgroundColor:[UIColor redColor] padding:25]];
  2163. ((CCCellMain *)cell).rightExpansion.buttonIndex = 0;
  2164. ((CCCellMain *)cell).rightExpansion.fillOnTrigger = NO;
  2165. //centerIconOverText
  2166. MGSwipeButton *deleteButton = (MGSwipeButton *)[((CCCellMain *)cell).rightButtons objectAtIndex:0];
  2167. [deleteButton centerIconOverText];
  2168. }
  2169. // TRANSFER
  2170. if ([cell isKindOfClass:[CCCellMainTransfer class]]) {
  2171. // gesture Transfer
  2172. [((CCCellMainTransfer *)cell).transferButton.stopButton addTarget:self action:@selector(cancelTaskButton:withEvent:) forControlEvents:UIControlEventTouchUpInside];
  2173. UILongPressGestureRecognizer *stopLongGesture = [UILongPressGestureRecognizer new];
  2174. [stopLongGesture addTarget:self action:@selector(cancelAllTask:)];
  2175. [((CCCellMainTransfer *)cell).transferButton.stopButton addGestureRecognizer:stopLongGesture];
  2176. }
  2177. return cell;
  2178. }
  2179. - (void)setTableViewHeader
  2180. {
  2181. tableCapabilities *capabilities = [[NCManageDatabase sharedInstance] getCapabilitesWithAccount:appDelegate.activeAccount];
  2182. if (capabilities.versionMajor < k_nextcloud_version_18_0 || self.richWorkspaceText.length == 0 || self.searchController.isActive) {
  2183. [self.tableView.tableHeaderView setFrame:CGRectMake(self.tableView.tableHeaderView.frame.origin.x, self.tableView.tableHeaderView.frame.origin.y, self.tableView.frame.size.width, heightSearchBar)];
  2184. } else {
  2185. [self.viewRichWorkspace setFrame:CGRectMake(self.tableView.tableHeaderView.frame.origin.x, self.tableView.tableHeaderView.frame.origin.y, self.tableView.frame.size.width, heightRichWorkspace)];
  2186. }
  2187. [self.viewRichWorkspace loadWithRichWorkspaceText:self.richWorkspaceText];
  2188. self.searchController.searchBar.frame = CGRectMake(self.searchController.searchBar.frame.origin.x, self.searchController.searchBar.frame.origin.y, self.tableView.frame.size.width, heightSearchBar);
  2189. [self.tableView reloadData];
  2190. }
  2191. - (void)setTableViewFooter
  2192. {
  2193. UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  2194. [footerView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  2195. UILabel *footerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  2196. [footerLabel setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  2197. UIFont *appFont = [UIFont systemFontOfSize:12];
  2198. footerLabel.font = appFont;
  2199. footerLabel.textColor = [UIColor grayColor];
  2200. footerLabel.backgroundColor = [UIColor clearColor];
  2201. footerLabel.textAlignment = NSTextAlignmentCenter;
  2202. NSString *folders;
  2203. NSString *files;
  2204. NSString *footerText;
  2205. if (sectionDataSource.directories > 1) {
  2206. folders = [NSString stringWithFormat:@"%ld %@", (long)sectionDataSource.directories, NSLocalizedString(@"_folders_", nil)];
  2207. } else if (sectionDataSource.directories == 1){
  2208. folders = [NSString stringWithFormat:@"%ld %@", (long)sectionDataSource.directories, NSLocalizedString(@"_folder_", nil)];
  2209. } else {
  2210. folders = @"";
  2211. }
  2212. if (sectionDataSource.files > 1) {
  2213. files = [NSString stringWithFormat:@"%ld %@ %@", (long)sectionDataSource.files, NSLocalizedString(@"_files_", nil), [CCUtility transformedSize:sectionDataSource.totalSize]];
  2214. } else if (sectionDataSource.files == 1){
  2215. files = [NSString stringWithFormat:@"%ld %@ %@", (long)sectionDataSource.files, NSLocalizedString(@"_file_", nil), [CCUtility transformedSize:sectionDataSource.totalSize]];
  2216. } else {
  2217. files = @"";
  2218. }
  2219. if ([folders isEqualToString:@""]) {
  2220. footerText = files;
  2221. } else if ([files isEqualToString:@""]) {
  2222. footerText = folders;
  2223. } else {
  2224. footerText = [NSString stringWithFormat:@"%@, %@", folders, files];
  2225. }
  2226. footerLabel.text = footerText;
  2227. [footerView addSubview:footerLabel];
  2228. [self.tableView setTableFooterView:footerView];
  2229. }
  2230. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  2231. {
  2232. CCCellMain *cell = [tableView cellForRowAtIndexPath:indexPath];
  2233. // settiamo il record file.
  2234. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2235. if (!self.metadata)
  2236. return;
  2237. // se non può essere selezionata deseleziona
  2238. if ([cell isEditing] == NO)
  2239. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  2240. // se siamo in modalità editing impostiamo il titolo dei selezioati e usciamo subito
  2241. if (self.tableView.editing) {
  2242. [_selectedocIdsMetadatas setObject:self.metadata forKey:self.metadata.ocId];
  2243. [self setTitle];
  2244. return;
  2245. }
  2246. // se è in corso una sessione
  2247. if (self.metadata.status != k_metadataStatusNormal)
  2248. return;
  2249. // file
  2250. if (self.metadata.directory == NO) {
  2251. // se il file esiste andiamo direttamente al delegato altrimenti carichiamolo
  2252. if ([CCUtility fileProviderStorageExists:self.metadata.ocId fileNameView:self.metadata.fileNameView]) {
  2253. [[NCNetworkingMain sharedInstance] downloadFileSuccessFailure:self.metadata.fileName ocId:self.metadata.ocId serverUrl:self.metadata.serverUrl selector:selectorLoadFileView errorMessage:@"" errorCode:0];
  2254. } else {
  2255. if (_metadataFolder.e2eEncrypted && ![CCUtility isEndToEndEnabled:appDelegate.activeAccount]) {
  2256. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  2257. } else {
  2258. if (([self.metadata.typeFile isEqualToString: k_metadataTypeFile_video] || [self.metadata.typeFile isEqualToString: k_metadataTypeFile_audio]) && _metadataFolder.e2eEncrypted == NO) {
  2259. [self shouldPerformSegue:self.metadata selector:@""];
  2260. } else if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_document] && [[NCUtility sharedInstance] isDirectEditing:self.metadata] != nil) {
  2261. if (appDelegate.reachability.isReachable) {
  2262. [self shouldPerformSegue:self.metadata selector:@""];
  2263. } else {
  2264. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_go_online_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  2265. }
  2266. } else if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_document] && [[NCUtility sharedInstance] isRichDocument:self.metadata]) {
  2267. if (appDelegate.reachability.isReachable) {
  2268. [self shouldPerformSegue:self.metadata selector:@""];
  2269. } else {
  2270. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_go_online_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  2271. }
  2272. } else {
  2273. if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_image]) {
  2274. [self shouldPerformSegue:self.metadata selector:selectorLoadFileView];
  2275. }
  2276. self.metadata.session = k_download_session;
  2277. self.metadata.sessionError = @"";
  2278. self.metadata.sessionSelector = selectorLoadFileView;
  2279. self.metadata.status = k_metadataStatusWaitDownload;
  2280. // Add Metadata for Download
  2281. [[NCManageDatabase sharedInstance] addMetadata:self.metadata];
  2282. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:self.metadata.ocId action:k_action_MOD];
  2283. [appDelegate startLoadAutoDownloadUpload];
  2284. }
  2285. }
  2286. }
  2287. }
  2288. if (self.metadata.directory) {
  2289. [self performSegueDirectoryWithControlPasscode:true metadata:self.metadata blinkFileNamePath:self.blinkFileNamePath];
  2290. }
  2291. }
  2292. - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(nonnull NSIndexPath *)indexPath
  2293. {
  2294. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2295. [_selectedocIdsMetadatas removeObjectForKey:metadata.ocId];
  2296. [self setTitle];
  2297. }
  2298. - (void)didSelectAll
  2299. {
  2300. for (int i = 0; i < self.tableView.numberOfSections; i++) {
  2301. for (int j = 0; j < [self.tableView numberOfRowsInSection:i]; j++) {
  2302. NSIndexPath *indexPath = [NSIndexPath indexPathForRow:j inSection:i];
  2303. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2304. [_selectedocIdsMetadatas setObject:metadata forKey:metadata.ocId];
  2305. [self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
  2306. }
  2307. }
  2308. [self setTitle];
  2309. }
  2310. - (BOOL)indexPathIsValid:(NSIndexPath *)indexPath
  2311. {
  2312. if (!indexPath)
  2313. return NO;
  2314. NSInteger section = indexPath.section;
  2315. NSInteger row = indexPath.row;
  2316. NSInteger lastSectionIndex = [self numberOfSectionsInTableView:self.tableView] - 1;
  2317. if (section > lastSectionIndex || lastSectionIndex < 0)
  2318. return NO;
  2319. NSInteger rowCount = [self.tableView numberOfRowsInSection:indexPath.section] - 1;
  2320. if (rowCount < 0)
  2321. return NO;
  2322. return row <= rowCount;
  2323. }
  2324. #pragma --------------------------------------------------------------------------------------------
  2325. #pragma mark ===== Navigation ====
  2326. #pragma --------------------------------------------------------------------------------------------
  2327. - (void)shouldPerformSegue:(tableMetadata *)metadata selector:(NSString *)selector
  2328. {
  2329. // if background return
  2330. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return;
  2331. if (self.view.window == NO)
  2332. return;
  2333. // Collapsed ma siamo già in detail esci
  2334. if (self.splitViewController.isCollapsed) {
  2335. if (appDelegate.activeDetail.isViewLoaded && appDelegate.activeDetail.view.window) return;
  2336. }
  2337. // Metadata for push detail
  2338. self.metadataForPushDetail = metadata;
  2339. self.selectorForPushDetail = selector;
  2340. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  2341. }
  2342. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  2343. {
  2344. tableMetadata *metadata;
  2345. NSMutableArray *photoDataSource = [NSMutableArray new];
  2346. UINavigationController *navigationController = segue.destinationViewController;
  2347. NCDetailViewController *detailViewController = (NCDetailViewController *)navigationController.topViewController;
  2348. if ([sender isKindOfClass:[tableMetadata class]]) {
  2349. metadata = sender;
  2350. [photoDataSource addObject:sender];
  2351. } else {
  2352. metadata = self.metadataForPushDetail;
  2353. for (NSString *ocId in sectionDataSource.allOcId) {
  2354. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:ocId];
  2355. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  2356. [photoDataSource addObject:metadata];
  2357. }
  2358. }
  2359. detailViewController.metadata = metadata;
  2360. detailViewController.selector = self.selectorForPushDetail;
  2361. [detailViewController setTitle:metadata.fileNameView];
  2362. }
  2363. // can i go to next viewcontroller
  2364. - (void)performSegueDirectoryWithControlPasscode:(BOOL)controlPasscode metadata:(tableMetadata *)metadata blinkFileNamePath:(NSString *)blinkFileNamePath
  2365. {
  2366. NSString *nomeDir;
  2367. if (self.tableView.editing == NO) {
  2368. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:metadata.fileName];
  2369. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", metadata.account, lockServerUrl]];
  2370. // 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
  2371. if (directory.lock && [[CCUtility getBlockCode] length] && appDelegate.sessionePasscodeLock == nil && controlPasscode) {
  2372. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  2373. viewController.delegate = self;
  2374. viewController.fromType = CCBKPasscodeFromLockDirectory;
  2375. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  2376. viewController.inputViewTitlePassword = YES;
  2377. if ([CCUtility getSimplyBlockCode]) {
  2378. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  2379. viewController.passcodeInputView.maximumLength = 6;
  2380. } else {
  2381. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  2382. viewController.passcodeInputView.maximumLength = 64;
  2383. }
  2384. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  2385. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  2386. viewController.touchIDManager = touchIDManager;
  2387. viewController.title = NSLocalizedString(@"_folder_blocked_", nil);
  2388. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  2389. viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
  2390. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  2391. navigationController.modalPresentationStyle = UIModalPresentationFullScreen;
  2392. [self presentViewController:navigationController animated:YES completion:nil];
  2393. return;
  2394. }
  2395. // E2EE Check enable
  2396. if (metadata.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount] == NO) {
  2397. [[NCContentPresenter shared] messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:0];
  2398. return;
  2399. }
  2400. nomeDir = metadata.fileName;
  2401. NSString *serverUrlPush = [CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:nomeDir];
  2402. CCMain *viewController = [appDelegate.listMainVC objectForKey:serverUrlPush];
  2403. if (!viewController) {
  2404. viewController = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMain"];
  2405. viewController.serverUrl = serverUrlPush;
  2406. viewController.titleMain = metadata.fileName;
  2407. viewController.blinkFileNamePath = blinkFileNamePath;
  2408. // save self
  2409. [appDelegate.listMainVC setObject:viewController forKey:serverUrlPush];
  2410. [self.navigationController pushViewController:viewController animated:YES];
  2411. } else {
  2412. if (viewController.isViewLoaded) {
  2413. viewController.titleMain = metadata.fileName;
  2414. viewController.blinkFileNamePath = blinkFileNamePath;
  2415. // Fix : Application tried to present modally an active controller
  2416. if ([self.navigationController isBeingPresented]) {
  2417. // being presented
  2418. } else if ([self.navigationController isMovingToParentViewController]) {
  2419. // being pushed
  2420. } else {
  2421. [self.navigationController pushViewController:viewController animated:YES];
  2422. }
  2423. }
  2424. }
  2425. }
  2426. }
  2427. @end