CCMain.m 198 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122
  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 <JDStatusBarNotification/JDStatusBarNotification.h>
  24. #import "CCMain.h"
  25. #import "AppDelegate.h"
  26. #import "CCSynchronize.h"
  27. #import "OCActivity.h"
  28. #import "OCNotifications.h"
  29. #import "OCNotificationsAction.h"
  30. #import "OCFrameworkConstants.h"
  31. #import "OCCapabilities.h"
  32. #import "NCAutoUpload.h"
  33. #import "NCBridgeSwift.h"
  34. #import "NCNetworkingEndToEnd.h"
  35. #import "PKDownloadButton.h"
  36. @interface CCMain () <UITextViewDelegate, createFormUploadAssetsDelegate, MGSwipeTableCellDelegate, CCLoginDelegate, NCLoginWebDelegate, NCSelectDelegate, UITextFieldDelegate>
  37. {
  38. AppDelegate *appDelegate;
  39. BOOL _isRoot;
  40. BOOL _isViewDidLoad;
  41. NSMutableDictionary *_selectedocIdsMetadatas;
  42. NSUInteger _numSelectedocIdsMetadatas;
  43. UIImageView *_imageTitleHome;
  44. NSUInteger _failedAttempts;
  45. NSDate *_lockUntilDate;
  46. UIRefreshControl *refreshControl;
  47. CCHud *_hud;
  48. // Datasource
  49. CCSectionDataSourceMetadata *sectionDataSource;
  50. NSDate *_dateReadDataSource;
  51. // Search
  52. BOOL _isSearchMode;
  53. NSString *_searchFileName;
  54. NSMutableArray *_searchResultMetadatas;
  55. NSString *_noFilesSearchTitle;
  56. NSString *_noFilesSearchDescription;
  57. NSTimer *_timerWaitInput;
  58. // Automatic Upload Folder
  59. NSString *_autoUploadFileName;
  60. NSString *_autoUploadDirectory;
  61. // Folder
  62. BOOL _loadingFolder;
  63. tableMetadata *_metadataFolder;
  64. }
  65. @end
  66. @implementation CCMain
  67. #pragma --------------------------------------------------------------------------------------------
  68. #pragma mark ===== Init =====
  69. #pragma --------------------------------------------------------------------------------------------
  70. - (id)initWithCoder:(NSCoder *)aDecoder
  71. {
  72. if (self = [super initWithCoder:aDecoder]) {
  73. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  74. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(initializeMain:) name:@"initializeMain" object:nil];
  75. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(clearDateReadDataSource:) name:@"clearDateReadDataSource" object:nil];
  76. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(setTitle) name:@"setTitleMain" object:nil];
  77. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:@"NotificationProgressTask" object:nil];
  78. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:@"changeTheming" object:nil];
  79. // Active Main
  80. appDelegate.activeMain = self;
  81. }
  82. return self;
  83. }
  84. #pragma --------------------------------------------------------------------------------------------
  85. #pragma mark ===== View =====
  86. #pragma --------------------------------------------------------------------------------------------
  87. - (void)viewDidLoad
  88. {
  89. [super viewDidLoad];
  90. // init object
  91. self.metadata = [tableMetadata new];
  92. _hud = [[CCHud alloc] initWithView:[[[UIApplication sharedApplication] delegate] window]];
  93. _selectedocIdsMetadatas = [NSMutableDictionary new];
  94. _isViewDidLoad = YES;
  95. _searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
  96. _searchResultMetadatas = [NSMutableArray new];
  97. _searchFileName = @"";
  98. _noFilesSearchTitle = @"";
  99. _noFilesSearchDescription = @"";
  100. _cellFavouriteImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] width:50 height:50 color:[UIColor whiteColor]];
  101. _cellTrashImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"trash"] width:50 height:50 color:[UIColor whiteColor]];
  102. // delegate
  103. self.tableView.delegate = self;
  104. self.tableView.tableFooterView = [UIView new];
  105. self.tableView.emptyDataSetDelegate = self;
  106. self.tableView.emptyDataSetSource = self;
  107. self.searchController.delegate = self;
  108. self.searchController.searchBar.delegate = self;
  109. // Register cell
  110. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellMain" bundle:nil] forCellReuseIdentifier:@"CellMain"];
  111. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellMainTransfer" bundle:nil] forCellReuseIdentifier:@"CellMainTransfer"];
  112. // long press recognizer TableView
  113. UILongPressGestureRecognizer* longPressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(onLongPressTableView:)];
  114. [self.tableView addGestureRecognizer:longPressRecognizer];
  115. // Pull-to-Refresh
  116. [self createRefreshControl];
  117. // Register for 3D Touch Previewing if available
  118. if ([self.traitCollection respondsToSelector:@selector(forceTouchCapability)] && (self.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable)) {
  119. [self registerForPreviewingWithDelegate:self sourceView:self.view];
  120. }
  121. // reMenu Background
  122. _reMenuBackgroundView = [UIView new];
  123. _reMenuBackgroundView.backgroundColor = [UIColor colorWithWhite:0 alpha:0.5];
  124. // if this is not Main (the Main uses inizializeMain)
  125. if (_isRoot == NO && appDelegate.activeAccount.length > 0) {
  126. // Read (File) Folder
  127. [self readFileReloadFolder];
  128. }
  129. // Title
  130. [self setTitle];
  131. }
  132. - (void)viewWillAppear:(BOOL)animated
  133. {
  134. [super viewWillAppear:animated];
  135. // test
  136. if (appDelegate.activeAccount.length == 0)
  137. return;
  138. // Color
  139. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  140. [appDelegate aspectTabBar:self.tabBarController.tabBar hidden:NO];
  141. self.tableView.backgroundColor = [NCBrandColor sharedInstance].backgroundView;
  142. self.tableView.separatorColor = [NCBrandColor sharedInstance].separator;
  143. // Plus Button
  144. [appDelegate plusButtonVisibile:true];
  145. if (_isSelectedMode)
  146. [self setUINavigationBarSelected];
  147. else
  148. [self setUINavigationBarDefault];
  149. // If not editing mode remove _selectedocIds
  150. if (!self.tableView.editing)
  151. [_selectedocIdsMetadatas removeAllObjects];
  152. // Search Bar
  153. if ([CCUtility isFolderEncrypted:self.serverUrl account:appDelegate.activeAccount]) {
  154. [self searchEnabled:NO];
  155. } else {
  156. [self searchEnabled:YES];
  157. }
  158. // Get Shares
  159. appDelegate.shares = [[NCManageDatabase sharedInstance] getTableSharesWithAccount:appDelegate.activeAccount serverUrl:self.serverUrl];
  160. // Query data source
  161. if (!_isSearchMode) {
  162. [self queryDatasourceWithReloadData:YES serverUrl:self.serverUrl];
  163. }
  164. }
  165. - (void)viewDidAppear:(BOOL)animated
  166. {
  167. [super viewDidAppear:animated];
  168. // Active Main
  169. appDelegate.activeMain = self;
  170. // Test viewDidLoad
  171. if (_isViewDidLoad) {
  172. _isViewDidLoad = NO;
  173. } else {
  174. if (appDelegate.activeAccount.length > 0 && [_selectedocIdsMetadatas count] == 0) {
  175. // Read (file) Folder
  176. [self readFileReloadFolder];
  177. }
  178. }
  179. // Title
  180. [self setTitle];
  181. }
  182. - (void)viewWillDisappear:(BOOL)animated
  183. {
  184. [super viewWillDisappear:animated];
  185. [self closeAllMenu];
  186. }
  187. - (void)didReceiveMemoryWarning
  188. {
  189. [super didReceiveMemoryWarning];
  190. // Dispose of any resources that can be recreated.
  191. }
  192. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  193. {
  194. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  195. [self closeAllMenu];
  196. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  197. 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))) {
  198. // Portrait
  199. } else {
  200. // Landscape
  201. }
  202. [self.tableView reloadData];
  203. }];
  204. }
  205. - (BOOL)prefersStatusBarHidden
  206. {
  207. return NO;
  208. }
  209. // detect scroll for remove keyboard in search mode
  210. - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
  211. {
  212. if (_isSearchMode && scrollView == self.tableView) {
  213. [self.searchController.searchBar endEditing:YES];
  214. }
  215. }
  216. - (void)changeTheming
  217. {
  218. if (self.isViewLoaded && self.view.window)
  219. [appDelegate changeTheming:self];
  220. // Refresh control
  221. refreshControl.tintColor = [NCBrandColor sharedInstance].brandText;
  222. refreshControl.backgroundColor = [NCBrandColor sharedInstance].brand;
  223. // color searchbar
  224. self.searchController.searchBar.barTintColor = [NCBrandColor sharedInstance].brand;
  225. self.searchController.searchBar.backgroundColor = [NCBrandColor sharedInstance].brand;
  226. // color searchbbar button text (cancel)
  227. UIButton *searchButton = self.searchController.searchBar.subviews.firstObject.subviews.lastObject;
  228. if (searchButton && [searchButton isKindOfClass:[UIButton class]]) {
  229. [searchButton setTitleColor:[NCBrandColor sharedInstance].brandText forState:UIControlStateNormal];
  230. }
  231. // Title
  232. [self setTitle];
  233. // Reload Table View
  234. [self tableViewReloadData];
  235. }
  236. #pragma --------------------------------------------------------------------------------------------
  237. #pragma mark ===== Initialization =====
  238. #pragma --------------------------------------------------------------------------------------------
  239. //
  240. // Callers :
  241. //
  242. // loginSuccess (delagate)
  243. // ChangeDefaultAccount (delegate)
  244. // Split : inizialize
  245. // Settings Advanced : removeAllFiles
  246. //
  247. - (void)initializeMain:(NSNotification *)notification
  248. {
  249. _dateReadDataSource = nil;
  250. // test
  251. if (appDelegate.activeAccount.length == 0)
  252. return;
  253. if ([appDelegate.listMainVC count] == 0 || _isRoot) {
  254. // This is Root home main add list
  255. appDelegate.homeMain = self;
  256. _isRoot = YES;
  257. _serverUrl = [CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl];
  258. [appDelegate.listMainVC setObject:self forKey:_serverUrl];
  259. // go Home
  260. [self.navigationController popToRootViewControllerAnimated:NO];
  261. // Remove search mode
  262. [self cancelSearchBar];
  263. // Clear error certificate
  264. [CCUtility setCertificateError:appDelegate.activeAccount error:NO];
  265. // Setting Theming
  266. [appDelegate settingThemingColorBrand];
  267. // Detail
  268. // If AVPlayer in play -> Stop
  269. if (appDelegate.player != nil && appDelegate.player.rate != 0) {
  270. [appDelegate.player pause];
  271. }
  272. for (UIView *view in [appDelegate.activeDetail.view subviews]) {
  273. if ([view isKindOfClass:[UIImageView class]] == NO) { // View Image Nextcloud
  274. [view removeFromSuperview];
  275. }
  276. }
  277. appDelegate.activeDetail.title = nil;
  278. // remove all Notification Messages
  279. [appDelegate.listOfNotifications removeAllObjects];
  280. // Not Photos Video in library ? then align and Init Auto Upload
  281. NSArray *recordsPhotoLibrary = [[NCManageDatabase sharedInstance] getPhotoLibraryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", appDelegate.activeAccount]];
  282. if ([recordsPhotoLibrary count] == 0) {
  283. [[NCAutoUpload sharedInstance] alignPhotoLibrary];
  284. }
  285. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  286. NSLog(@"[LOG] Request Service Server Nextcloud");
  287. [[NCService sharedInstance] startRequestServicesServer];
  288. // Clear datasorce
  289. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:_serverUrl ocId:nil action:k_action_NULL];
  290. // Read this folder
  291. [self readFileReloadFolder];
  292. } else {
  293. // reload datasource
  294. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:_serverUrl ocId:nil action:k_action_NULL];
  295. }
  296. // Registeration push notification
  297. [appDelegate pushNotification];
  298. // Registeration domain File Provider
  299. if (@available(iOS 11, *) ) {
  300. [FileProviderDomain.sharedInstance registerDomain];
  301. }
  302. }
  303. #pragma --------------------------------------------------------------------------------------------
  304. #pragma mark ==== DZNEmptyDataSetSource ====
  305. #pragma --------------------------------------------------------------------------------------------
  306. - (BOOL)emptyDataSetShouldAllowScroll:(UIScrollView *)scrollView
  307. {
  308. if (_loadingFolder)
  309. return NO;
  310. else
  311. return YES;
  312. }
  313. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  314. {
  315. return [NCBrandColor sharedInstance].backgroundView;
  316. }
  317. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  318. {
  319. if (_isSearchMode)
  320. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"search"] width:300 height:300 color:[NCBrandColor sharedInstance].brandElement];
  321. else
  322. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder"] width:300 height:300 color:[NCBrandColor sharedInstance].brandElement];
  323. }
  324. - (UIView *)customViewForEmptyDataSet:(UIScrollView *)scrollView
  325. {
  326. if (_loadingFolder && refreshControl.isRefreshing == NO) {
  327. UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
  328. activityView.transform = CGAffineTransformMakeScale(1.5f, 1.5f);
  329. activityView.color = [NCBrandColor sharedInstance].brandElement;
  330. [activityView startAnimating];
  331. return activityView;
  332. }
  333. return nil;
  334. }
  335. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  336. {
  337. NSString *text;
  338. if (_isSearchMode) {
  339. text = _noFilesSearchTitle;
  340. } else {
  341. text = [NSString stringWithFormat:@"%@", NSLocalizedString(@"_files_no_files_", nil)];
  342. }
  343. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:[UIColor lightGrayColor]};
  344. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  345. }
  346. - (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
  347. {
  348. NSString *text;
  349. if (_isSearchMode) {
  350. text = _noFilesSearchDescription;
  351. } else {
  352. text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_no_file_pull_down_", nil)];
  353. }
  354. NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
  355. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  356. paragraph.alignment = NSTextAlignmentCenter;
  357. NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0], NSForegroundColorAttributeName: [UIColor lightGrayColor], NSParagraphStyleAttributeName: paragraph};
  358. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  359. }
  360. #pragma --------------------------------------------------------------------------------------------
  361. #pragma mark ===== Text Field =====
  362. #pragma --------------------------------------------------------------------------------------------
  363. - (void)minCharTextFieldDidChange:(UITextField *)sender
  364. {
  365. UIAlertController *alertController = (UIAlertController *)self.presentedViewController;
  366. if (alertController)
  367. {
  368. UITextField *fileName = alertController.textFields.firstObject;
  369. UIAlertAction *okAction = alertController.actions.lastObject;
  370. okAction.enabled = fileName.text.length > 0;
  371. }
  372. }
  373. - (void)textFieldDidBeginEditing:(UITextField *)textField
  374. {
  375. [CCUtility selectFileNameFrom:textField];
  376. }
  377. #pragma --------------------------------------------------------------------------------------------
  378. #pragma mark ===== Graphic Window =====
  379. #pragma --------------------------------------------------------------------------------------------
  380. - (void)createRefreshControl
  381. {
  382. refreshControl = [UIRefreshControl new];
  383. if (@available(iOS 10, *)) {
  384. _tableView.refreshControl = refreshControl;
  385. } else {
  386. [_tableView addSubview:refreshControl];
  387. }
  388. refreshControl.tintColor = [NCBrandColor sharedInstance].brandText;
  389. refreshControl.backgroundColor = [NCBrandColor sharedInstance].brand;
  390. [refreshControl addTarget:self action:@selector(refreshControlTarget) forControlEvents:UIControlEventValueChanged];
  391. }
  392. - (void)deleteRefreshControl
  393. {
  394. [refreshControl endRefreshing];
  395. for (UIView *subview in [_tableView subviews]) {
  396. if (subview == refreshControl)
  397. [subview removeFromSuperview];
  398. }
  399. if (@available(iOS 10, *)) {
  400. self.tableView.refreshControl = nil;
  401. }
  402. refreshControl = nil;
  403. }
  404. - (void)refreshControlTarget
  405. {
  406. [self readFolder:_serverUrl];
  407. // Actuate `Peek` feedback (weak boom)
  408. AudioServicesPlaySystemSound(1519);
  409. }
  410. - (void)setTitle
  411. {
  412. // Color text self.navigationItem.title
  413. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  414. if (_isSelectedMode) {
  415. NSUInteger totali = [sectionDataSource.allRecordsDataSource count];
  416. NSUInteger selezionati = [[self.tableView indexPathsForSelectedRows] count];
  417. self.navigationItem.titleView = nil;
  418. self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)selezionati, (unsigned long)totali];
  419. } else {
  420. // we are in home : LOGO BRAND
  421. if ([_serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]]) {
  422. self.navigationItem.title = nil;
  423. UIImage *image = [self getImageLogoHome];
  424. _imageTitleHome = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 60, 30)]; // IMAGE = 120 x 60
  425. _imageTitleHome.contentMode = UIViewContentModeScaleAspectFill;
  426. _imageTitleHome.translatesAutoresizingMaskIntoConstraints = NO;
  427. _imageTitleHome.image = image;
  428. // backbutton
  429. self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal] style:UIBarButtonItemStylePlain target:nil action:nil];
  430. [_imageTitleHome setUserInteractionEnabled:YES];
  431. UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(menuLogo:)];
  432. [singleTap setNumberOfTapsRequired:1];
  433. [_imageTitleHome addGestureRecognizer:singleTap];
  434. self.navigationItem.titleView = _imageTitleHome;
  435. } else {
  436. self.navigationItem.title = _titleMain;
  437. self.navigationItem.titleView = nil;
  438. }
  439. }
  440. }
  441. - (UIImage *)getImageLogoHome
  442. {
  443. if ([NCBrandOptions sharedInstance].use_themingLogo) {
  444. UIImage *imageThemingLogo = [UIImage imageNamed:@"themingLogo"];
  445. NSInteger multiplier = 2;
  446. NSString *fileNameThemingLogo = [NSString stringWithFormat:@"%@/%@-themingLogo.png", [CCUtility getDirectoryUserData], [CCUtility getStringUser:appDelegate.activeUser activeUrl:appDelegate.activeUrl]];
  447. UIImage *image = [UIImage imageWithContentsOfFile:fileNameThemingLogo];
  448. if (image != nil) {
  449. imageThemingLogo = image;
  450. multiplier = 1;
  451. }
  452. if ([appDelegate.reachability isReachable] == NO) {
  453. return [CCGraphics changeThemingColorImage:imageThemingLogo multiplier:multiplier color:[NCBrandColor sharedInstance].icon];
  454. } else {
  455. return [CCGraphics changeThemingColorImage:imageThemingLogo multiplier:multiplier color:[NCBrandColor sharedInstance].brandText];
  456. }
  457. } else {
  458. if ([appDelegate.reachability isReachable] == NO) {
  459. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"themingLogo"] multiplier:2 color:[NCBrandColor sharedInstance].icon];
  460. } else {
  461. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"themingLogo"] multiplier:2 color:[NCBrandColor sharedInstance].brandText];
  462. }
  463. }
  464. }
  465. - (void)setUINavigationBarDefault
  466. {
  467. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  468. UIBarButtonItem *buttonMore, *buttonNotification;
  469. // =
  470. buttonMore = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"navigationControllerMenu"] style:UIBarButtonItemStylePlain target:self action:@selector(toggleReMainMenu)];
  471. buttonMore.enabled = true;
  472. // <
  473. self.navigationController.navigationBar.hidden = NO;
  474. // Notification
  475. if ([appDelegate.listOfNotifications count] > 0) {
  476. buttonNotification = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"notification"] style:UIBarButtonItemStylePlain target:self action:@selector(viewNotification)];
  477. buttonNotification.tintColor = [NCBrandColor sharedInstance].brandText;
  478. buttonNotification.enabled = true;
  479. }
  480. if (buttonNotification)
  481. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonMore, buttonNotification, nil];
  482. else
  483. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonMore, nil];
  484. self.navigationItem.leftBarButtonItem = nil;
  485. }
  486. - (void)setUINavigationBarSelected
  487. {
  488. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  489. UIImage *icon = [UIImage imageNamed:@"navigationControllerMenu"];
  490. UIBarButtonItem *buttonMore = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(toggleReSelectMenu)];
  491. UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(cancelSelect)];
  492. self.navigationItem.leftBarButtonItem = leftButton;
  493. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonMore, nil];
  494. }
  495. - (void)cancelSelect
  496. {
  497. [self tableViewSelect:NO];
  498. [appDelegate.reSelectMenu close];
  499. }
  500. - (void)closeAllMenu
  501. {
  502. // close Menu
  503. [appDelegate.reSelectMenu close];
  504. [appDelegate.reMainMenu close];
  505. // Close Menu Logo
  506. [CCMenuAccount dismissMenu];
  507. }
  508. #pragma --------------------------------------------------------------------------------------------
  509. #pragma mark ===== Document Picker =====
  510. #pragma --------------------------------------------------------------------------------------------
  511. - (void)documentMenuWasCancelled:(UIDocumentMenuViewController *)documentMenu
  512. {
  513. NSLog(@"[LOG] Cancelled");
  514. }
  515. - (void)documentPickerWasCancelled:(UIDocumentPickerViewController *)controller
  516. {
  517. NSLog(@"[LOG] Cancelled");
  518. }
  519. - (void)documentMenu:(UIDocumentMenuViewController *)documentMenu didPickDocumentPicker:(UIDocumentPickerViewController *)documentPicker
  520. {
  521. documentPicker.delegate = self;
  522. [self presentViewController:documentPicker animated:YES completion:nil];
  523. }
  524. - (void)documentPicker:(UIDocumentPickerViewController *)controller didPickDocumentAtURL:(NSURL *)url
  525. {
  526. if (controller.documentPickerMode == UIDocumentPickerModeImport) {
  527. NSFileCoordinator *coordinator = [[NSFileCoordinator alloc] initWithFilePresenter:nil];
  528. __block NSError *error;
  529. [coordinator coordinateReadingItemAtURL:url options:NSFileCoordinatorReadingForUploading error:&error byAccessor:^(NSURL *newURL) {
  530. NSString *serverUrl = [appDelegate getTabBarControllerActiveServerUrl];
  531. NSString *fileName = [[NCUtility sharedInstance] createFileName:[url lastPathComponent] serverUrl:serverUrl account:appDelegate.activeAccount];
  532. NSString *ocId = [CCUtility createMetadataIDFromAccount:appDelegate.activeAccount serverUrl:serverUrl fileNameView:fileName directory:false];
  533. NSData *data = [NSData dataWithContentsOfURL:newURL];
  534. if (data && error == nil) {
  535. if ([data writeToFile:[CCUtility getDirectoryProviderStorageOcId:ocId fileNameView:fileName] options:NSDataWritingAtomic error:&error]) {
  536. tableMetadata *metadataForUpload = [tableMetadata new];
  537. metadataForUpload.account = appDelegate.activeAccount;
  538. metadataForUpload.date = [NSDate new];
  539. metadataForUpload.ocId = ocId;
  540. metadataForUpload.fileName = fileName;
  541. metadataForUpload.fileNameView = fileName;
  542. metadataForUpload.serverUrl = serverUrl;
  543. metadataForUpload.session = k_upload_session;
  544. metadataForUpload.sessionSelector = selectorUploadFile;
  545. metadataForUpload.size = data.length;
  546. metadataForUpload.status = k_metadataStatusWaitUpload;
  547. // Check il file already exists
  548. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileNameView == %@", appDelegate.activeAccount, serverUrl, fileName]];
  549. if (metadata) {
  550. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:fileName message:NSLocalizedString(@"_file_already_exists_", nil) preferredStyle:UIAlertControllerStyleAlert];
  551. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  552. // NO OVERWITE
  553. }];
  554. UIAlertAction *overwriteAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_overwrite_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  555. // Remove record metadata
  556. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  557. // Add Medtadata for upload
  558. (void)[[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  559. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  560. [appDelegate startLoadAutoDownloadUpload];
  561. }];
  562. [alertController addAction:cancelAction];
  563. [alertController addAction:overwriteAction];
  564. UIWindow *alertWindow = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
  565. alertWindow.rootViewController = [[UIViewController alloc]init];
  566. alertWindow.windowLevel = UIWindowLevelAlert + 1;
  567. [alertWindow makeKeyAndVisible];
  568. [alertWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
  569. } else {
  570. // Add Medtadata for upload
  571. (void)[[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  572. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  573. [appDelegate startLoadAutoDownloadUpload];
  574. }
  575. } else {
  576. [appDelegate messageNotification:@"_error_" description:error.description visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  577. }
  578. } else {
  579. [appDelegate messageNotification:@"_error_" description:@"_read_file_error_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  580. }
  581. }];
  582. }
  583. }
  584. - (void)openImportDocumentPicker
  585. {
  586. UIDocumentMenuViewController *documentProviderMenu = [[UIDocumentMenuViewController alloc] initWithDocumentTypes:@[@"public.data"] inMode:UIDocumentPickerModeImport];
  587. documentProviderMenu.modalPresentationStyle = UIModalPresentationFormSheet;
  588. documentProviderMenu.popoverPresentationController.sourceView = self.tabBarController.tabBar;
  589. documentProviderMenu.popoverPresentationController.sourceRect = self.tabBarController.tabBar.bounds;
  590. documentProviderMenu.delegate = self;
  591. [self presentViewController:documentProviderMenu animated:YES completion:nil];
  592. }
  593. #pragma --------------------------------------------------------------------------------------------
  594. #pragma mark ===== Assets Picker =====
  595. #pragma --------------------------------------------------------------------------------------------
  596. -(void)dismissFormUploadAssets
  597. {
  598. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  599. }
  600. - (void)openAssetsPickerController
  601. {
  602. NCPhotosPickerViewController *viewController = [[NCPhotosPickerViewController alloc] init:self];
  603. [viewController openPhotosPickerViewControllerWithPhAssets:^(NSArray<PHAsset *> * _Nonnull assets) {
  604. if (assets.count > 0) {
  605. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  606. NSString *serverUrl = [appDelegate getTabBarControllerActiveServerUrl];
  607. NCCreateFormUploadAssets *form = [[NCCreateFormUploadAssets alloc] initWithServerUrl:serverUrl assets:(NSMutableArray *)assets cryptated:NO session:k_upload_session delegate:self];
  608. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:form];
  609. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  610. [self presentViewController:navigationController animated:YES completion:nil];
  611. });
  612. }
  613. }];
  614. }
  615. #pragma --------------------------------------------------------------------------------------------
  616. #pragma mark ===== Save selected File =====
  617. #pragma --------------------------------------------------------------------------------------------
  618. - (void)saveToPhotoAlbum:(tableMetadata *)metadata
  619. {
  620. NSString *fileNamePath = [CCUtility getDirectoryProviderStorageOcId:metadata.ocId fileNameView:metadata.fileNameView];
  621. PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus];
  622. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] && status == PHAuthorizationStatusAuthorized) {
  623. UIImage *image = [UIImage imageWithContentsOfFile:fileNamePath];
  624. if (image)
  625. UIImageWriteToSavedPhotosAlbum(image, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  626. else
  627. [appDelegate messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  628. }
  629. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video] && status == PHAuthorizationStatusAuthorized) {
  630. if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(fileNamePath)) {
  631. UISaveVideoAtPathToSavedPhotosAlbum(fileNamePath, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  632. } else {
  633. [appDelegate messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  634. }
  635. }
  636. if (status != PHAuthorizationStatusAuthorized) {
  637. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_access_photo_not_enabled_", nil) message:NSLocalizedString(@"_access_photo_not_enabled_msg_", nil) preferredStyle:UIAlertControllerStyleAlert];
  638. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  639. [alertController addAction:okAction];
  640. [self presentViewController:alertController animated:YES completion:nil];
  641. }
  642. }
  643. - (void)saveSelectedFilesSelector:(NSString *)path didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
  644. {
  645. if (error)
  646. [appDelegate messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  647. else
  648. [appDelegate messageNotification:@"_save_selected_files_" description:@"_file_saved_cameraroll_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess errorCode:error.code];
  649. }
  650. - (void)saveSelectedFiles
  651. {
  652. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  653. return;
  654. NSLog(@"[LOG] Start download selected files ...");
  655. [_hud visibleHudTitle:@"" mode:MBProgressHUDModeIndeterminate color:nil];
  656. NSArray *metadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  657. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.01 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  658. for (tableMetadata *metadata in metadatas) {
  659. if (metadata.directory == NO && ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])) {
  660. metadata.session = k_download_session;
  661. metadata.sessionError = @"";
  662. metadata.sessionSelector = selectorSave;
  663. metadata.status = k_metadataStatusWaitDownload;
  664. // Add Metadata for Download
  665. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  666. [appDelegate startLoadAutoDownloadUpload];
  667. }
  668. }
  669. [_hud hideHud];
  670. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  671. });
  672. [self tableViewSelect:NO];
  673. }
  674. #pragma --------------------------------------------------------------------------------------------
  675. #pragma mark ==== View Notification ====
  676. #pragma --------------------------------------------------------------------------------------------
  677. - (void)viewNotification
  678. {
  679. if ([appDelegate.listOfNotifications count] > 0) {
  680. CCNotification *notificationVC = [[UIStoryboard storyboardWithName:@"CCNotification" bundle:nil] instantiateViewControllerWithIdentifier:@"CCNotification"];
  681. [notificationVC setModalPresentationStyle:UIModalPresentationFormSheet];
  682. [self presentViewController:notificationVC animated:YES completion:nil];
  683. }
  684. }
  685. #pragma --------------------------------------------------------------------------------------------
  686. #pragma mark === Delegate Login ===
  687. #pragma --------------------------------------------------------------------------------------------
  688. - (void)loginSuccess:(NSInteger)loginType
  689. {
  690. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"initializeMain" object:nil userInfo:nil];
  691. }
  692. #pragma mark -
  693. #pragma --------------------------------------------------------------------------------------------
  694. #pragma mark ===== Peek & Pop =====
  695. #pragma --------------------------------------------------------------------------------------------
  696. - (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location
  697. {
  698. CGPoint convertedLocation = [self.view convertPoint:location toView:self.tableView];
  699. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:convertedLocation];
  700. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  701. CCCellMain *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  702. if (cell) {
  703. previewingContext.sourceRect = cell.frame;
  704. CCPeekPop *viewController = [[UIStoryboard storyboardWithName:@"CCPeekPop" bundle:nil] instantiateViewControllerWithIdentifier:@"PeekPopImagePreview"];
  705. viewController.metadata = metadata;
  706. viewController.imageFile = cell.file.image;
  707. viewController.showOpenIn = true;
  708. viewController.showShare = true;
  709. return viewController;
  710. }
  711. return nil;
  712. }
  713. - (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit
  714. {
  715. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:previewingContext.sourceRect.origin];
  716. [self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
  717. }
  718. #pragma --------------------------------------------------------------------------------------------
  719. #pragma mark ==== Download ====
  720. #pragma --------------------------------------------------------------------------------------------
  721. - (void)downloadSelectedFilesFolders
  722. {
  723. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  724. return;
  725. NSLog(@"[LOG] Start download selected ...");
  726. [_hud visibleHudTitle:NSLocalizedString(@"_downloading_progress_", nil) mode:MBProgressHUDModeIndeterminate color:nil];
  727. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  728. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  729. for (tableMetadata *metadata in selectedMetadatas) {
  730. if (metadata.directory) {
  731. [[CCSynchronize sharedSynchronize] readFolder:[CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:metadata.fileName] selector:selectorReadFolderWithDownload account:appDelegate.activeAccount];
  732. } else {
  733. [[CCSynchronize sharedSynchronize] readFile:metadata.ocId fileName:metadata.fileName serverUrl:metadata.serverUrl selector:selectorReadFileWithDownload account:appDelegate.activeAccount];
  734. }
  735. }
  736. [_hud hideHud];
  737. });
  738. [self tableViewSelect:NO];
  739. }
  740. #pragma --------------------------------------------------------------------------------------------
  741. #pragma mark ===== Upload new Photos/Videos =====
  742. #pragma --------------------------------------------------------------------------------------------
  743. //
  744. // This procedure with performSelectorOnMainThread it's necessary after (Bridge) for use the function "Sync" in OCNetworking
  745. //
  746. - (void)uploadFileAsset:(NSMutableArray *)assets serverUrl:(NSString *)serverUrl useSubFolder:(BOOL)useSubFolder session:(NSString *)session
  747. {
  748. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  749. NSString *autoUploadPath = [[NCManageDatabase sharedInstance] getAccountAutoUploadPath:appDelegate.activeUrl];
  750. // if request create the folder for Auto Upload & the subfolders
  751. if ([autoUploadPath isEqualToString:serverUrl])
  752. if (![[NCAutoUpload sharedInstance] createAutoUploadFolderWithSubFolder:useSubFolder assets:(PHFetchResult *)assets selector:selectorUploadFile])
  753. return;
  754. dispatch_async(dispatch_get_main_queue(), ^{
  755. [self uploadFileAsset:assets serverUrl:serverUrl autoUploadPath:autoUploadPath useSubFolder:useSubFolder session:session];
  756. });
  757. });
  758. }
  759. - (void)uploadFileAsset:(NSArray *)assets serverUrl:(NSString *)serverUrl autoUploadPath:(NSString *)autoUploadPath useSubFolder:(BOOL)useSubFolder session:(NSString *)session
  760. {
  761. for (PHAsset *asset in assets) {
  762. tableMetadata *metadata;
  763. NSString *fileName = [CCUtility createFileName:[asset valueForKey:@"filename"] fileDate:asset.creationDate fileType:asset.mediaType keyFileName:k_keyFileNameMask keyFileNameType:k_keyFileNameType keyFileNameOriginal:k_keyFileNameOriginal];
  764. NSDate *assetDate = asset.creationDate;
  765. NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
  766. // Create serverUrl if use sub folder
  767. if (useSubFolder) {
  768. [formatter setDateFormat:@"yyyy"];
  769. NSString *yearString = [formatter stringFromDate:assetDate];
  770. [formatter setDateFormat:@"MM"];
  771. NSString *monthString = [formatter stringFromDate:assetDate];
  772. serverUrl = [NSString stringWithFormat:@"%@/%@/%@", autoUploadPath, yearString, monthString];
  773. }
  774. // Check if is in upload
  775. NSArray *isRecordInSessions = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileName == %@ AND session != ''", appDelegate.activeAccount, serverUrl, fileName] sorted:nil ascending:NO];
  776. if ([isRecordInSessions count] > 0)
  777. continue;
  778. // Prepare record metadata
  779. tableMetadata *metadataForUpload = [tableMetadata new];
  780. metadataForUpload.account = appDelegate.activeAccount;
  781. metadataForUpload.assetLocalIdentifier = asset.localIdentifier;
  782. metadataForUpload.date = [NSDate new];
  783. metadataForUpload.ocId = [CCUtility createMetadataIDFromAccount:appDelegate.activeAccount serverUrl:serverUrl fileNameView:fileName directory:false];
  784. metadataForUpload.fileName = fileName;
  785. metadataForUpload.fileNameView = fileName;
  786. metadataForUpload.serverUrl = serverUrl;
  787. metadataForUpload.session = session;
  788. metadataForUpload.sessionSelector = selectorUploadFile;
  789. metadataForUpload.size = [[NCUtility sharedInstance] getFileSizeWithAsset:asset];
  790. metadataForUpload.status = k_metadataStatusWaitUpload;
  791. NSString *fileNameExtension = [fileName pathExtension];
  792. NSString *fileNameWithoutExtension = [fileName stringByDeletingPathExtension];
  793. if ([[fileNameExtension lowercaseString] isEqualToString:@"heic"] && [CCUtility getFormatCompatibility]) {
  794. NSString *fileNameCompatibility = [fileNameWithoutExtension stringByAppendingString:@".jpg"];
  795. metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileNameView == %@", appDelegate.activeAccount, serverUrl, fileNameCompatibility]];
  796. } else {
  797. metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileNameView == %@", appDelegate.activeAccount, serverUrl, fileName]];
  798. }
  799. // Check il file already exists
  800. if (metadata) {
  801. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:fileNameWithoutExtension message:NSLocalizedString(@"_file_already_exists_", nil) preferredStyle:UIAlertControllerStyleAlert];
  802. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) { }];
  803. UIAlertAction *overwriteAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_overwrite_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  804. // Remove record metadata
  805. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  806. // Add Medtadata for upload
  807. (void)[[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  808. [appDelegate startLoadAutoDownloadUpload];
  809. }];
  810. [alertController addAction:cancelAction];
  811. [alertController addAction:overwriteAction];
  812. UIWindow *alertWindow = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
  813. alertWindow.rootViewController = [[UIViewController alloc]init];
  814. alertWindow.windowLevel = UIWindowLevelAlert + 1;
  815. [alertWindow makeKeyAndVisible];
  816. [alertWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
  817. } else {
  818. // Add Medtadata for upload
  819. (void)[[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  820. [appDelegate startLoadAutoDownloadUpload];
  821. }
  822. }
  823. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  824. }
  825. #pragma --------------------------------------------------------------------------------------------
  826. #pragma mark ==== Read File ====
  827. #pragma --------------------------------------------------------------------------------------------
  828. - (void)readFileReloadFolder
  829. {
  830. if (!_serverUrl || !appDelegate.activeAccount || appDelegate.maintenanceMode)
  831. return;
  832. // Load Datasource
  833. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.001 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  834. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  835. });
  836. [[OCNetworking sharedManager] readFileWithAccount:appDelegate.activeAccount serverUrl:_serverUrl fileName:nil completion:^(NSString *account, tableMetadata *metadata, NSString *message, NSInteger errorCode) {
  837. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount]) {
  838. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", account, metadata.serverUrl]];
  839. // Read folder: No record, Change etag or BLINK
  840. if ([sectionDataSource.allRecordsDataSource count] == 0 || [metadata.etag isEqualToString:directory.etag] == NO || self.blinkFileNamePath != nil) {
  841. [self readFolder:metadata.serverUrl];
  842. }
  843. } else if (errorCode != 0) {
  844. [appDelegate messageNotification:@"_error_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  845. } else {
  846. NSLog(@"[LOG] It has been changed user during networking process, error.");
  847. }
  848. }];
  849. }
  850. #pragma --------------------------------------------------------------------------------------------
  851. #pragma mark ==== Read Folder ====
  852. #pragma --------------------------------------------------------------------------------------------
  853. - (void)insertMetadatasWithAccount:(NSString *)account serverUrl:(NSString *)serverUrl metadataFolder:(tableMetadata *)metadataFolder metadatas:(NSArray *)metadatas
  854. {
  855. // stoprefresh
  856. [refreshControl endRefreshing];
  857. // save metadataFolder
  858. _metadataFolder = metadataFolder;
  859. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", account]];
  860. if (tableAccount == nil) {
  861. return;
  862. }
  863. if (_isSearchMode == NO) {
  864. [[NCManageDatabase sharedInstance] setDirectoryWithServerUrl:serverUrl serverUrlTo:nil etag:metadataFolder.etag ocId:metadataFolder.ocId encrypted:metadataFolder.e2eEncrypted account:account];
  865. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND (status == %d OR status == %d)", account, serverUrl, k_metadataStatusNormal, k_metadataStatusHide]];
  866. [[NCManageDatabase sharedInstance] setDateReadDirectoryWithServerUrl:serverUrl account:account];
  867. }
  868. NSArray *metadatasInDownload = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND (status == %d OR status == %d OR status == %d OR status == %d)", account, serverUrl, k_metadataStatusWaitDownload, k_metadataStatusInDownload, k_metadataStatusDownloading, k_metadataStatusDownloadError] sorted:nil ascending:NO];
  869. // insert in Database
  870. NSMutableArray *metadatasToInsertInDB = (NSMutableArray *)[[NCManageDatabase sharedInstance] addMetadatas:metadatas];
  871. // insert in Database the /
  872. if (metadataFolder != nil) {
  873. _metadataFolder = [[NCManageDatabase sharedInstance] addMetadata:metadataFolder];
  874. }
  875. // reinsert metadatas in Download
  876. if (metadatasInDownload) {
  877. (void)[[NCManageDatabase sharedInstance] addMetadatas:metadatasInDownload];
  878. }
  879. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
  880. // File is changed ??
  881. if (!_isSearchMode && metadatasToInsertInDB)
  882. [[CCSynchronize sharedSynchronize] verifyChangeMedatas:metadatasToInsertInDB serverUrl:serverUrl account:account withDownload:NO];
  883. });
  884. // Search Mode
  885. if (_isSearchMode) {
  886. // Fix managed -> Unmanaged _searchResultMetadatas
  887. if (metadatasToInsertInDB)
  888. _searchResultMetadatas = [[NSMutableArray alloc] initWithArray:metadatasToInsertInDB];
  889. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:serverUrl ocId:nil action:k_action_NULL];
  890. }
  891. // this is the same directory
  892. if ([serverUrl isEqualToString:_serverUrl] && !_isSearchMode) {
  893. // reload
  894. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:serverUrl ocId:nil action:k_action_NULL];
  895. [self tableViewReloadData];
  896. }
  897. // E2EE Is encrypted folder get metadata
  898. if (_metadataFolder.e2eEncrypted) {
  899. NSString *metadataFolderocId = metadataFolder.ocId;
  900. // Read Metadata
  901. if ([CCUtility isEndToEndEnabled:account]) {
  902. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
  903. NSString *metadata;
  904. NSError *error = [[NCNetworkingEndToEnd sharedManager] getEndToEndMetadata:&metadata ocId:metadataFolderocId user:tableAccount.user userID:tableAccount.userID password:[CCUtility getPassword:tableAccount.account] url:tableAccount.url];
  905. dispatch_async(dispatch_get_main_queue(), ^{
  906. if (error) {
  907. if (error.code != kOCErrorServerPathNotFound)
  908. [appDelegate messageNotification:@"_e2e_error_get_metadata_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  909. } else {
  910. if ([[NCEndToEndMetadata sharedInstance] decoderMetadata:metadata privateKey:[CCUtility getEndToEndPrivateKey:account] serverUrl:self.serverUrl account:account url:tableAccount.url] == false)
  911. [appDelegate messageNotification:@"_error_e2ee_" description:@"_e2e_error_decode_metadata_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  912. else
  913. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:serverUrl ocId:nil action:k_action_NULL];
  914. }
  915. });
  916. });
  917. } else {
  918. [appDelegate messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  919. }
  920. }
  921. // rewrite title
  922. [self setTitle];
  923. }
  924. - (void)readFolder:(NSString *)serverUrl
  925. {
  926. // init control
  927. if (!serverUrl || !appDelegate.activeAccount || appDelegate.maintenanceMode) {
  928. [refreshControl endRefreshing];
  929. return;
  930. }
  931. // Search Mode
  932. if (_isSearchMode) {
  933. [[NCManageDatabase sharedInstance] clearDateReadWithServerUrl:serverUrl account:appDelegate.activeAccount];
  934. _searchFileName = @""; // forced reload searchg
  935. [self updateSearchResultsForSearchController:self.searchController];
  936. return;
  937. }
  938. _loadingFolder = YES;
  939. [self tableViewReloadData];
  940. [[OCNetworking sharedManager] readFolderWithAccount:appDelegate.activeAccount serverUrl:serverUrl depth:@"1" completion:^(NSString *account, NSArray *metadatas, tableMetadata *metadataFolder, NSString *message, NSInteger errorCode) {
  941. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount]) {
  942. [self insertMetadatasWithAccount:account serverUrl:serverUrl metadataFolder:metadataFolder metadatas:metadatas];
  943. } else if (errorCode != 0) {
  944. [appDelegate messageNotification:@"_error_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  945. } else {
  946. NSLog(@"[LOG] It has been changed user during networking process, error.");
  947. }
  948. _loadingFolder = NO;
  949. }];
  950. }
  951. #pragma mark -
  952. #pragma --------------------------------------------------------------------------------------------
  953. #pragma mark ===== Search =====
  954. #pragma --------------------------------------------------------------------------------------------
  955. - (void)searchEnabled:(BOOL)enabled
  956. {
  957. if (enabled) {
  958. if (self.tableView.tableHeaderView != nil)
  959. return;
  960. self.definesPresentationContext = YES;
  961. self.searchController.searchResultsUpdater = self;
  962. self.searchController.dimsBackgroundDuringPresentation = NO;
  963. self.searchController.searchBar.translucent = NO;
  964. [self.searchController.searchBar sizeToFit];
  965. self.searchController.searchBar.delegate = self;
  966. self.searchController.searchBar.barTintColor = [NCBrandColor sharedInstance].brand;
  967. self.searchController.searchBar.backgroundColor = [NCBrandColor sharedInstance].brand;
  968. self.searchController.searchBar.backgroundImage = [UIImage new];
  969. // color searchbbar button text (cancel)
  970. UIButton *searchButton = self.searchController.searchBar.subviews.firstObject.subviews.lastObject;
  971. if (searchButton && [searchButton isKindOfClass:[UIButton class]]) {
  972. [searchButton setTitleColor:[NCBrandColor sharedInstance].brandText forState:UIControlStateNormal];
  973. }
  974. self.tableView.tableHeaderView = self.searchController.searchBar;
  975. [self.tableView setContentOffset:CGPointMake(0, self.searchController.searchBar.frame.size.height - self.tableView.contentOffset.y)];
  976. } else {
  977. self.tableView.tableHeaderView = nil;
  978. }
  979. }
  980. - (void)searchStartTimer
  981. {
  982. NSString *startDirectory = [CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl];
  983. [[OCNetworking sharedManager] searchWithAccount:appDelegate.activeAccount fileName:_searchFileName serverUrl:startDirectory contentType:nil lteDateLastModified:nil gteDateLastModified:nil depth:@"infinity" completion:^(NSString *account, NSArray *metadatas, NSString *message, NSInteger errorCode) {
  984. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount]) {
  985. #if TARGET_OS_SIMULATOR
  986. tableCapabilities *capabilities = [[NCManageDatabase sharedInstance] getCapabilitesWithAccount:account];
  987. if (capabilities.isFulltextsearchEnabled) {
  988. [[OCNetworking sharedManager] fullTextSearchWithAccount:appDelegate.activeAccount text:_searchFileName page:1 completion:^(NSString *account, NSArray *items, NSString *message, NSInteger errorCode) {
  989. NSLog(@"x");
  990. }];
  991. }
  992. #endif
  993. _searchResultMetadatas = [[NSMutableArray alloc] initWithArray:metadatas];
  994. [self insertMetadatasWithAccount:appDelegate.activeAccount serverUrl:_serverUrl metadataFolder:nil metadatas:_searchResultMetadatas];
  995. } else {
  996. if (errorCode != 0) {
  997. [appDelegate messageNotification:@"_error_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  998. } else {
  999. NSLog(@"[LOG] It has been changed user during networking process, error.");
  1000. }
  1001. _searchFileName = @"";
  1002. }
  1003. }];
  1004. _noFilesSearchTitle = @"";
  1005. _noFilesSearchDescription = NSLocalizedString(@"_search_in_progress_", nil);
  1006. [self.tableView reloadEmptyDataSet];
  1007. }
  1008. - (void)updateSearchResultsForSearchController:(UISearchController *)searchController
  1009. {
  1010. // Color text "Cancel"
  1011. [[UIBarButtonItem appearanceWhenContainedInInstancesOfClasses:@[[UISearchBar class]]] setTintColor:[NCBrandColor sharedInstance].brandText];
  1012. _isSearchMode = YES;
  1013. [self deleteRefreshControl];
  1014. NSString *fileName = [CCUtility removeForbiddenCharactersServer:searchController.searchBar.text];
  1015. if (fileName.length >= k_minCharsSearch && [fileName isEqualToString:_searchFileName] == NO) {
  1016. _searchFileName = fileName;
  1017. // First : filter
  1018. NSArray *records = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileNameView CONTAINS[cd] %@", appDelegate.activeAccount, _serverUrl, fileName] sorted:nil ascending:NO];
  1019. [_searchResultMetadatas removeAllObjects];
  1020. for (tableMetadata *record in records)
  1021. [_searchResultMetadatas addObject:record];
  1022. [self insertMetadatasWithAccount:appDelegate.activeAccount serverUrl:_serverUrl metadataFolder:nil metadatas:_searchResultMetadatas];
  1023. // Version >= 12
  1024. if ([[NCManageDatabase sharedInstance] getServerVersionWithAccount:appDelegate.activeAccount] >= 12) {
  1025. [_timerWaitInput invalidate];
  1026. _timerWaitInput = [NSTimer scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(searchStartTimer) userInfo:nil repeats:NO];
  1027. }
  1028. }
  1029. if (_searchResultMetadatas.count == 0 && fileName.length == 0) {
  1030. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1031. }
  1032. }
  1033. - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar
  1034. {
  1035. [self cancelSearchBar];
  1036. [self readFolder:_serverUrl];
  1037. }
  1038. - (void)cancelSearchBar
  1039. {
  1040. if (self.searchController.active) {
  1041. [self.searchController setActive:NO];
  1042. [self createRefreshControl];
  1043. _isSearchMode = NO;
  1044. _searchFileName = @"";
  1045. _dateReadDataSource = nil;
  1046. _searchResultMetadatas = [NSMutableArray new];
  1047. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1048. }
  1049. //[self setNeedsStatusBarAppearanceUpdate];
  1050. }
  1051. #pragma mark -
  1052. #pragma --------------------------------------------------------------------------------------------
  1053. #pragma mark ===== Delete File or Folder =====
  1054. #pragma --------------------------------------------------------------------------------------------
  1055. - (void)deleteFile
  1056. {
  1057. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  1058. return;
  1059. NSArray *metadatas;
  1060. if ([_selectedocIdsMetadatas count] > 0) {
  1061. metadatas = [_selectedocIdsMetadatas allValues];
  1062. } else {
  1063. metadatas = [[NSArray alloc] initWithObjects:self.metadata, nil];
  1064. }
  1065. // remove optimization
  1066. _dateReadDataSource = nil;
  1067. [[NCMainCommon sharedInstance ] deleteFileWithMetadatas:metadatas e2ee:_metadataFolder.e2eEncrypted serverUrl:self.serverUrl folderocId:_metadataFolder.ocId completion:^(NSInteger errorCode, NSString *message) {
  1068. // Reload
  1069. if (_isSearchMode)
  1070. [self readFolder:self.serverUrl];
  1071. else
  1072. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1073. }];
  1074. // End Select Table View
  1075. [self tableViewSelect:NO];
  1076. }
  1077. #pragma --------------------------------------------------------------------------------------------
  1078. #pragma mark ===== Rename =====
  1079. #pragma --------------------------------------------------------------------------------------------
  1080. - (void)renameFile:(NSArray *)arguments
  1081. {
  1082. tableMetadata *metadata = [arguments objectAtIndex:0];
  1083. NSString *fileName = [arguments objectAtIndex:1];
  1084. // E2EE
  1085. if (_metadataFolder.e2eEncrypted) {
  1086. // verify if exists the new fileName
  1087. if ([[NCManageDatabase sharedInstance] getE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileName == %@", appDelegate.activeAccount, self.serverUrl, fileName]]) {
  1088. [appDelegate messageNotification:@"_error_e2ee_" description:@"_file_already_exists_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  1089. return;
  1090. }
  1091. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  1092. NSError *error = [[NCNetworkingEndToEnd sharedManager] sendEndToEndMetadataOnServerUrl:self.serverUrl fileNameRename:metadata.fileName fileNameNewRename:fileName account:appDelegate.activeAccount user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl];
  1093. if (error) {
  1094. dispatch_async(dispatch_get_main_queue(), ^{
  1095. [appDelegate messageNotification:@"_error_e2ee_" description:@"_e2e_error_send_metadata_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  1096. });
  1097. } else {
  1098. [[NCManageDatabase sharedInstance] setMetadataFileNameViewWithServerUrl:metadata.serverUrl fileName:metadata.fileName newFileNameView:fileName account:appDelegate.activeAccount];
  1099. // Move file system
  1100. NSString *atPath = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorageOcId:metadata.ocId], metadata.fileNameView];
  1101. NSString *toPath = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorageOcId:metadata.ocId], fileName];
  1102. [[NSFileManager defaultManager] moveItemAtPath:atPath toPath:toPath error:nil];
  1103. [[NSFileManager defaultManager] moveItemAtPath:[CCUtility getDirectoryProviderStorageIconOcId:metadata.ocId fileNameView:metadata.fileNameView] toPath:[CCUtility getDirectoryProviderStorageIconOcId:metadata.ocId fileNameView:fileName] error:nil];
  1104. }
  1105. // Unlock
  1106. tableE2eEncryptionLock *tableLock = [[NCManageDatabase sharedInstance] getE2ETokenLockWithServerUrl:self.serverUrl];
  1107. if (tableLock != nil) {
  1108. NSError *error = [[NCNetworkingEndToEnd sharedManager] unlockEndToEndFolderEncryptedOnServerUrl:self.serverUrl ocId:_metadataFolder.ocId token:tableLock.token user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl];
  1109. if (error) {
  1110. dispatch_async(dispatch_get_main_queue(), ^{
  1111. [appDelegate messageNotification:@"_e2e_error_unlock_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  1112. });
  1113. }
  1114. }
  1115. dispatch_async(dispatch_get_main_queue(), ^{
  1116. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1117. });
  1118. });
  1119. } else {
  1120. // Plain
  1121. NSString *fileNameNew = [CCUtility removeForbiddenCharactersServer:fileName];
  1122. if ([fileName length] == 0 || [fileName isEqualToString:metadata.fileNameView]) {
  1123. return;
  1124. }
  1125. // Verify if exists the fileName TO
  1126. [[OCNetworking sharedManager] readFileWithAccount:appDelegate.activeAccount serverUrl:metadata.serverUrl fileName:fileNameNew completion:^(NSString *account, tableMetadata *metadataReadFile, NSString *message, NSInteger errorCode) {
  1127. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount]) {
  1128. UIAlertController * alert= [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_file_already_exists_", nil) preferredStyle:UIAlertControllerStyleAlert];
  1129. UIAlertAction* ok = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) { }];
  1130. [alert addAction:ok];
  1131. [self presentViewController:alert animated:YES completion:nil];
  1132. } else if (errorCode != 0) {
  1133. if (errorCode == kOCErrorServerPathNotFound) {
  1134. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@", metadata.serverUrl, metadata.fileName];
  1135. NSString *fileNameToPath = [NSString stringWithFormat:@"%@/%@", metadata.serverUrl, fileNameNew];
  1136. [[OCNetworking sharedManager] moveFileOrFolderWithAccount:appDelegate.activeAccount fileName:fileNamePath fileNameTo:fileNameToPath completion:^(NSString *account, NSString *message, NSInteger errorCode) {
  1137. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount]) {
  1138. // Rename metadata
  1139. (void) [[NCManageDatabase sharedInstance] renameMetadataWithFileNameTo:fileNameNew ocId:metadata.ocId];
  1140. if (metadata.directory) {
  1141. NSString *serverUrl = [CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:metadata.fileName];
  1142. NSString *serverUrlTo = [CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:fileNameNew];
  1143. tableDirectory *directoryTable = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", account, metadata.serverUrl]];
  1144. if (directoryTable == nil) {
  1145. [appDelegate messageNotification:@"_rename_" description:@"Internal error, ServerUrl not found" visible:true delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  1146. return;
  1147. }
  1148. [[NCManageDatabase sharedInstance] setDirectoryWithServerUrl:serverUrl serverUrlTo:serverUrlTo etag:@"" ocId:nil encrypted:directoryTable.e2eEncrypted account:appDelegate.activeAccount];
  1149. } else {
  1150. [[NCManageDatabase sharedInstance] setLocalFileWithOcId:metadata.ocId date:nil exifDate:nil exifLatitude:nil exifLongitude:nil fileName:fileNameNew etag:nil];
  1151. // Move file system
  1152. NSString *atPath = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorageOcId:metadata.ocId], metadata.fileName];
  1153. NSString *toPath = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorageOcId:metadata.ocId], fileNameNew];
  1154. [[NSFileManager defaultManager] moveItemAtPath:atPath toPath:toPath error:nil];
  1155. NSString *atPathIcon = [CCUtility getDirectoryProviderStorageIconOcId:metadata.ocId fileNameView:metadata.fileName];
  1156. NSString *toPathIcon = [CCUtility getDirectoryProviderStorageIconOcId:metadata.ocId fileNameView:fileNameNew];
  1157. [[NSFileManager defaultManager] moveItemAtPath:atPathIcon toPath:toPathIcon error:nil];
  1158. }
  1159. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:metadata.serverUrl ocId:metadata.ocId action:k_action_MOD];
  1160. } else if (errorCode != 0) {
  1161. [appDelegate messageNotification:@"_rename_" description:message visible:true delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1162. } else {
  1163. NSLog(@"[LOG] It has been changed user during networking process, error.");
  1164. }
  1165. }];
  1166. } else {
  1167. [appDelegate messageNotification:@"_error_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1168. }
  1169. } else {
  1170. NSLog(@"[LOG] It has been changed user during networking process, error.");
  1171. }
  1172. }];
  1173. }
  1174. }
  1175. #pragma --------------------------------------------------------------------------------------------
  1176. #pragma mark ===== Move =====
  1177. #pragma --------------------------------------------------------------------------------------------
  1178. - (void)moveFileOrFolderMetadata:(tableMetadata *)metadata serverUrlTo:(NSString *)serverUrlTo numFile:(NSInteger)numFile ofFile:(NSInteger)ofFile
  1179. {
  1180. [[OCNetworking sharedManager] readFileWithAccount:appDelegate.activeAccount serverUrl:serverUrlTo fileName:metadata.fileName completion:^(NSString *account, tableMetadata *metadataReadFile, NSString *message, NSInteger errorCode) {
  1181. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount]) {
  1182. UIAlertController * alert= [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_file_already_exists_", nil) preferredStyle:UIAlertControllerStyleAlert];
  1183. UIAlertAction* ok = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
  1184. }];
  1185. [alert addAction:ok];
  1186. [self presentViewController:alert animated:YES completion:nil];
  1187. // End Select Table View
  1188. [self tableViewSelect:NO];
  1189. // reload Datasource
  1190. [self readFileReloadFolder];
  1191. } else if (errorCode != 0) {
  1192. if (errorCode == kOCErrorServerPathNotFound) {
  1193. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@", metadata.serverUrl, metadata.fileName];
  1194. NSString *fileNameToPath = [NSString stringWithFormat:@"%@/%@", serverUrlTo, metadata.fileName];
  1195. [[OCNetworking sharedManager] moveFileOrFolderWithAccount:appDelegate.activeAccount fileName:fileNamePath fileNameTo:fileNameToPath completion:^(NSString *account, NSString *message, NSInteger errorCode) {
  1196. [_hud hideHud];
  1197. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount]) {
  1198. if (metadata.directory) {
  1199. [[NCManageDatabase sharedInstance] deleteDirectoryAndSubDirectoryWithServerUrl:[CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:metadata.fileName] account:account];
  1200. }
  1201. [[NCManageDatabase sharedInstance] moveMetadataWithOcId:metadata.ocId serverUrlTo:serverUrlTo];
  1202. [[NCManageDatabase sharedInstance] clearDateReadWithServerUrl:metadata.serverUrl account:account];
  1203. [[NCManageDatabase sharedInstance] clearDateReadWithServerUrl:serverUrlTo account:account];
  1204. // next
  1205. [_selectedocIdsMetadatas removeObjectForKey:metadata.ocId];
  1206. if ([_selectedocIdsMetadatas count] > 0) {
  1207. NSArray *metadatas = [_selectedocIdsMetadatas allValues];
  1208. [self moveFileOrFolderMetadata:[metadatas objectAtIndex:0] serverUrlTo:serverUrlTo numFile:[_selectedocIdsMetadatas count] ofFile:_numSelectedocIdsMetadatas];
  1209. } else {
  1210. // End Select Table View
  1211. [self tableViewSelect:NO];
  1212. // reload Datasource
  1213. if (_isSearchMode)
  1214. [self readFolder:metadata.serverUrl];
  1215. else
  1216. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1217. }
  1218. } else if (errorCode != 0) {
  1219. [appDelegate messageNotification:@"_move_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1220. // End Select Table View
  1221. [self tableViewSelect:NO];
  1222. // reload Datasource
  1223. if (_isSearchMode)
  1224. [self readFolder:metadata.serverUrl];
  1225. else
  1226. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:metadata.serverUrl ocId:nil action:k_action_NULL];
  1227. } else {
  1228. NSLog(@"[LOG] It has been changed user during networking process, error.");
  1229. }
  1230. }];
  1231. [_hud visibleHudTitle:[NSString stringWithFormat:NSLocalizedString(@"_move_file_n_", nil), ofFile - numFile + 1, ofFile] mode:MBProgressHUDModeIndeterminate color:nil];
  1232. } else {
  1233. [appDelegate messageNotification:@"_error_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1234. }
  1235. } else {
  1236. NSLog(@"[LOG] It has been changed user during networking process, error.");
  1237. }
  1238. }];
  1239. }
  1240. // DELEGATE : Select
  1241. - (void)dismissSelectWithServerUrl:(NSString *)serverUrl metadata:(tableMetadata *)metadata type:(NSString *)type
  1242. {
  1243. if (serverUrl == nil) {
  1244. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1245. } else {
  1246. // E2EE DENIED
  1247. if ([CCUtility isFolderEncrypted:serverUrl account:appDelegate.activeAccount]) {
  1248. [appDelegate messageNotification:@"_move_" description:@"Not possible move files to encrypted directory" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  1249. return;
  1250. }
  1251. if ([_selectedocIdsMetadatas count] > 0) {
  1252. _numSelectedocIdsMetadatas = [_selectedocIdsMetadatas count];
  1253. NSArray *metadatas = [_selectedocIdsMetadatas allValues];
  1254. [self moveFileOrFolderMetadata:[metadatas objectAtIndex:0] serverUrlTo:serverUrl numFile:[_selectedocIdsMetadatas count] ofFile:_numSelectedocIdsMetadatas];
  1255. } else {
  1256. _numSelectedocIdsMetadatas = 1;
  1257. [self moveFileOrFolderMetadata:self.metadata serverUrlTo:serverUrl numFile:1 ofFile:_numSelectedocIdsMetadatas];
  1258. }
  1259. }
  1260. }
  1261. - (void)moveOpenWindow:(NSArray *)indexPaths
  1262. {
  1263. if (_isSelectedMode && [_selectedocIdsMetadatas count] == 0)
  1264. return;
  1265. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"NCSelect" bundle:nil] instantiateInitialViewController];
  1266. NCSelect *viewController = (NCSelect *)navigationController.topViewController;
  1267. viewController.delegate = self;
  1268. viewController.hideButtonCreateFolder = false;
  1269. viewController.selectFile = false;
  1270. viewController.includeDirectoryE2EEncryption = false;
  1271. viewController.includeImages = false;
  1272. viewController.type = @"";
  1273. viewController.titleButtonDone = NSLocalizedString(@"_move_", nil);
  1274. viewController.layoutViewSelect = k_layout_view_move;
  1275. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  1276. [self presentViewController:navigationController animated:YES completion:nil];
  1277. }
  1278. #pragma --------------------------------------------------------------------------------------------
  1279. #pragma mark ===== Create folder =====
  1280. #pragma --------------------------------------------------------------------------------------------
  1281. - (void)createFolder
  1282. {
  1283. NSString *serverUrl = [appDelegate getTabBarControllerActiveServerUrl];
  1284. NSString *message;
  1285. UIAlertController *alertController;
  1286. if ([serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]]) {
  1287. message = @"/";
  1288. } else {
  1289. message = [serverUrl lastPathComponent];
  1290. }
  1291. alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_create_folder_on_",nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  1292. [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  1293. [textField addTarget:self action:@selector(minCharTextFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
  1294. textField.autocapitalizationType = UITextAutocapitalizationTypeWords;
  1295. }];
  1296. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_",nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  1297. NSLog(@"[LOG] Cancel action");
  1298. }];
  1299. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  1300. UITextField *fileName = alertController.textFields.firstObject;
  1301. [self createFolder:fileName.text serverUrl:serverUrl];
  1302. }];
  1303. okAction.enabled = NO;
  1304. [alertController addAction:cancelAction];
  1305. [alertController addAction:okAction];
  1306. [self presentViewController:alertController animated:YES completion:nil];
  1307. }
  1308. - (void)createFolder:(NSString *)fileNameFolder serverUrl:(NSString *)serverUrl
  1309. {
  1310. fileNameFolder = [CCUtility removeForbiddenCharactersServer:fileNameFolder];
  1311. if (![fileNameFolder length]) return;
  1312. NSString *ocIdTemp = [[NSUUID UUID] UUIDString];
  1313. // Create Directory (temp) on metadata
  1314. tableMetadata *metadata = [CCUtility createMetadataWithAccount:appDelegate.activeAccount date:[NSDate date] directory:YES ocId:ocIdTemp serverUrl:serverUrl fileName:fileNameFolder etag:@"" size:0 status:k_metadataStatusNormal url:@""];
  1315. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  1316. [[NCManageDatabase sharedInstance] clearDateReadWithServerUrl:serverUrl account:appDelegate.activeAccount];
  1317. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1318. // Creeate folder Networking
  1319. [[OCNetworking sharedManager] createFolderWithAccount:appDelegate.activeAccount serverUrl:serverUrl fileName:fileNameFolder completion:^(NSString *account, NSString *ocId, NSDate *date, NSString *message, NSInteger errorCode) {
  1320. if (errorCode == 0 && [account isEqualToString:appDelegate.activeAccount]) {
  1321. // Delete Temp Dir
  1322. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocIdTemp]];
  1323. NSString *newDirectory = [NSString stringWithFormat:@"%@/%@", serverUrl, fileNameFolder];
  1324. if (_metadataFolder.e2eEncrypted) {
  1325. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1326. NSError *error = [[NCNetworkingEndToEnd sharedManager] markEndToEndFolderEncryptedOnServerUrl:newDirectory ocId:ocId user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl];
  1327. dispatch_async(dispatch_get_main_queue(), ^{
  1328. if (error) {
  1329. [appDelegate messageNotification:@"_e2e_error_mark_folder_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  1330. }
  1331. [self readFolder:self.serverUrl];
  1332. });
  1333. });
  1334. } else {
  1335. [self readFolder:self.serverUrl];
  1336. }
  1337. } else {
  1338. // Delete Temp Dir
  1339. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocIdTemp]];
  1340. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  1341. if (errorCode != 0) {
  1342. [appDelegate messageNotification:@"_create_folder_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1343. } else {
  1344. NSLog(@"[LOG] It has been changed user during networking process, error.");
  1345. }
  1346. }
  1347. }];
  1348. }
  1349. #pragma --------------------------------------------------------------------------------------------
  1350. #pragma mark ===== Progress & Task Button =====
  1351. #pragma --------------------------------------------------------------------------------------------
  1352. - (void)triggerProgressTask:(NSNotification *)notification
  1353. {
  1354. if (sectionDataSource.ocIdIndexPath != nil) {
  1355. [[NCMainCommon sharedInstance] triggerProgressTask:notification sectionDataSourceocIdIndexPath:sectionDataSource.ocIdIndexPath tableView:self.tableView viewController:self serverUrlViewController:self.serverUrl];
  1356. }
  1357. }
  1358. - (void)cancelTaskButton:(id)sender withEvent:(UIEvent *)event
  1359. {
  1360. UITouch *touch = [[event allTouches] anyObject];
  1361. CGPoint location = [touch locationInView:self.tableView];
  1362. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1363. if ([self indexPathIsValid:indexPath]) {
  1364. tableMetadata *metadataSection = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1365. if (metadataSection) {
  1366. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadataSection.ocId]];
  1367. if (metadata)
  1368. [[NCMainCommon sharedInstance] cancelTransferMetadata:metadata reloadDatasource:true uploadStatusForcedStart:false];
  1369. }
  1370. }
  1371. }
  1372. - (void)cancelAllTask:(id)sender
  1373. {
  1374. CGPoint location = [sender locationInView:self.tableView];
  1375. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1376. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  1377. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_all_task_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1378. [NCUtility.sharedInstance startActivityIndicatorWithView:self.view bottom:0];
  1379. [[NCMainCommon sharedInstance] cancelAllTransfer];
  1380. [NCUtility.sharedInstance stopActivityIndicator];
  1381. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:nil ocId:nil action:k_action_NULL];
  1382. }]];
  1383. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) { }]];
  1384. alertController.popoverPresentationController.sourceView = self.tableView;
  1385. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  1386. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  1387. [alertController.view layoutIfNeeded];
  1388. [self presentViewController:alertController animated:YES completion:nil];
  1389. }
  1390. #pragma --------------------------------------------------------------------------------------------
  1391. #pragma mark ===== Tap =====
  1392. #pragma --------------------------------------------------------------------------------------------
  1393. - (void)tapActionComment:(UITapGestureRecognizer *)tapGesture
  1394. {
  1395. CGPoint location = [tapGesture locationInView:self.tableView];
  1396. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1397. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1398. if (metadata) {
  1399. [[NCMainCommon sharedInstance] openShareWithViewController:self metadata:metadata indexPage:1];
  1400. }
  1401. }
  1402. - (void)tapActionShared:(UITapGestureRecognizer *)tapGesture
  1403. {
  1404. CGPoint location = [tapGesture locationInView:self.tableView];
  1405. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1406. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1407. if (metadata) {
  1408. [[NCMainCommon sharedInstance] openShareWithViewController:self metadata:metadata indexPage:2];
  1409. }
  1410. }
  1411. - (void)tapActionConnectionMounted:(UITapGestureRecognizer *)tapGesture
  1412. {
  1413. CGPoint location = [tapGesture locationInView:self.tableView];
  1414. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1415. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1416. if (metadata) {
  1417. }
  1418. }
  1419. #pragma --------------------------------------------------------------------------------------------
  1420. #pragma mark ===== Favorite =====
  1421. #pragma --------------------------------------------------------------------------------------------
  1422. - (void)settingFavorite:(tableMetadata *)metadata favorite:(BOOL)favorite
  1423. {
  1424. NSString *fileNameServerUrl = [CCUtility returnFileNamePathFromFileName:metadata.fileName serverUrl:self.serverUrl activeUrl:appDelegate.activeUrl];
  1425. [[OCNetworking sharedManager] settingFavoriteWithAccount:appDelegate.activeAccount fileName:fileNameServerUrl favorite:favorite completion:^(NSString *account, NSString *message, NSInteger errorCode) {
  1426. if (errorCode == 0 && [appDelegate.activeAccount isEqualToString:account]) {
  1427. [[NCManageDatabase sharedInstance] setMetadataFavoriteWithOcId:metadata.ocId favorite:favorite];
  1428. _dateReadDataSource = nil;
  1429. if (_isSearchMode)
  1430. [self readFolder:self.serverUrl];
  1431. else
  1432. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:metadata.ocId action:k_action_MOD];
  1433. if (metadata.directory && favorite) {
  1434. NSString *selector;
  1435. if ([CCUtility getFavoriteOffline])
  1436. selector = selectorReadFolderWithDownload;
  1437. else
  1438. selector = selectorReadFolder;
  1439. [[CCSynchronize sharedSynchronize] readFolder:[CCUtility stringAppendServerUrl:self.serverUrl addFileName:metadata.fileName] selector:selector account:appDelegate.activeAccount];
  1440. }
  1441. if (!metadata.directory && favorite && [CCUtility getFavoriteOffline]) {
  1442. metadata.favorite = favorite;
  1443. metadata.session = k_download_session;
  1444. metadata.sessionError = @"";
  1445. metadata.sessionSelector = selectorDownloadSynchronize;
  1446. metadata.status = k_metadataStatusWaitDownload;
  1447. // Add Metadata for Download
  1448. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  1449. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:metadata.ocId action:k_action_MOD];
  1450. [appDelegate startLoadAutoDownloadUpload];
  1451. }
  1452. } else if (errorCode != 0) {
  1453. [appDelegate messageNotification:@"_error_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1454. } else {
  1455. NSLog(@"[LOG] It has been changed user during networking process, error.");
  1456. }
  1457. }];
  1458. }
  1459. #pragma --------------------------------------------------------------------------------------------
  1460. #pragma mark ==== Menu LOGO ====
  1461. #pragma --------------------------------------------------------------------------------------------
  1462. - (void)menuLogo:(UIGestureRecognizer *)theGestureRecognizer
  1463. {
  1464. if (appDelegate.reSelectMenu.isOpen || appDelegate.reMainMenu.isOpen)
  1465. return;
  1466. // Brand
  1467. if ([NCBrandOptions sharedInstance].disable_multiaccount)
  1468. return;
  1469. NSArray *listAccount = [[NCManageDatabase sharedInstance] getAccounts];
  1470. NSMutableArray *menuArray = [NSMutableArray new];
  1471. for (NSString *account in listAccount) {
  1472. CCMenuItem *item = [[CCMenuItem alloc] init];
  1473. item.title = [account stringByTruncatingToWidth:self.view.bounds.size.width - 100 withFont:[UIFont systemFontOfSize:12.0] atEnd:YES];
  1474. item.argument = account;
  1475. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ ", account]];
  1476. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@-%@.png", [CCUtility getDirectoryUserData], [CCUtility getStringUser:tableAccount.user activeUrl:tableAccount.url], tableAccount.user];
  1477. UIImage *avatar = [UIImage imageWithContentsOfFile:fileNamePath];
  1478. if (avatar) {
  1479. avatar = [CCGraphics scaleImage:avatar toSize:CGSizeMake(25, 25) isAspectRation:YES];
  1480. CCAvatar *avatarImageView = [[CCAvatar alloc] initWithImage:avatar borderColor:[UIColor lightGrayColor] borderWidth:0.5];
  1481. CGSize imageSize = avatarImageView.bounds.size;
  1482. UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
  1483. CGContextRef context = UIGraphicsGetCurrentContext();
  1484. [avatarImageView.layer renderInContext:context];
  1485. avatar = UIGraphicsGetImageFromCurrentImageContext();
  1486. UIGraphicsEndImageContext();
  1487. } else {
  1488. avatar = [UIImage imageNamed:@"menuLogoUser"];
  1489. }
  1490. item.image = avatar;
  1491. item.target = self;
  1492. if ([account isEqualToString:appDelegate.activeAccount]) {
  1493. item.action = nil;
  1494. [menuArray insertObject:item atIndex:0];
  1495. } else {
  1496. item.action = @selector(changeDefaultAccount:);
  1497. [menuArray addObject:item];
  1498. }
  1499. }
  1500. // Add + new account
  1501. CCMenuItem *item = [[CCMenuItem alloc] init];
  1502. item.title = NSLocalizedString(@"_add_account_", nil);
  1503. item.argument = @"";
  1504. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"add"] width:50 height:50 color:[NCBrandColor sharedInstance].textView];
  1505. item.target = self;
  1506. item.action = @selector(addNewAccount:);
  1507. [menuArray addObject:item];
  1508. OptionalConfiguration options;
  1509. Color backgroundColor;
  1510. const CGFloat *componentsBackgroundColor = CGColorGetComponents(NCBrandColor.sharedInstance.backgroundForm.CGColor);
  1511. backgroundColor.R = componentsBackgroundColor[0];
  1512. backgroundColor.G = componentsBackgroundColor[1];
  1513. backgroundColor.B = componentsBackgroundColor[2];
  1514. options.arrowSize = 9;
  1515. options.marginXSpacing = 7;
  1516. options.marginYSpacing = 10;
  1517. options.intervalSpacing = 20;
  1518. options.menuCornerRadius = 6.5;
  1519. options.maskToBackground = NO;
  1520. options.shadowOfMenu = YES;
  1521. options.hasSeperatorLine = YES;
  1522. options.seperatorLineHasInsets = YES;
  1523. options.textColor = NCBrandColor.sharedInstance.textView;
  1524. options.menuBackgroundColor = backgroundColor;
  1525. options.separatorColor = NCBrandColor.sharedInstance.separator;
  1526. CGRect rect = self.view.frame;
  1527. CGFloat locationY = [theGestureRecognizer locationInView: self.navigationController.navigationBar].y;
  1528. CGFloat safeAreaTop = 0;
  1529. CGFloat offsetY = 35;
  1530. if (@available(iOS 11, *)) {
  1531. safeAreaTop = [UIApplication sharedApplication].delegate.window.safeAreaInsets.top / 2;
  1532. }
  1533. rect.origin.y = locationY + safeAreaTop + offsetY;
  1534. rect.size.height = rect.size.height - locationY - safeAreaTop - offsetY;
  1535. [CCMenuAccount setTitleFont:[UIFont systemFontOfSize:12.0]];
  1536. [CCMenuAccount showMenuInView:self.navigationController.view fromRect:rect menuItems:menuArray withOptions:options];
  1537. }
  1538. - (void)changeDefaultAccount:(CCMenuItem *)sender
  1539. {
  1540. // LOGOUT
  1541. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] setAccountActive:[sender argument]];
  1542. if (tableAccount) {
  1543. // LOGIN
  1544. [appDelegate settingActiveAccount:tableAccount.account activeUrl:tableAccount.url activeUser:tableAccount.user activeUserID:tableAccount.userID activePassword:[CCUtility getPassword:tableAccount.account]];
  1545. // go to home sweet home
  1546. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"initializeMain" object:nil userInfo:nil];
  1547. }
  1548. }
  1549. - (void)addNewAccount:(CCMenuItem *)sender
  1550. {
  1551. [appDelegate openLoginView:self delegate:self loginType:k_login_Add selector:k_intro_login];
  1552. }
  1553. #pragma --------------------------------------------------------------------------------------------
  1554. #pragma mark ==== ReMenu ====
  1555. #pragma --------------------------------------------------------------------------------------------
  1556. - (void)createReMenuBackgroundView:(REMenu *)menu
  1557. {
  1558. CGFloat safeAreaBottom = 0;
  1559. CGFloat safeAreaTop = 0;
  1560. CGFloat statusBar = 0;
  1561. if (@available(iOS 11, *)) {
  1562. safeAreaTop = [UIApplication sharedApplication].delegate.window.safeAreaInsets.top;
  1563. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  1564. }
  1565. if ([UIApplication sharedApplication].isStatusBarHidden) {
  1566. statusBar = 13;
  1567. }
  1568. CGFloat computeNavigationBarOffset = [menu computeNavigationBarOffset];
  1569. UIViewController *rootController = [[[[UIApplication sharedApplication]delegate] window] rootViewController];
  1570. CGRect globalPositionMenu = [menu.menuView convertRect:menu.menuView.bounds toView:rootController.view];
  1571. _reMenuBackgroundView.frame = CGRectMake(0, computeNavigationBarOffset, globalPositionMenu.size.width, rootController.view.frame.size.height);
  1572. [UIView animateWithDuration:0.2 animations:^{
  1573. CGFloat minimum = safeAreaBottom + self.tabBarController.tabBar.frame.size.height;
  1574. CGFloat y = rootController.view.frame.size.height - menu.menuView.frame.size.height - globalPositionMenu.origin.y + statusBar;
  1575. if (y>minimum) {
  1576. _reMenuBackgroundView.frame = CGRectMake(0, rootController.view.frame.size.height, globalPositionMenu.size.width, - y);
  1577. [self.tabBarController.view addSubview:_reMenuBackgroundView];
  1578. }
  1579. }];
  1580. }
  1581. - (void)createReMainMenu
  1582. {
  1583. NSString *title;
  1584. NSString *groupBy = [CCUtility getGroupBySettings];
  1585. NSString *sorted = [CCUtility getOrderSettings];
  1586. BOOL ascending = [CCUtility getAscendingSettings];
  1587. // ITEM SELECT ----------------------------------------------------------------------------------------------------
  1588. appDelegate.selezionaItem = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_select_", nil)subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"selectLight"] width:50 height:50 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1589. if ([sectionDataSource.allRecordsDataSource count] > 0) [self tableViewSelect:YES];
  1590. }];
  1591. // ITEM ORDER ----------------------------------------------------------------------------------------------------
  1592. if ([sorted isEqualToString:@"fileName"] && ascending) { title = [NSString stringWithFormat:@"✓ %@", NSLocalizedString(@"_order_by_name_a_z_", nil)]; }
  1593. else title = NSLocalizedString(@"_order_by_name_a_z_", nil);
  1594. appDelegate.sortFileNameAZItem = [[REMenuItem alloc] initWithTitle:title subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"sortFileNameAZ"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1595. [CCUtility setOrderSettings:@"fileName"];
  1596. [CCUtility setAscendingSettings:true];
  1597. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1598. }];
  1599. if ([sorted isEqualToString:@"fileName"] && !ascending) { title = [NSString stringWithFormat:@"✓ %@", NSLocalizedString(@"_order_by_name_z_a_", nil)]; }
  1600. else title = NSLocalizedString(@"_order_by_name_z_a_", nil);
  1601. appDelegate.sortFileNameZAItem = [[REMenuItem alloc] initWithTitle:title subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"sortFileNameZA"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1602. [CCUtility setOrderSettings:@"fileName"];
  1603. [CCUtility setAscendingSettings:false];
  1604. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1605. }];
  1606. if ([sorted isEqualToString:@"date"] && !ascending) { title = [NSString stringWithFormat:@"✓ %@", NSLocalizedString(@"_order_by_date_more_recent_", nil)]; }
  1607. else title = NSLocalizedString(@"_order_by_date_more_recent_", nil);
  1608. appDelegate.sortDateMoreRecentItem = [[REMenuItem alloc] initWithTitle:title subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"sortDateMoreRecent"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1609. [CCUtility setOrderSettings:@"date"];
  1610. [CCUtility setAscendingSettings:false];
  1611. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1612. }];
  1613. if ([sorted isEqualToString:@"date"] && ascending) { title = [NSString stringWithFormat:@"✓ %@", NSLocalizedString(@"_order_by_date_less_recent_", nil)]; }
  1614. else title = NSLocalizedString(@"_order_by_date_less_recent_", nil);
  1615. appDelegate.sortDateLessRecentItem = [[REMenuItem alloc] initWithTitle:title subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"sortDateLessRecent"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1616. [CCUtility setOrderSettings:@"date"];
  1617. [CCUtility setAscendingSettings:true];
  1618. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1619. }];
  1620. if ([sorted isEqualToString:@"size"] && ascending) { title = [NSString stringWithFormat:@"✓ %@", NSLocalizedString(@"_order_by_size_smallest_", nil)]; }
  1621. else title = NSLocalizedString(@"_order_by_size_smallest_", nil);
  1622. appDelegate.sortSmallestItem = [[REMenuItem alloc] initWithTitle:title subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"sortSmallest"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1623. [CCUtility setOrderSettings:@"size"];
  1624. [CCUtility setAscendingSettings:true];
  1625. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1626. }];
  1627. if ([sorted isEqualToString:@"size"] && !ascending) { title = [NSString stringWithFormat:@"✓ %@", NSLocalizedString(@"_order_by_size_largest_", nil)]; }
  1628. else title = NSLocalizedString(@"_order_by_size_largest_", nil);
  1629. appDelegate.sortLargestItem = [[REMenuItem alloc] initWithTitle:title subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"sortLargest"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1630. [CCUtility setOrderSettings:@"size"];
  1631. [CCUtility setAscendingSettings:false];
  1632. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1633. }];
  1634. // ITEM GROUP ALPHABETIC -----------------------------------------------------------------------------------------------------
  1635. if ([groupBy isEqualToString:@"alphabetic"]) { title = NSLocalizedString(@"_group_alphabetic_yes_", nil); }
  1636. else { title = NSLocalizedString(@"_group_alphabetic_no_", nil); }
  1637. appDelegate.alphabeticItem = [[REMenuItem alloc] initWithTitle:title subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"MenuGroupByAlphabetic"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1638. if ([groupBy isEqualToString:@"alphabetic"]) [CCUtility setGroupBySettings:@"none"];
  1639. else [CCUtility setGroupBySettings:@"alphabetic"];
  1640. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1641. }];
  1642. // ITEM GROUP TYPEFILE -------------------------------------------------------------------------------------------------------
  1643. if ([groupBy isEqualToString:@"typefile"]) { title = NSLocalizedString(@"_group_typefile_yes_", nil); }
  1644. else { title = NSLocalizedString(@"_group_typefile_no_", nil); }
  1645. appDelegate.typefileItem = [[REMenuItem alloc] initWithTitle:title subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"MenuGroupByFile"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1646. if ([groupBy isEqualToString:@"typefile"]) [CCUtility setGroupBySettings:@"none"];
  1647. else [CCUtility setGroupBySettings:@"typefile"];
  1648. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1649. }];
  1650. // ITEM GROUP DATE -------------------------------------------------------------------------------------------------------
  1651. if ([groupBy isEqualToString:@"date"]) { title = NSLocalizedString(@"_group_date_yes_", nil); }
  1652. else { title = NSLocalizedString(@"_group_date_no_", nil); }
  1653. appDelegate.dateItem = [[REMenuItem alloc] initWithTitle:title subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"MenuGroupByDate"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1654. if ([groupBy isEqualToString:@"date"]) [CCUtility setGroupBySettings:@"none"];
  1655. else [CCUtility setGroupBySettings:@"date"];
  1656. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1657. }];
  1658. // ITEM DIRECTORY ON TOP ------------------------------------------------------------------------------------------------
  1659. if ([CCUtility getDirectoryOnTop]) { title = NSLocalizedString(@"_directory_on_top_yes_", nil); }
  1660. else { title = NSLocalizedString(@"_directory_on_top_no_", nil); }
  1661. appDelegate.directoryOnTopItem = [[REMenuItem alloc] initWithTitle:title subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"foldersOnTop"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1662. if ([CCUtility getDirectoryOnTop]) [CCUtility setDirectoryOnTop:NO];
  1663. else [CCUtility setDirectoryOnTop:YES];
  1664. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1665. }];
  1666. // REMENU --------------------------------------------------------------------------------------------------------------
  1667. appDelegate.reMainMenu = [[REMenu alloc] initWithItems:@[appDelegate.selezionaItem, appDelegate.sortFileNameAZItem, appDelegate.sortFileNameZAItem, appDelegate.sortDateMoreRecentItem, appDelegate.sortDateLessRecentItem, appDelegate.sortSmallestItem, appDelegate.sortLargestItem,appDelegate.alphabeticItem, appDelegate.typefileItem, appDelegate.dateItem, appDelegate.directoryOnTopItem]];
  1668. appDelegate.reMainMenu.itemHeight = 40;
  1669. appDelegate.reMainMenu.imageOffset = CGSizeMake(5, -1);
  1670. appDelegate.reMainMenu.separatorOffset = CGSizeMake(50.0, 0.0);
  1671. appDelegate.reMainMenu.imageOffset = CGSizeMake(0, 0);
  1672. appDelegate.reMainMenu.waitUntilAnimationIsComplete = NO;
  1673. appDelegate.reMainMenu.separatorHeight = 0.5;
  1674. appDelegate.reMainMenu.separatorColor = NCBrandColor.sharedInstance.separator;
  1675. appDelegate.reMainMenu.backgroundColor = NCBrandColor.sharedInstance.backgroundForm;
  1676. appDelegate.reMainMenu.textColor = NCBrandColor.sharedInstance.textView;
  1677. appDelegate.reMainMenu.textAlignment = NSTextAlignmentLeft;
  1678. appDelegate.reMainMenu.textShadowColor = nil;
  1679. appDelegate.reMainMenu.textOffset = CGSizeMake(50, 0.0);
  1680. appDelegate.reMainMenu.font = [UIFont systemFontOfSize:14.0];
  1681. appDelegate.reMainMenu.highlightedBackgroundColor = NCBrandColor.sharedInstance.getColorSelectBackgrond;
  1682. appDelegate.reMainMenu.highlightedSeparatorColor = nil;
  1683. appDelegate.reMainMenu.highlightedTextColor = [UIColor blackColor];
  1684. appDelegate.reMainMenu.highlightedTextShadowColor = nil;
  1685. appDelegate.reMainMenu.highlightedTextShadowOffset = CGSizeMake(0, 0);
  1686. appDelegate.reMainMenu.subtitleTextColor = [UIColor colorWithWhite:0.425 alpha:1];
  1687. appDelegate.reMainMenu.subtitleTextAlignment = NSTextAlignmentLeft;
  1688. appDelegate.reMainMenu.subtitleTextShadowColor = nil;
  1689. appDelegate.reMainMenu.subtitleTextShadowOffset = CGSizeMake(0, 0.0);
  1690. appDelegate.reMainMenu.subtitleTextOffset = CGSizeMake(50, 0.0);
  1691. appDelegate.reMainMenu.subtitleFont = [UIFont systemFontOfSize:12.0];
  1692. appDelegate.reMainMenu.subtitleHighlightedTextColor = [UIColor lightGrayColor];
  1693. appDelegate.reMainMenu.subtitleHighlightedTextShadowColor = nil;
  1694. appDelegate.reMainMenu.subtitleHighlightedTextShadowOffset = CGSizeMake(0, 0);
  1695. appDelegate.reMainMenu.borderWidth = 0.3;
  1696. appDelegate.reMainMenu.borderColor = [UIColor lightGrayColor];
  1697. appDelegate.reMainMenu.animationDuration = 0.2;
  1698. appDelegate.reMainMenu.closeAnimationDuration = 0.2;
  1699. appDelegate.reMainMenu.bounce = NO;
  1700. __weak typeof(self) weakSelf = self;
  1701. [appDelegate.reMainMenu setClosePreparationBlock:^{
  1702. // Backgroun reMenu (Gesture)
  1703. [weakSelf.reMenuBackgroundView removeFromSuperview];
  1704. [weakSelf.reMenuBackgroundView removeGestureRecognizer:weakSelf.singleFingerTap];
  1705. }];
  1706. }
  1707. - (void)toggleReMainMenu
  1708. {
  1709. if (appDelegate.reMainMenu.isOpen) {
  1710. [appDelegate.reMainMenu close];
  1711. } else {
  1712. [self createReMainMenu];
  1713. [appDelegate.reMainMenu showFromNavigationController:self.navigationController];
  1714. // Backgroun reMenu & (Gesture)
  1715. [self createReMenuBackgroundView:appDelegate.reMainMenu];
  1716. _singleFingerTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(toggleReMainMenu)];
  1717. [_reMenuBackgroundView addGestureRecognizer:_singleFingerTap];
  1718. }
  1719. }
  1720. - (void)createReSelectMenu
  1721. {
  1722. // ITEM SELECT ALL --------------------------------------------------------------------------------------------------
  1723. appDelegate.selectAllItem = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_select_all_", nil) subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"selectFull"] width:50 height:50 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1724. [self didSelectAll];
  1725. }];
  1726. // ITEM MOVE --------------------------------------------------------------------------------------------------------
  1727. appDelegate.moveItem = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_move_selected_files_", nil) subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"move"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1728. [self moveOpenWindow:[self.tableView indexPathsForSelectedRows]];
  1729. }];
  1730. // ITEM DOWNLOAD ----------------------------------------------------------------------------------------------------
  1731. appDelegate.downloadItem = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_download_selected_files_folders_", nil) subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"downloadSelectedFiles"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1732. [self downloadSelectedFilesFolders];
  1733. }];
  1734. // ITEM SAVE IMAGE & VIDEO -------------------------------------------------------------------------------------------
  1735. appDelegate.saveItem = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_save_selected_files_", nil) subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"saveSelectedFiles"] multiplier:2 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1736. [self saveSelectedFiles];
  1737. }];
  1738. // ITEM DELETE ------------------------------------------------------------------------------------------------------
  1739. appDelegate.deleteItem = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_delete_selected_files_", nil) subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"trash"] width:50 height:50 color:[NCBrandColor sharedInstance].icon] highlightedImage:nil action:^(REMenuItem *item) {
  1740. [self deleteFile];
  1741. }];
  1742. // E2EE
  1743. if (_metadataFolder.e2eEncrypted) {
  1744. if ([NCBrandOptions sharedInstance].disable_openin_file) {
  1745. appDelegate.reSelectMenu = [[REMenu alloc] initWithItems:@[appDelegate.selectAllItem, appDelegate.downloadItem, appDelegate.deleteItem]];
  1746. } else {
  1747. appDelegate.reSelectMenu = [[REMenu alloc] initWithItems:@[appDelegate.selectAllItem, appDelegate.downloadItem, appDelegate.saveItem, appDelegate.deleteItem]];
  1748. }
  1749. } else {
  1750. if ([NCBrandOptions sharedInstance].disable_openin_file) {
  1751. appDelegate.reSelectMenu = [[REMenu alloc] initWithItems:@[appDelegate.selectAllItem, appDelegate.moveItem, appDelegate.downloadItem, appDelegate.deleteItem]];
  1752. } else {
  1753. appDelegate.reSelectMenu = [[REMenu alloc] initWithItems:@[appDelegate.selectAllItem, appDelegate.moveItem, appDelegate.downloadItem, appDelegate.saveItem, appDelegate.deleteItem]];
  1754. }
  1755. }
  1756. appDelegate.reSelectMenu.itemHeight = 50;
  1757. appDelegate.reSelectMenu.imageOffset = CGSizeMake(5, -1);
  1758. appDelegate.reSelectMenu.separatorOffset = CGSizeMake(50.0, 0.0);
  1759. appDelegate.reSelectMenu.imageOffset = CGSizeMake(0, 0);
  1760. appDelegate.reSelectMenu.waitUntilAnimationIsComplete = NO;
  1761. appDelegate.reSelectMenu.separatorHeight = 0.5;
  1762. appDelegate.reSelectMenu.separatorColor = [NCBrandColor sharedInstance].separator;
  1763. appDelegate.reSelectMenu.backgroundColor = [NCBrandColor sharedInstance].backgroundView;
  1764. appDelegate.reSelectMenu.textColor = [UIColor blackColor];
  1765. appDelegate.reSelectMenu.textAlignment = NSTextAlignmentLeft;
  1766. appDelegate.reSelectMenu.textShadowColor = nil;
  1767. appDelegate.reSelectMenu.textOffset = CGSizeMake(50, 0.0);
  1768. appDelegate.reSelectMenu.font = [UIFont systemFontOfSize:14.0];
  1769. appDelegate.reSelectMenu.highlightedBackgroundColor = [[NCBrandColor sharedInstance] getColorSelectBackgrond];
  1770. appDelegate.reSelectMenu.highlightedSeparatorColor = nil;
  1771. appDelegate.reSelectMenu.highlightedTextColor = [UIColor blackColor];
  1772. appDelegate.reSelectMenu.highlightedTextShadowColor = nil;
  1773. appDelegate.reSelectMenu.highlightedTextShadowOffset = CGSizeMake(0, 0);
  1774. appDelegate.reSelectMenu.subtitleTextColor = [UIColor colorWithWhite:0.425 alpha:1.000];
  1775. appDelegate.reSelectMenu.subtitleTextAlignment = NSTextAlignmentLeft;
  1776. appDelegate.reSelectMenu.subtitleTextShadowColor = nil;
  1777. appDelegate.reSelectMenu.subtitleTextShadowOffset = CGSizeMake(0, 0.0);
  1778. appDelegate.reSelectMenu.subtitleTextOffset = CGSizeMake(50, 0.0);
  1779. appDelegate.reSelectMenu.subtitleFont = [UIFont systemFontOfSize:12.0];
  1780. appDelegate.reSelectMenu.subtitleHighlightedTextColor = [UIColor lightGrayColor];
  1781. appDelegate.reSelectMenu.subtitleHighlightedTextShadowColor = nil;
  1782. appDelegate.reSelectMenu.subtitleHighlightedTextShadowOffset = CGSizeMake(0, 0);
  1783. appDelegate.reSelectMenu.borderWidth = 0.3;
  1784. appDelegate.reSelectMenu.borderColor = [UIColor lightGrayColor];
  1785. appDelegate.reSelectMenu.closeAnimationDuration = 0.2;
  1786. appDelegate.reSelectMenu.animationDuration = 0.2;
  1787. appDelegate.reSelectMenu.bounce = NO;
  1788. __weak typeof(self) weakSelf = self;
  1789. [appDelegate.reSelectMenu setClosePreparationBlock:^{
  1790. // Backgroun reMenu (Gesture)
  1791. [weakSelf.reMenuBackgroundView removeFromSuperview];
  1792. [weakSelf.reMenuBackgroundView removeGestureRecognizer:weakSelf.singleFingerTap];
  1793. }];
  1794. }
  1795. - (void)toggleReSelectMenu
  1796. {
  1797. if (appDelegate.reSelectMenu.isOpen) {
  1798. [appDelegate.reSelectMenu close];
  1799. } else {
  1800. [self createReSelectMenu];
  1801. [appDelegate.reSelectMenu showFromNavigationController:self.navigationController];
  1802. // Backgroun reMenu & (Gesture)
  1803. [self createReMenuBackgroundView:appDelegate.reSelectMenu];
  1804. _singleFingerTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(toggleReSelectMenu)];
  1805. [_reMenuBackgroundView addGestureRecognizer:_singleFingerTap];
  1806. }
  1807. }
  1808. #pragma --------------------------------------------------------------------------------------------
  1809. #pragma mark ===== Long Press Recognized Table View / Menu Controller =====
  1810. #pragma --------------------------------------------------------------------------------------------
  1811. - (void)onLongPressTableView:(UILongPressGestureRecognizer*)recognizer
  1812. {
  1813. if (recognizer.state == UIGestureRecognizerStateBegan) {
  1814. CGPoint touchPoint = [recognizer locationInView:self.tableView];
  1815. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touchPoint];
  1816. if ([self indexPathIsValid:indexPath])
  1817. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  1818. else
  1819. self.metadata = nil;
  1820. [self becomeFirstResponder];
  1821. UIMenuController *menuController = [UIMenuController sharedMenuController];
  1822. UIMenuItem *copyFileItem = [[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_file_", nil) action:@selector(copyFile:)];
  1823. UIMenuItem *copyFilesItem = [[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_files_", nil) action:@selector(copyFiles:)];
  1824. UIMenuItem *openinFileItem = [[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_open_in_", nil) action:@selector(openinFile:)];
  1825. UIMenuItem *pasteFileItem = [[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_file_", nil) action:@selector(pasteFile:)];
  1826. UIMenuItem *pasteFilesItem = [[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_files_", nil) action:@selector(pasteFiles:)];
  1827. if ([NCBrandOptions sharedInstance].disable_openin_file) {
  1828. [menuController setMenuItems:[NSArray arrayWithObjects:copyFileItem, copyFilesItem, pasteFileItem, pasteFilesItem, nil]];
  1829. } else {
  1830. [menuController setMenuItems:[NSArray arrayWithObjects:copyFileItem, copyFilesItem, openinFileItem, pasteFileItem, pasteFilesItem, nil]];
  1831. }
  1832. [menuController setTargetRect:CGRectMake(touchPoint.x, touchPoint.y, 0.0f, 0.0f) inView:self.tableView];
  1833. [menuController setMenuVisible:YES animated:YES];
  1834. }
  1835. }
  1836. - (BOOL)canBecomeFirstResponder
  1837. {
  1838. return YES;
  1839. }
  1840. - (BOOL)canPerformAction:(SEL)action withSender:(id)sender
  1841. {
  1842. // For copy file, copy files, Open in ... :
  1843. //
  1844. // NO Directory
  1845. // NO Error Passcode
  1846. // NO In Session mode (download/upload)
  1847. // NO Template
  1848. if (@selector(copyFile:) == action || @selector(openinFile:) == action) {
  1849. if (_isSelectedMode == NO && self.metadata && !self.metadata.directory && self.metadata.status == k_metadataStatusNormal) return YES;
  1850. else return NO;
  1851. }
  1852. if (@selector(copyFiles:) == action) {
  1853. if (_isSelectedMode) {
  1854. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  1855. for (tableMetadata *metadata in selectedMetadatas) {
  1856. if (!metadata.directory && metadata.status == k_metadataStatusNormal)
  1857. return YES;
  1858. }
  1859. }
  1860. return NO;
  1861. }
  1862. if (@selector(pasteFile:) == action) {
  1863. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1864. NSArray *items = [pasteboard items];
  1865. if ([items count] == 1) {
  1866. // Value : (NSData) ocId
  1867. NSDictionary *dic = [items objectAtIndex:0];
  1868. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1869. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1870. if (ocId) {
  1871. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocId]];
  1872. if (metadata) {
  1873. return [CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView];
  1874. } else {
  1875. return NO;
  1876. }
  1877. }
  1878. }
  1879. return NO;
  1880. }
  1881. if (@selector(pasteFiles:) == action) {
  1882. BOOL isValid = NO;
  1883. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1884. NSArray *items = [pasteboard items];
  1885. if ([items count] <= 1) return NO;
  1886. for (NSDictionary *dic in items) {
  1887. // Value : (NSData) ocId
  1888. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1889. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1890. if (ocId) {
  1891. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocId]];
  1892. if (metadata) {
  1893. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1894. isValid = YES;
  1895. } else {
  1896. isValid = NO;
  1897. break;
  1898. }
  1899. } else {
  1900. isValid = NO;
  1901. break;
  1902. }
  1903. } else {
  1904. isValid = NO;
  1905. break;
  1906. }
  1907. }
  1908. return isValid;
  1909. }
  1910. return NO;
  1911. }
  1912. /************************************ COPY ************************************/
  1913. - (void)copyFile:(id)sender
  1914. {
  1915. // Remove all item
  1916. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1917. pasteboard.items = [[NSArray alloc] init];
  1918. if ([CCUtility fileProviderStorageExists:self.metadata.ocId fileNameView:self.metadata.fileNameView]) {
  1919. [self copyFileToPasteboard:self.metadata];
  1920. } else {
  1921. self.metadata.session = k_download_session;
  1922. self.metadata.sessionError = @"";
  1923. self.metadata.sessionSelector = selectorLoadCopy;
  1924. self.metadata.status = k_metadataStatusWaitDownload;
  1925. // Add Metadata for Download
  1926. (void)[[NCManageDatabase sharedInstance] addMetadata:self.metadata];
  1927. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:self.metadata.ocId action:k_action_MOD];
  1928. [appDelegate startLoadAutoDownloadUpload];
  1929. }
  1930. }
  1931. - (void)copyFiles:(id)sender
  1932. {
  1933. // Remove all item
  1934. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1935. pasteboard.items = [[NSArray alloc] init];
  1936. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  1937. for (tableMetadata *metadata in selectedMetadatas) {
  1938. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1939. [self copyFileToPasteboard:metadata];
  1940. } else {
  1941. metadata.session = k_download_session;
  1942. metadata.sessionError = @"";
  1943. metadata.sessionSelector = selectorLoadCopy;
  1944. metadata.status = k_metadataStatusWaitDownload;
  1945. // Add Metadata for Download
  1946. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  1947. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:metadata.ocId action:k_action_MOD];
  1948. [appDelegate startLoadAutoDownloadUpload];
  1949. }
  1950. }
  1951. [self tableViewSelect:NO];
  1952. }
  1953. - (void)copyFileToPasteboard:(tableMetadata *)metadata
  1954. {
  1955. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1956. NSMutableArray *items = [[NSMutableArray alloc] initWithArray:pasteboard.items];
  1957. // Value : (NSData) ocId
  1958. NSDictionary *item = [NSDictionary dictionaryWithObjectsAndKeys:[NSKeyedArchiver archivedDataWithRootObject:metadata.ocId], k_metadataKeyedUnarchiver,nil];
  1959. [items addObject:item];
  1960. [pasteboard setItems:items];
  1961. }
  1962. /************************************ OPEN IN ... ******************************/
  1963. - (void)openinFile:(id)sender
  1964. {
  1965. [[NCMainCommon sharedInstance] downloadOpenInMetadata:self.metadata];
  1966. }
  1967. /************************************ PASTE ************************************/
  1968. - (void)pasteFile:(id)sender
  1969. {
  1970. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1971. [self uploadFilePasteArray:[pasteboard items]];
  1972. }
  1973. - (void)pasteFiles:(id)sender
  1974. {
  1975. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  1976. [self uploadFilePasteArray:[pasteboard items]];
  1977. }
  1978. - (void)uploadFilePasteArray:(NSArray *)items
  1979. {
  1980. for (NSDictionary *dic in items) {
  1981. // Value : (NSData) ocId
  1982. NSData *dataocId = [dic objectForKey: k_metadataKeyedUnarchiver];
  1983. NSString *ocId = [NSKeyedUnarchiver unarchiveObjectWithData:dataocId];
  1984. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", ocId]];
  1985. if (metadata) {
  1986. if ([CCUtility fileProviderStorageExists:metadata.ocId fileNameView:metadata.fileNameView]) {
  1987. NSString *fileName = [[NCUtility sharedInstance] createFileName:metadata.fileNameView serverUrl:self.serverUrl account:appDelegate.activeAccount];
  1988. NSString *ocId = [CCUtility createMetadataIDFromAccount:appDelegate.activeAccount serverUrl:self.serverUrl fileNameView:fileName directory:false];
  1989. [CCUtility copyFileAtPath:[CCUtility getDirectoryProviderStorageOcId:metadata.ocId fileNameView:metadata.fileNameView] toPath:[CCUtility getDirectoryProviderStorageOcId:ocId fileNameView:fileName]];
  1990. tableMetadata *metadataForUpload = [tableMetadata new];
  1991. metadataForUpload.account = appDelegate.activeAccount;
  1992. metadataForUpload.date = [NSDate new];
  1993. metadataForUpload.ocId = ocId;
  1994. metadataForUpload.fileName = fileName;
  1995. metadataForUpload.fileNameView = fileName;
  1996. metadataForUpload.serverUrl = self.serverUrl;
  1997. metadataForUpload.session = k_upload_session;
  1998. metadataForUpload.sessionSelector = selectorUploadFile;
  1999. metadataForUpload.size = metadata.size;
  2000. metadataForUpload.status = k_metadataStatusWaitUpload;
  2001. // Add Medtadata for upload
  2002. (void)[[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  2003. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  2004. }
  2005. }
  2006. }
  2007. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  2008. [appDelegate startLoadAutoDownloadUpload];
  2009. }
  2010. #pragma --------------------------------------------------------------------------------------------
  2011. #pragma mark ===== Lock Passcode =====
  2012. #pragma --------------------------------------------------------------------------------------------
  2013. - (NSUInteger)passcodeViewControllerNumberOfFailedAttempts:(CCBKPasscode *)aViewController
  2014. {
  2015. return _failedAttempts;
  2016. }
  2017. - (NSDate *)passcodeViewControllerLockUntilDate:(CCBKPasscode *)aViewController
  2018. {
  2019. return _lockUntilDate;
  2020. }
  2021. - (void)passcodeViewCloseButtonPressed:(id)sender
  2022. {
  2023. [self dismissViewControllerAnimated:YES completion:nil];
  2024. }
  2025. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  2026. {
  2027. if (aViewController.fromType == CCBKPasscodeFromLockScreen || aViewController.fromType == CCBKPasscodeFromLockDirectory || aViewController.fromType == CCBKPasscodeFromDisactivateDirectory ) {
  2028. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  2029. _lockUntilDate = nil;
  2030. _failedAttempts = 0;
  2031. aResultHandler(YES);
  2032. } else aResultHandler(NO);
  2033. } else aResultHandler(YES);
  2034. }
  2035. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  2036. {
  2037. [aViewController dismissViewControllerAnimated:YES completion:nil];
  2038. switch (aViewController.type) {
  2039. case BKPasscodeViewControllerCheckPasscodeType: {
  2040. if (aViewController.fromType == CCBKPasscodeFromLockDirectory) {
  2041. // possiamo procedere alla prossima directory
  2042. [self performSegueDirectoryWithControlPasscode:false metadata:self.metadata blinkFileNamePath:self.blinkFileNamePath];
  2043. // avviamo la sessione Passcode Lock con now
  2044. appDelegate.sessionePasscodeLock = [NSDate date];
  2045. }
  2046. // disattivazione lock cartella
  2047. if (aViewController.fromType == CCBKPasscodeFromDisactivateDirectory) {
  2048. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.metadata.serverUrl addFileName:self.metadata.fileName];
  2049. if (![[NCManageDatabase sharedInstance] setDirectoryLockWithServerUrl:lockServerUrl lock:NO account:appDelegate.activeAccount]) {
  2050. [appDelegate messageNotification:@"_error_" description:@"_error_operation_canc_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  2051. }
  2052. [self tableViewReloadData];
  2053. }
  2054. }
  2055. break;
  2056. default:
  2057. break;
  2058. }
  2059. }
  2060. - (void)comandoLockPassword
  2061. {
  2062. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.metadata.serverUrl addFileName:self.metadata.fileName];
  2063. // se non è abilitato il Lock Passcode esci
  2064. if ([[CCUtility getBlockCode] length] == 0) {
  2065. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_warning_", nil) message:NSLocalizedString(@"_only_lock_passcode_", nil) preferredStyle:UIAlertControllerStyleAlert];
  2066. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  2067. [alertController addAction:okAction];
  2068. [self presentViewController:alertController animated:YES completion:nil];
  2069. return;
  2070. }
  2071. // se è richiesta la disattivazione si chiede la password
  2072. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  2073. if (directory.lock) {
  2074. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  2075. viewController.delegate = self;
  2076. viewController.fromType = CCBKPasscodeFromDisactivateDirectory;
  2077. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  2078. viewController.inputViewTitlePassword = YES;
  2079. if ([CCUtility getSimplyBlockCode]) {
  2080. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  2081. viewController.passcodeInputView.maximumLength = 6;
  2082. } else {
  2083. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  2084. viewController.passcodeInputView.maximumLength = 64;
  2085. }
  2086. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  2087. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  2088. viewController.touchIDManager = touchIDManager;
  2089. viewController.title = NSLocalizedString(@"_passcode_protection_", nil);
  2090. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  2091. viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
  2092. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  2093. [self presentViewController:navigationController animated:YES completion:nil];
  2094. return;
  2095. }
  2096. // ---------------- ACTIVATE PASSWORD
  2097. if ([[NCManageDatabase sharedInstance] setDirectoryLockWithServerUrl:lockServerUrl lock:YES account:appDelegate.activeAccount]) {
  2098. NSIndexPath *indexPath = [sectionDataSource.ocIdIndexPath objectForKey:self.metadata.ocId];
  2099. if ([self indexPathIsValid:indexPath])
  2100. [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationAutomatic];
  2101. } else {
  2102. [appDelegate messageNotification:@"_error_" description:@"_error_operation_canc_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  2103. }
  2104. }
  2105. #pragma mark -
  2106. #pragma --------------------------------------------------------------------------------------------
  2107. #pragma mark ===== menu action : Favorite, More, Delete [swipe] =====
  2108. #pragma --------------------------------------------------------------------------------------------
  2109. - (BOOL)canOpenMenuAction:(tableMetadata *)metadata
  2110. {
  2111. if (metadata == nil || _metadataFolder == nil || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata] || metadata.status != k_metadataStatusNormal || [[NCManageDatabase sharedInstance] isTableInvalidated:_metadataFolder])
  2112. return NO;
  2113. // E2EE
  2114. if (_metadataFolder.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount] == NO)
  2115. return NO;
  2116. return YES;
  2117. }
  2118. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell canSwipe:(MGSwipeDirection)direction
  2119. {
  2120. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  2121. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2122. return [self canOpenMenuAction:metadata];
  2123. }
  2124. -(void)swipeTableCell:(nonnull MGSwipeTableCell *)cell didChangeSwipeState:(MGSwipeState)state gestureIsActive:(BOOL)gestureIsActive
  2125. {
  2126. }
  2127. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell tappedButtonAtIndex:(NSInteger)index direction:(MGSwipeDirection)direction fromExpansion:(BOOL)fromExpansion
  2128. {
  2129. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  2130. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2131. if (direction == MGSwipeDirectionRightToLeft) {
  2132. [self actionDelete:indexPath];
  2133. }
  2134. if (direction == MGSwipeDirectionLeftToRight) {
  2135. if (self.metadata.favorite)
  2136. [self settingFavorite:self.metadata favorite:NO];
  2137. else
  2138. [self settingFavorite:self.metadata favorite:YES];
  2139. }
  2140. return YES;
  2141. }
  2142. - (void)actionDelete:(NSIndexPath *)indexPath
  2143. {
  2144. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2145. // Directory locked ?
  2146. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.metadata.serverUrl addFileName:metadata.fileName];
  2147. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  2148. tableLocalFile *localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  2149. if (directory.lock && [[CCUtility getBlockCode] length] && appDelegate.sessionePasscodeLock == nil) {
  2150. [appDelegate messageNotification:@"_error_" description:@"_folder_blocked_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  2151. return;
  2152. }
  2153. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  2154. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  2155. [self performSelector:@selector(deleteFile) withObject:nil];
  2156. }]];
  2157. if (localFile) {
  2158. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_remove_local_file_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  2159. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", metadata.ocId]];
  2160. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageOcId:metadata.ocId] error:nil];
  2161. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  2162. }]];
  2163. }
  2164. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  2165. }]];
  2166. alertController.popoverPresentationController.sourceView = self.tableView;
  2167. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  2168. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  2169. [alertController.view layoutIfNeeded];
  2170. [self presentViewController:alertController animated:YES completion:nil];
  2171. }
  2172. - (void)actionMore:(UITapGestureRecognizer *)gestureRecognizer
  2173. {
  2174. CGPoint touch = [gestureRecognizer locationInView:self.tableView];
  2175. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touch];
  2176. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2177. NSString *titoloLock, *titleFavorite;
  2178. if (self.metadata.favorite) {
  2179. titleFavorite = NSLocalizedString(@"_remove_favorites_", nil);
  2180. } else {
  2181. titleFavorite = NSLocalizedString(@"_add_favorites_", nil);
  2182. }
  2183. if (self.metadata.directory) {
  2184. // calcolo lockServerUrl
  2185. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:self.metadata.serverUrl addFileName:self.metadata.fileName];
  2186. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  2187. if (directory.lock)
  2188. titoloLock = [NSString stringWithFormat:NSLocalizedString(@"_remove_passcode_", nil)];
  2189. else
  2190. titoloLock = [NSString stringWithFormat:NSLocalizedString(@"_protect_passcode_", nil)];
  2191. }
  2192. // ******************************************* AHKActionSheet *******************************************
  2193. AHKActionSheet *actionSheet = [[AHKActionSheet alloc] initWithView:self.tabBarController.view title:nil];
  2194. actionSheet.animationDuration = 0.2;
  2195. actionSheet.buttonHeight = 50.0;
  2196. actionSheet.cancelButtonHeight = 50.0f;
  2197. actionSheet.separatorHeight = 5.0f;
  2198. actionSheet.automaticallyTintButtonImages = @(NO);
  2199. actionSheet.encryptedButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:[NCBrandColor sharedInstance].encrypted };
  2200. actionSheet.buttonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:[NCBrandColor sharedInstance].textView };
  2201. actionSheet.cancelButtonTextAttributes = @{ NSFontAttributeName:[UIFont boldSystemFontOfSize:17], NSForegroundColorAttributeName:[NCBrandColor sharedInstance].textView };
  2202. actionSheet.disableButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:[NCBrandColor sharedInstance].textView };
  2203. actionSheet.separatorColor = NCBrandColor.sharedInstance.separator;
  2204. actionSheet.cancelButtonTitle = NSLocalizedString(@"_cancel_",nil);
  2205. actionSheet.cancelButtonBackgroudColor = NCBrandColor.sharedInstance.backgroundForm;
  2206. // ******************************************* DIRECTORY *******************************************
  2207. if (self.metadata.directory) {
  2208. BOOL lockDirectory = NO;
  2209. BOOL isOffline = NO;
  2210. NSString *dirServerUrl = [CCUtility stringAppendServerUrl:self.metadata.serverUrl addFileName:self.metadata.fileName];
  2211. BOOL isFolderEncrypted = [CCUtility isFolderEncrypted:[NSString stringWithFormat:@"%@/%@", self.serverUrl, self.metadata.fileName] account:appDelegate.activeAccount];
  2212. // Directory bloccata ?
  2213. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, dirServerUrl]];
  2214. if (directory.lock && [[CCUtility getBlockCode] length] && appDelegate.sessionePasscodeLock == nil) lockDirectory = YES;
  2215. if (directory.offline) isOffline = YES;
  2216. [actionSheet addButtonWithTitle:self.metadata.fileNameView
  2217. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement]
  2218. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2219. height:50.0
  2220. type:AHKActionSheetButtonTypeDisabled
  2221. handler:nil
  2222. ];
  2223. [actionSheet addButtonWithTitle: titleFavorite
  2224. image: [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] multiplier:2 color:[NCBrandColor sharedInstance].yellowFavorite]
  2225. backgroundColor: [NCBrandColor sharedInstance].backgroundForm
  2226. height: 50.0
  2227. type: AHKActionSheetButtonTypeDefault
  2228. handler: ^(AHKActionSheet *as) {
  2229. if (self.metadata.favorite) [self settingFavorite:self.metadata favorite:NO];
  2230. else [self settingFavorite:self.metadata favorite:YES];
  2231. }];
  2232. if (!lockDirectory && !isFolderEncrypted) {
  2233. [actionSheet addButtonWithTitle:NSLocalizedString(@"_details_", nil)
  2234. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"details"] width:50 height:50 color:[NCBrandColor sharedInstance].icon]
  2235. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2236. height:50.0
  2237. type:AHKActionSheetButtonTypeDefault
  2238. handler:^(AHKActionSheet *as) {
  2239. [[NCMainCommon sharedInstance] openShareWithViewController:self metadata:self.metadata indexPage:0];
  2240. }];
  2241. }
  2242. if (!([self.metadata.fileName isEqualToString:_autoUploadFileName] == YES && [self.metadata.serverUrl isEqualToString:_autoUploadDirectory] == YES) && !lockDirectory && !self.metadata.e2eEncrypted) {
  2243. [actionSheet addButtonWithTitle:NSLocalizedString(@"_rename_", nil)
  2244. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"rename"] multiplier:2 color:[NCBrandColor sharedInstance].icon]
  2245. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2246. height:50.0
  2247. type:AHKActionSheetButtonTypeDefault
  2248. handler:^(AHKActionSheet *as) {
  2249. __weak __typeof(UIAlertController) *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_rename_",nil) message:nil preferredStyle:UIAlertControllerStyleAlert];
  2250. [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  2251. textField.text = self.metadata.fileNameView;
  2252. textField.delegate = self;
  2253. [textField addTarget:self action:@selector(minCharTextFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
  2254. }];
  2255. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_",nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  2256. NSLog(@"[LOG] Cancel action");
  2257. }];
  2258. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  2259. UITextField *fileName = alertController.textFields.firstObject;
  2260. [self performSelectorOnMainThread:@selector(renameFile:) withObject:[NSMutableArray arrayWithObjects:self.metadata,fileName.text, nil] waitUntilDone:NO];
  2261. }];
  2262. okAction.enabled = NO;
  2263. [alertController addAction:cancelAction];
  2264. [alertController addAction:okAction];
  2265. [self presentViewController:alertController animated:YES completion:nil];
  2266. }];
  2267. }
  2268. if (!([self.metadata.fileName isEqualToString:_autoUploadFileName] == YES && [self.metadata.serverUrl isEqualToString:_autoUploadDirectory] == YES) && !lockDirectory && !isFolderEncrypted) {
  2269. [actionSheet addButtonWithTitle:NSLocalizedString(@"_move_", nil)
  2270. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"move"] multiplier:2 color:[NCBrandColor sharedInstance].icon]
  2271. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2272. height:50.0
  2273. type:AHKActionSheetButtonTypeDefault
  2274. handler:^(AHKActionSheet *as) {
  2275. [self moveOpenWindow:[[NSArray alloc] initWithObjects:indexPath, nil]];
  2276. }];
  2277. }
  2278. if (!isFolderEncrypted) {
  2279. NSString *title;
  2280. if (isOffline) {
  2281. title = NSLocalizedString(@"_remove_available_offline_", nil);
  2282. } else {
  2283. title = NSLocalizedString(@"_set_available_offline_", nil);
  2284. }
  2285. [actionSheet addButtonWithTitle:title
  2286. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"offline"] multiplier:2 color:[NCBrandColor sharedInstance].icon]
  2287. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2288. height:50.0
  2289. type:AHKActionSheetButtonTypeDefault
  2290. handler:^(AHKActionSheet *as) {
  2291. if (isOffline) {
  2292. [[NCManageDatabase sharedInstance] setDirectoryWithServerUrl:dirServerUrl offline:false account:appDelegate.activeAccount];
  2293. [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  2294. } else {
  2295. [[NCManageDatabase sharedInstance] setDirectoryWithServerUrl:dirServerUrl offline:true account:appDelegate.activeAccount];
  2296. [[CCSynchronize sharedSynchronize] readFolder:dirServerUrl selector:selectorReadFolderWithDownload account:appDelegate.activeAccount];
  2297. [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  2298. }
  2299. }];
  2300. }
  2301. [actionSheet addButtonWithTitle:titoloLock
  2302. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"settingsPasscodeYES"] multiplier:2 color:[NCBrandColor sharedInstance].icon]
  2303. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2304. height:50.0
  2305. type:AHKActionSheetButtonTypeDefault
  2306. handler:^(AHKActionSheet *as) {
  2307. [self performSelector:@selector(comandoLockPassword) withObject:nil];
  2308. }];
  2309. if (!self.metadata.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount]) {
  2310. [actionSheet addButtonWithTitle:NSLocalizedString(@"_e2e_set_folder_encrypted_", nil)
  2311. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"lock"] width:50 height:50 color:[NCBrandColor sharedInstance].icon]
  2312. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2313. height:50.0
  2314. type:AHKActionSheetButtonTypeDefault
  2315. handler:^(AHKActionSheet *as) {
  2316. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  2317. NSError *error = [[NCNetworkingEndToEnd sharedManager] markEndToEndFolderEncryptedOnServerUrl:[NSString stringWithFormat:@"%@/%@", self.serverUrl, self.metadata.fileName] ocId:self.metadata.ocId user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl];
  2318. dispatch_async(dispatch_get_main_queue(), ^{
  2319. if (error) {
  2320. [appDelegate messageNotification:@"_e2e_error_mark_folder_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  2321. } else {
  2322. [[NCManageDatabase sharedInstance] deleteE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, [NSString stringWithFormat:@"%@/%@", self.serverUrl, self.metadata.fileName]]];
  2323. [self readFolder:self.serverUrl];
  2324. }
  2325. });
  2326. });
  2327. }];
  2328. }
  2329. if (self.metadata.e2eEncrypted && !_metadataFolder.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount]) {
  2330. [actionSheet addButtonWithTitle:NSLocalizedString(@"_e2e_remove_folder_encrypted_", nil)
  2331. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"lock"] width:50 height:50 color:[NCBrandColor sharedInstance].icon]
  2332. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2333. height:50.0
  2334. type:AHKActionSheetButtonTypeDefault
  2335. handler:^(AHKActionSheet *as) {
  2336. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  2337. NSError *error = [[NCNetworkingEndToEnd sharedManager] deletemarkEndToEndFolderEncryptedOnServerUrl:[NSString stringWithFormat:@"%@/%@", self.serverUrl, self.metadata.fileName] ocId:self.metadata.ocId user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl];
  2338. dispatch_async(dispatch_get_main_queue(), ^{
  2339. if (error) {
  2340. [appDelegate messageNotification:@"_e2e_error_delete_mark_folder_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  2341. } else {
  2342. [[NCManageDatabase sharedInstance] deleteE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, [NSString stringWithFormat:@"%@/%@", self.serverUrl, self.metadata.fileName]]];
  2343. [self readFolder:self.serverUrl];
  2344. }
  2345. });
  2346. });
  2347. }];
  2348. }
  2349. [actionSheet addButtonWithTitle:NSLocalizedString(@"_delete_", nil)
  2350. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"trash"] width:50 height:50 color:[UIColor redColor]]
  2351. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2352. height:50.0
  2353. type:AHKActionSheetButtonTypeDestructive
  2354. handler:^(AHKActionSheet *as) {
  2355. [self actionDelete:indexPath];
  2356. }];
  2357. [actionSheet show];
  2358. }
  2359. // ******************************************* FILE *******************************************
  2360. if (!self.metadata.directory) {
  2361. UIImage *iconHeader;
  2362. // assegnamo l'immagine anteprima se esiste, altrimenti metti quella standars
  2363. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconOcId:self.metadata.ocId fileNameView:self.metadata.fileNameView]])
  2364. iconHeader = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconOcId:self.metadata.ocId fileNameView:self.metadata.fileNameView]];
  2365. else
  2366. iconHeader = [UIImage imageNamed:self.metadata.iconName];
  2367. [actionSheet addButtonWithTitle: self.metadata.fileNameView
  2368. image: iconHeader
  2369. backgroundColor: [NCBrandColor sharedInstance].backgroundForm
  2370. height: 50.0
  2371. type: AHKActionSheetButtonTypeDisabled
  2372. handler: nil
  2373. ];
  2374. [actionSheet addButtonWithTitle: titleFavorite
  2375. image: [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] multiplier:2 color:[NCBrandColor sharedInstance].yellowFavorite]
  2376. backgroundColor: [NCBrandColor sharedInstance].backgroundForm
  2377. height: 50.0
  2378. type: AHKActionSheetButtonTypeDefault
  2379. handler: ^(AHKActionSheet *as) {
  2380. if (self.metadata.favorite) [self settingFavorite:self.metadata favorite:NO];
  2381. else [self settingFavorite:self.metadata favorite:YES];
  2382. }];
  2383. if (!_metadataFolder.e2eEncrypted) {
  2384. [actionSheet addButtonWithTitle:NSLocalizedString(@"_details_", nil)
  2385. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"details"] width:50 height:50 color:[NCBrandColor sharedInstance].icon]
  2386. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2387. height: 50.0
  2388. type:AHKActionSheetButtonTypeDefault
  2389. handler:^(AHKActionSheet *as) {
  2390. [[NCMainCommon sharedInstance] openShareWithViewController:self metadata:self.metadata indexPage:0];
  2391. }];
  2392. }
  2393. if (![NCBrandOptions sharedInstance].disable_openin_file) {
  2394. [actionSheet addButtonWithTitle:NSLocalizedString(@"_open_in_", nil)
  2395. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"openFile"] multiplier:2 color:[NCBrandColor sharedInstance].icon]
  2396. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2397. height: 50.0
  2398. type:AHKActionSheetButtonTypeDefault
  2399. handler:^(AHKActionSheet *as) {
  2400. [self performSelector:@selector(openinFile:) withObject:nil];
  2401. }];
  2402. }
  2403. [actionSheet addButtonWithTitle:NSLocalizedString(@"_rename_", nil)
  2404. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"rename"] multiplier:2 color:[NCBrandColor sharedInstance].icon]
  2405. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2406. height: 50.0
  2407. type:AHKActionSheetButtonTypeDefault
  2408. handler:^(AHKActionSheet *as) {
  2409. __weak __typeof(UIAlertController) *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_rename_",nil) message:nil preferredStyle:UIAlertControllerStyleAlert];
  2410. [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  2411. textField.text = self.metadata.fileNameView;
  2412. textField.delegate = self;
  2413. [textField addTarget:self action:@selector(minCharTextFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
  2414. }];
  2415. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_",nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  2416. NSLog(@"[LOG] Cancel action");
  2417. }];
  2418. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  2419. UITextField *fileName = alertController.textFields.firstObject;
  2420. [self performSelectorOnMainThread:@selector(renameFile:) withObject:[NSMutableArray arrayWithObjects:self.metadata,fileName.text, nil] waitUntilDone:NO];
  2421. }];
  2422. okAction.enabled = NO;
  2423. [alertController addAction:cancelAction];
  2424. [alertController addAction:okAction];
  2425. [self presentViewController:alertController animated:YES completion:nil];
  2426. }];
  2427. if (!_metadataFolder.e2eEncrypted) {
  2428. [actionSheet addButtonWithTitle:NSLocalizedString(@"_move_", nil)
  2429. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"move"] multiplier:2 color:[NCBrandColor sharedInstance].icon]
  2430. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2431. height:50.0
  2432. type:AHKActionSheetButtonTypeDefault
  2433. handler:^(AHKActionSheet *as) {
  2434. [self moveOpenWindow:[[NSArray alloc] initWithObjects:indexPath, nil]];
  2435. }];
  2436. }
  2437. if ([NCUtility.sharedInstance isEditImage:self.metadata.fileNameView] != nil && !_metadataFolder.e2eEncrypted && self.metadata.status == k_metadataStatusNormal) {
  2438. [actionSheet addButtonWithTitle:NSLocalizedString(@"_modify_photo_", nil)
  2439. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"modifyPhoto"] width:50 height:50 color:[NCBrandColor sharedInstance].icon]
  2440. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2441. height:50.0
  2442. type:AHKActionSheetButtonTypeDefault
  2443. handler:^(AHKActionSheet *as) {
  2444. self.metadata.session = k_download_session;
  2445. self.metadata.sessionError = @"";
  2446. self.metadata.sessionSelector = selectorDownloadEditPhoto;
  2447. self.metadata.status = k_metadataStatusWaitDownload;
  2448. (void)[[NCManageDatabase sharedInstance] addMetadata:self.metadata];
  2449. [appDelegate startLoadAutoDownloadUpload];
  2450. }];
  2451. }
  2452. if (!_metadataFolder.e2eEncrypted) {
  2453. NSString *title;
  2454. tableLocalFile *localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", self.metadata.ocId]];
  2455. if (localFile == nil || localFile.offline == false) { title = NSLocalizedString(@"_set_available_offline_", nil); }
  2456. else { title = NSLocalizedString(@"_remove_available_offline_", nil); }
  2457. [actionSheet addButtonWithTitle:title
  2458. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"offline"] multiplier:2 color:[NCBrandColor sharedInstance].icon]
  2459. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2460. height:50.0
  2461. type:AHKActionSheetButtonTypeDefault
  2462. handler:^(AHKActionSheet *as) {
  2463. if (localFile == nil || ![CCUtility fileProviderStorageExists:self.metadata.ocId fileNameView:self.metadata.fileNameView]) {
  2464. self.metadata.session = k_download_session;
  2465. self.metadata.sessionError = @"";
  2466. self.metadata.sessionSelector = selectorLoadOffline;
  2467. self.metadata.status = k_metadataStatusWaitDownload;
  2468. // Add Metadata for Download
  2469. (void)[[NCManageDatabase sharedInstance] addMetadata:self.metadata];
  2470. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:self.metadata.ocId action:k_action_MOD];
  2471. [appDelegate startLoadAutoDownloadUpload];
  2472. } else if (localFile.offline == false) {
  2473. [[NCManageDatabase sharedInstance] setLocalFileWithOcId:self.metadata.ocId offline:true];
  2474. [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  2475. } else {
  2476. [[NCManageDatabase sharedInstance] setLocalFileWithOcId:self.metadata.ocId offline:false];
  2477. [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  2478. }
  2479. }];
  2480. }
  2481. [actionSheet addButtonWithTitle:NSLocalizedString(@"_delete_", nil)
  2482. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"trash"] width:50 height:50 color:[UIColor redColor]]
  2483. backgroundColor:[NCBrandColor sharedInstance].backgroundForm
  2484. height:50.0
  2485. type:AHKActionSheetButtonTypeDestructive
  2486. handler:^(AHKActionSheet *as) {
  2487. [self actionDelete:indexPath];
  2488. }];
  2489. [actionSheet show];
  2490. }
  2491. }
  2492. #pragma --------------------------------------------------------------------------------------------
  2493. #pragma mark - ==== Datasource ====
  2494. #pragma --------------------------------------------------------------------------------------------
  2495. - (void)clearDateReadDataSource:(NSNotification *)notification
  2496. {
  2497. _dateReadDataSource = Nil;
  2498. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:nil action:k_action_NULL];
  2499. }
  2500. - (void)reloadDatasource:(NSString *)serverUrl ocId:(NSString *)ocId action:(NSInteger)action
  2501. {
  2502. // test
  2503. if (appDelegate.activeAccount.length == 0 || serverUrl.length == 0 || serverUrl == nil || self.view.window == nil)
  2504. return;
  2505. // Search Mode
  2506. if (_isSearchMode) {
  2507. // Create metadatas
  2508. NSMutableArray *metadatas = [NSMutableArray new];
  2509. for (tableMetadata *resultMetadata in _searchResultMetadatas) {
  2510. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", resultMetadata.ocId]];
  2511. if (metadata) {
  2512. [metadatas addObject:metadata];
  2513. }
  2514. }
  2515. sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:metadatas listProgressMetadata:nil groupByField:[CCUtility getGroupBySettings] filterocId:appDelegate.filterocId filterTypeFileImage:NO filterTypeFileVideo:NO sorted:@"fileName" ascending:NO activeAccount:appDelegate.activeAccount];
  2516. [self tableViewReloadData];
  2517. if ([sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] >= k_minCharsSearch) {
  2518. _noFilesSearchTitle = NSLocalizedString(@"_search_no_record_found_", nil);
  2519. _noFilesSearchDescription = @"";
  2520. }
  2521. if ([sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] < k_minCharsSearch) {
  2522. _noFilesSearchTitle = @"";
  2523. _noFilesSearchDescription = NSLocalizedString(@"_search_instruction_", nil);
  2524. }
  2525. [self.tableView reloadEmptyDataSet];
  2526. return;
  2527. }
  2528. // Se non siamo nella dir appropriata esci
  2529. if ([serverUrl isEqualToString:self.serverUrl] == NO || self.serverUrl == nil) {
  2530. return;
  2531. }
  2532. // Controllo data lettura Data Source
  2533. tableDirectory *tableDirectory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, serverUrl]];
  2534. if (tableDirectory == nil) {
  2535. return;
  2536. }
  2537. // Get MetadataFolder
  2538. if ([serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]])
  2539. _metadataFolder = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, k_serverUrl_root]];
  2540. else
  2541. _metadataFolder = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"ocId == %@", tableDirectory.ocId]];
  2542. // Remove optimization for encrypted directory
  2543. if (_metadataFolder.e2eEncrypted)
  2544. _dateReadDataSource = nil;
  2545. NSDate *dateDateRecordDirectory = tableDirectory.dateReadDirectory;
  2546. if ([dateDateRecordDirectory compare:_dateReadDataSource] == NSOrderedDescending || dateDateRecordDirectory == nil || _dateReadDataSource == nil) {
  2547. NSLog(@"[LOG] Rebuild Data Source File : %@", _serverUrl);
  2548. _dateReadDataSource = [NSDate date];
  2549. // Data Source
  2550. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  2551. CCSectionDataSourceMetadata *sectionDataSourceTemp = [self queryDatasourceWithReloadData:NO serverUrl:serverUrl];
  2552. dispatch_async(dispatch_get_main_queue(), ^{
  2553. sectionDataSource = sectionDataSourceTemp;
  2554. [self tableViewReloadData];
  2555. });
  2556. });
  2557. } else {
  2558. [self tableViewReloadData];
  2559. NSLog(@"[LOG] [OPTIMIZATION] Rebuild Data Source File : %@ - %@", _serverUrl, _dateReadDataSource);
  2560. }
  2561. // BLINK
  2562. if (self.blinkFileNamePath != nil) {
  2563. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  2564. for (NSString *key in sectionDataSource.allRecordsDataSource) {
  2565. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:key];
  2566. NSString *metadataFileNamePath = [NSString stringWithFormat:@"%@/%@", metadata.serverUrl, metadata.fileName];
  2567. if ([metadataFileNamePath isEqualToString:self.blinkFileNamePath]) {
  2568. for (NSString *key in sectionDataSource.ocIdIndexPath) {
  2569. if ([key isEqualToString:metadata.ocId]) {
  2570. NSIndexPath *indexPath = [sectionDataSource.ocIdIndexPath objectForKey:key];
  2571. [self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];
  2572. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  2573. CCCellMain *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  2574. if (cell) {
  2575. self.blinkFileNamePath = nil;
  2576. [[NCUtility sharedInstance] blinkWithCell:cell];
  2577. }
  2578. });
  2579. }
  2580. }
  2581. }
  2582. }
  2583. });
  2584. }
  2585. }
  2586. - (CCSectionDataSourceMetadata *)queryDatasourceWithReloadData:(BOOL)withReloadData serverUrl:(NSString *)serverUrl
  2587. {
  2588. // test
  2589. if (appDelegate.activeAccount.length == 0 || serverUrl == nil) {
  2590. return nil;
  2591. }
  2592. // get auto upload folder
  2593. _autoUploadFileName = [[NCManageDatabase sharedInstance] getAccountAutoUploadFileName];
  2594. _autoUploadDirectory = [[NCManageDatabase sharedInstance] getAccountAutoUploadDirectory:appDelegate.activeUrl];
  2595. CCSectionDataSourceMetadata *sectionDataSourceTemp = [CCSectionDataSourceMetadata new];
  2596. NSArray *recordsTableMetadata = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND status != %i", appDelegate.activeAccount, serverUrl, k_metadataStatusHide] sorted:nil ascending:NO];
  2597. sectionDataSourceTemp = [CCSectionMetadata creataDataSourseSectionMetadata:recordsTableMetadata listProgressMetadata:nil groupByField:[CCUtility getGroupBySettings] filterocId:appDelegate.filterocId filterTypeFileImage:NO filterTypeFileVideo:NO sorted:[CCUtility getOrderSettings] ascending:[CCUtility getAscendingSettings] activeAccount:appDelegate.activeAccount];
  2598. if (withReloadData) {
  2599. sectionDataSource = sectionDataSourceTemp;
  2600. [self tableViewReloadData];
  2601. }
  2602. return sectionDataSourceTemp;
  2603. }
  2604. - (NSArray *)getMetadatasFromSelectedRows:(NSArray *)selectedRows
  2605. {
  2606. NSMutableArray *metadatas = [[NSMutableArray alloc] init];
  2607. if (selectedRows.count > 0) {
  2608. for (NSIndexPath *selectionIndex in selectedRows) {
  2609. NSString *ocId = [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:selectionIndex.section]] objectAtIndex:selectionIndex.row];
  2610. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:ocId];
  2611. [metadatas addObject:metadata];
  2612. }
  2613. }
  2614. return metadatas;
  2615. }
  2616. - (NSArray *)getMetadatasFromSectionDataSource:(NSInteger)section
  2617. {
  2618. NSInteger totSections =[sectionDataSource.sections count] ;
  2619. if ((totSections < (section + 1)) || ((section + 1) > totSections)) {
  2620. return nil;
  2621. }
  2622. id valueSection = [sectionDataSource.sections objectAtIndex:section];
  2623. return [sectionDataSource.sectionArrayRow objectForKey:valueSection];
  2624. }
  2625. #pragma --------------------------------------------------------------------------------------------
  2626. #pragma mark - ==== Table ====
  2627. #pragma --------------------------------------------------------------------------------------------
  2628. - (void)tableViewSelect:(BOOL)edit
  2629. {
  2630. // chiudiamo eventuali swipe aperti
  2631. if (edit)
  2632. [self.tableView setEditing:NO animated:NO];
  2633. [self.tableView setAllowsMultipleSelectionDuringEditing:edit];
  2634. [self.tableView setEditing:edit animated:YES];
  2635. _isSelectedMode = edit;
  2636. if (edit)
  2637. [self setUINavigationBarSelected];
  2638. else
  2639. [self setUINavigationBarDefault];
  2640. [_selectedocIdsMetadatas removeAllObjects];
  2641. [self setTitle];
  2642. }
  2643. - (void)tableViewReloadData
  2644. {
  2645. // store selected cells before relod
  2646. NSArray *indexPaths = [self.tableView indexPathsForSelectedRows];
  2647. // reload table view
  2648. [self.tableView reloadData];
  2649. // selected cells stored
  2650. for (NSIndexPath *path in indexPaths)
  2651. [self.tableView selectRowAtIndexPath:path animated:NO scrollPosition:UITableViewScrollPositionNone];
  2652. [self setTableViewFooter];
  2653. if (self.tableView.editing)
  2654. [self setTitle];
  2655. [self.tableView reloadEmptyDataSet];
  2656. }
  2657. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
  2658. {
  2659. if (tableView.editing == 1) {
  2660. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2661. if (!metadata || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata])
  2662. return NO;
  2663. if (metadata == nil || metadata.status != k_metadataStatusNormal)
  2664. return NO;
  2665. else
  2666. return YES;
  2667. } else {
  2668. [_selectedocIdsMetadatas removeAllObjects];
  2669. }
  2670. return YES;
  2671. }
  2672. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  2673. {
  2674. return 60;
  2675. }
  2676. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  2677. {
  2678. return [[sectionDataSource.sectionArrayRow allKeys] count];
  2679. }
  2680. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  2681. {
  2682. return [[sectionDataSource.sectionArrayRow objectForKey:[sectionDataSource.sections objectAtIndex:section]] count];
  2683. }
  2684. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  2685. {
  2686. NSArray *sections = [sectionDataSource.sectionArrayRow allKeys];
  2687. NSString *sectionTitle = [sections objectAtIndex:section];
  2688. if ([sectionTitle isKindOfClass:[NSString class]] && [sectionTitle rangeOfString:@"download"].location != NSNotFound) return 18.f;
  2689. if ([sectionTitle isKindOfClass:[NSString class]] && [sectionTitle rangeOfString:@"upload"].location != NSNotFound) return 18.f;
  2690. if ([[CCUtility getGroupBySettings] isEqualToString:@"none"] && [sections count] <= 1) return 0.0f;
  2691. return 20.f;
  2692. }
  2693. -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  2694. {
  2695. float shift;
  2696. UIVisualEffectView *visualEffectView;
  2697. NSString *titleSection;
  2698. if (![self indexPathIsValid:[NSIndexPath indexPathForRow:0 inSection:section]])
  2699. return nil;
  2700. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSString class]])
  2701. titleSection = [sectionDataSource.sections objectAtIndex:section];
  2702. if ([[sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSDate class]])
  2703. titleSection = [CCUtility getTitleSectionDate:[sectionDataSource.sections objectAtIndex:section]];
  2704. if ([titleSection isEqualToString:@"_none_"]) titleSection = @"";
  2705. else if ([titleSection rangeOfString:@"download"].location != NSNotFound) titleSection = NSLocalizedString(@"_title_section_download_",nil);
  2706. else if ([titleSection rangeOfString:@"upload"].location != NSNotFound) titleSection = NSLocalizedString(@"_title_section_upload_",nil);
  2707. else titleSection = NSLocalizedString(titleSection,nil);
  2708. // Format title
  2709. NSString *currentDevice = [CCUtility currentDevice];
  2710. if ([currentDevice rangeOfString:@"iPad3"].location != NSNotFound) {
  2711. visualEffectView = [[UIVisualEffectView alloc] init];
  2712. visualEffectView.backgroundColor = [[NCBrandColor sharedInstance].brand colorWithAlphaComponent:0.3];
  2713. } else {
  2714. UIVisualEffect *blurEffect;
  2715. blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
  2716. visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
  2717. visualEffectView.backgroundColor = [[NCBrandColor sharedInstance].brand colorWithAlphaComponent:0.2];
  2718. }
  2719. if ([[CCUtility getGroupBySettings] isEqualToString:@"alphabetic"]) {
  2720. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  2721. shift = - 35;
  2722. else
  2723. shift = - 20;
  2724. } else shift = - 10;
  2725. // Title
  2726. UILabel *titleLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, -12, 0, 44)];
  2727. titleLabel.backgroundColor = [UIColor clearColor];
  2728. titleLabel.textColor = [UIColor blackColor];
  2729. titleLabel.font = [UIFont systemFontOfSize:12];
  2730. titleLabel.textAlignment = NSTextAlignmentLeft;
  2731. titleLabel.text = titleSection;
  2732. titleLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  2733. [visualEffectView.contentView addSubview:titleLabel];
  2734. // Elements
  2735. UILabel *elementLabel= [[UILabel alloc]initWithFrame:CGRectMake(shift, -12, 0, 44)];
  2736. elementLabel.backgroundColor = [UIColor clearColor];
  2737. elementLabel.textColor = [UIColor blackColor];;
  2738. elementLabel.font = [UIFont systemFontOfSize:12];
  2739. elementLabel.textAlignment = NSTextAlignmentRight;
  2740. elementLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  2741. NSArray *metadatas = [self getMetadatasFromSectionDataSource:section];
  2742. NSUInteger rowsCount = [metadatas count];
  2743. if (rowsCount == 0) return nil;
  2744. if (rowsCount == 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_element_",nil)];
  2745. if (rowsCount > 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_elements_",nil)];
  2746. [visualEffectView.contentView addSubview:elementLabel];
  2747. return visualEffectView;
  2748. }
  2749. - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
  2750. {
  2751. return [sectionDataSource.sections indexOfObject:title];
  2752. }
  2753. - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
  2754. {
  2755. if ([[CCUtility getGroupBySettings] isEqualToString:@"alphabetic"])
  2756. return [[UILocalizedIndexedCollation currentCollation] sectionIndexTitles];
  2757. else
  2758. return nil;
  2759. }
  2760. /*
  2761. -(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
  2762. {
  2763. if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){
  2764. }
  2765. }
  2766. */
  2767. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  2768. {
  2769. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2770. tableShare *shareCell;
  2771. if (metadata == nil || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata] || (_metadataFolder != nil && [[NCManageDatabase sharedInstance] isTableInvalidated:_metadataFolder])) {
  2772. return [CCCellMain new];
  2773. }
  2774. for (tableShare *share in appDelegate.shares) {
  2775. if ([share.serverUrl isEqualToString:metadata.serverUrl] && [share.fileName isEqualToString:metadata.fileName]) {
  2776. shareCell = share;
  2777. break;
  2778. }
  2779. }
  2780. UITableViewCell *cell = [[NCMainCommon sharedInstance] cellForRowAtIndexPath:indexPath tableView:tableView metadata:metadata metadataFolder:_metadataFolder serverUrl:self.serverUrl autoUploadFileName:_autoUploadFileName autoUploadDirectory:_autoUploadDirectory tableShare:shareCell];
  2781. // NORMAL - > MAIN
  2782. if ([cell isKindOfClass:[CCCellMain class]]) {
  2783. // Comment tap
  2784. if (metadata.commentsUnread) {
  2785. UITapGestureRecognizer *tapComment = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionComment:)];
  2786. [tapComment setNumberOfTapsRequired:1];
  2787. ((CCCellMain *)cell).comment.userInteractionEnabled = YES;
  2788. [((CCCellMain *)cell).comment addGestureRecognizer:tapComment];
  2789. }
  2790. // Share add Tap
  2791. UITapGestureRecognizer *tapShare = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionShared:)];
  2792. [tapShare setNumberOfTapsRequired:1];
  2793. ((CCCellMain *)cell).viewShared.userInteractionEnabled = YES;
  2794. [((CCCellMain *)cell).viewShared addGestureRecognizer:tapShare];
  2795. // More
  2796. if ([self canOpenMenuAction:metadata]) {
  2797. UITapGestureRecognizer *tapMore = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(actionMore:)];
  2798. [tapMore setNumberOfTapsRequired:1];
  2799. ((CCCellMain *)cell).more.userInteractionEnabled = YES;
  2800. [((CCCellMain *)cell).more addGestureRecognizer:tapMore];
  2801. }
  2802. // MGSwipeButton
  2803. ((CCCellMain *)cell).delegate = self;
  2804. // LEFT
  2805. ((CCCellMain *)cell).leftButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:self.cellFavouriteImage backgroundColor:[NCBrandColor sharedInstance].yellowFavorite padding:25]];
  2806. ((CCCellMain *)cell).leftExpansion.buttonIndex = 0;
  2807. ((CCCellMain *)cell).leftExpansion.fillOnTrigger = NO;
  2808. //centerIconOverText
  2809. MGSwipeButton *favoriteButton = (MGSwipeButton *)[((CCCellMain *)cell).leftButtons objectAtIndex:0];
  2810. [favoriteButton centerIconOverText];
  2811. // RIGHT
  2812. ((CCCellMain *)cell).rightButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:self.cellTrashImage backgroundColor:[UIColor redColor] padding:25]];
  2813. ((CCCellMain *)cell).rightExpansion.buttonIndex = 0;
  2814. ((CCCellMain *)cell).rightExpansion.fillOnTrigger = NO;
  2815. //centerIconOverText
  2816. MGSwipeButton *deleteButton = (MGSwipeButton *)[((CCCellMain *)cell).rightButtons objectAtIndex:0];
  2817. [deleteButton centerIconOverText];
  2818. }
  2819. // TRANSFER
  2820. if ([cell isKindOfClass:[CCCellMainTransfer class]]) {
  2821. // gesture Transfer
  2822. [((CCCellMainTransfer *)cell).transferButton.stopButton addTarget:self action:@selector(cancelTaskButton:withEvent:) forControlEvents:UIControlEventTouchUpInside];
  2823. UILongPressGestureRecognizer *stopLongGesture = [UILongPressGestureRecognizer new];
  2824. [stopLongGesture addTarget:self action:@selector(cancelAllTask:)];
  2825. [((CCCellMainTransfer *)cell).transferButton.stopButton addGestureRecognizer:stopLongGesture];
  2826. }
  2827. return cell;
  2828. }
  2829. - (void)setTableViewFooter
  2830. {
  2831. UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  2832. [footerView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  2833. UILabel *footerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  2834. [footerLabel setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  2835. UIFont *appFont = [UIFont systemFontOfSize:12];
  2836. footerLabel.font = appFont;
  2837. footerLabel.textColor = [UIColor grayColor];
  2838. footerLabel.backgroundColor = [UIColor clearColor];
  2839. footerLabel.textAlignment = NSTextAlignmentCenter;
  2840. NSString *folders;
  2841. NSString *files;
  2842. NSString *footerText;
  2843. if (sectionDataSource.directories > 1) {
  2844. folders = [NSString stringWithFormat:@"%ld %@", (long)sectionDataSource.directories, NSLocalizedString(@"_folders_", nil)];
  2845. } else if (sectionDataSource.directories == 1){
  2846. folders = [NSString stringWithFormat:@"%ld %@", (long)sectionDataSource.directories, NSLocalizedString(@"_folder_", nil)];
  2847. } else {
  2848. folders = @"";
  2849. }
  2850. if (sectionDataSource.files > 1) {
  2851. files = [NSString stringWithFormat:@"%ld %@ %@", (long)sectionDataSource.files, NSLocalizedString(@"_files_", nil), [CCUtility transformedSize:sectionDataSource.totalSize]];
  2852. } else if (sectionDataSource.files == 1){
  2853. files = [NSString stringWithFormat:@"%ld %@ %@", (long)sectionDataSource.files, NSLocalizedString(@"_file_", nil), [CCUtility transformedSize:sectionDataSource.totalSize]];
  2854. } else {
  2855. files = @"";
  2856. }
  2857. if ([folders isEqualToString:@""]) {
  2858. footerText = files;
  2859. } else if ([files isEqualToString:@""]) {
  2860. footerText = folders;
  2861. } else {
  2862. footerText = [NSString stringWithFormat:@"%@, %@", folders, files];
  2863. }
  2864. footerLabel.text = footerText;
  2865. [footerView addSubview:footerLabel];
  2866. [self.tableView setTableFooterView:footerView];
  2867. }
  2868. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  2869. {
  2870. CCCellMain *cell = [tableView cellForRowAtIndexPath:indexPath];
  2871. // settiamo il record file.
  2872. self.metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2873. if (!self.metadata)
  2874. return;
  2875. // se non può essere selezionata deseleziona
  2876. if ([cell isEditing] == NO)
  2877. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  2878. // se siamo in modalità editing impostiamo il titolo dei selezioati e usciamo subito
  2879. if (self.tableView.editing) {
  2880. [_selectedocIdsMetadatas setObject:self.metadata forKey:self.metadata.ocId];
  2881. [self setTitle];
  2882. return;
  2883. }
  2884. // se è in corso una sessione
  2885. if (self.metadata.status != k_metadataStatusNormal)
  2886. return;
  2887. // file
  2888. if (self.metadata.directory == NO) {
  2889. // se il file esiste andiamo direttamente al delegato altrimenti carichiamolo
  2890. if ([CCUtility fileProviderStorageExists:self.metadata.ocId fileNameView:self.metadata.fileNameView]) {
  2891. [[NCNetworkingMain sharedInstance] downloadFileSuccessFailure:self.metadata.fileName ocId:self.metadata.ocId serverUrl:self.metadata.serverUrl selector:selectorLoadFileView errorMessage:@"" errorCode:0];
  2892. } else {
  2893. if (_metadataFolder.e2eEncrypted && ![CCUtility isEndToEndEnabled:appDelegate.activeAccount]) {
  2894. [appDelegate messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  2895. } else {
  2896. if (([self.metadata.typeFile isEqualToString: k_metadataTypeFile_video] || [self.metadata.typeFile isEqualToString: k_metadataTypeFile_audio] || [self.metadata.typeFile isEqualToString: k_metadataTypeFile_image]) && _metadataFolder.e2eEncrypted == NO) {
  2897. [self shouldPerformSegue:self.metadata];
  2898. } else if ([self.metadata.typeFile isEqualToString: k_metadataTypeFile_document] && [[NCUtility sharedInstance] isRichDocument:self.metadata]) {
  2899. if (appDelegate.reachability.isReachable) {
  2900. [self shouldPerformSegue:self.metadata];
  2901. } else {
  2902. [appDelegate messageNotification:@"_info_" description:@"_go_online_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  2903. }
  2904. } else {
  2905. self.metadata.session = k_download_session;
  2906. self.metadata.sessionError = @"";
  2907. self.metadata.sessionSelector = selectorLoadFileView;
  2908. self.metadata.status = k_metadataStatusWaitDownload;
  2909. // Add Metadata for Download
  2910. (void)[[NCManageDatabase sharedInstance] addMetadata:self.metadata];
  2911. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:self.serverUrl ocId:self.metadata.ocId action:k_action_MOD];
  2912. [appDelegate startLoadAutoDownloadUpload];
  2913. }
  2914. }
  2915. }
  2916. }
  2917. if (self.metadata.directory) {
  2918. [self performSegueDirectoryWithControlPasscode:true metadata:self.metadata blinkFileNamePath:self.blinkFileNamePath];
  2919. }
  2920. }
  2921. - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(nonnull NSIndexPath *)indexPath
  2922. {
  2923. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2924. [_selectedocIdsMetadatas removeObjectForKey:metadata.ocId];
  2925. [self setTitle];
  2926. }
  2927. - (void)didSelectAll
  2928. {
  2929. for (int i = 0; i < self.tableView.numberOfSections; i++) {
  2930. for (int j = 0; j < [self.tableView numberOfRowsInSection:i]; j++) {
  2931. NSIndexPath *indexPath = [NSIndexPath indexPathForRow:j inSection:i];
  2932. tableMetadata *metadata = [[NCMainCommon sharedInstance] getMetadataFromSectionDataSourceIndexPath:indexPath sectionDataSource:sectionDataSource];
  2933. [_selectedocIdsMetadatas setObject:metadata forKey:metadata.ocId];
  2934. [self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
  2935. }
  2936. }
  2937. [self setTitle];
  2938. }
  2939. - (BOOL)indexPathIsValid:(NSIndexPath *)indexPath
  2940. {
  2941. if (!indexPath)
  2942. return NO;
  2943. NSInteger section = indexPath.section;
  2944. NSInteger row = indexPath.row;
  2945. NSInteger lastSectionIndex = [self numberOfSectionsInTableView:self.tableView] - 1;
  2946. if (section > lastSectionIndex || lastSectionIndex < 0)
  2947. return NO;
  2948. NSInteger rowCount = [self.tableView numberOfRowsInSection:indexPath.section] - 1;
  2949. if (rowCount < 0)
  2950. return NO;
  2951. return row <= rowCount;
  2952. }
  2953. #pragma --------------------------------------------------------------------------------------------
  2954. #pragma mark ===== Navigation ====
  2955. #pragma --------------------------------------------------------------------------------------------
  2956. - (void)shouldPerformSegue:(tableMetadata *)metadata
  2957. {
  2958. // if background return
  2959. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return;
  2960. if (self.view.window == NO)
  2961. return;
  2962. // Collapsed ma siamo già in detail esci
  2963. if (self.splitViewController.isCollapsed)
  2964. if (_detailViewController.isViewLoaded && _detailViewController.view.window) return;
  2965. // Metadata for push detail
  2966. self.metadataForPushDetail = metadata;
  2967. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  2968. }
  2969. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  2970. {
  2971. id viewController = segue.destinationViewController;
  2972. tableMetadata *metadata;
  2973. if ([viewController isKindOfClass:[UINavigationController class]]) {
  2974. UINavigationController *nav = viewController;
  2975. _detailViewController = (CCDetail *)nav.topViewController;
  2976. } else {
  2977. _detailViewController = segue.destinationViewController;
  2978. }
  2979. NSMutableArray *photoDataSource = [NSMutableArray new];
  2980. if ([sender isKindOfClass:[tableMetadata class]]) {
  2981. metadata = sender;
  2982. [photoDataSource addObject:sender];
  2983. } else {
  2984. metadata = self.metadataForPushDetail;
  2985. for (NSString *ocId in sectionDataSource.allOcId) {
  2986. tableMetadata *metadata = [sectionDataSource.allRecordsDataSource objectForKey:ocId];
  2987. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  2988. [photoDataSource addObject:metadata];
  2989. }
  2990. }
  2991. _detailViewController.metadataDetail = metadata;
  2992. _detailViewController.photoDataSource = photoDataSource;
  2993. _detailViewController.dateFilterQuery = nil;
  2994. [_detailViewController setTitle:metadata.fileNameView];
  2995. }
  2996. // can i go to next viewcontroller
  2997. - (void)performSegueDirectoryWithControlPasscode:(BOOL)controlPasscode metadata:(tableMetadata *)metadata blinkFileNamePath:(NSString *)blinkFileNamePath
  2998. {
  2999. NSString *nomeDir;
  3000. if (self.tableView.editing == NO) {
  3001. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:metadata.fileName];
  3002. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", metadata.account, lockServerUrl]];
  3003. // 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
  3004. if (directory.lock && [[CCUtility getBlockCode] length] && appDelegate.sessionePasscodeLock == nil && controlPasscode) {
  3005. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  3006. viewController.delegate = self;
  3007. viewController.fromType = CCBKPasscodeFromLockDirectory;
  3008. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  3009. viewController.inputViewTitlePassword = YES;
  3010. if ([CCUtility getSimplyBlockCode]) {
  3011. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  3012. viewController.passcodeInputView.maximumLength = 6;
  3013. } else {
  3014. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  3015. viewController.passcodeInputView.maximumLength = 64;
  3016. }
  3017. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  3018. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  3019. viewController.touchIDManager = touchIDManager;
  3020. viewController.title = NSLocalizedString(@"_folder_blocked_", nil);
  3021. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  3022. viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
  3023. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
  3024. [self presentViewController:navController animated:YES completion:nil];
  3025. return;
  3026. }
  3027. // E2EE Check enable
  3028. if (metadata.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount] == NO) {
  3029. [appDelegate messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  3030. return;
  3031. }
  3032. nomeDir = metadata.fileName;
  3033. NSString *serverUrlPush = [CCUtility stringAppendServerUrl:metadata.serverUrl addFileName:nomeDir];
  3034. CCMain *viewController = [appDelegate.listMainVC objectForKey:serverUrlPush];
  3035. if (!viewController) {
  3036. viewController = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMain"];
  3037. viewController.serverUrl = serverUrlPush;
  3038. viewController.titleMain = metadata.fileName;
  3039. viewController.blinkFileNamePath = blinkFileNamePath;
  3040. // save self
  3041. [appDelegate.listMainVC setObject:viewController forKey:serverUrlPush];
  3042. [self.navigationController pushViewController:viewController animated:YES];
  3043. } else {
  3044. if (viewController.isViewLoaded) {
  3045. viewController.titleMain = metadata.fileName;
  3046. viewController.blinkFileNamePath = blinkFileNamePath;
  3047. // Fix : Application tried to present modally an active controller
  3048. if ([self.navigationController isBeingPresented]) {
  3049. // being presented
  3050. } else if ([self.navigationController isMovingToParentViewController]) {
  3051. // being pushed
  3052. } else {
  3053. [self.navigationController pushViewController:viewController animated:YES];
  3054. }
  3055. }
  3056. }
  3057. }
  3058. }
  3059. @end