CCMain.m 221 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995
  1. //
  2. // CCMain.m
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 04/09/14.
  6. // Copyright (c) 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "CCMain.h"
  24. #import "AppDelegate.h"
  25. #import "CCPhotos.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 "CTAssetCheckmark.h"
  33. #import "JDStatusBarNotification.h"
  34. #import "NCAutoUpload.h"
  35. #import "NCBridgeSwift.h"
  36. #import "NCNetworkingEndToEnd.h"
  37. #import "PKDownloadButton.h"
  38. @interface CCMain () <CCActionsDeleteDelegate, CCActionsRenameDelegate, CCActionsSearchDelegate, CCActionsDownloadThumbnailDelegate, CCActionsSettingFavoriteDelegate, UITextViewDelegate, createFormUploadAssetsDelegate, MGSwipeTableCellDelegate, CCLoginDelegate, CCLoginDelegateWeb, PKDownloadButtonDelegate>
  39. {
  40. AppDelegate *appDelegate;
  41. tableMetadata *_metadata;
  42. BOOL _isRoot;
  43. BOOL _isViewDidLoad;
  44. NSMutableDictionary *_selectedFileIDsMetadatas;
  45. NSUInteger _numSelectedFileIDsMetadatas;
  46. NSMutableArray *_queueSelector;
  47. UIImageView *_ImageTitleHomeCryptoCloud;
  48. NSString *_directoryGroupBy;
  49. NSString *_directoryOrder;
  50. NSUInteger _failedAttempts;
  51. NSDate *_lockUntilDate;
  52. NSString *_fatherPermission;
  53. UIRefreshControl *_refreshControl;
  54. UIDocumentInteractionController *_docController;
  55. CCHud *_hud;
  56. // Datasource
  57. CCSectionDataSourceMetadata *_sectionDataSource;
  58. NSDate *_dateReadDataSource;
  59. // Search
  60. BOOL _isSearchMode;
  61. NSString *_searchFileName;
  62. NSMutableArray *_searchResultMetadatas;
  63. NSString *_noFilesSearchTitle;
  64. NSString *_noFilesSearchDescription;
  65. NSTimer *_timerWaitInput;
  66. // Automatic Upload Folder
  67. NSString *_autoUploadFileName;
  68. NSString *_autoUploadDirectory;
  69. // Folder
  70. BOOL _loadingFolder;
  71. tableMetadata *_metadataFolder;
  72. // Image Title Segue
  73. UIImage *imageTitleSegue;
  74. }
  75. @end
  76. @implementation CCMain
  77. #pragma --------------------------------------------------------------------------------------------
  78. #pragma mark ===== Init =====
  79. #pragma --------------------------------------------------------------------------------------------
  80. - (id)initWithCoder:(NSCoder *)aDecoder
  81. {
  82. if (self = [super initWithCoder:aDecoder]) {
  83. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  84. _directoryOrder = [CCUtility getOrderSettings];
  85. _directoryGroupBy = [CCUtility getGroupBySettings];
  86. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(initializeMain:) name:@"initializeMain" object:nil];
  87. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(clearDateReadDataSource:) name:@"clearDateReadDataSource" object:nil];
  88. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(setTitle) name:@"setTitleMain" object:nil];
  89. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:@"NotificationProgressTask" object:nil];
  90. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:@"changeTheming" object:nil];
  91. // Active Main
  92. appDelegate.activeMain = self;
  93. }
  94. return self;
  95. }
  96. #pragma --------------------------------------------------------------------------------------------
  97. #pragma mark ===== View =====
  98. #pragma --------------------------------------------------------------------------------------------
  99. - (void)viewDidLoad
  100. {
  101. [super viewDidLoad];
  102. // init object
  103. _metadata = [tableMetadata new];
  104. _hud = [[CCHud alloc] initWithView:[[[UIApplication sharedApplication] delegate] window]];
  105. _selectedFileIDsMetadatas = [NSMutableDictionary new];
  106. _queueSelector = [NSMutableArray new];
  107. _isViewDidLoad = YES;
  108. _fatherPermission = @"";
  109. _searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
  110. _searchResultMetadatas = [NSMutableArray new];
  111. _searchFileName = @"";
  112. _noFilesSearchTitle = @"";
  113. _noFilesSearchDescription = @"";
  114. // delegate
  115. self.tableView.delegate = self;
  116. self.tableView.tableFooterView = [UIView new];
  117. self.tableView.separatorColor = [NCBrandColor sharedInstance].seperator;
  118. self.tableView.emptyDataSetDelegate = self;
  119. self.tableView.emptyDataSetSource = self;
  120. self.searchController.delegate = self;
  121. self.searchController.searchBar.delegate = self;
  122. // Actie Delegate Networking
  123. [CCNetworking sharedNetworking].delegate = self;
  124. // Register cell
  125. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellMain" bundle:nil] forCellReuseIdentifier:@"CellMain"];
  126. [self.tableView registerNib:[UINib nibWithNibName:@"CCCellMainTransfer" bundle:nil] forCellReuseIdentifier:@"CellMainTransfer"];
  127. // long press recognizer TableView
  128. UILongPressGestureRecognizer* longPressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(onLongPressTableView:)];
  129. [self.tableView addGestureRecognizer:longPressRecognizer];
  130. // Pull-to-Refresh
  131. [self createRefreshControl];
  132. // Register for 3D Touch Previewing if available
  133. if ([self.traitCollection respondsToSelector:@selector(forceTouchCapability)] && (self.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable))
  134. {
  135. [self registerForPreviewingWithDelegate:self sourceView:self.view];
  136. }
  137. // Back Button
  138. if ([_serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]]) {
  139. UIImage *backButtonImage = [UIImage imageNamed:@"navigationLogo"];
  140. backButtonImage = [backButtonImage imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
  141. self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithImage:backButtonImage style:UIBarButtonItemStylePlain target:nil action:nil];
  142. }
  143. // reMenu Background
  144. _reMenuBackgroundView = [UIView new];
  145. _reMenuBackgroundView.backgroundColor = [UIColor colorWithWhite:0 alpha:0.5];
  146. // if this is not Main (the Main uses inizializeMain)
  147. if (_isRoot == NO && appDelegate.activeAccount.length > 0) {
  148. // Read (File) Folder
  149. [self readFileReloadFolder];
  150. }
  151. // Title
  152. [self setTitle];
  153. }
  154. // Apparirà
  155. - (void)viewWillAppear:(BOOL)animated
  156. {
  157. [super viewWillAppear:animated];
  158. // test
  159. if (appDelegate.activeAccount.length == 0)
  160. return;
  161. // delegate for Networking
  162. [CCNetworking sharedNetworking].delegate = self;
  163. // Color
  164. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  165. [appDelegate aspectTabBar:self.tabBarController.tabBar hidden:NO];
  166. if (_isSelectedMode)
  167. [self setUINavigationBarSelected];
  168. else
  169. [self setUINavigationBarDefault];
  170. // If not editing mode remove _selectedFileIDs
  171. if (!self.tableView.editing)
  172. [_selectedFileIDsMetadatas removeAllObjects];
  173. // Plus Button
  174. [appDelegate plusButtonVisibile:true];
  175. // Search Bar
  176. if ([CCUtility isFolderEncrypted:self.serverUrl account:appDelegate.activeAccount]) {
  177. [self searchEnabled:NO];
  178. } else {
  179. [self searchEnabled:YES];
  180. }
  181. }
  182. // E' arrivato
  183. - (void)viewDidAppear:(BOOL)animated
  184. {
  185. [super viewDidAppear:animated];
  186. // Active Main
  187. appDelegate.activeMain = self;
  188. // Test viewDidLoad
  189. if (_isViewDidLoad) {
  190. _isViewDidLoad = NO;
  191. } else {
  192. if (appDelegate.activeAccount.length > 0 && [_selectedFileIDsMetadatas count] == 0) {
  193. // Read (file) Folder
  194. [self readFileReloadFolder];
  195. }
  196. }
  197. // Title
  198. [self setTitle];
  199. }
  200. - (void)viewWillDisappear:(BOOL)animated
  201. {
  202. [super viewWillDisappear:animated];
  203. [self closeAllMenu];
  204. }
  205. - (void)didReceiveMemoryWarning
  206. {
  207. [super didReceiveMemoryWarning];
  208. // Dispose of any resources that can be recreated.
  209. }
  210. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  211. {
  212. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  213. [self closeAllMenu];
  214. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  215. 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))) {
  216. // Portrait
  217. } else {
  218. // Landscape
  219. }
  220. [self.tableView reloadData];
  221. }];
  222. }
  223. - (BOOL)prefersStatusBarHidden
  224. {
  225. return NO;
  226. }
  227. // detect scroll for remove keyboard in search mode
  228. - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
  229. {
  230. if (_isSearchMode && scrollView == self.tableView) {
  231. [self.searchController.searchBar endEditing:YES];
  232. }
  233. }
  234. - (void)changeTheming
  235. {
  236. if (self.isViewLoaded && self.view.window)
  237. [appDelegate changeTheming:self];
  238. // Refresh control
  239. _refreshControl.tintColor = [NCBrandColor sharedInstance].brandText;
  240. _refreshControl.backgroundColor = [NCBrandColor sharedInstance].brand;
  241. // color searchbar
  242. self.searchController.searchBar.barTintColor = [NCBrandColor sharedInstance].brand;
  243. self.searchController.searchBar.backgroundColor = [NCBrandColor sharedInstance].brand;
  244. // color searchbbar button text (cancel)
  245. UIButton *searchButton = self.searchController.searchBar.subviews.firstObject.subviews.lastObject;
  246. if (searchButton && [searchButton isKindOfClass:[UIButton class]]) {
  247. [searchButton setTitleColor:[NCBrandColor sharedInstance].brandText forState:UIControlStateNormal];
  248. }
  249. // Title
  250. [self setTitle];
  251. // Reload Table View
  252. [self tableViewReloadData];
  253. }
  254. #pragma --------------------------------------------------------------------------------------------
  255. #pragma mark ===== Initizlize Mail =====
  256. #pragma --------------------------------------------------------------------------------------------
  257. //
  258. // Callers :
  259. //
  260. // loginSuccess (delagate)
  261. // ChangeDefaultAccount (delegate)
  262. // Split : inizialize
  263. // Settings Advanced : removeAllFiles
  264. //
  265. - (void)initializeMain:(NSNotification *)notification
  266. {
  267. _directoryGroupBy = nil;
  268. _directoryOrder = nil;
  269. _dateReadDataSource = nil;
  270. // test
  271. if (appDelegate.activeAccount.length == 0)
  272. return;
  273. if ([appDelegate.listMainVC count] == 0 || _isRoot) {
  274. // This is Root home main add list
  275. appDelegate.homeMain = self;
  276. _isRoot = YES;
  277. _serverUrl = [CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl];
  278. [appDelegate.listMainVC setObject:self forKey:_serverUrl];
  279. // go Home
  280. [self.navigationController popToRootViewControllerAnimated:NO];
  281. // setting Networking
  282. [CCNetworking sharedNetworking].delegate = self;
  283. [[CCNetworking sharedNetworking] settingAccount];
  284. // Remove search mode
  285. [self cancelSearchBar];
  286. // populate shared Link & User
  287. NSArray *results = [[NCManageDatabase sharedInstance] getShares];
  288. if (results) {
  289. appDelegate.sharesLink = results[0];
  290. appDelegate.sharesUserAndGroup = results[1];
  291. }
  292. // Setting Theming
  293. [appDelegate settingThemingColorBrand];
  294. // remove all of detail
  295. [appDelegate.activeDetail removeAllView];
  296. // remove all Notification Messages
  297. [appDelegate.listOfNotifications removeAllObjects];
  298. // Not Photos Video in library ? then align and Init Auto Upload
  299. NSArray *recordsPhotoLibrary = [[NCManageDatabase sharedInstance] getPhotoLibraryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", appDelegate.activeAccount]];
  300. if ([recordsPhotoLibrary count] == 0) {
  301. [[NCAutoUpload sharedInstance] alignPhotoLibrary];
  302. }
  303. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  304. NSLog(@"[LOG] Request Service Server Nextcloud");
  305. [[NCService sharedInstance] startRequestServicesServer];
  306. // Clear datasorce
  307. [appDelegate.activePhotos reloadDatasourceFromSearch:NO];
  308. [appDelegate.activeFavorites reloadDatasource];
  309. // Read this folder
  310. [self readFileReloadFolder];
  311. } else {
  312. // reload datasource
  313. [self reloadDatasource:_serverUrl];
  314. }
  315. }
  316. #pragma --------------------------------------------------------------------------------------------
  317. #pragma mark ==== DZNEmptyDataSetSource ====
  318. #pragma --------------------------------------------------------------------------------------------
  319. - (BOOL)emptyDataSetShouldAllowScroll:(UIScrollView *)scrollView
  320. {
  321. if (_loadingFolder)
  322. return NO;
  323. else
  324. return YES;
  325. }
  326. - (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
  327. {
  328. return [NCBrandColor sharedInstance].backgroundView;
  329. }
  330. - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
  331. {
  332. if (_isSearchMode)
  333. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"searchBig"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  334. else
  335. return [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"filesNoFiles"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  336. }
  337. - (UIView *)customViewForEmptyDataSet:(UIScrollView *)scrollView
  338. {
  339. if (_loadingFolder && _refreshControl.isRefreshing == NO) {
  340. UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
  341. activityView.transform = CGAffineTransformMakeScale(1.5f, 1.5f);
  342. activityView.color = [NCBrandColor sharedInstance].brandElement;
  343. [activityView startAnimating];
  344. return activityView;
  345. }
  346. return nil;
  347. }
  348. - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
  349. {
  350. NSString *text;
  351. if (_isSearchMode) {
  352. text = _noFilesSearchTitle;
  353. } else {
  354. text = [NSString stringWithFormat:@"%@", NSLocalizedString(@"_files_no_files_", nil)];
  355. }
  356. NSDictionary *attributes = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f], NSForegroundColorAttributeName:[UIColor lightGrayColor]};
  357. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  358. }
  359. - (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
  360. {
  361. NSString *text;
  362. if (_isSearchMode) {
  363. text = _noFilesSearchDescription;
  364. } else {
  365. text = [NSString stringWithFormat:@"\n%@", NSLocalizedString(@"_no_file_pull_down_", nil)];
  366. }
  367. NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
  368. paragraph.lineBreakMode = NSLineBreakByWordWrapping;
  369. paragraph.alignment = NSTextAlignmentCenter;
  370. NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0], NSForegroundColorAttributeName: [UIColor lightGrayColor], NSParagraphStyleAttributeName: paragraph};
  371. return [[NSAttributedString alloc] initWithString:text attributes:attributes];
  372. }
  373. #pragma --------------------------------------------------------------------------------------------
  374. #pragma mark ===== Text Field =====
  375. #pragma --------------------------------------------------------------------------------------------
  376. - (void)minCharTextFieldDidChange:(UITextField *)sender
  377. {
  378. UIAlertController *alertController = (UIAlertController *)self.presentedViewController;
  379. if (alertController)
  380. {
  381. UITextField *fileName = alertController.textFields.firstObject;
  382. UIAlertAction *okAction = alertController.actions.lastObject;
  383. okAction.enabled = fileName.text.length > 0;
  384. }
  385. }
  386. - (void)textFieldDidBeginEditing:(UITextField *)textField{
  387. [textField selectAll:textField];
  388. }
  389. #pragma --------------------------------------------------------------------------------------------
  390. #pragma mark ===== Graphic Window =====
  391. #pragma --------------------------------------------------------------------------------------------
  392. - (void)createRefreshControl
  393. {
  394. _refreshControl = [UIRefreshControl new];
  395. if (@available(iOS 10, *)) {
  396. _tableView.refreshControl = _refreshControl;
  397. } else {
  398. [_tableView addSubview:_refreshControl];
  399. }
  400. _refreshControl.tintColor = [NCBrandColor sharedInstance].brandText;
  401. _refreshControl.backgroundColor = [NCBrandColor sharedInstance].brand;
  402. [_refreshControl addTarget:self action:@selector(refreshControlTarget) forControlEvents:UIControlEventValueChanged];
  403. }
  404. - (void)deleteRefreshControl
  405. {
  406. [_refreshControl endRefreshing];
  407. for (UIView *subview in [_tableView subviews]) {
  408. if (subview == _refreshControl)
  409. [subview removeFromSuperview];
  410. }
  411. _tableView.refreshControl = nil;
  412. _refreshControl = nil;
  413. }
  414. - (void)refreshControlTarget
  415. {
  416. [self readFolder:_serverUrl];
  417. // Actuate `Peek` feedback (weak boom)
  418. AudioServicesPlaySystemSound(1519);
  419. [_ImageTitleHomeCryptoCloud setUserInteractionEnabled:NO];
  420. }
  421. - (void)setTitle
  422. {
  423. // Color text self.navigationItem.title
  424. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  425. if (_isSelectedMode) {
  426. NSUInteger totali = [_sectionDataSource.allRecordsDataSource count];
  427. NSUInteger selezionati = [[self.tableView indexPathsForSelectedRows] count];
  428. self.navigationItem.titleView = nil;
  429. self.navigationItem.title = [NSString stringWithFormat:@"%@ : %lu / %lu", NSLocalizedString(@"_selected_", nil), (unsigned long)selezionati, (unsigned long)totali];
  430. } else {
  431. // we are in home : LOGO BRAND
  432. if ([_serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]]) {
  433. self.navigationItem.title = nil;
  434. if ([appDelegate.reachability isReachable] == NO) {
  435. _ImageTitleHomeCryptoCloud = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"navigationLogoOffline"]];
  436. } else {
  437. if ([NCBrandOptions sharedInstance].use_themingColor) {
  438. tableCapabilities *capabilities = [[NCManageDatabase sharedInstance] getCapabilites];
  439. if ([capabilities.themingColor isEqualToString:@"#FFFFFF"])
  440. _ImageTitleHomeCryptoCloud = [[UIImageView alloc] initWithImage:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"navigationLogo"] multiplier:2 color:[UIColor blackColor]]];
  441. else
  442. _ImageTitleHomeCryptoCloud = [[UIImageView alloc] initWithImage:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"navigationLogo"] multiplier:2 color:[UIColor whiteColor]]];
  443. } else {
  444. _ImageTitleHomeCryptoCloud = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"navigationLogo"]];
  445. }
  446. }
  447. [_ImageTitleHomeCryptoCloud setUserInteractionEnabled:YES];
  448. UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(menuLogo:)];
  449. [singleTap setNumberOfTapsRequired:1];
  450. [_ImageTitleHomeCryptoCloud addGestureRecognizer:singleTap];
  451. self.navigationItem.titleView = _ImageTitleHomeCryptoCloud;
  452. } else {
  453. NSString *shareLink, *shareUserAndGroup;
  454. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadataFolder.directoryID];
  455. if (serverUrl) {
  456. shareLink = [appDelegate.sharesLink objectForKey:[serverUrl stringByAppendingString:_metadataFolder.fileName]];
  457. shareUserAndGroup = [appDelegate.sharesUserAndGroup objectForKey:[serverUrl stringByAppendingString:_metadataFolder.fileName]];
  458. }
  459. if (self.imageTitle) {
  460. [CCGraphics addImageToTitle:_titleMain colorTitle:[NCBrandColor sharedInstance].brandText imageTitle:[CCGraphics changeThemingColorImage:self.imageTitle multiplier:2 color:[NCBrandColor sharedInstance].brandText] navigationItem:self.navigationItem];
  461. } else {
  462. self.navigationItem.titleView = nil;
  463. self.navigationItem.title = _titleMain;
  464. }
  465. }
  466. }
  467. }
  468. - (void)setUINavigationBarDefault
  469. {
  470. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  471. UIBarButtonItem *buttonMore, *buttonNotification;
  472. // =
  473. buttonMore = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"navigationControllerMenu"] style:UIBarButtonItemStylePlain target:self action:@selector(toggleReMainMenu)];
  474. buttonMore.enabled = true;
  475. // <
  476. self.navigationController.navigationBar.hidden = NO;
  477. // Notification
  478. if ([appDelegate.listOfNotifications count] > 0) {
  479. buttonNotification = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"notification"] style:UIBarButtonItemStylePlain target:self action:@selector(viewNotification)];
  480. buttonNotification.tintColor = [NCBrandColor sharedInstance].brandText;
  481. buttonNotification.enabled = true;
  482. }
  483. if (buttonNotification)
  484. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonMore, buttonNotification, nil];
  485. else
  486. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonMore, nil];
  487. self.navigationItem.leftBarButtonItem = nil;
  488. }
  489. - (void)setUINavigationBarSelected
  490. {
  491. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  492. UIImage *icon = [UIImage imageNamed:@"navigationControllerMenu"];
  493. UIBarButtonItem *buttonMore = [[UIBarButtonItem alloc] initWithImage:icon style:UIBarButtonItemStylePlain target:self action:@selector(toggleReSelectMenu)];
  494. UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(cancelSelect)];
  495. self.navigationItem.leftBarButtonItem = leftButton;
  496. self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:buttonMore, nil];
  497. }
  498. - (void)cancelSelect
  499. {
  500. [self tableViewSelect:NO];
  501. [appDelegate.reSelectMenu close];
  502. }
  503. - (void)closeAllMenu
  504. {
  505. // close Menu
  506. [appDelegate.reSelectMenu close];
  507. [appDelegate.reMainMenu close];
  508. // Close Menu Logo
  509. [CCMenuAccount dismissMenu];
  510. }
  511. #pragma --------------------------------------------------------------------------------------------
  512. #pragma mark ===== Document Picker =====
  513. #pragma --------------------------------------------------------------------------------------------
  514. - (void)documentMenuWasCancelled:(UIDocumentMenuViewController *)documentMenu
  515. {
  516. NSLog(@"[LOG] Cancelled");
  517. }
  518. - (void)documentPickerWasCancelled:(UIDocumentPickerViewController *)controller
  519. {
  520. NSLog(@"[LOG] Cancelled");
  521. }
  522. - (void)documentMenu:(UIDocumentMenuViewController *)documentMenu didPickDocumentPicker:(UIDocumentPickerViewController *)documentPicker
  523. {
  524. documentPicker.delegate = self;
  525. [self presentViewController:documentPicker animated:YES completion:nil];
  526. }
  527. - (void)documentPicker:(UIDocumentPickerViewController *)controller didPickDocumentAtURL:(NSURL *)url
  528. {
  529. if (controller.documentPickerMode == UIDocumentPickerModeImport) {
  530. NSFileCoordinator *coordinator = [[NSFileCoordinator alloc] initWithFilePresenter:nil];
  531. __block NSError *error;
  532. [coordinator coordinateReadingItemAtURL:url options:NSFileCoordinatorReadingForUploading error:&error byAccessor:^(NSURL *newURL) {
  533. NSString *serverUrl = [appDelegate getTabBarControllerActiveServerUrl];
  534. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  535. NSString *fileName = [[NCUtility sharedInstance] createFileName:[url lastPathComponent] directoryID:directoryID];
  536. NSString *fileID = [directoryID stringByAppendingString:fileName];
  537. NSData *data = [NSData dataWithContentsOfURL:newURL];
  538. if (data && error == nil) {
  539. if ([data writeToFile:[CCUtility getDirectoryProviderStorageFileID:fileID fileName:fileName] options:NSDataWritingAtomic error:&error]) {
  540. tableMetadata *metadataForUpload = [tableMetadata new];
  541. metadataForUpload.account = appDelegate.activeAccount;
  542. metadataForUpload.date = [NSDate new];
  543. metadataForUpload.directoryID = directoryID;
  544. metadataForUpload.fileID = fileID;
  545. metadataForUpload.fileName = fileName;
  546. metadataForUpload.fileNameView = fileName;
  547. metadataForUpload.session = k_upload_session;
  548. metadataForUpload.sessionSelector = selectorUploadFile;
  549. metadataForUpload.status = k_metadataStatusWaitUpload;
  550. // Add Medtadata for upload
  551. (void)[[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  552. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  553. [self reloadDatasource];
  554. } else {
  555. [appDelegate messageNotification:@"_error_" description:error.description visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  556. }
  557. } else {
  558. [appDelegate messageNotification:@"_error_" description:@"_read_file_error_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  559. }
  560. }];
  561. }
  562. }
  563. - (void)openImportDocumentPicker
  564. {
  565. UIDocumentMenuViewController *documentProviderMenu = [[UIDocumentMenuViewController alloc] initWithDocumentTypes:@[@"public.data"] inMode:UIDocumentPickerModeImport];
  566. documentProviderMenu.modalPresentationStyle = UIModalPresentationFormSheet;
  567. documentProviderMenu.popoverPresentationController.sourceView = self.view;
  568. documentProviderMenu.popoverPresentationController.sourceRect = self.view.bounds;
  569. documentProviderMenu.delegate = self;
  570. [self presentViewController:documentProviderMenu animated:YES completion:nil];
  571. }
  572. #pragma --------------------------------------------------------------------------------------------
  573. #pragma mark ===== Assets Picker =====
  574. #pragma --------------------------------------------------------------------------------------------
  575. -(void)dismissFormUploadAssets
  576. {
  577. [self reloadDatasource];
  578. }
  579. - (void)openAssetsPickerController
  580. {
  581. CTAssetCheckmark *checkmark = [CTAssetCheckmark appearance];
  582. checkmark.tintColor = [NCBrandColor sharedInstance].brandElement;
  583. [checkmark setMargin:0.0 forVerticalEdge:NSLayoutAttributeRight horizontalEdge:NSLayoutAttributeTop];
  584. //UINavigationBar *navBar = [UINavigationBar appearanceWhenContainedIn:[CTAssetsPickerController class], nil]; // DEPRECATED iOS9
  585. UINavigationBar *navBar = [UINavigationBar appearanceWhenContainedInInstancesOfClasses:@[[CTAssetsPickerController class]]];
  586. [appDelegate aspectNavigationControllerBar:navBar online:YES hidden:NO];
  587. [PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status){
  588. dispatch_async(dispatch_get_main_queue(), ^{
  589. CTAssetCheckmark *checkmark = [CTAssetCheckmark appearance];
  590. [checkmark setMargin:0.0 forVerticalEdge:NSLayoutAttributeRight horizontalEdge:NSLayoutAttributeBottom];
  591. // init picker
  592. CTAssetsPickerController *picker = [CTAssetsPickerController new];
  593. // set delegate
  594. picker.delegate = self;
  595. // to show selection order
  596. //picker.showsSelectionIndex = YES;
  597. // to present picker as a form sheet in iPad
  598. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  599. picker.modalPresentationStyle = UIModalPresentationFormSheet;
  600. // present picker
  601. [self presentViewController:picker animated:YES completion:nil];
  602. });
  603. }];
  604. }
  605. - (BOOL)assetsPickerController:(CTAssetsPickerController *)picker shouldSelectAsset:(PHAsset *)asset
  606. {
  607. if (picker.selectedAssets.count > k_pickerControllerMax) {
  608. [appDelegate messageNotification:@"_info_" description:@"_limited_dimension_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:k_CCErrorInternalError];
  609. return NO;
  610. }
  611. return YES;
  612. }
  613. - (void)assetsPickerController:(CTAssetsPickerController *)picker didFinishPickingAssets:(NSMutableArray *)assets
  614. {
  615. [picker dismissViewControllerAnimated:YES completion:^{
  616. NSString *serverUrl = [appDelegate getTabBarControllerActiveServerUrl];
  617. CreateFormUploadAssets *form = [[CreateFormUploadAssets alloc] initWithServerUrl:serverUrl assets:assets cryptated:NO session:k_upload_session delegate:self];
  618. form.title = NSLocalizedString(@"_upload_photos_videos_", nil);
  619. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:form];
  620. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  621. [self presentViewController:navigationController animated:YES completion:nil];
  622. }];
  623. }
  624. // New folder or new photo or video
  625. - (void)returnCreate:(NSInteger)type
  626. {
  627. switch (type) {
  628. case k_returnCreateFolderPlain: {
  629. NSString *serverUrl = [appDelegate getTabBarControllerActiveServerUrl];
  630. NSString *message;
  631. UIAlertController *alertController;
  632. if ([serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]]) {
  633. message = @"/";
  634. } else {
  635. message = [serverUrl lastPathComponent];
  636. }
  637. alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_create_folder_on_",nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  638. [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  639. [textField addTarget:self action:@selector(minCharTextFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
  640. textField.autocapitalizationType = UITextAutocapitalizationTypeWords;
  641. }];
  642. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_",nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  643. NSLog(@"[LOG] Cancel action");
  644. }];
  645. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  646. UITextField *fileName = alertController.textFields.firstObject;
  647. [self createFolder:fileName.text serverUrl:serverUrl];
  648. }];
  649. okAction.enabled = NO;
  650. [alertController addAction:cancelAction];
  651. [alertController addAction:okAction];
  652. [self presentViewController:alertController animated:YES completion:nil];
  653. }
  654. break;
  655. case k_returnCreateFotoVideoPlain: {
  656. [self openAssetsPickerController];
  657. }
  658. break;
  659. case k_returnCreateFilePlain: {
  660. [self openImportDocumentPicker];
  661. }
  662. break;
  663. case k_returnCreateFotoVideoEncrypted: {
  664. [self openAssetsPickerController];
  665. }
  666. break;
  667. case k_returnCreateFileEncrypted: {
  668. [self openImportDocumentPicker];
  669. }
  670. break;
  671. case k_returnCreateFileText: {
  672. UINavigationController* navigationController = [[UIStoryboard storyboardWithName:@"NCText" bundle:nil] instantiateViewControllerWithIdentifier:@"NCText"];
  673. navigationController.modalPresentationStyle = UIModalPresentationPageSheet;
  674. [self presentViewController:navigationController animated:YES completion:nil];
  675. }
  676. break;
  677. }
  678. }
  679. #pragma --------------------------------------------------------------------------------------------
  680. #pragma mark ===== Save selected File =====
  681. #pragma --------------------------------------------------------------------------------------------
  682. -(void)saveSelectedFilesSelector:(NSString *)path didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
  683. {
  684. if (error)
  685. [appDelegate messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  686. else
  687. [appDelegate messageNotification:@"_save_selected_files_" description:@"_file_saved_cameraroll_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeSuccess errorCode:error.code];
  688. }
  689. - (void)saveSelectedFiles
  690. {
  691. if (_isSelectedMode && [_selectedFileIDsMetadatas count] == 0)
  692. return;
  693. NSLog(@"[LOG] Start download selected files ...");
  694. [_hud visibleHudTitle:@"" mode:MBProgressHUDModeIndeterminate color:nil];
  695. NSArray *metadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  696. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.01 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  697. for (tableMetadata *metadata in metadatas) {
  698. if (metadata.directory == NO && ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])) {
  699. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  700. if (serverUrl) {
  701. metadata.session = k_download_session;
  702. metadata.sessionError = @"";
  703. metadata.sessionSelector = selectorSave;
  704. metadata.status = k_metadataStatusWaitDownload;
  705. // Add Metadata for Download
  706. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  707. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  708. }
  709. }
  710. }
  711. [_hud hideHud];
  712. });
  713. [self tableViewSelect:NO];
  714. }
  715. #pragma --------------------------------------------------------------------------------------------
  716. #pragma mark ==== View Notification ====
  717. #pragma --------------------------------------------------------------------------------------------
  718. - (void)viewNotification
  719. {
  720. if ([appDelegate.listOfNotifications count] > 0) {
  721. CCNotification *notificationVC = [[UIStoryboard storyboardWithName:@"CCNotification" bundle:nil] instantiateViewControllerWithIdentifier:@"CCNotification"];
  722. [notificationVC setModalPresentationStyle:UIModalPresentationFormSheet];
  723. [self presentViewController:notificationVC animated:YES completion:nil];
  724. }
  725. }
  726. #pragma --------------------------------------------------------------------------------------------
  727. #pragma mark === Delegate Login ===
  728. #pragma --------------------------------------------------------------------------------------------
  729. - (void)loginSuccess:(NSInteger)loginType
  730. {
  731. [_ImageTitleHomeCryptoCloud setUserInteractionEnabled:NO];
  732. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  733. // go to home sweet home
  734. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"initializeMain" object:nil];
  735. [_ImageTitleHomeCryptoCloud setUserInteractionEnabled:YES];
  736. });
  737. }
  738. - (void)loginClose
  739. {
  740. appDelegate.activeLogin = nil;
  741. }
  742. - (void)loginWebClose
  743. {
  744. appDelegate.activeLoginWeb = nil;
  745. }
  746. #pragma mark -
  747. #pragma --------------------------------------------------------------------------------------------
  748. #pragma mark ===== Peek & Pop =====
  749. #pragma --------------------------------------------------------------------------------------------
  750. - (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location
  751. {
  752. CGPoint convertedLocation = [self.view convertPoint:location toView:self.tableView];
  753. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:convertedLocation];
  754. tableMetadata *metadata = [self getMetadataFromSectionDataSource:indexPath];
  755. if (metadata.thumbnailExists && _metadataFolder.e2eEncrypted == NO) {
  756. CCCellMain *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  757. if (cell) {
  758. previewingContext.sourceRect = cell.frame;
  759. CCPeekPop *vc = [[UIStoryboard storyboardWithName:@"CCPeekPop" bundle:nil] instantiateViewControllerWithIdentifier:@"PeekPopImagePreview"];
  760. vc.delegate = self;
  761. vc.metadata = metadata;
  762. return vc;
  763. }
  764. }
  765. return nil;
  766. }
  767. - (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit
  768. {
  769. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:previewingContext.sourceRect.origin];
  770. [self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
  771. }
  772. #pragma mark -
  773. #pragma --------------------------------------------------------------------------------------------
  774. #pragma mark ==== Download Thumbnail Delegate ====
  775. #pragma --------------------------------------------------------------------------------------------
  776. - (void)downloadThumbnailSuccessFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  777. {
  778. // Check Active Account
  779. if (![metadataNet.account isEqualToString:appDelegate.activeAccount])
  780. return;
  781. if (errorCode == 0) {
  782. NSIndexPath *indexPath = [_sectionDataSource.fileIDIndexPath objectForKey:metadataNet.fileID];
  783. if ([self indexPathIsValid:indexPath]) {
  784. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadataNet.fileID fileNameView:metadataNet.fileNameView]])
  785. [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  786. }
  787. } else {
  788. NSLog(@"[LOG] Download Thumbnail Failure error %d, %@", (int)errorCode, message);
  789. }
  790. }
  791. #pragma --------------------------------------------------------------------------------------------
  792. #pragma mark ==== Download ====
  793. #pragma --------------------------------------------------------------------------------------------
  794. - (void)downloadStart:(NSString *)fileID account:(NSString *)account task:(NSURLSessionDownloadTask *)task serverUrl:(NSString *)serverUrl
  795. {
  796. [self reloadDatasource: serverUrl];
  797. [appDelegate updateApplicationIconBadgeNumber];
  798. }
  799. - (void)downloadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector errorMessage:(NSString *)errorMessage errorCode:(NSInteger)errorCode
  800. {
  801. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  802. if (metadata == nil)
  803. return;
  804. if (errorCode == 0) {
  805. // Synchronized
  806. if ([selector isEqualToString:selectorDownloadSynchronize]) {
  807. [self reloadDatasource:serverUrl];
  808. }
  809. // add Favorite
  810. if ([selector isEqualToString:selectorAddFavorite]) {
  811. [[CCActions sharedInstance] settingFavorite:metadata favorite:YES delegate:self];
  812. [self reloadDatasource:serverUrl];
  813. }
  814. // open View File
  815. if ([selector isEqualToString:selectorLoadFileView] && [[UIApplication sharedApplication] applicationState] == UIApplicationStateActive) {
  816. [self reloadDatasource:serverUrl];
  817. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_compress]) {
  818. selector = selectorOpenIn;
  819. //[self performSelector:@selector(unZipFile:) withObject:metadata.fileID];
  820. } else if ([metadata.typeFile isEqualToString: k_metadataTypeFile_unknown]) {
  821. selector = selectorOpenIn;
  822. } else {
  823. _metadata = metadata;
  824. if ([self shouldPerformSegue])
  825. [self performSegueWithIdentifier:@"segueDetail" sender:self];
  826. }
  827. }
  828. // Open with...
  829. if ([selector isEqualToString:selectorOpenIn] && [[UIApplication sharedApplication] applicationState] == UIApplicationStateActive) {
  830. [self reloadDatasource:serverUrl];
  831. NSURL *url = [NSURL fileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView]];
  832. _docController = [UIDocumentInteractionController interactionControllerWithURL:url];
  833. _docController.delegate = self;
  834. [_docController presentOptionsMenuFromRect:self.view.frame inView:self.view animated:YES];
  835. }
  836. // Save to Photo Album
  837. if ([selector isEqualToString:selectorSave] && [[UIApplication sharedApplication] applicationState] == UIApplicationStateActive) {
  838. NSString *fileNamePath = [CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView];
  839. PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus];
  840. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] && status == PHAuthorizationStatusAuthorized) {
  841. UIImage *image = [UIImage imageWithContentsOfFile:fileNamePath];
  842. if (image)
  843. UIImageWriteToSavedPhotosAlbum(image, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  844. else
  845. [appDelegate messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  846. }
  847. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video] && status == PHAuthorizationStatusAuthorized) {
  848. if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(fileNamePath)) {
  849. UISaveVideoAtPathToSavedPhotosAlbum(fileNamePath, self, @selector(saveSelectedFilesSelector: didFinishSavingWithError: contextInfo:), nil);
  850. } else {
  851. [appDelegate messageNotification:@"_save_selected_files_" description:@"_file_not_saved_cameraroll_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  852. }
  853. }
  854. if (status != PHAuthorizationStatusAuthorized) {
  855. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_access_photo_not_enabled_", nil) message:NSLocalizedString(@"_access_photo_not_enabled_msg_", nil) preferredStyle:UIAlertControllerStyleAlert];
  856. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  857. [alertController addAction:okAction];
  858. [self presentViewController:alertController animated:YES completion:nil];
  859. }
  860. [self reloadDatasource:serverUrl];
  861. }
  862. // Copy File
  863. if ([selector isEqualToString:selectorLoadCopy]) {
  864. [self reloadDatasource:serverUrl];
  865. [self copyFileToPasteboard:metadata];
  866. }
  867. //selectorLoadViewImage
  868. if ([selector isEqualToString:selectorLoadViewImage]) {
  869. // Detail
  870. if (appDelegate.activeDetail)
  871. [appDelegate.activeDetail downloadPhotoBrowserSuccessFailure:metadata selector:selector errorCode:0];
  872. // Photos
  873. if (appDelegate.activePhotos)
  874. [appDelegate.activePhotos downloadFileSuccessFailure:metadata.fileName fileID:metadata.fileID serverUrl:serverUrl selector:selector errorMessage:errorMessage errorCode:errorCode];
  875. [self reloadDatasource:serverUrl];
  876. }
  877. // Auto Download Upload
  878. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  879. } else {
  880. // File do not exists on server, remove in local
  881. if (errorCode == kOCErrorServerPathNotFound || errorCode == kCFURLErrorBadServerResponse) {
  882. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageFileID:fileID] error:nil];
  883. if (metadata.directory && serverUrl) {
  884. NSString *dirForDelete = [CCUtility stringAppendServerUrl:serverUrl addFileName:metadata.fileName];
  885. [[NCManageDatabase sharedInstance] deleteDirectoryAndSubDirectoryWithServerUrl:dirForDelete];
  886. }
  887. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID] clearDateReadDirectoryID:nil];
  888. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  889. }
  890. if ([selector isEqualToString:selectorLoadViewImage]) {
  891. dispatch_async(dispatch_get_main_queue(), ^{
  892. // Updating Detail
  893. if (appDelegate.activeDetail)
  894. [appDelegate.activeDetail downloadPhotoBrowserSuccessFailure:metadata selector:selector errorCode:errorCode];
  895. // Updating Photos
  896. if (appDelegate.activePhotos)
  897. [appDelegate.activePhotos downloadFileSuccessFailure:metadata.fileName fileID:metadata.fileID serverUrl:serverUrl selector:selector errorMessage:errorMessage errorCode:errorCode];
  898. });
  899. } else {
  900. if (errorCode != kCFURLErrorCancelled && errorCode != kOCErrorServerUnauthorized && errorCode != k_CCErrorFileAlreadyInDownload)
  901. [appDelegate messageNotification:@"_download_file_" description:errorMessage visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  902. }
  903. [self reloadDatasource:serverUrl];
  904. }
  905. }
  906. - (void)downloadSelectedFilesFolders
  907. {
  908. if (_isSelectedMode && [_selectedFileIDsMetadatas count] == 0)
  909. return;
  910. NSLog(@"[LOG] Start download selected ...");
  911. [_hud visibleHudTitle:NSLocalizedString(@"_downloading_progress_", nil) mode:MBProgressHUDModeIndeterminate color:nil];
  912. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  913. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  914. for (tableMetadata *metadata in selectedMetadatas) {
  915. if (metadata.directory) {
  916. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  917. if (serverUrl) {
  918. serverUrl = [CCUtility stringAppendServerUrl:serverUrl addFileName:metadata.fileName];
  919. [[CCSynchronize sharedSynchronize] readFolder:serverUrl selector:selectorReadFolderWithDownload];
  920. }
  921. } else {
  922. [[CCSynchronize sharedSynchronize] readFile:metadata selector:selectorReadFileWithDownload];
  923. }
  924. }
  925. [_hud hideHud];
  926. });
  927. [self tableViewSelect:NO];
  928. }
  929. #pragma --------------------------------------------------------------------------------------------
  930. #pragma mark ===== Upload new Photos/Videos =====
  931. #pragma --------------------------------------------------------------------------------------------
  932. - (void)uploadStart:(NSString *)fileID account:(NSString *)account task:(NSURLSessionUploadTask *)task serverUrl:(NSString *)serverUrl
  933. {
  934. [self reloadDatasource: serverUrl];
  935. [appDelegate updateApplicationIconBadgeNumber];
  936. }
  937. - (void)uploadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID assetLocalIdentifier:(NSString *)assetLocalIdentifier serverUrl:(NSString *)serverUrl selector:(NSString *)selector errorMessage:(NSString *)errorMessage errorCode:(NSInteger)errorCode
  938. {
  939. if (errorCode == 0) {
  940. // Auto Download Upload
  941. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  942. } else {
  943. // Activity
  944. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:assetLocalIdentifier action:k_activityDebugActionUpload selector:selector note:errorMessage type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:appDelegate.activeUrl];
  945. if (errorCode != -999 && errorCode != kCFURLErrorCancelled && errorCode != kOCErrorServerUnauthorized)
  946. [appDelegate messageNotification:@"_upload_file_" description:errorMessage visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  947. }
  948. [self reloadDatasource:serverUrl];
  949. }
  950. //
  951. // This procedure with performSelectorOnMainThread it's necessary after (Bridge) for use the function "Sync" in OCNetworking
  952. //
  953. - (void)uploadFileAsset:(NSMutableArray *)assets serverUrl:(NSString *)serverUrl useSubFolder:(BOOL)useSubFolder session:(NSString *)session
  954. {
  955. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  956. NSString *autoUploadPath = [[NCManageDatabase sharedInstance] getAccountAutoUploadPath:appDelegate.activeUrl];
  957. // if request create the folder for Photos & the subfolders
  958. if ([autoUploadPath isEqualToString:serverUrl])
  959. if (![[NCAutoUpload sharedInstance] createAutoUploadFolderPhotosWithSubFolder:useSubFolder assets:(PHFetchResult *)assets selector:selectorUploadFile])
  960. return;
  961. dispatch_async(dispatch_get_main_queue(), ^{
  962. [self uploadFileAsset:assets serverUrl:serverUrl autoUploadPath:autoUploadPath useSubFolder:useSubFolder session:session];
  963. });
  964. });
  965. }
  966. - (void)uploadFileAsset:(NSArray *)assets serverUrl:(NSString *)serverUrl autoUploadPath:(NSString *)autoUploadPath useSubFolder:(BOOL)useSubFolder session:(NSString *)session
  967. {
  968. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  969. if (!directoryID) return;
  970. for (PHAsset *asset in assets) {
  971. NSString *fileName = [CCUtility createFileName:[asset valueForKey:@"filename"] fileDate:asset.creationDate fileType:asset.mediaType keyFileName:k_keyFileNameMask keyFileNameType:k_keyFileNameType];
  972. NSDate *assetDate = asset.creationDate;
  973. NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
  974. // Create serverUrl if use sub folder
  975. if (useSubFolder) {
  976. [formatter setDateFormat:@"yyyy"];
  977. NSString *yearString = [formatter stringFromDate:assetDate];
  978. [formatter setDateFormat:@"MM"];
  979. NSString *monthString = [formatter stringFromDate:assetDate];
  980. serverUrl = [NSString stringWithFormat:@"%@/%@/%@", autoUploadPath, yearString, monthString];
  981. }
  982. // Check if is in upload
  983. NSPredicate *predicate = [NSPredicate predicateWithFormat:@"directoryID == %@ AND fileName == %@ AND session != ''", directoryID, fileName];
  984. NSArray *isRecordInSessions = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:predicate sorted:nil ascending:NO];
  985. if ([isRecordInSessions count] > 0)
  986. continue;
  987. // Prepare record metadata
  988. tableMetadata *metadataForUpload = [tableMetadata new];
  989. metadataForUpload.account = appDelegate.activeAccount;
  990. metadataForUpload.assetLocalIdentifier = asset.localIdentifier;
  991. metadataForUpload.date = [NSDate new];
  992. metadataForUpload.directoryID = directoryID;
  993. metadataForUpload.fileID = [directoryID stringByAppendingString:fileName];
  994. metadataForUpload.fileName = fileName;
  995. metadataForUpload.fileNameView = fileName;
  996. metadataForUpload.session = session;
  997. metadataForUpload.sessionSelector = selectorUploadFile;
  998. metadataForUpload.status = k_metadataStatusWaitUpload;
  999. // Check il file already exists
  1000. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND fileNameView == %@", directoryID, fileName]];
  1001. if (metadata) {
  1002. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:fileName message:NSLocalizedString(@"_file_already_exists_", nil) preferredStyle:UIAlertControllerStyleAlert];
  1003. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  1004. // NO OVERWITE
  1005. }];
  1006. UIAlertAction *overwriteAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_overwrite_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  1007. // Add Medtadata for upload
  1008. (void)[[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  1009. // Start upload now
  1010. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  1011. }];
  1012. [alertController addAction:cancelAction];
  1013. [alertController addAction:overwriteAction];
  1014. UIWindow *alertWindow = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
  1015. alertWindow.rootViewController = [[UIViewController alloc]init];
  1016. alertWindow.windowLevel = UIWindowLevelAlert + 1;
  1017. [alertWindow makeKeyAndVisible];
  1018. [alertWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
  1019. } else {
  1020. // Add Medtadata for upload
  1021. (void)[[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  1022. }
  1023. }
  1024. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  1025. [self reloadDatasource];
  1026. }
  1027. #pragma --------------------------------------------------------------------------------------------
  1028. #pragma mark ==== Read File ====
  1029. #pragma --------------------------------------------------------------------------------------------
  1030. - (void)readFileSuccessFailure:(CCMetadataNet *)metadataNet metadata:(tableMetadata *)metadata message:(NSString *)message errorCode:(NSInteger)errorCode
  1031. {
  1032. // Check Active Account
  1033. if (![metadataNet.account isEqualToString:appDelegate.activeAccount])
  1034. return;
  1035. if (errorCode == 0) {
  1036. // Read Folder
  1037. if ([metadataNet.selector isEqualToString:selectorReadFileReloadFolder]) {
  1038. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", metadataNet.account, metadataNet.serverUrl]];
  1039. // Change etag, read folder
  1040. if ([metadata.etag isEqualToString:directory.etag] == NO) {
  1041. [self readFolder:metadataNet.serverUrl];
  1042. }
  1043. }
  1044. } else {
  1045. // Unauthorized
  1046. if (errorCode == kOCErrorServerUnauthorized)
  1047. [appDelegate openLoginView:self loginType:loginModifyPasswordUser];
  1048. }
  1049. }
  1050. - (void)readFileReloadFolder
  1051. {
  1052. if (!_serverUrl || !appDelegate.activeAccount || appDelegate.maintenanceMode)
  1053. return;
  1054. // Load Datasource
  1055. [self reloadDatasource];
  1056. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  1057. metadataNet.action = actionReadFile;
  1058. metadataNet.priority = NSOperationQueuePriorityHigh;
  1059. metadataNet.selector = selectorReadFileReloadFolder;
  1060. metadataNet.serverUrl = _serverUrl;
  1061. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  1062. }
  1063. #pragma --------------------------------------------------------------------------------------------
  1064. #pragma mark ==== Read Folder ====
  1065. #pragma --------------------------------------------------------------------------------------------
  1066. - (void)readFolderSuccessFailure:(CCMetadataNet *)metadataNet metadataFolder:(tableMetadata *)metadataFolder metadatas:(NSArray *)metadatas message:(NSString *)message errorCode:(NSInteger)errorCode
  1067. {
  1068. // stoprefresh
  1069. [_refreshControl endRefreshing];
  1070. // Check Active Account
  1071. if (![metadataNet.account isEqualToString:metadataNet.account])
  1072. return;
  1073. // ERROR
  1074. if (errorCode != 0) {
  1075. _loadingFolder = NO;
  1076. // Check Active Account
  1077. if (![metadataNet.account isEqualToString:appDelegate.activeAccount])
  1078. return;
  1079. // Unauthorized
  1080. if (errorCode == kOCErrorServerUnauthorized) {
  1081. [appDelegate openLoginView:self loginType:loginModifyPasswordUser];
  1082. } else {
  1083. [self tableViewReloadData];
  1084. [_ImageTitleHomeCryptoCloud setUserInteractionEnabled:YES];
  1085. [appDelegate messageNotification:@"_error_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1086. [self reloadDatasource:metadataNet.serverUrl];
  1087. }
  1088. return;
  1089. }
  1090. // save metadataFolder
  1091. _metadataFolder = metadataFolder;
  1092. // save father e update permission
  1093. if(!_isSearchMode && metadataFolder)
  1094. _fatherPermission = metadataFolder.permissions;
  1095. if (_isSearchMode == NO) {
  1096. [[NCManageDatabase sharedInstance] setDirectoryWithServerUrl:metadataNet.serverUrl serverUrlTo:nil etag:metadataFolder.etag fileID:metadataFolder.fileID encrypted:metadataFolder.e2eEncrypted];
  1097. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND (status == %d OR status == %d)", metadataNet.directoryID, k_metadataStatusNormal, k_metadataStatusHide] clearDateReadDirectoryID:metadataNet.directoryID];
  1098. [[NCManageDatabase sharedInstance] setDateReadDirectoryWithDirectoryID:metadataNet.directoryID];
  1099. }
  1100. NSArray *metadatasInDownload = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND (status == %d OR status == %d OR status == %d OR status == %d)", metadataNet.directoryID, k_metadataStatusWaitDownload, k_metadataStatusInDownload, k_metadataStatusDownloading, k_metadataStatusDownloadError] sorted:nil ascending:NO];
  1101. // insert in Database
  1102. NSMutableArray *metadatasToInsertInDB = (NSMutableArray *)[[NCManageDatabase sharedInstance] addMetadatas:metadatas serverUrl:metadataNet.serverUrl];
  1103. // reinsert metadatas in Download
  1104. if (metadatasInDownload) {
  1105. (void)[[NCManageDatabase sharedInstance] addMetadatas:metadatasInDownload serverUrl:metadataNet.serverUrl];
  1106. }
  1107. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
  1108. // File is changed ??
  1109. if (!_isSearchMode && metadatasToInsertInDB)
  1110. [[CCSynchronize sharedSynchronize] verifyChangeMedatas:metadatasToInsertInDB serverUrl:metadataNet.serverUrl account:appDelegate.activeAccount withDownload:NO];
  1111. });
  1112. // Search Mode
  1113. if (_isSearchMode) {
  1114. // Fix managed -> Unmanaged _searchResultMetadatas
  1115. if (metadatasToInsertInDB)
  1116. _searchResultMetadatas = [[NSMutableArray alloc] initWithArray:metadatasToInsertInDB];
  1117. [self reloadDatasource:metadataNet.serverUrl];
  1118. }
  1119. // this is the same directory
  1120. if ([metadataNet.serverUrl isEqualToString:_serverUrl] && !_isSearchMode) {
  1121. // reload
  1122. [self reloadDatasource:metadataNet.serverUrl];
  1123. // Enable change user
  1124. [_ImageTitleHomeCryptoCloud setUserInteractionEnabled:YES];
  1125. _loadingFolder = NO;
  1126. [self tableViewReloadData];
  1127. }
  1128. // E2EE Is encrypted folder get metadata
  1129. if (_metadataFolder.e2eEncrypted) {
  1130. // Read Metadata
  1131. if ([CCUtility isEndToEndEnabled:appDelegate.activeAccount]) {
  1132. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
  1133. NSString *metadata;
  1134. NSError *error = [[NCNetworkingEndToEnd sharedManager] getEndToEndMetadata:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl fileID:metadataFolder.fileID metadata:&metadata];
  1135. dispatch_async(dispatch_get_main_queue(), ^{
  1136. if (error) {
  1137. if (error.code != 404)
  1138. [appDelegate messageNotification:@"_e2e_error_get_metadata_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  1139. } else {
  1140. if ([[NCEndToEndMetadata sharedInstance] decoderMetadata:metadata privateKey:[CCUtility getEndToEndPrivateKey:appDelegate.activeAccount] serverUrl:self.serverUrl account:appDelegate.activeAccount url:appDelegate.activeUrl] == false)
  1141. [appDelegate messageNotification:@"_error_e2ee_" description:@"_e2e_error_decode_metadata_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  1142. else
  1143. [self reloadDatasource];
  1144. }
  1145. });
  1146. });
  1147. } else {
  1148. [appDelegate messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  1149. }
  1150. }
  1151. // rewrite title
  1152. [self setTitle];
  1153. }
  1154. - (void)readFolder:(NSString *)serverUrl
  1155. {
  1156. // init control
  1157. if (!serverUrl || !appDelegate.activeAccount || appDelegate.maintenanceMode) {
  1158. [_refreshControl endRefreshing];
  1159. return;
  1160. }
  1161. // Search Mode
  1162. if (_isSearchMode) {
  1163. [[NCManageDatabase sharedInstance] clearDateReadWithServerUrl:serverUrl directoryID:nil];
  1164. _searchFileName = @""; // forced reload searchg
  1165. [self updateSearchResultsForSearchController:self.searchController];
  1166. return;
  1167. }
  1168. _loadingFolder = YES;
  1169. [self tableViewReloadData];
  1170. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, serverUrl]];
  1171. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  1172. metadataNet.action = actionReadFolder;
  1173. metadataNet.date = [NSDate date];
  1174. metadataNet.depth = @"1";
  1175. metadataNet.directoryID = directory.directoryID;
  1176. metadataNet.priority = NSOperationQueuePriorityHigh;
  1177. metadataNet.selector = selectorReadFolder;
  1178. metadataNet.serverUrl = serverUrl;
  1179. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  1180. }
  1181. #pragma mark -
  1182. #pragma --------------------------------------------------------------------------------------------
  1183. #pragma mark ===== Search =====
  1184. #pragma --------------------------------------------------------------------------------------------
  1185. - (void)searchEnabled:(BOOL)enabled
  1186. {
  1187. if (enabled) {
  1188. if (self.tableView.tableHeaderView != nil)
  1189. return;
  1190. self.definesPresentationContext = YES;
  1191. self.searchController.searchResultsUpdater = self;
  1192. self.searchController.dimsBackgroundDuringPresentation = NO;
  1193. self.searchController.searchBar.translucent = NO;
  1194. [self.searchController.searchBar sizeToFit];
  1195. self.searchController.searchBar.delegate = self;
  1196. self.searchController.searchBar.barTintColor = [NCBrandColor sharedInstance].brand;
  1197. self.searchController.searchBar.backgroundColor = [NCBrandColor sharedInstance].brand;
  1198. self.searchController.searchBar.backgroundImage = [UIImage new];
  1199. // color searchbbar button text (cancel)
  1200. UIButton *searchButton = self.searchController.searchBar.subviews.firstObject.subviews.lastObject;
  1201. if (searchButton && [searchButton isKindOfClass:[UIButton class]]) {
  1202. [searchButton setTitleColor:[NCBrandColor sharedInstance].brandText forState:UIControlStateNormal];
  1203. }
  1204. self.tableView.tableHeaderView = self.searchController.searchBar;
  1205. [self.tableView setContentOffset:CGPointMake(0, self.searchController.searchBar.frame.size.height - self.tableView.contentOffset.y)];
  1206. } else {
  1207. self.tableView.tableHeaderView = nil;
  1208. }
  1209. }
  1210. - (void)searchStartTimer
  1211. {
  1212. NSString *startDirectory = [CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl];
  1213. [[CCActions sharedInstance] search:startDirectory fileName:_searchFileName etag:@"" depth:@"infinity" date:nil contenType:nil selector:selectorSearchFiles delegate:self];
  1214. _noFilesSearchTitle = @"";
  1215. _noFilesSearchDescription = NSLocalizedString(@"_search_in_progress_", nil);
  1216. [self.tableView reloadEmptyDataSet];
  1217. }
  1218. - (void)updateSearchResultsForSearchController:(UISearchController *)searchController
  1219. {
  1220. // Color text "Cancel"
  1221. [[UIBarButtonItem appearanceWhenContainedInInstancesOfClasses:@[[UISearchBar class]]] setTintColor:[NCBrandColor sharedInstance].brandText];
  1222. _isSearchMode = YES;
  1223. [self deleteRefreshControl];
  1224. NSString *fileName = [CCUtility removeForbiddenCharactersServer:searchController.searchBar.text];
  1225. if (fileName.length >= k_minCharsSearch && [fileName isEqualToString:_searchFileName] == NO) {
  1226. _searchFileName = fileName;
  1227. // First : filter
  1228. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:_serverUrl];
  1229. if (!directoryID) return;
  1230. NSPredicate *predicate = [NSPredicate predicateWithFormat:@"directoryID == %@ AND fileNameView CONTAINS[cd] %@", directoryID, fileName];
  1231. NSArray *records = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:predicate sorted:nil ascending:NO];
  1232. [_searchResultMetadatas removeAllObjects];
  1233. for (tableMetadata *record in records)
  1234. [_searchResultMetadatas addObject:record];
  1235. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  1236. metadataNet.account = appDelegate.activeAccount;
  1237. metadataNet.directoryID = directoryID;
  1238. metadataNet.selector = selectorSearchFiles;
  1239. metadataNet.serverUrl = _serverUrl;
  1240. [self readFolderSuccessFailure:metadataNet metadataFolder:nil metadatas:_searchResultMetadatas message:nil errorCode:0];
  1241. // Version >= 12
  1242. if ([[NCManageDatabase sharedInstance] getServerVersion] >= 12) {
  1243. [_timerWaitInput invalidate];
  1244. _timerWaitInput = [NSTimer scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(searchStartTimer) userInfo:nil repeats:NO];
  1245. }
  1246. }
  1247. if (_searchResultMetadatas.count == 0 && fileName.length == 0) {
  1248. [self reloadDatasource];
  1249. }
  1250. }
  1251. - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar
  1252. {
  1253. [self cancelSearchBar];
  1254. [self readFolder:_serverUrl];
  1255. }
  1256. - (void)searchSuccessFailure:(CCMetadataNet *)metadataNet metadatas:(NSArray *)metadatas message:(NSString *)message errorCode:(NSInteger)errorCode
  1257. {
  1258. // Check Active Account
  1259. if (![metadataNet.account isEqualToString:appDelegate.activeAccount])
  1260. return;
  1261. if (errorCode == 0) {
  1262. _searchResultMetadatas = [[NSMutableArray alloc] initWithArray:metadatas];
  1263. [self readFolderSuccessFailure:metadataNet metadataFolder:nil metadatas:metadatas message:nil errorCode:0];
  1264. } else {
  1265. // Unauthorized
  1266. if (errorCode == kOCErrorServerUnauthorized)
  1267. [appDelegate openLoginView:self loginType:loginModifyPasswordUser];
  1268. else
  1269. [appDelegate messageNotification:@"_error_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1270. _searchFileName = @"";
  1271. }
  1272. }
  1273. - (void)cancelSearchBar
  1274. {
  1275. if (self.searchController.active) {
  1276. [self.searchController setActive:NO];
  1277. [self createRefreshControl];
  1278. _isSearchMode = NO;
  1279. _searchFileName = @"";
  1280. _dateReadDataSource = nil;
  1281. _searchResultMetadatas = [NSMutableArray new];
  1282. [self reloadDatasource];
  1283. }
  1284. //[self setNeedsStatusBarAppearanceUpdate];
  1285. }
  1286. #pragma mark -
  1287. #pragma --------------------------------------------------------------------------------------------
  1288. #pragma mark ===== Delete File or Folder =====
  1289. #pragma --------------------------------------------------------------------------------------------
  1290. - (void)deleteFileOrFolderSuccessFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  1291. {
  1292. // Unauthorized
  1293. if (errorCode == kOCErrorServerUnauthorized)
  1294. [appDelegate openLoginView:self loginType:loginModifyPasswordUser];
  1295. [_queueSelector removeObject:metadataNet.selector];
  1296. if ([_queueSelector count] == 0) {
  1297. [_hud hideHud];
  1298. // next
  1299. [_selectedFileIDsMetadatas removeObjectForKey:metadataNet.fileID];
  1300. if ([_selectedFileIDsMetadatas count] > 0) {
  1301. NSArray *metadatas = [_selectedFileIDsMetadatas allValues];
  1302. [self deleteFileOrFolder:[metadatas objectAtIndex:0] numFile:[_selectedFileIDsMetadatas count] ofFile:_numSelectedFileIDsMetadatas];
  1303. } else {
  1304. // End Select Table View
  1305. [self tableViewSelect:NO];
  1306. // Reload
  1307. if (_isSearchMode)
  1308. [self readFolder:metadataNet.serverUrl];
  1309. else
  1310. [self reloadDatasource:metadataNet.serverUrl];
  1311. }
  1312. }
  1313. }
  1314. - (void)deleteFileOrFolder:(tableMetadata *)metadata numFile:(NSInteger)numFile ofFile:(NSInteger)ofFile
  1315. {
  1316. [_queueSelector addObject:selectorDelete];
  1317. [[CCActions sharedInstance] deleteFileOrFolder:metadata delegate:self hud:_hud hudTitled:[NSString stringWithFormat:NSLocalizedString(@"_delete_file_n_", nil), ofFile - numFile + 1, ofFile]];
  1318. }
  1319. - (void)deleteFile
  1320. {
  1321. if (_isSelectedMode && [_selectedFileIDsMetadatas count] == 0)
  1322. return;
  1323. [_queueSelector removeAllObjects];
  1324. if ([_selectedFileIDsMetadatas count] > 0) {
  1325. _numSelectedFileIDsMetadatas = [_selectedFileIDsMetadatas count];
  1326. NSArray *metadatas = [_selectedFileIDsMetadatas allValues];
  1327. [self deleteFileOrFolder:[metadatas objectAtIndex:0] numFile:[_selectedFileIDsMetadatas count] ofFile:_numSelectedFileIDsMetadatas];
  1328. } else {
  1329. _numSelectedFileIDsMetadatas = 1;
  1330. [self deleteFileOrFolder:_metadata numFile:1 ofFile:_numSelectedFileIDsMetadatas];
  1331. }
  1332. }
  1333. #pragma --------------------------------------------------------------------------------------------
  1334. #pragma mark ===== Rename / Move =====
  1335. #pragma --------------------------------------------------------------------------------------------
  1336. - (void)renameSuccess:(CCMetadataNet *)metadataNet
  1337. {
  1338. [self reloadDatasource:metadataNet.serverUrl];
  1339. }
  1340. - (void)renameFile:(NSArray *)arguments
  1341. {
  1342. tableMetadata* metadata = [arguments objectAtIndex:0];
  1343. NSString *fileName = [arguments objectAtIndex:1];
  1344. // E2EE
  1345. if (_metadataFolder.e2eEncrypted) {
  1346. // verify if exists the new fileName
  1347. if ([[NCManageDatabase sharedInstance] getE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileName == %@", appDelegate.activeAccount, self.serverUrl, fileName]]) {
  1348. [appDelegate messageNotification:@"_error_e2ee_" description:@"_file_already_exists_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  1349. return;
  1350. }
  1351. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  1352. NSError *error = [[NCNetworkingEndToEnd sharedManager] sendEndToEndMetadataOnServerUrl:self.serverUrl account:appDelegate.activeAccount user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl fileNameRename:metadata.fileName fileNameNewRename:fileName];
  1353. if (error) {
  1354. dispatch_async(dispatch_get_main_queue(), ^{
  1355. [appDelegate messageNotification:@"_error_e2ee_" description:@"_e2e_error_send_metadata_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  1356. });
  1357. } else {
  1358. [[NCManageDatabase sharedInstance] setMetadataFileNameViewWithDirectoryID:metadata.directoryID fileName:metadata.fileName newFileNameView:fileName];
  1359. // Move file system
  1360. NSString *atPath = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorageFileID:metadata.fileID], metadata.fileNameView];
  1361. NSString *toPath = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorageFileID:metadata.fileID], fileName];
  1362. [[NSFileManager defaultManager] moveItemAtPath:atPath toPath:toPath error:nil];
  1363. [[NSFileManager defaultManager] moveItemAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView] toPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:fileName] error:nil];
  1364. }
  1365. // Unlock
  1366. tableE2eEncryptionLock *tableLock = [[NCManageDatabase sharedInstance] getE2ETokenLockWithServerUrl:self.serverUrl];
  1367. if (tableLock != nil) {
  1368. NSError *error = [[NCNetworkingEndToEnd sharedManager] unlockEndToEndFolderEncrypted:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl serverUrl:self.serverUrl fileID:_metadataFolder.fileID token:tableLock.token];
  1369. if (error) {
  1370. dispatch_async(dispatch_get_main_queue(), ^{
  1371. [appDelegate messageNotification:@"_e2e_error_unlock_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  1372. });
  1373. }
  1374. }
  1375. dispatch_async(dispatch_get_main_queue(), ^{
  1376. [self reloadDatasource];
  1377. });
  1378. });
  1379. } else {
  1380. // Plain
  1381. [[CCActions sharedInstance] renameFileOrFolder:metadata fileName:fileName delegate:self];
  1382. }
  1383. }
  1384. - (void)renameMoveFileOrFolderFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  1385. {
  1386. if ([metadataNet.selector isEqualToString:selectorMove]) {
  1387. [_hud hideHud];
  1388. if (message && errorCode != kOCErrorServerUnauthorized)
  1389. [appDelegate messageNotification:@"_move_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1390. // End Select Table View
  1391. [self tableViewSelect:NO];
  1392. // reload Datasource
  1393. if (_isSearchMode)
  1394. [self readFolder:metadataNet.serverUrl];
  1395. else
  1396. [self reloadDatasource];
  1397. }
  1398. }
  1399. - (void)moveSuccess:(CCMetadataNet *)metadataNet
  1400. {
  1401. [_queueSelector removeObject:metadataNet.selector];
  1402. if ([_queueSelector count] == 0) {
  1403. [_hud hideHud];
  1404. NSString *fileName = metadataNet.fileName;
  1405. NSString *directoryID = metadataNet.directoryID;
  1406. NSString *directoryIDTo = metadataNet.directoryIDTo;
  1407. NSString *serverUrlTo = [[NCManageDatabase sharedInstance] getServerUrl:directoryIDTo];
  1408. if (!serverUrlTo) return;
  1409. // FILE -> Metadata
  1410. if (metadataNet.directory == NO)
  1411. [[NCManageDatabase sharedInstance] moveMetadataWithFileName:fileName directoryID:directoryID directoryIDTo:directoryIDTo];
  1412. // DIRECTORY -> Directory - CCMetadata
  1413. if (metadataNet.directory == YES) {
  1414. // delete all dir / subdir
  1415. [[NCManageDatabase sharedInstance] deleteDirectoryAndSubDirectoryWithServerUrl:[CCUtility stringAppendServerUrl:metadataNet.serverUrl addFileName:fileName]];
  1416. // move metadata
  1417. [[NCManageDatabase sharedInstance] moveMetadataWithFileName:fileName directoryID:directoryID directoryIDTo:directoryIDTo];
  1418. // Add new directory
  1419. NSString *newDirectory = [NSString stringWithFormat:@"%@/%@", serverUrlTo, fileName];
  1420. (void) [[NCManageDatabase sharedInstance] addDirectoryWithEncrypted:false favorite:false fileID:nil permissions:nil serverUrl:newDirectory];
  1421. }
  1422. // next
  1423. [_selectedFileIDsMetadatas removeObjectForKey:metadataNet.fileID];
  1424. if ([_selectedFileIDsMetadatas count] > 0) {
  1425. NSArray *metadatas = [_selectedFileIDsMetadatas allValues];
  1426. [self performSelectorOnMainThread:@selector(moveFileOrFolderMetadata:) withObject:@[[metadatas objectAtIndex:0], serverUrlTo, [NSNumber numberWithInteger:[_selectedFileIDsMetadatas count]], [NSNumber numberWithInteger:_numSelectedFileIDsMetadatas]] waitUntilDone:NO];
  1427. } else {
  1428. // End Select Table View
  1429. [self tableViewSelect:NO];
  1430. // reload Datasource
  1431. if (_isSearchMode)
  1432. [self readFolder:metadataNet.serverUrl];
  1433. else
  1434. [self reloadDatasource];
  1435. }
  1436. }
  1437. }
  1438. - (void)moveFileOrFolderMetadata:(NSArray *)arguments
  1439. {
  1440. tableMetadata *metadata = [arguments objectAtIndex:0];
  1441. NSString *serverUrlTo = [arguments objectAtIndex:1];
  1442. NSInteger numFile = [[arguments objectAtIndex:2] integerValue];
  1443. NSInteger ofFile = [[arguments objectAtIndex:3] integerValue];
  1444. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  1445. if (!serverUrl) return;
  1446. NSString *directoryIDTo = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrlTo];
  1447. if (!directoryIDTo) return;
  1448. OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:nil metadataNet:nil withUser:appDelegate.activeUser withUserID:appDelegate.activeUserID withPassword:appDelegate.activePassword withUrl:appDelegate.activeUrl];
  1449. [ocNetworking readFile:metadata.fileName serverUrl:serverUrlTo account:appDelegate.activeAccount success:^(tableMetadata *metadata) {
  1450. UIAlertController * alert= [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_file_already_exists_", nil) preferredStyle:UIAlertControllerStyleAlert];
  1451. UIAlertAction* ok = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
  1452. }];
  1453. [alert addAction:ok];
  1454. [self presentViewController:alert animated:YES completion:nil];
  1455. // End Select Table View
  1456. [self tableViewSelect:NO];
  1457. // reload Datasource
  1458. [self readFileReloadFolder];
  1459. } failure:^(NSString *message, NSInteger errorCode) {
  1460. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  1461. metadataNet.action = actionMoveFileOrFolder;
  1462. metadataNet.directory = metadata.directory;
  1463. metadataNet.fileID = metadata.fileID;
  1464. metadataNet.directoryID = metadata.directoryID;
  1465. metadataNet.directoryIDTo = directoryIDTo;
  1466. metadataNet.fileName = metadata.fileName;
  1467. metadataNet.fileNameView = metadata.fileNameView;
  1468. metadataNet.fileNameTo = metadata.fileName;
  1469. metadataNet.etag = metadata.etag;
  1470. metadataNet.selector = selectorMove;
  1471. metadataNet.serverUrl = serverUrl;
  1472. metadataNet.serverUrlTo = serverUrlTo;
  1473. [_queueSelector addObject:metadataNet.selector];
  1474. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  1475. [_hud visibleHudTitle:[NSString stringWithFormat:NSLocalizedString(@"_move_file_n_", nil), ofFile - numFile + 1, ofFile] mode:MBProgressHUDModeIndeterminate color:nil];
  1476. }];
  1477. }
  1478. // DELEGATE : Move
  1479. - (void)dismissMove
  1480. {
  1481. [self reloadDatasource];
  1482. }
  1483. // DELEGATE : Move
  1484. - (void)moveServerUrlTo:(NSString *)serverUrlTo title:(NSString *)title
  1485. {
  1486. [_queueSelector removeAllObjects];
  1487. // E2EE DENIED
  1488. if ([CCUtility isFolderEncrypted:serverUrlTo account:appDelegate.activeAccount]) {
  1489. [appDelegate messageNotification:@"_move_" description:@"Not possible move files to encrypted directory" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  1490. return;
  1491. }
  1492. if ([_selectedFileIDsMetadatas count] > 0) {
  1493. _numSelectedFileIDsMetadatas = [_selectedFileIDsMetadatas count];
  1494. NSArray *metadatas = [_selectedFileIDsMetadatas allValues];
  1495. [self performSelectorOnMainThread:@selector(moveFileOrFolderMetadata:) withObject:@[[metadatas objectAtIndex:0], serverUrlTo, [NSNumber numberWithInteger:[_selectedFileIDsMetadatas count]], [NSNumber numberWithInteger:_numSelectedFileIDsMetadatas]] waitUntilDone:NO];
  1496. } else {
  1497. _numSelectedFileIDsMetadatas = 1;
  1498. [self performSelectorOnMainThread:@selector(moveFileOrFolderMetadata:) withObject:@[_metadata, serverUrlTo, [NSNumber numberWithInteger:1], [NSNumber numberWithInteger:_numSelectedFileIDsMetadatas]] waitUntilDone:NO];
  1499. }
  1500. }
  1501. - (void)moveOpenWindow:(NSArray *)indexPaths
  1502. {
  1503. if (_isSelectedMode && [_selectedFileIDsMetadatas count] == 0)
  1504. return;
  1505. UINavigationController* navigationController = [[UIStoryboard storyboardWithName:@"CCMove" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMove"];
  1506. CCMove *viewController = (CCMove *)navigationController.topViewController;
  1507. viewController.delegate = self;
  1508. viewController.move.title = NSLocalizedString(@"_move_", nil);
  1509. viewController.tintColor = [NCBrandColor sharedInstance].brandText;
  1510. viewController.barTintColor = [NCBrandColor sharedInstance].brand;
  1511. viewController.tintColorTitle = [NCBrandColor sharedInstance].brandText;
  1512. viewController.networkingOperationQueue = appDelegate.netQueue;
  1513. // E2EE
  1514. viewController.includeDirectoryE2EEncryption = NO;
  1515. [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
  1516. [self presentViewController:navigationController animated:YES completion:nil];
  1517. }
  1518. #pragma --------------------------------------------------------------------------------------------
  1519. #pragma mark ===== Create folder =====
  1520. #pragma --------------------------------------------------------------------------------------------
  1521. - (void)createFolderSuccessFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  1522. {
  1523. if (errorCode == 0) {
  1524. NSString *newDirectory = [NSString stringWithFormat:@"%@/%@", metadataNet.serverUrl, metadataNet.fileName];
  1525. if (_metadataFolder.e2eEncrypted) {
  1526. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1527. NSError *error = [[NCNetworkingEndToEnd sharedManager] markEndToEndFolderEncrypted:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl fileID:metadataNet.fileID serverUrl:newDirectory];
  1528. dispatch_async(dispatch_get_main_queue(), ^{
  1529. if (error) {
  1530. [appDelegate messageNotification:@"_e2e_error_mark_folder_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  1531. }
  1532. [self readFolder:self.serverUrl];
  1533. });
  1534. });
  1535. } else {
  1536. [self readFolder:self.serverUrl];
  1537. }
  1538. } else {
  1539. // Unauthorized
  1540. if (errorCode == kOCErrorServerUnauthorized)
  1541. [appDelegate openLoginView:self loginType:loginModifyPasswordUser];
  1542. else
  1543. [appDelegate messageNotification:@"_create_folder_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1544. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadataNet.fileID] clearDateReadDirectoryID:nil];
  1545. [self reloadDatasource];
  1546. // We are in directory fail ?
  1547. CCMain *vc = [appDelegate.listMainVC objectForKey:[CCUtility stringAppendServerUrl:_serverUrl addFileName:metadataNet.fileName]];
  1548. if (vc)
  1549. [vc.navigationController popViewControllerAnimated:YES];
  1550. }
  1551. }
  1552. - (void)createFolder:(NSString *)fileNameFolder serverUrl:(NSString *)serverUrl
  1553. {
  1554. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  1555. fileNameFolder = [CCUtility removeForbiddenCharactersServer:fileNameFolder];
  1556. if (![fileNameFolder length]) return;
  1557. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:_serverUrl];
  1558. if (!directoryID) return;
  1559. metadataNet.action = actionCreateFolder;
  1560. metadataNet.directoryID = directoryID;
  1561. metadataNet.fileID = [[NSUUID UUID] UUIDString];
  1562. metadataNet.fileName = fileNameFolder;
  1563. metadataNet.selector = selectorCreateFolder;
  1564. metadataNet.serverUrl = serverUrl;
  1565. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  1566. // Create Directory on metadata
  1567. tableMetadata *metadata = [CCUtility createMetadataWithAccount:appDelegate.activeAccount date:[NSDate date] directory:YES fileID:metadataNet.fileID directoryID:metadataNet.directoryID fileName:metadataNet.fileName etag:@"" size:0 status:k_metadataStatusNormal];
  1568. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  1569. [[NCManageDatabase sharedInstance] clearDateReadWithServerUrl:_serverUrl directoryID:nil];
  1570. [self reloadDatasource];
  1571. }
  1572. #pragma --------------------------------------------------------------------------------------------
  1573. #pragma mark ===== Progress & Task Button =====
  1574. #pragma --------------------------------------------------------------------------------------------
  1575. - (void)triggerProgressTask:(NSNotification *)notification
  1576. {
  1577. NSDictionary *dict = notification.userInfo;
  1578. NSString *fileID = [dict valueForKey:@"fileID"];
  1579. NSString *serverUrl = [dict valueForKey:@"serverUrl"];
  1580. float progress = [[dict valueForKey:@"progress"] floatValue];
  1581. long long totalBytes = [[dict valueForKey:@"totalBytes"] longLongValue];
  1582. long long totalBytesExpected = [[dict valueForKey:@"totalBytesExpected"] longLongValue];
  1583. // Check
  1584. if (!fileID || [fileID isEqualToString: @""])
  1585. return;
  1586. [appDelegate.listProgressMetadata setObject:[NSNumber numberWithFloat:progress] forKey:fileID];
  1587. if (![serverUrl isEqualToString:_serverUrl])
  1588. return;
  1589. NSIndexPath *indexPath = [_sectionDataSource.fileIDIndexPath objectForKey:fileID];
  1590. if ([self indexPathIsValid:indexPath]) {
  1591. CCCellMainTransfer *cell = (CCCellMainTransfer *)[self.tableView cellForRowAtIndexPath:indexPath];
  1592. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@ - %@", [CCUtility transformedSize:totalBytesExpected], [CCUtility transformedSize:totalBytes]];
  1593. }
  1594. }
  1595. - (void)downloadButtonTapped:(PKDownloadButton *)downloadButton currentState:(PKDownloadButtonState)state
  1596. {
  1597. NSLog(@"s");
  1598. }
  1599. - (void)cancelTaskButton:(id)sender withEvent:(UIEvent *)event
  1600. {
  1601. UITouch *touch = [[event allTouches] anyObject];
  1602. CGPoint location = [touch locationInView:self.tableView];
  1603. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1604. if ([self indexPathIsValid:indexPath]) {
  1605. tableMetadata *metadataSection = [self getMetadataFromSectionDataSource:indexPath];
  1606. if (metadataSection) {
  1607. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadataSection.fileID]];
  1608. if (metadata)
  1609. [self cancelTaskButton:metadata reloadTable:YES];
  1610. }
  1611. }
  1612. }
  1613. - (void)cancelAllTask:(id)sender
  1614. {
  1615. CGPoint location = [sender locationInView:self.tableView];
  1616. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1617. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  1618. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_all_task_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  1619. // Delete k_metadataStatusWaitUpload OR k_metadataStatusUploadError
  1620. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND (status == %d OR status == %d)", appDelegate.activeAccount, k_metadataStatusWaitUpload, k_metadataStatusUploadError] clearDateReadDirectoryID:nil];
  1621. NSArray *metadatas = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND status != %d AND status != %d", appDelegate.activeAccount, k_metadataStatusNormal, k_metadataStatusHide] sorted:@"fileName" ascending:true];
  1622. for (tableMetadata *metadata in metadatas) {
  1623. // Modify
  1624. if (metadata.status == k_metadataStatusWaitDownload || metadata.status == k_metadataStatusDownloadError) {
  1625. metadata.session = @"";
  1626. metadata.sessionSelector = @"";
  1627. metadata.status = k_metadataStatusNormal;
  1628. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  1629. }
  1630. // Cancel Task
  1631. if (metadata.status == k_metadataStatusDownloading || metadata.status == k_metadataStatusUploading) {
  1632. [self cancelTaskButton:metadata reloadTable:NO];
  1633. }
  1634. }
  1635. [self reloadDatasource];
  1636. }]];
  1637. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) { }]];
  1638. alertController.popoverPresentationController.sourceView = self.view;
  1639. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  1640. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  1641. [alertController.view layoutIfNeeded];
  1642. [self presentViewController:alertController animated:YES completion:nil];
  1643. }
  1644. - (void)cancelTaskButton:(tableMetadata *)metadata reloadTable:(BOOL)reloadTable
  1645. {
  1646. NSURLSession *session = [[CCNetworking sharedNetworking] getSessionfromSessionDescription:metadata.session];
  1647. __block NSURLSessionTask *findTask;
  1648. NSInteger sessionTaskIdentifier = metadata.sessionTaskIdentifier;
  1649. NSString *fileID = metadata.fileID;
  1650. // DOWNLOAD
  1651. if ([metadata.session length] > 0 && [metadata.session containsString:@"download"]) {
  1652. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  1653. for (NSURLSessionTask *task in downloadTasks)
  1654. if (task.taskIdentifier == sessionTaskIdentifier) {
  1655. findTask = task;
  1656. [appDelegate.listChangeTask setObject:@"cancelDownload" forKey:fileID];
  1657. [task cancel];
  1658. }
  1659. if (!findTask) {
  1660. [appDelegate.listChangeTask setObject:@"cancelDownload" forKey:fileID];
  1661. NSArray *object = [[NSArray alloc] initWithObjects:session, fileID, findTask, nil];
  1662. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_networkingSessionNotification object:object];
  1663. }
  1664. }];
  1665. }
  1666. // UPLOAD
  1667. if ([metadata.session length] > 0 && [metadata.session containsString:@"upload"]) {
  1668. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  1669. for (NSURLSessionUploadTask *task in uploadTasks)
  1670. if (task.taskIdentifier == sessionTaskIdentifier) {
  1671. findTask = task;
  1672. [appDelegate.listChangeTask setObject:@"cancelUpload" forKey:fileID];
  1673. [task cancel];
  1674. }
  1675. if (!findTask) {
  1676. [appDelegate.listChangeTask setObject:@"cancelUpload" forKey:fileID];
  1677. NSArray *object = [[NSArray alloc] initWithObjects:session, fileID, findTask, nil];
  1678. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_networkingSessionNotification object:object];
  1679. }
  1680. }];
  1681. }
  1682. }
  1683. #pragma --------------------------------------------------------------------------------------------
  1684. #pragma mark ===== Shared =====
  1685. #pragma --------------------------------------------------------------------------------------------
  1686. - (void)readSharedSuccess:(CCMetadataNet *)metadataNet items:(NSDictionary *)items openWindow:(BOOL)openWindow
  1687. {
  1688. [_hud hideHud];
  1689. // Check Active Account
  1690. if (![metadataNet.account isEqualToString:appDelegate.activeAccount])
  1691. return;
  1692. NSArray *result = [[NCManageDatabase sharedInstance] updateShare:items activeUrl:appDelegate.activeUrl];
  1693. if (result) {
  1694. appDelegate.sharesLink = result[0];
  1695. appDelegate.sharesUserAndGroup = result[1];
  1696. }
  1697. // Notify Shares View
  1698. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"SharesReloadDatasource" object:nil userInfo:nil];
  1699. if (openWindow) {
  1700. if (_shareOC) {
  1701. [_shareOC reloadData];
  1702. } else {
  1703. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadataNet.fileID]];
  1704. // Apriamo la view
  1705. _shareOC = [[UIStoryboard storyboardWithName:@"CCShare" bundle:nil] instantiateViewControllerWithIdentifier:@"CCShareOC"];
  1706. _shareOC.delegate = self;
  1707. _shareOC.metadata = metadata;
  1708. _shareOC.serverUrl = metadataNet.serverUrl;
  1709. _shareOC.shareLink = [appDelegate.sharesLink objectForKey:metadata.fileID];
  1710. _shareOC.shareUserAndGroup = [appDelegate.sharesUserAndGroup objectForKey:metadata.fileID];
  1711. [_shareOC setModalPresentationStyle:UIModalPresentationFormSheet];
  1712. [self presentViewController:_shareOC animated:YES completion:nil];
  1713. }
  1714. }
  1715. [self tableViewReloadData];
  1716. }
  1717. - (void)shareFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  1718. {
  1719. [_hud hideHud];
  1720. // Check Active Account
  1721. if (![metadataNet.account isEqualToString:appDelegate.activeAccount])
  1722. return;
  1723. // Unauthorized
  1724. if (errorCode == kOCErrorServerUnauthorized)
  1725. [appDelegate openLoginView:self loginType:loginModifyPasswordUser];
  1726. else
  1727. [appDelegate messageNotification:@"_share_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1728. if (_shareOC)
  1729. [_shareOC reloadData];
  1730. [self tableViewReloadData];
  1731. }
  1732. - (void)share:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl password:(NSString *)password
  1733. {
  1734. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  1735. metadataNet.action = actionShare;
  1736. metadataNet.fileID = metadata.fileID;
  1737. metadataNet.fileName = [CCUtility returnFileNamePathFromFileName:metadata.fileName serverUrl:serverUrl activeUrl:appDelegate.activeUrl];
  1738. metadataNet.fileNameView = metadata.fileNameView;
  1739. metadataNet.password = password;
  1740. metadataNet.selector = selectorShare;
  1741. metadataNet.serverUrl = serverUrl;
  1742. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  1743. [_hud visibleHudTitle:NSLocalizedString(@"_creating_sharing_", nil) mode:MBProgressHUDModeIndeterminate color:nil];
  1744. }
  1745. - (void)unShareSuccess:(CCMetadataNet *)metadataNet
  1746. {
  1747. [_hud hideHud];
  1748. // Check Active Account
  1749. if (![metadataNet.account isEqualToString:appDelegate.activeAccount])
  1750. return;
  1751. // rimuoviamo la condivisione da db
  1752. NSArray *result = [[NCManageDatabase sharedInstance] unShare:metadataNet.share fileName:metadataNet.fileName serverUrl:metadataNet.serverUrl sharesLink:appDelegate.sharesLink sharesUserAndGroup:appDelegate.sharesUserAndGroup];
  1753. if (result) {
  1754. appDelegate.sharesLink = result[0];
  1755. appDelegate.sharesUserAndGroup = result[1];
  1756. }
  1757. if (_shareOC)
  1758. [_shareOC reloadData];
  1759. [self tableViewReloadData];
  1760. }
  1761. - (void)unShare:(NSString *)share metadata:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl
  1762. {
  1763. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  1764. metadataNet.action = actionUnShare;
  1765. metadataNet.fileID = metadata.fileID;
  1766. metadataNet.fileName = metadata.fileName;
  1767. metadataNet.fileNameView = metadata.fileNameView;
  1768. metadataNet.selector = selectorUnshare;
  1769. metadataNet.serverUrl = serverUrl;
  1770. metadataNet.share = share;
  1771. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  1772. [_hud visibleHudTitle:NSLocalizedString(@"_updating_sharing_", nil) mode:MBProgressHUDModeIndeterminate color:nil];
  1773. }
  1774. - (void)updateShare:(NSString *)share metadata:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl password:(NSString *)password expirationTime:(NSString *)expirationTime permission:(NSInteger)permission
  1775. {
  1776. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  1777. metadataNet.action = actionUpdateShare;
  1778. metadataNet.fileID = metadata.fileID;
  1779. metadataNet.expirationTime = expirationTime;
  1780. metadataNet.password = password;
  1781. metadataNet.selector = selectorUpdateShare;
  1782. metadataNet.serverUrl = serverUrl;
  1783. metadataNet.share = share;
  1784. metadataNet.sharePermission = permission;
  1785. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  1786. [_hud visibleHudTitle:NSLocalizedString(@"_updating_sharing_", nil) mode:MBProgressHUDModeIndeterminate color:nil];
  1787. }
  1788. - (void)getUserAndGroupSuccess:(CCMetadataNet *)metadataNet items:(NSArray *)items
  1789. {
  1790. [_hud hideHud];
  1791. // Check Active Account
  1792. if (![metadataNet.account isEqualToString:appDelegate.activeAccount])
  1793. return;
  1794. if (_shareOC)
  1795. [_shareOC reloadUserAndGroup:items];
  1796. }
  1797. - (void)getUserAndGroupFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  1798. {
  1799. [_hud hideHud];
  1800. // Check Active Account
  1801. if (![metadataNet.account isEqualToString:appDelegate.activeAccount])
  1802. return;
  1803. // Unauthorized
  1804. if (errorCode == kOCErrorServerUnauthorized)
  1805. [appDelegate openLoginView:self loginType:loginModifyPasswordUser];
  1806. else
  1807. [appDelegate messageNotification:@"_error_" description:message visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  1808. }
  1809. - (void)getUserAndGroup:(NSString *)find
  1810. {
  1811. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  1812. metadataNet.action = actionGetUserAndGroup;
  1813. metadataNet.optionAny = find;
  1814. metadataNet.selector = selectorGetUserAndGroup;
  1815. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  1816. [_hud visibleIndeterminateHud];
  1817. }
  1818. - (void)shareUserAndGroup:(NSString *)user shareeType:(NSInteger)shareeType permission:(NSInteger)permission metadata:(tableMetadata *)metadata directoryID:(NSString *)directoryID serverUrl:(NSString *)serverUrl
  1819. {
  1820. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  1821. metadataNet.action = actionShareWith;
  1822. metadataNet.fileID = metadata.fileID;
  1823. metadataNet.directoryID = directoryID;
  1824. metadataNet.fileName = [CCUtility returnFileNamePathFromFileName:metadata.fileName serverUrl:serverUrl activeUrl:appDelegate.activeUrl];
  1825. metadataNet.fileNameView = metadata.fileNameView;
  1826. metadataNet.serverUrl = serverUrl;
  1827. metadataNet.selector = selectorShare;
  1828. metadataNet.share = user;
  1829. metadataNet.shareeType = shareeType;
  1830. metadataNet.sharePermission = permission;
  1831. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  1832. [_hud visibleHudTitle:NSLocalizedString(@"_creating_sharing_", nil) mode:MBProgressHUDModeIndeterminate color:nil];
  1833. }
  1834. - (void)openWindowShare:(tableMetadata *)metadata
  1835. {
  1836. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  1837. if (!serverUrl) return;
  1838. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:appDelegate.activeAccount];
  1839. metadataNet.action = actionReadShareServer;
  1840. metadataNet.fileID = metadata.fileID;
  1841. metadataNet.fileName = metadata.fileName;
  1842. metadataNet.fileNameView = metadata.fileNameView;
  1843. metadataNet.selector = selectorOpenWindowShare;
  1844. metadataNet.serverUrl = serverUrl;
  1845. [appDelegate addNetworkingOperationQueue:appDelegate.netQueue delegate:self metadataNet:metadataNet];
  1846. [_hud visibleIndeterminateHud];
  1847. }
  1848. - (void)tapActionShared:(UITapGestureRecognizer *)tapGesture
  1849. {
  1850. CGPoint location = [tapGesture locationInView:self.tableView];
  1851. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1852. tableMetadata *metadata = [self getMetadataFromSectionDataSource:indexPath];
  1853. if (metadata)
  1854. [self openWindowShare:metadata];
  1855. }
  1856. - (void)tapActionConnectionMounted:(UITapGestureRecognizer *)tapGesture
  1857. {
  1858. CGPoint location = [tapGesture locationInView:self.tableView];
  1859. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
  1860. tableMetadata *metadata = [self getMetadataFromSectionDataSource:indexPath];
  1861. if (metadata) {
  1862. CCShareInfoCMOC *vc = [[UIStoryboard storyboardWithName:@"CCShare" bundle:nil] instantiateViewControllerWithIdentifier:@"CCShareInfoCMOC"];
  1863. vc.metadata = metadata;
  1864. [vc setModalPresentationStyle:UIModalPresentationFormSheet];
  1865. [self presentViewController:vc animated:YES completion:nil];
  1866. }
  1867. }
  1868. #pragma --------------------------------------------------------------------------------------------
  1869. #pragma mark ===== Favorite =====
  1870. #pragma --------------------------------------------------------------------------------------------
  1871. - (void)settingFavoriteSuccessFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  1872. {
  1873. // Check Active Account
  1874. if (![metadataNet.account isEqualToString:appDelegate.activeAccount])
  1875. return;
  1876. if (errorCode == 0) {
  1877. _dateReadDataSource = nil;
  1878. [[NCManageDatabase sharedInstance] setMetadataFavoriteWithFileID:metadataNet.fileID favorite:[metadataNet.optionAny boolValue]];
  1879. if (_isSearchMode)
  1880. [self readFolder:metadataNet.serverUrl];
  1881. else
  1882. [self reloadDatasource:metadataNet.serverUrl];
  1883. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadataNet.fileID]];
  1884. if (metadata.directory && metadata.favorite) {
  1885. NSString *dir = [CCUtility stringAppendServerUrl:metadataNet.serverUrl addFileName:metadata.fileName];
  1886. [appDelegate.activeFavorites addFavoriteFolder:dir];
  1887. }
  1888. } else {
  1889. if (errorCode == kOCErrorServerUnauthorized)
  1890. [appDelegate openLoginView:self loginType:loginModifyPasswordUser];
  1891. NSLog(@"[LOG] Setting Favorite failure error %d, %@", (int)errorCode, message);
  1892. }
  1893. }
  1894. - (void)addFavorite:(tableMetadata *)metadata
  1895. {
  1896. if (metadata.directory) {
  1897. [[CCActions sharedInstance] settingFavorite:metadata favorite:YES delegate:self];
  1898. } else {
  1899. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  1900. if (serverUrl) {
  1901. metadata.session = k_download_session;
  1902. metadata.sessionError = @"";
  1903. metadata.sessionSelector = selectorAddFavorite;
  1904. metadata.status = k_metadataStatusWaitDownload;
  1905. // Add Metadata for Download
  1906. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  1907. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  1908. }
  1909. }
  1910. }
  1911. - (void)removeFavorite:(tableMetadata *)metadata
  1912. {
  1913. [[CCActions sharedInstance] settingFavorite:metadata favorite:NO delegate:self];
  1914. }
  1915. #pragma --------------------------------------------------------------------------------------------
  1916. #pragma mark ===== Open in... =====
  1917. #pragma --------------------------------------------------------------------------------------------
  1918. - (void)openIn:(tableMetadata *)metadata
  1919. {
  1920. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  1921. if (!serverUrl) return;
  1922. metadata.session = k_download_session;
  1923. metadata.sessionError = @"";
  1924. metadata.sessionSelector = selectorOpenIn;
  1925. metadata.status = k_metadataStatusWaitDownload;
  1926. // Add Metadata for Download
  1927. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  1928. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  1929. NSIndexPath *indexPath = [_sectionDataSource.fileIDIndexPath objectForKey:metadata.fileID];
  1930. if ([self indexPathIsValid:indexPath])
  1931. [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationAutomatic];
  1932. }
  1933. #pragma --------------------------------------------------------------------------------------------
  1934. #pragma mark ===== Remove Local File =====
  1935. #pragma --------------------------------------------------------------------------------------------
  1936. - (void)removeLocalFile:(tableMetadata *)metadata
  1937. {
  1938. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  1939. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID] error:nil];
  1940. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadata.directoryID];
  1941. if (serverUrl)
  1942. [self reloadDatasource:serverUrl];
  1943. }
  1944. #pragma --------------------------------------------------------------------------------------------
  1945. #pragma mark ===== Order Table & GroupBy & DirectoryOnTop =====
  1946. #pragma --------------------------------------------------------------------------------------------
  1947. - (void)orderTable:(NSString *)order
  1948. {
  1949. [CCUtility setOrderSettings:order];
  1950. // Clear data-read of DataSource
  1951. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1952. }
  1953. - (void)ascendingTable:(BOOL)ascending
  1954. {
  1955. [CCUtility setAscendingSettings:ascending];
  1956. // Clear data-read of DataSource
  1957. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1958. }
  1959. - (void)directoryOnTop:(BOOL)directoryOnTop
  1960. {
  1961. [CCUtility setDirectoryOnTop:directoryOnTop];
  1962. // Clear data-read of DataSource
  1963. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1964. }
  1965. - (void)tableGroupBy:(NSString *)groupBy
  1966. {
  1967. [CCUtility setGroupBySettings:groupBy];
  1968. // Clear data-read of DataSource
  1969. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"clearDateReadDataSource" object:nil];
  1970. }
  1971. #pragma --------------------------------------------------------------------------------------------
  1972. #pragma mark ==== Menu LOGO ====
  1973. #pragma --------------------------------------------------------------------------------------------
  1974. - (void)menuLogo:(UIGestureRecognizer *)theGestureRecognizer
  1975. {
  1976. if (appDelegate.reSelectMenu.isOpen || appDelegate.reMainMenu.isOpen)
  1977. return;
  1978. // Brand
  1979. if ([NCBrandOptions sharedInstance].disable_multiaccount)
  1980. return;
  1981. NSArray *listAccount = [[NCManageDatabase sharedInstance] getAccounts];
  1982. NSMutableArray *menuArray = [NSMutableArray new];
  1983. for (NSString *account in listAccount) {
  1984. CCMenuItem *item = [[CCMenuItem alloc] init];
  1985. item.title = [account stringByTruncatingToWidth:self.view.bounds.size.width - 100 withFont:[UIFont systemFontOfSize:12.0] atEnd:YES];
  1986. item.argument = account;
  1987. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ ", account]];
  1988. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@-avatar.png", [CCUtility getDirectoryUserData], [CCUtility getStringUser:tableAccount.user activeUrl:tableAccount.url]];
  1989. UIImage *avatar = [UIImage imageWithContentsOfFile:fileNamePath];
  1990. if (avatar) {
  1991. avatar = [CCGraphics scaleImage:avatar toSize:CGSizeMake(25, 25) isAspectRation:YES];
  1992. CCAvatar *avatarImageView = [[CCAvatar alloc] initWithImage:avatar borderColor:[UIColor lightGrayColor] borderWidth:0.5];
  1993. CGSize imageSize = avatarImageView.bounds.size;
  1994. UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
  1995. CGContextRef context = UIGraphicsGetCurrentContext();
  1996. [avatarImageView.layer renderInContext:context];
  1997. avatar = UIGraphicsGetImageFromCurrentImageContext();
  1998. UIGraphicsEndImageContext();
  1999. } else {
  2000. avatar = [UIImage imageNamed:@"menuLogoUser"];
  2001. }
  2002. item.image = avatar;
  2003. item.target = self;
  2004. if ([account isEqualToString:appDelegate.activeAccount]) {
  2005. item.action = nil;
  2006. [menuArray insertObject:item atIndex:0];
  2007. } else {
  2008. item.action = @selector(changeDefaultAccount:);
  2009. [menuArray addObject:item];
  2010. }
  2011. }
  2012. // Add + new account
  2013. CCMenuItem *item = [[CCMenuItem alloc] init];
  2014. item.title = NSLocalizedString(@"_add_account_", nil);
  2015. item.argument = @"";
  2016. item.image = [UIImage imageNamed:@"add"];
  2017. item.target = self;
  2018. item.action = @selector(addNewAccount:);
  2019. [menuArray addObject:item];
  2020. OptionalConfiguration options;
  2021. Color textColor, backgroundColor;
  2022. textColor.R = 0;
  2023. textColor.G = 0;
  2024. textColor.B = 0;
  2025. backgroundColor.R = 1;
  2026. backgroundColor.G = 1;
  2027. backgroundColor.B = 1;
  2028. options.arrowSize = 9;
  2029. options.marginXSpacing = 7;
  2030. options.marginYSpacing = 10;
  2031. options.intervalSpacing = 20;
  2032. options.menuCornerRadius = 6.5;
  2033. options.maskToBackground = NO;
  2034. options.shadowOfMenu = YES;
  2035. options.hasSeperatorLine = YES;
  2036. options.seperatorLineHasInsets = YES;
  2037. options.textColor = textColor;
  2038. options.menuBackgroundColor = backgroundColor;
  2039. CGRect rect = self.view.frame;
  2040. CGFloat locationY = [theGestureRecognizer locationInView: self.navigationController.navigationBar].y;
  2041. CGFloat safeAreaTop = 0;
  2042. CGFloat offsetY = 35;
  2043. if (@available(iOS 11, *)) {
  2044. safeAreaTop = [UIApplication sharedApplication].delegate.window.safeAreaInsets.top / 2;
  2045. }
  2046. rect.origin.y = locationY + safeAreaTop + offsetY;
  2047. rect.size.height = rect.size.height - locationY - safeAreaTop - offsetY;
  2048. [CCMenuAccount setTitleFont:[UIFont systemFontOfSize:12.0]];
  2049. [CCMenuAccount showMenuInView:self.navigationController.view fromRect:rect menuItems:menuArray withOptions:options];
  2050. }
  2051. - (void)changeDefaultAccount:(CCMenuItem *)sender
  2052. {
  2053. NSInteger transferInprogress = [[[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND (status == %d OR status == %d OR status == %d OR status == %d)", appDelegate.activeAccount, k_metadataStatusInDownload, k_metadataStatusDownloading, k_metadataStatusInUpload, k_metadataStatusUploading] sorted:@"fileName" ascending:true] count];
  2054. if (transferInprogress > 0) {
  2055. [JDStatusBarNotification showWithStatus:NSLocalizedString(@"_transfers_in_queue_", nil) dismissAfter:k_dismissAfterSecond styleName:JDStatusBarStyleDefault];
  2056. return;
  2057. }
  2058. [appDelegate.netQueue cancelAllOperations];
  2059. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  2060. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] setAccountActive:[sender argument]];
  2061. if (tableAccount) {
  2062. [appDelegate settingActiveAccount:tableAccount.account activeUrl:tableAccount.url activeUser:tableAccount.user activeUserID:tableAccount.userID activePassword:tableAccount.password];
  2063. // go to home sweet home
  2064. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"initializeMain" object:nil];
  2065. }
  2066. });
  2067. }
  2068. - (void)addNewAccount:(CCMenuItem *)sender
  2069. {
  2070. NSInteger transferInprogress = [[[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND (status == %d OR status == %d OR status == %d OR status == %d)", appDelegate.activeAccount, k_metadataStatusInDownload, k_metadataStatusDownloading, k_metadataStatusInUpload, k_metadataStatusUploading] sorted:@"fileName" ascending:true] count];
  2071. if (transferInprogress > 0) {
  2072. [JDStatusBarNotification showWithStatus:NSLocalizedString(@"_transfers_in_queue_", nil) dismissAfter:k_dismissAfterSecond styleName:JDStatusBarStyleDefault];
  2073. return;
  2074. }
  2075. [appDelegate.netQueue cancelAllOperations];
  2076. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  2077. [appDelegate openLoginView:self loginType:loginAdd];
  2078. });
  2079. }
  2080. #pragma --------------------------------------------------------------------------------------------
  2081. #pragma mark ==== ReMenu ====
  2082. #pragma --------------------------------------------------------------------------------------------
  2083. - (void)createReMenuBackgroundView:(REMenu *)menu
  2084. {
  2085. CGFloat safeAreaBottom = 0;
  2086. CGFloat safeAreaTop = 0;
  2087. CGFloat statusBar = 0;
  2088. if (@available(iOS 11, *)) {
  2089. safeAreaTop = [UIApplication sharedApplication].delegate.window.safeAreaInsets.top;
  2090. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  2091. }
  2092. if ([UIApplication sharedApplication].isStatusBarHidden) {
  2093. statusBar = 13;
  2094. }
  2095. CGFloat computeNavigationBarOffset = [menu computeNavigationBarOffset];
  2096. UIViewController *rootController = [[[[UIApplication sharedApplication]delegate] window] rootViewController];
  2097. CGRect globalPositionMenu = [menu.menuView convertRect:menu.menuView.bounds toView:rootController.view];
  2098. _reMenuBackgroundView.frame = CGRectMake(0, computeNavigationBarOffset, globalPositionMenu.size.width, rootController.view.frame.size.height);
  2099. [UIView animateWithDuration:0.2 animations:^{
  2100. CGFloat minimum = safeAreaBottom + self.tabBarController.tabBar.frame.size.height;
  2101. CGFloat y = rootController.view.frame.size.height - menu.menuView.frame.size.height - globalPositionMenu.origin.y + statusBar;
  2102. if (y>minimum) {
  2103. _reMenuBackgroundView.frame = CGRectMake(0, rootController.view.frame.size.height, globalPositionMenu.size.width, - y);
  2104. [self.tabBarController.view addSubview:_reMenuBackgroundView];
  2105. }
  2106. }];
  2107. }
  2108. - (void)createReMainMenu
  2109. {
  2110. NSString *ordinamento;
  2111. NSString *groupBy = _directoryGroupBy;
  2112. __block NSString *nuovoOrdinamento;
  2113. NSString *titoloNuovo, *titoloAttuale;
  2114. BOOL ascendente;
  2115. __block BOOL nuovoAscendente;
  2116. UIImage *image;
  2117. // ITEM SELECT ----------------------------------------------------------------------------------------------------
  2118. appDelegate.selezionaItem = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_select_", nil)subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"select"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement] highlightedImage:nil action:^(REMenuItem *item) {
  2119. if ([_sectionDataSource.allRecordsDataSource count] > 0) {
  2120. [self tableViewSelect:YES];
  2121. }
  2122. }];
  2123. // ITEM ORDER ----------------------------------------------------------------------------------------------------
  2124. ordinamento = _directoryOrder;
  2125. if ([ordinamento isEqualToString:@"fileName"]) {
  2126. image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"MenuOrdeyByDate"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  2127. titoloNuovo = NSLocalizedString(@"_order_by_date_", nil);
  2128. titoloAttuale = NSLocalizedString(@"_current_order_name_", nil);
  2129. nuovoOrdinamento = @"date";
  2130. }
  2131. if ([ordinamento isEqualToString:@"date"]) {
  2132. image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"MenuOrderByFileName"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  2133. titoloNuovo = NSLocalizedString(@"_order_by_name_", nil);
  2134. titoloAttuale = NSLocalizedString(@"_current_order_date_", nil);
  2135. nuovoOrdinamento = @"fileName";
  2136. }
  2137. appDelegate.ordinaItem = [[REMenuItem alloc] initWithTitle:titoloNuovo subtitle:titoloAttuale image:image highlightedImage:nil action:^(REMenuItem *item) {
  2138. [self orderTable:nuovoOrdinamento];
  2139. }];
  2140. // ITEM ASCENDING -----------------------------------------------------------------------------------------------------
  2141. ascendente = [CCUtility getAscendingSettings];
  2142. if (ascendente) {
  2143. image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"MenuOrdinamentoDiscendente"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  2144. titoloNuovo = NSLocalizedString(@"_sort_descending_", nil);
  2145. titoloAttuale = NSLocalizedString(@"_current_sort_ascending_", nil);
  2146. nuovoAscendente = false;
  2147. }
  2148. if (!ascendente) {
  2149. image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"MenuOrdinamentoAscendente"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  2150. titoloNuovo = NSLocalizedString(@"_sort_ascending_", nil);
  2151. titoloAttuale = NSLocalizedString(@"_current_sort_descending_", nil);
  2152. nuovoAscendente = true;
  2153. }
  2154. appDelegate.ascendenteItem = [[REMenuItem alloc] initWithTitle:titoloNuovo subtitle:titoloAttuale image:image highlightedImage:nil action:^(REMenuItem *item) {
  2155. [self ascendingTable:nuovoAscendente];
  2156. }];
  2157. // ITEM ALPHABETIC -----------------------------------------------------------------------------------------------------
  2158. if ([groupBy isEqualToString:@"alphabetic"]) { titoloNuovo = NSLocalizedString(@"_group_alphabetic_yes_", nil); }
  2159. else { titoloNuovo = NSLocalizedString(@"_group_alphabetic_no_", nil); }
  2160. appDelegate.alphabeticItem = [[REMenuItem alloc] initWithTitle:titoloNuovo subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"MenuGroupByAlphabetic"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement] highlightedImage:nil action:^(REMenuItem *item) {
  2161. if ([groupBy isEqualToString:@"alphabetic"]) [self tableGroupBy:@"none"];
  2162. else [self tableGroupBy:@"alphabetic"];
  2163. }];
  2164. // ITEM TYPEFILE -------------------------------------------------------------------------------------------------------
  2165. if ([groupBy isEqualToString:@"typefile"]) { titoloNuovo = NSLocalizedString(@"_group_typefile_yes_", nil); }
  2166. else { titoloNuovo = NSLocalizedString(@"_group_typefile_no_", nil); }
  2167. appDelegate.typefileItem = [[REMenuItem alloc] initWithTitle:titoloNuovo subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"file"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement] highlightedImage:nil action:^(REMenuItem *item) {
  2168. if ([groupBy isEqualToString:@"typefile"]) [self tableGroupBy:@"none"];
  2169. else [self tableGroupBy:@"typefile"];
  2170. }];
  2171. // ITEM DATE -------------------------------------------------------------------------------------------------------
  2172. if ([groupBy isEqualToString:@"date"]) { titoloNuovo = NSLocalizedString(@"_group_date_yes_", nil); }
  2173. else { titoloNuovo = NSLocalizedString(@"_group_date_no_", nil); }
  2174. appDelegate.dateItem = [[REMenuItem alloc] initWithTitle:titoloNuovo subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"MenuGroupByDate"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement] highlightedImage:nil action:^(REMenuItem *item) {
  2175. if ([groupBy isEqualToString:@"date"]) [self tableGroupBy:@"none"];
  2176. else [self tableGroupBy:@"date"];
  2177. }];
  2178. // ITEM DIRECTORY ON TOP ------------------------------------------------------------------------------------------------
  2179. if ([CCUtility getDirectoryOnTop]) { titoloNuovo = NSLocalizedString(@"_directory_on_top_yes_", nil); }
  2180. else { titoloNuovo = NSLocalizedString(@"_directory_on_top_no_", nil); }
  2181. appDelegate.directoryOnTopItem = [[REMenuItem alloc] initWithTitle:titoloNuovo subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement] highlightedImage:nil action:^(REMenuItem *item) {
  2182. if ([CCUtility getDirectoryOnTop])
  2183. [self directoryOnTop:NO];
  2184. else
  2185. [self directoryOnTop:YES];
  2186. }];
  2187. // REMENU --------------------------------------------------------------------------------------------------------------
  2188. appDelegate.reMainMenu = [[REMenu alloc] initWithItems:@[appDelegate.selezionaItem, appDelegate.ordinaItem, appDelegate.ascendenteItem, appDelegate.alphabeticItem, appDelegate.typefileItem, appDelegate.dateItem, appDelegate.directoryOnTopItem]];
  2189. appDelegate.reMainMenu.imageOffset = CGSizeMake(5, -1);
  2190. appDelegate.reMainMenu.separatorOffset = CGSizeMake(50.0, 0.0);
  2191. appDelegate.reMainMenu.imageOffset = CGSizeMake(0, 0);
  2192. appDelegate.reMainMenu.waitUntilAnimationIsComplete = NO;
  2193. appDelegate.reMainMenu.separatorHeight = 0.5;
  2194. appDelegate.reMainMenu.separatorColor = [NCBrandColor sharedInstance].seperator;
  2195. appDelegate.reMainMenu.backgroundColor = [NCBrandColor sharedInstance].backgroundView;
  2196. appDelegate.reMainMenu.textColor = [UIColor blackColor];
  2197. appDelegate.reMainMenu.textAlignment = NSTextAlignmentLeft;
  2198. appDelegate.reMainMenu.textShadowColor = nil;
  2199. appDelegate.reMainMenu.textOffset = CGSizeMake(50, 0.0);
  2200. appDelegate.reMainMenu.font = [UIFont systemFontOfSize:14.0];
  2201. appDelegate.reMainMenu.highlightedBackgroundColor = [[NCBrandColor sharedInstance] getColorSelectBackgrond];
  2202. appDelegate.reMainMenu.highlightedSeparatorColor = nil;
  2203. appDelegate.reMainMenu.highlightedTextColor = [UIColor blackColor];
  2204. appDelegate.reMainMenu.highlightedTextShadowColor = nil;
  2205. appDelegate.reMainMenu.highlightedTextShadowOffset = CGSizeMake(0, 0);
  2206. appDelegate.reMainMenu.subtitleTextColor = [UIColor colorWithWhite:0.425 alpha:1];
  2207. appDelegate.reMainMenu.subtitleTextAlignment = NSTextAlignmentLeft;
  2208. appDelegate.reMainMenu.subtitleTextShadowColor = nil;
  2209. appDelegate.reMainMenu.subtitleTextShadowOffset = CGSizeMake(0, 0.0);
  2210. appDelegate.reMainMenu.subtitleTextOffset = CGSizeMake(50, 0.0);
  2211. appDelegate.reMainMenu.subtitleFont = [UIFont systemFontOfSize:12.0];
  2212. appDelegate.reMainMenu.subtitleHighlightedTextColor = [UIColor lightGrayColor];
  2213. appDelegate.reMainMenu.subtitleHighlightedTextShadowColor = nil;
  2214. appDelegate.reMainMenu.subtitleHighlightedTextShadowOffset = CGSizeMake(0, 0);
  2215. appDelegate.reMainMenu.borderWidth = 0.3;
  2216. appDelegate.reMainMenu.borderColor = [UIColor lightGrayColor];
  2217. appDelegate.reMainMenu.animationDuration = 0.2;
  2218. appDelegate.reMainMenu.closeAnimationDuration = 0.2;
  2219. appDelegate.reMainMenu.bounce = NO;
  2220. __weak typeof(self) weakSelf = self;
  2221. [appDelegate.reMainMenu setClosePreparationBlock:^{
  2222. // Backgroun reMenu (Gesture)
  2223. [weakSelf.reMenuBackgroundView removeFromSuperview];
  2224. [weakSelf.reMenuBackgroundView removeGestureRecognizer:weakSelf.singleFingerTap];
  2225. }];
  2226. }
  2227. - (void)toggleReMainMenu
  2228. {
  2229. if (appDelegate.reMainMenu.isOpen) {
  2230. [appDelegate.reMainMenu close];
  2231. } else {
  2232. [self createReMainMenu];
  2233. [appDelegate.reMainMenu showFromNavigationController:self.navigationController];
  2234. // Backgroun reMenu & (Gesture)
  2235. [self createReMenuBackgroundView:appDelegate.reMainMenu];
  2236. _singleFingerTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(toggleReMainMenu)];
  2237. [_reMenuBackgroundView addGestureRecognizer:_singleFingerTap];
  2238. }
  2239. }
  2240. - (void)createReSelectMenu
  2241. {
  2242. // ITEM DELETE ------------------------------------------------------------------------------------------------------
  2243. appDelegate.deleteItem = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_delete_selected_files_", nil) subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"delete"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement] highlightedImage:nil action:^(REMenuItem *item) {
  2244. [self deleteFile];
  2245. }];
  2246. // ITEM MOVE ------------------------------------------------------------------------------------------------------
  2247. appDelegate.moveItem = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_move_selected_files_", nil) subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"move"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement] highlightedImage:nil action:^(REMenuItem *item) {
  2248. [self moveOpenWindow:[self.tableView indexPathsForSelectedRows]];
  2249. }];
  2250. // ITEM DOWNLOAD ----------------------------------------------------------------------------------------------------
  2251. appDelegate.downloadItem = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_download_selected_files_folders_", nil) subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"downloadSelectedFiles"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement] highlightedImage:nil action:^(REMenuItem *item) {
  2252. [self downloadSelectedFilesFolders];
  2253. }];
  2254. // ITEM SAVE IMAGE & VIDEO -------------------------------------------------------------------------------------------
  2255. appDelegate.saveItem = [[REMenuItem alloc] initWithTitle:NSLocalizedString(@"_save_selected_files_", nil) subtitle:@"" image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"saveSelectedFiles"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement] highlightedImage:nil action:^(REMenuItem *item) {
  2256. [self saveSelectedFiles];
  2257. }];
  2258. // E2EE
  2259. if (_metadataFolder.e2eEncrypted) {
  2260. appDelegate.reSelectMenu = [[REMenu alloc] initWithItems:@[appDelegate.deleteItem,appDelegate.downloadItem, appDelegate.saveItem]];
  2261. } else {
  2262. appDelegate.reSelectMenu = [[REMenu alloc] initWithItems:@[appDelegate.deleteItem,appDelegate.moveItem, appDelegate.downloadItem, appDelegate.saveItem]];
  2263. }
  2264. appDelegate.reSelectMenu.imageOffset = CGSizeMake(5, -1);
  2265. appDelegate.reSelectMenu.separatorOffset = CGSizeMake(50.0, 0.0);
  2266. appDelegate.reSelectMenu.imageOffset = CGSizeMake(0, 0);
  2267. appDelegate.reSelectMenu.waitUntilAnimationIsComplete = NO;
  2268. appDelegate.reSelectMenu.separatorHeight = 0.5;
  2269. appDelegate.reSelectMenu.separatorColor = [NCBrandColor sharedInstance].seperator;
  2270. appDelegate.reSelectMenu.backgroundColor = [NCBrandColor sharedInstance].backgroundView;
  2271. appDelegate.reSelectMenu.textColor = [UIColor blackColor];
  2272. appDelegate.reSelectMenu.textAlignment = NSTextAlignmentLeft;
  2273. appDelegate.reSelectMenu.textShadowColor = nil;
  2274. appDelegate.reSelectMenu.textOffset = CGSizeMake(50, 0.0);
  2275. appDelegate.reSelectMenu.font = [UIFont systemFontOfSize:14.0];
  2276. appDelegate.reSelectMenu.highlightedBackgroundColor = [[NCBrandColor sharedInstance] getColorSelectBackgrond];
  2277. appDelegate.reSelectMenu.highlightedSeparatorColor = nil;
  2278. appDelegate.reSelectMenu.highlightedTextColor = [UIColor blackColor];
  2279. appDelegate.reSelectMenu.highlightedTextShadowColor = nil;
  2280. appDelegate.reSelectMenu.highlightedTextShadowOffset = CGSizeMake(0, 0);
  2281. appDelegate.reSelectMenu.subtitleTextColor = [UIColor colorWithWhite:0.425 alpha:1.000];
  2282. appDelegate.reSelectMenu.subtitleTextAlignment = NSTextAlignmentLeft;
  2283. appDelegate.reSelectMenu.subtitleTextShadowColor = nil;
  2284. appDelegate.reSelectMenu.subtitleTextShadowOffset = CGSizeMake(0, 0.0);
  2285. appDelegate.reSelectMenu.subtitleTextOffset = CGSizeMake(50, 0.0);
  2286. appDelegate.reSelectMenu.subtitleFont = [UIFont systemFontOfSize:12.0];
  2287. appDelegate.reSelectMenu.subtitleHighlightedTextColor = [UIColor lightGrayColor];
  2288. appDelegate.reSelectMenu.subtitleHighlightedTextShadowColor = nil;
  2289. appDelegate.reSelectMenu.subtitleHighlightedTextShadowOffset = CGSizeMake(0, 0);
  2290. appDelegate.reSelectMenu.borderWidth = 0.3;
  2291. appDelegate.reSelectMenu.borderColor = [UIColor lightGrayColor];
  2292. appDelegate.reSelectMenu.closeAnimationDuration = 0.2;
  2293. appDelegate.reSelectMenu.animationDuration = 0.2;
  2294. appDelegate.reSelectMenu.bounce = NO;
  2295. __weak typeof(self) weakSelf = self;
  2296. [appDelegate.reSelectMenu setClosePreparationBlock:^{
  2297. // Backgroun reMenu (Gesture)
  2298. [weakSelf.reMenuBackgroundView removeFromSuperview];
  2299. [weakSelf.reMenuBackgroundView removeGestureRecognizer:weakSelf.singleFingerTap];
  2300. }];
  2301. }
  2302. - (void)toggleReSelectMenu
  2303. {
  2304. if (appDelegate.reSelectMenu.isOpen) {
  2305. [appDelegate.reSelectMenu close];
  2306. } else {
  2307. [self createReSelectMenu];
  2308. [appDelegate.reSelectMenu showFromNavigationController:self.navigationController];
  2309. // Backgroun reMenu & (Gesture)
  2310. [self createReMenuBackgroundView:appDelegate.reSelectMenu];
  2311. _singleFingerTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(toggleReSelectMenu)];
  2312. [_reMenuBackgroundView addGestureRecognizer:_singleFingerTap];
  2313. }
  2314. }
  2315. #pragma --------------------------------------------------------------------------------------------
  2316. #pragma mark ===== Long Press Recognized Table View / Menu Controller =====
  2317. #pragma --------------------------------------------------------------------------------------------
  2318. - (void)onLongPressTableView:(UILongPressGestureRecognizer*)recognizer
  2319. {
  2320. if (recognizer.state == UIGestureRecognizerStateBegan) {
  2321. CGPoint touchPoint = [recognizer locationInView:self.tableView];
  2322. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touchPoint];
  2323. if ([self indexPathIsValid:indexPath])
  2324. _metadata = [self getMetadataFromSectionDataSource:indexPath];
  2325. else
  2326. _metadata = nil;
  2327. [self becomeFirstResponder];
  2328. UIMenuController *menuController = [UIMenuController sharedMenuController];
  2329. UIMenuItem *copyFileItem = [[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_file_", nil) action:@selector(copyFile:)];
  2330. UIMenuItem *copyFilesItem = [[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_copy_files_", nil) action:@selector(copyFiles:)];
  2331. UIMenuItem *openinFileItem = [[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_open_in_", nil) action:@selector(openinFile:)];
  2332. UIMenuItem *pasteFileItem = [[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_file_", nil) action:@selector(pasteFile:)];
  2333. UIMenuItem *pasteFilesItem = [[UIMenuItem alloc] initWithTitle:NSLocalizedString(@"_paste_files_", nil) action:@selector(pasteFiles:)];
  2334. [menuController setMenuItems:[NSArray arrayWithObjects:copyFileItem, copyFilesItem, openinFileItem, pasteFileItem, pasteFilesItem, nil]];
  2335. [menuController setTargetRect:CGRectMake(touchPoint.x, touchPoint.y, 0.0f, 0.0f) inView:self.tableView];
  2336. [menuController setMenuVisible:YES animated:YES];
  2337. }
  2338. }
  2339. - (BOOL)canBecomeFirstResponder
  2340. {
  2341. return YES;
  2342. }
  2343. - (BOOL)canPerformAction:(SEL)action withSender:(id)sender
  2344. {
  2345. // For copy file, copy files, Open in ... :
  2346. //
  2347. // NO Directory
  2348. // NO Error Passcode
  2349. // NO In Session mode (download/upload)
  2350. // NO Template
  2351. if (@selector(copyFile:) == action || @selector(openinFile:) == action) {
  2352. if (_isSelectedMode == NO && _metadata && !_metadata.directory && _metadata.status == k_metadataStatusNormal) return YES;
  2353. else return NO;
  2354. }
  2355. if (@selector(copyFiles:) == action) {
  2356. if (_isSelectedMode) {
  2357. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  2358. for (tableMetadata *metadata in selectedMetadatas) {
  2359. if (!metadata.directory && metadata.status == k_metadataStatusNormal)
  2360. return YES;
  2361. }
  2362. }
  2363. return NO;
  2364. }
  2365. if (@selector(pasteFile:) == action) {
  2366. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  2367. NSArray *items = [pasteboard items];
  2368. if ([items count] == 1) {
  2369. // Value : (NSData) fileID
  2370. NSDictionary *dic = [items objectAtIndex:0];
  2371. NSData *dataFileID = [dic objectForKey: k_metadataKeyedUnarchiver];
  2372. NSString *fileID = [NSKeyedUnarchiver unarchiveObjectWithData:dataFileID];
  2373. if (fileID) {
  2374. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  2375. if (metadata) {
  2376. return [CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView];
  2377. } else {
  2378. return NO;
  2379. }
  2380. }
  2381. }
  2382. return NO;
  2383. }
  2384. if (@selector(pasteFiles:) == action) {
  2385. BOOL isValid = NO;
  2386. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  2387. NSArray *items = [pasteboard items];
  2388. if ([items count] <= 1) return NO;
  2389. for (NSDictionary *dic in items) {
  2390. // Value : (NSData) fileID
  2391. NSData *dataFileID = [dic objectForKey: k_metadataKeyedUnarchiver];
  2392. NSString *fileID = [NSKeyedUnarchiver unarchiveObjectWithData:dataFileID];
  2393. if (fileID) {
  2394. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  2395. if (metadata) {
  2396. if ([CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView]) {
  2397. isValid = YES;
  2398. } else {
  2399. isValid = NO;
  2400. break;
  2401. }
  2402. } else {
  2403. isValid = NO;
  2404. break;
  2405. }
  2406. } else {
  2407. isValid = NO;
  2408. break;
  2409. }
  2410. }
  2411. return isValid;
  2412. }
  2413. return NO;
  2414. }
  2415. /************************************ COPY ************************************/
  2416. - (void)copyFile:(id)sender
  2417. {
  2418. // Remove all item
  2419. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  2420. pasteboard.items = [[NSArray alloc] init];
  2421. if ([CCUtility fileProviderStorageExists:_metadata.fileID fileName:_metadata.fileNameView]) {
  2422. [self copyFileToPasteboard:_metadata];
  2423. } else {
  2424. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadata.directoryID];
  2425. if (serverUrl) {
  2426. _metadata.session = k_download_session;
  2427. _metadata.sessionError = @"";
  2428. _metadata.sessionSelector = selectorLoadCopy;
  2429. _metadata.status = k_metadataStatusWaitDownload;
  2430. // Add Metadata for Download
  2431. (void)[[NCManageDatabase sharedInstance] addMetadata:_metadata];
  2432. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  2433. }
  2434. }
  2435. }
  2436. - (void)copyFiles:(id)sender
  2437. {
  2438. // Remove all item
  2439. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  2440. pasteboard.items = [[NSArray alloc] init];
  2441. NSArray *selectedMetadatas = [self getMetadatasFromSelectedRows:[self.tableView indexPathsForSelectedRows]];
  2442. for (tableMetadata *metadata in selectedMetadatas) {
  2443. if ([CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView]) {
  2444. [self copyFileToPasteboard:metadata];
  2445. } else {
  2446. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadata.directoryID];
  2447. if (serverUrl) {
  2448. metadata.session = k_download_session;
  2449. metadata.sessionError = @"";
  2450. metadata.sessionSelector = selectorLoadCopy;
  2451. metadata.status = k_metadataStatusWaitDownload;
  2452. // Add Metadata for Download
  2453. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  2454. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  2455. }
  2456. }
  2457. }
  2458. [self tableViewSelect:NO];
  2459. }
  2460. - (void)copyFileToPasteboard:(tableMetadata *)metadata
  2461. {
  2462. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  2463. NSMutableArray *items = [[NSMutableArray alloc] initWithArray:pasteboard.items];
  2464. // Value : (NSData) fileID
  2465. NSDictionary *item = [NSDictionary dictionaryWithObjectsAndKeys:[NSKeyedArchiver archivedDataWithRootObject:metadata.fileID], k_metadataKeyedUnarchiver,nil];
  2466. [items addObject:item];
  2467. [pasteboard setItems:items];
  2468. }
  2469. /************************************ OPEN IN ... ******************************/
  2470. - (void)openinFile:(id)sender
  2471. {
  2472. [self openIn:_metadata];
  2473. }
  2474. /************************************ PASTE ************************************/
  2475. - (void)pasteFile:(id)sender
  2476. {
  2477. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  2478. [self uploadFilePasteArray:[pasteboard items]];
  2479. }
  2480. - (void)pasteFiles:(id)sender
  2481. {
  2482. UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  2483. [self uploadFilePasteArray:[pasteboard items]];
  2484. }
  2485. - (void)uploadFilePasteArray:(NSArray *)items
  2486. {
  2487. for (NSDictionary *dic in items) {
  2488. // Value : (NSData) fileID
  2489. NSData *dataFileID = [dic objectForKey: k_metadataKeyedUnarchiver];
  2490. NSString *fileID = [NSKeyedUnarchiver unarchiveObjectWithData:dataFileID];
  2491. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:self.serverUrl];
  2492. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  2493. if (metadata) {
  2494. if ([CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView]) {
  2495. NSString *fileName = [[NCUtility sharedInstance] createFileName:metadata.fileNameView directoryID:directoryID];
  2496. NSString *fileID = [directoryID stringByAppendingString:fileName];
  2497. [CCUtility copyFileAtPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView] toPath:[CCUtility getDirectoryProviderStorageFileID:fileID fileName:fileName]];
  2498. tableMetadata *metadataForUpload = [tableMetadata new];
  2499. metadataForUpload.account = appDelegate.activeAccount;
  2500. metadataForUpload.date = [NSDate new];
  2501. metadataForUpload.directoryID = directoryID;
  2502. metadataForUpload.fileID = fileID;
  2503. metadataForUpload.fileName = fileName;
  2504. metadataForUpload.fileNameView = fileName;
  2505. metadataForUpload.session = k_upload_session;
  2506. metadataForUpload.sessionSelector = selectorUploadFile;
  2507. metadataForUpload.status = k_metadataStatusWaitUpload;
  2508. // Add Medtadata for upload
  2509. (void)[[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  2510. }
  2511. }
  2512. }
  2513. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  2514. [self reloadDatasource];
  2515. }
  2516. #pragma --------------------------------------------------------------------------------------------
  2517. #pragma mark ===== Lock Passcode =====
  2518. #pragma --------------------------------------------------------------------------------------------
  2519. - (NSUInteger)passcodeViewControllerNumberOfFailedAttempts:(CCBKPasscode *)aViewController
  2520. {
  2521. return _failedAttempts;
  2522. }
  2523. - (NSDate *)passcodeViewControllerLockUntilDate:(CCBKPasscode *)aViewController
  2524. {
  2525. return _lockUntilDate;
  2526. }
  2527. - (void)passcodeViewCloseButtonPressed:(id)sender
  2528. {
  2529. [self dismissViewControllerAnimated:YES completion:nil];
  2530. }
  2531. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  2532. {
  2533. if (aViewController.fromType == CCBKPasscodeFromLockScreen || aViewController.fromType == CCBKPasscodeFromLockDirectory || aViewController.fromType == CCBKPasscodeFromDisactivateDirectory ) {
  2534. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  2535. _lockUntilDate = nil;
  2536. _failedAttempts = 0;
  2537. aResultHandler(YES);
  2538. } else aResultHandler(NO);
  2539. } else aResultHandler(YES);
  2540. }
  2541. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  2542. {
  2543. [aViewController dismissViewControllerAnimated:YES completion:nil];
  2544. switch (aViewController.type) {
  2545. case BKPasscodeViewControllerCheckPasscodeType: {
  2546. if (aViewController.fromType == CCBKPasscodeFromLockDirectory) {
  2547. // possiamo procedere alla prossima directory
  2548. [self performSegueDirectoryWithControlPasscode:false];
  2549. // avviamo la sessione Passcode Lock con now
  2550. appDelegate.sessionePasscodeLock = [NSDate date];
  2551. }
  2552. // disattivazione lock cartella
  2553. if (aViewController.fromType == CCBKPasscodeFromDisactivateDirectory) {
  2554. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadata.directoryID];
  2555. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:serverUrl addFileName:_metadata.fileName];
  2556. if (![[NCManageDatabase sharedInstance] setDirectoryLockWithServerUrl:lockServerUrl lock:NO]) {
  2557. [appDelegate messageNotification:@"_error_" description:@"_error_operation_canc_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  2558. }
  2559. [self tableViewReloadData];
  2560. }
  2561. }
  2562. break;
  2563. default:
  2564. break;
  2565. }
  2566. }
  2567. - (void)comandoLockPassword
  2568. {
  2569. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadata.directoryID];
  2570. if (!serverUrl) return;
  2571. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:serverUrl addFileName:_metadata.fileName];
  2572. // se non è abilitato il Lock Passcode esci
  2573. if ([[CCUtility getBlockCode] length] == 0) {
  2574. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_warning_", nil) message:NSLocalizedString(@"_only_lock_passcode_", nil) preferredStyle:UIAlertControllerStyleAlert];
  2575. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  2576. [alertController addAction:okAction];
  2577. [self presentViewController:alertController animated:YES completion:nil];
  2578. return;
  2579. }
  2580. // se è richiesta la disattivazione si chiede la password
  2581. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  2582. if (directory.lock) {
  2583. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  2584. viewController.delegate = self;
  2585. viewController.fromType = CCBKPasscodeFromDisactivateDirectory;
  2586. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  2587. viewController.inputViewTitlePassword = YES;
  2588. if ([CCUtility getSimplyBlockCode]) {
  2589. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  2590. viewController.passcodeInputView.maximumLength = 6;
  2591. } else {
  2592. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  2593. viewController.passcodeInputView.maximumLength = 64;
  2594. }
  2595. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  2596. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  2597. viewController.touchIDManager = touchIDManager;
  2598. viewController.title = NSLocalizedString(@"_passcode_protection_", nil);
  2599. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  2600. viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
  2601. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  2602. [self presentViewController:navigationController animated:YES completion:nil];
  2603. return;
  2604. }
  2605. // ---------------- ACTIVATE PASSWORD
  2606. if ([[NCManageDatabase sharedInstance] setDirectoryLockWithServerUrl:lockServerUrl lock:YES]) {
  2607. NSIndexPath *indexPath = [_sectionDataSource.fileIDIndexPath objectForKey:_metadata.fileID];
  2608. if ([self indexPathIsValid:indexPath])
  2609. [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationAutomatic];
  2610. } else {
  2611. [appDelegate messageNotification:@"_error_" description:@"_error_operation_canc_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  2612. }
  2613. }
  2614. #pragma mark -
  2615. #pragma --------------------------------------------------------------------------------------------
  2616. #pragma mark ===== menu action : Favorite, More, Delete [swipe] =====
  2617. #pragma --------------------------------------------------------------------------------------------
  2618. - (BOOL)canOpenMenuAction:(tableMetadata *)metadata
  2619. {
  2620. if (!metadata || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata])
  2621. return NO;
  2622. if (metadata == nil || metadata.status != k_metadataStatusNormal)
  2623. return NO;
  2624. // E2EE
  2625. if (_metadataFolder.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount] == NO)
  2626. return NO;
  2627. return YES;
  2628. }
  2629. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell canSwipe:(MGSwipeDirection)direction
  2630. {
  2631. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  2632. tableMetadata *metadata = [self getMetadataFromSectionDataSource:indexPath];
  2633. return [self canOpenMenuAction:metadata];
  2634. }
  2635. -(void)swipeTableCell:(nonnull MGSwipeTableCell *)cell didChangeSwipeState:(MGSwipeState)state gestureIsActive:(BOOL)gestureIsActive
  2636. {
  2637. }
  2638. - (BOOL)swipeTableCell:(MGSwipeTableCell *)cell tappedButtonAtIndex:(NSInteger)index direction:(MGSwipeDirection)direction fromExpansion:(BOOL)fromExpansion
  2639. {
  2640. NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  2641. _metadata = [self getMetadataFromSectionDataSource:indexPath];
  2642. if (direction == MGSwipeDirectionRightToLeft) {
  2643. [self actionDelete:indexPath];
  2644. }
  2645. if (direction == MGSwipeDirectionLeftToRight) {
  2646. if (_metadata.favorite)
  2647. [self removeFavorite:_metadata];
  2648. else
  2649. [self addFavorite:_metadata];
  2650. }
  2651. return YES;
  2652. }
  2653. - (void)actionDelete:(NSIndexPath *)indexPath
  2654. {
  2655. // Directory locked ?
  2656. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:[[NCManageDatabase sharedInstance] getServerUrl:_metadata.directoryID] addFileName:_metadata.fileName];
  2657. if (!lockServerUrl) return;
  2658. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  2659. tableLocalFile *localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", _metadata.fileID]];
  2660. if (directory.lock && [[CCUtility getBlockCode] length] && appDelegate.sessionePasscodeLock == nil) {
  2661. [appDelegate messageNotification:@"_error_" description:@"_folder_blocked_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  2662. return;
  2663. }
  2664. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  2665. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  2666. [self performSelector:@selector(deleteFile) withObject:nil];
  2667. }]];
  2668. if (localFile || [CCUtility fileProviderStorageExists:_metadata.fileID fileName:_metadata.fileNameView]) {
  2669. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_remove_local_file_", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  2670. [self performSelector:@selector(removeLocalFile:) withObject:_metadata];
  2671. }]];
  2672. }
  2673. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  2674. [alertController dismissViewControllerAnimated:YES completion:nil];
  2675. }]];
  2676. alertController.popoverPresentationController.sourceView = self.view;
  2677. alertController.popoverPresentationController.sourceRect = [self.tableView rectForRowAtIndexPath:indexPath];
  2678. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  2679. [alertController.view layoutIfNeeded];
  2680. [self presentViewController:alertController animated:YES completion:nil];
  2681. }
  2682. - (void)actionMore:(UITapGestureRecognizer *)gestureRecognizer
  2683. {
  2684. CGPoint touch = [gestureRecognizer locationInView:self.tableView];
  2685. NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:touch];
  2686. _metadata = [self getMetadataFromSectionDataSource:indexPath];
  2687. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadata.directoryID];
  2688. if (!serverUrl) return;
  2689. NSString *titoloLock, *titleFavorite;
  2690. if (_metadata.favorite) {
  2691. titleFavorite = [NSString stringWithFormat:NSLocalizedString(@"_remove_favorites_", nil)];
  2692. } else {
  2693. titleFavorite = [NSString stringWithFormat:NSLocalizedString(@"_add_favorites_", nil)];
  2694. }
  2695. if (_metadata.directory) {
  2696. // calcolo lockServerUrl
  2697. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:serverUrl addFileName:_metadata.fileName];
  2698. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  2699. if (directory.lock)
  2700. titoloLock = [NSString stringWithFormat:NSLocalizedString(@"_remove_passcode_", nil)];
  2701. else
  2702. titoloLock = [NSString stringWithFormat:NSLocalizedString(@"_protect_passcode_", nil)];
  2703. }
  2704. // ******************************************* AHKActionSheet *******************************************
  2705. AHKActionSheet *actionSheet = [[AHKActionSheet alloc] initWithView:self.tabBarController.view title:nil];
  2706. actionSheet.animationDuration = 0.2;
  2707. actionSheet.buttonHeight = 50.0;
  2708. actionSheet.cancelButtonHeight = 50.0f;
  2709. actionSheet.separatorHeight = 5.0f;
  2710. actionSheet.automaticallyTintButtonImages = @(NO);
  2711. actionSheet.encryptedButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:[NCBrandColor sharedInstance].encrypted };
  2712. actionSheet.buttonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:[UIColor blackColor] };
  2713. actionSheet.cancelButtonTextAttributes = @{ NSFontAttributeName:[UIFont boldSystemFontOfSize:17], NSForegroundColorAttributeName:[UIColor blackColor] };
  2714. actionSheet.disableButtonTextAttributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:16], NSForegroundColorAttributeName:[UIColor darkGrayColor] };
  2715. actionSheet.separatorColor = [NCBrandColor sharedInstance].seperator;
  2716. actionSheet.cancelButtonTitle = NSLocalizedString(@"_cancel_",nil);
  2717. // ******************************************* DIRECTORY *******************************************
  2718. if (_metadata.directory) {
  2719. BOOL lockDirectory = NO;
  2720. NSString *dirServerUrl = [CCUtility stringAppendServerUrl:serverUrl addFileName:_metadata.fileName];
  2721. BOOL isFolderEncrypted = [CCUtility isFolderEncrypted:[NSString stringWithFormat:@"%@/%@", self.serverUrl, _metadata.fileName] account:appDelegate.activeAccount];
  2722. // Directory bloccata ?
  2723. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, dirServerUrl]];
  2724. if (directory.lock && [[CCUtility getBlockCode] length] && appDelegate.sessionePasscodeLock == nil) lockDirectory = YES;
  2725. [actionSheet addButtonWithTitle:_metadata.fileNameView
  2726. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement]
  2727. backgroundColor:[NCBrandColor sharedInstance].tabBar
  2728. height:50.0
  2729. type:AHKActionSheetButtonTypeDisabled
  2730. handler:nil
  2731. ];
  2732. [actionSheet addButtonWithTitle: titleFavorite
  2733. image: [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2734. backgroundColor: [NCBrandColor sharedInstance].backgroundView
  2735. height: 50.0
  2736. type: AHKActionSheetButtonTypeDefault
  2737. handler: ^(AHKActionSheet *as) {
  2738. if (_metadata.favorite) [self removeFavorite:_metadata];
  2739. else [self addFavorite:_metadata];
  2740. }];
  2741. if (!lockDirectory && !isFolderEncrypted) {
  2742. [actionSheet addButtonWithTitle:NSLocalizedString(@"_share_", nil)
  2743. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"share"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2744. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2745. height:50.0
  2746. type:AHKActionSheetButtonTypeDefault
  2747. handler:^(AHKActionSheet *as) {
  2748. [self openWindowShare:_metadata];
  2749. }];
  2750. }
  2751. if (!([_metadata.fileName isEqualToString:_autoUploadFileName] == YES && [serverUrl isEqualToString:_autoUploadDirectory] == YES) && !lockDirectory && !_metadata.e2eEncrypted) {
  2752. [actionSheet addButtonWithTitle:NSLocalizedString(@"_rename_", nil)
  2753. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"rename"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2754. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2755. height:50.0
  2756. type:AHKActionSheetButtonTypeDefault
  2757. handler:^(AHKActionSheet *as) {
  2758. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_rename_",nil) message:nil preferredStyle:UIAlertControllerStyleAlert];
  2759. [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  2760. textField.text = _metadata.fileNameView;
  2761. //textField.selectedTextRange = [textField textRangeFromPosition:textField.beginningOfDocument toPosition:textField.endOfDocument];
  2762. //textField.delegate = self;
  2763. [textField addTarget:self action:@selector(minCharTextFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
  2764. }];
  2765. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_",nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  2766. NSLog(@"[LOG] Cancel action");
  2767. }];
  2768. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  2769. UITextField *fileName = alertController.textFields.firstObject;
  2770. [self performSelectorOnMainThread:@selector(renameFile:) withObject:[NSMutableArray arrayWithObjects:_metadata,fileName.text, nil] waitUntilDone:NO];
  2771. }];
  2772. okAction.enabled = NO;
  2773. [alertController addAction:cancelAction];
  2774. [alertController addAction:okAction];
  2775. [self presentViewController:alertController animated:YES completion:nil];
  2776. }];
  2777. }
  2778. if (!([_metadata.fileName isEqualToString:_autoUploadFileName] == YES && [serverUrl isEqualToString:_autoUploadDirectory] == YES) && !lockDirectory && !isFolderEncrypted) {
  2779. [actionSheet addButtonWithTitle:NSLocalizedString(@"_move_", nil)
  2780. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"move"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2781. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2782. height:50.0
  2783. type:AHKActionSheetButtonTypeDefault
  2784. handler:^(AHKActionSheet *as) {
  2785. [self moveOpenWindow:[[NSArray alloc] initWithObjects:indexPath, nil]];
  2786. }];
  2787. }
  2788. if (!([_metadata.fileName isEqualToString:_autoUploadFileName] == YES && [serverUrl isEqualToString:_autoUploadDirectory] == YES)) {
  2789. [actionSheet addButtonWithTitle:NSLocalizedString(@"_folder_automatic_upload_", nil)
  2790. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folderPhotos"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2791. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2792. height:50.0
  2793. type:AHKActionSheetButtonTypeDefault
  2794. handler:^(AHKActionSheet *as) {
  2795. // Settings new folder Automatatic upload
  2796. [[NCManageDatabase sharedInstance] setAccountAutoUploadFileName:_metadata.fileName];
  2797. [[NCManageDatabase sharedInstance] setAccountAutoUploadDirectory:serverUrl activeUrl:appDelegate.activeUrl];
  2798. // Clear data (old) Auto Upload
  2799. [[NCManageDatabase sharedInstance] clearDateReadWithServerUrl:_autoUploadDirectory directoryID:nil];
  2800. [self readFolder:serverUrl];
  2801. }];
  2802. }
  2803. if (!([_metadata.fileName isEqualToString:_autoUploadFileName] == YES && [serverUrl isEqualToString:_autoUploadDirectory] == YES)) {
  2804. [actionSheet addButtonWithTitle:titoloLock
  2805. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"settingsPasscodeYES"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2806. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2807. height:50.0
  2808. type:AHKActionSheetButtonTypeDefault
  2809. handler:^(AHKActionSheet *as) {
  2810. [self performSelector:@selector(comandoLockPassword) withObject:nil];
  2811. }];
  2812. }
  2813. if (!_metadata.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount]) {
  2814. [actionSheet addButtonWithTitle:NSLocalizedString(@"_e2e_set_folder_encrypted_", nil)
  2815. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"lock"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2816. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2817. height:50.0
  2818. type:AHKActionSheetButtonTypeDefault
  2819. handler:^(AHKActionSheet *as) {
  2820. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  2821. NSError *error = [[NCNetworkingEndToEnd sharedManager] markEndToEndFolderEncrypted:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl fileID:_metadata.fileID serverUrl:[NSString stringWithFormat:@"%@/%@", self.serverUrl, _metadata.fileName]];
  2822. dispatch_async(dispatch_get_main_queue(), ^{
  2823. if (error) {
  2824. [appDelegate messageNotification:@"_e2e_error_mark_folder_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  2825. } else {
  2826. [[NCManageDatabase sharedInstance] deleteE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, [NSString stringWithFormat:@"%@/%@", self.serverUrl, _metadata.fileName]]];
  2827. [self readFolder:self.serverUrl];
  2828. }
  2829. });
  2830. });
  2831. }];
  2832. }
  2833. if (_metadata.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount]) {
  2834. [actionSheet addButtonWithTitle:NSLocalizedString(@"_e2e_remove_folder_encrypted_", nil)
  2835. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"lock"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2836. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2837. height:50.0
  2838. type:AHKActionSheetButtonTypeDefault
  2839. handler:^(AHKActionSheet *as) {
  2840. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  2841. NSError *error = [[NCNetworkingEndToEnd sharedManager] deletemarkEndToEndFolderEncrypted:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl fileID:_metadata.fileID serverUrl:[NSString stringWithFormat:@"%@/%@", self.serverUrl, _metadata.fileName]];
  2842. dispatch_async(dispatch_get_main_queue(), ^{
  2843. if (error) {
  2844. [appDelegate messageNotification:@"_e2e_error_delete_mark_folder_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  2845. } else {
  2846. [[NCManageDatabase sharedInstance] deleteE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, [NSString stringWithFormat:@"%@/%@", self.serverUrl, _metadata.fileName]]];
  2847. [self readFolder:self.serverUrl];
  2848. }
  2849. });
  2850. });
  2851. }];
  2852. }
  2853. [actionSheet addButtonWithTitle:NSLocalizedString(@"_delete_", nil)
  2854. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"delete"] multiplier:2 color:[UIColor redColor]]
  2855. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2856. height:50.0
  2857. type:AHKActionSheetButtonTypeDestructive
  2858. handler:^(AHKActionSheet *as) {
  2859. [self actionDelete:indexPath];
  2860. }];
  2861. [actionSheet show];
  2862. }
  2863. // ******************************************* FILE *******************************************
  2864. if (!_metadata.directory) {
  2865. UIImage *iconHeader;
  2866. // assegnamo l'immagine anteprima se esiste, altrimenti metti quella standars
  2867. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:_metadata.fileID fileNameView:_metadata.fileNameView]])
  2868. iconHeader = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:_metadata.fileID fileNameView:_metadata.fileNameView]];
  2869. else
  2870. iconHeader = [UIImage imageNamed:_metadata.iconName];
  2871. [actionSheet addButtonWithTitle: _metadata.fileNameView
  2872. image: iconHeader
  2873. backgroundColor: [NCBrandColor sharedInstance].tabBar
  2874. height: 50.0
  2875. type: AHKActionSheetButtonTypeDisabled
  2876. handler: nil
  2877. ];
  2878. [actionSheet addButtonWithTitle: titleFavorite
  2879. image: [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2880. backgroundColor: [NCBrandColor sharedInstance].backgroundView
  2881. height: 50.0
  2882. type: AHKActionSheetButtonTypeDefault
  2883. handler: ^(AHKActionSheet *as) {
  2884. if (_metadata.favorite) [self removeFavorite:_metadata];
  2885. else [self addFavorite:_metadata];
  2886. }];
  2887. if (!_metadataFolder.e2eEncrypted) {
  2888. [actionSheet addButtonWithTitle:NSLocalizedString(@"_share_", nil)
  2889. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"share"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2890. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2891. height: 50.0
  2892. type:AHKActionSheetButtonTypeDefault
  2893. handler:^(AHKActionSheet *as) {
  2894. [self openWindowShare:_metadata];
  2895. }];
  2896. }
  2897. [actionSheet addButtonWithTitle:NSLocalizedString(@"_open_in_", nil)
  2898. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"openFile"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2899. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2900. height: 50.0
  2901. type:AHKActionSheetButtonTypeDefault
  2902. handler:^(AHKActionSheet *as) {
  2903. [self performSelector:@selector(openIn:) withObject:_metadata];
  2904. }];
  2905. [actionSheet addButtonWithTitle:NSLocalizedString(@"_rename_", nil)
  2906. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"rename"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2907. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2908. height: 50.0
  2909. type:AHKActionSheetButtonTypeDefault
  2910. handler:^(AHKActionSheet *as) {
  2911. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_rename_",nil) message:nil preferredStyle:UIAlertControllerStyleAlert];
  2912. [alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  2913. textField.text = _metadata.fileNameView;
  2914. [textField addTarget:self action:@selector(minCharTextFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
  2915. }];
  2916. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_",nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  2917. NSLog(@"[LOG] Cancel action");
  2918. }];
  2919. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  2920. UITextField *fileName = alertController.textFields.firstObject;
  2921. [self performSelectorOnMainThread:@selector(renameFile:) withObject:[NSMutableArray arrayWithObjects:_metadata,fileName.text, nil] waitUntilDone:NO];
  2922. }];
  2923. okAction.enabled = NO;
  2924. [alertController addAction:cancelAction];
  2925. [alertController addAction:okAction];
  2926. [self presentViewController:alertController animated:YES completion:nil];
  2927. }];
  2928. if (!_metadataFolder.e2eEncrypted) {
  2929. [actionSheet addButtonWithTitle:NSLocalizedString(@"_move_", nil)
  2930. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"move"] multiplier:2 color:[NCBrandColor sharedInstance].gray]
  2931. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2932. height:50.0
  2933. type:AHKActionSheetButtonTypeDefault
  2934. handler:^(AHKActionSheet *as) {
  2935. [self moveOpenWindow:[[NSArray alloc] initWithObjects:indexPath, nil]];
  2936. }];
  2937. }
  2938. [actionSheet addButtonWithTitle:NSLocalizedString(@"_delete_", nil)
  2939. image:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"delete"] multiplier:2 color:[UIColor redColor]]
  2940. backgroundColor:[NCBrandColor sharedInstance].backgroundView
  2941. height:50.0
  2942. type:AHKActionSheetButtonTypeDestructive
  2943. handler:^(AHKActionSheet *as) {
  2944. [self actionDelete:indexPath];
  2945. }];
  2946. [actionSheet show];
  2947. }
  2948. }
  2949. #pragma --------------------------------------------------------------------------------------------
  2950. #pragma mark - ==== Datasource ====
  2951. #pragma --------------------------------------------------------------------------------------------
  2952. - (void)clearDateReadDataSource:(NSNotification *)notification
  2953. {
  2954. _dateReadDataSource = Nil;
  2955. [self reloadDatasource];
  2956. }
  2957. - (void)reloadDatasource
  2958. {
  2959. [self reloadDatasource:_serverUrl];
  2960. }
  2961. - (void)reloadDatasource:(NSString *)serverUrl
  2962. {
  2963. // test
  2964. if (appDelegate.activeAccount.length == 0 || serverUrl.length == 0 || serverUrl == nil)
  2965. return;
  2966. // Search Mode
  2967. if (_isSearchMode) {
  2968. _sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:_searchResultMetadatas listProgressMetadata:nil groupByField:_directoryGroupBy activeAccount:appDelegate.activeAccount];
  2969. [self tableViewReloadData];
  2970. if ([_sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] >= k_minCharsSearch) {
  2971. _noFilesSearchTitle = NSLocalizedString(@"_search_no_record_found_", nil);
  2972. _noFilesSearchDescription = @"";
  2973. }
  2974. if ([_sectionDataSource.allRecordsDataSource count] == 0 && [_searchFileName length] < k_minCharsSearch) {
  2975. _noFilesSearchTitle = @"";
  2976. _noFilesSearchDescription = NSLocalizedString(@"_search_instruction_", nil);
  2977. }
  2978. [self.tableView reloadEmptyDataSet];
  2979. return;
  2980. }
  2981. // Reload -> Self se non siamo nella dir appropriata cercala e se è in memoria reindirizza il reload
  2982. if ([serverUrl isEqualToString:_serverUrl] == NO || _serverUrl == nil) {
  2983. CCMain *main = [appDelegate.listMainVC objectForKey:serverUrl];
  2984. if (main) {
  2985. [main reloadDatasource];
  2986. } else {
  2987. [self tableViewReloadData];
  2988. // [appDelegate.activeTransfers reloadDatasource];
  2989. }
  2990. return;
  2991. }
  2992. // [appDelegate.activeTransfers reloadDatasource];
  2993. // Settaggio variabili per le ottimizzazioni
  2994. _directoryGroupBy = [CCUtility getGroupBySettings];
  2995. _directoryOrder = [CCUtility getOrderSettings];
  2996. // Remove optimization for encrypted directory
  2997. if (_metadataFolder.e2eEncrypted)
  2998. _dateReadDataSource = nil;
  2999. // current directoryID
  3000. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  3001. // Controllo data lettura Data Source
  3002. tableDirectory *tableDirectory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, serverUrl]];
  3003. // Get MetadataFolder
  3004. if (![serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]])
  3005. _metadataFolder = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", tableDirectory.fileID]];
  3006. NSDate *dateDateRecordDirectory = tableDirectory.dateReadDirectory;
  3007. if ([dateDateRecordDirectory compare:_dateReadDataSource] == NSOrderedDescending || dateDateRecordDirectory == nil || _dateReadDataSource == nil) {
  3008. NSLog(@"[LOG] Rebuild Data Source File : %@", _serverUrl);
  3009. _dateReadDataSource = [NSDate date];
  3010. // Data Source
  3011. NSString *sorted = _directoryOrder;
  3012. if ([sorted isEqualToString:@"fileName"])
  3013. sorted = @"fileName";
  3014. if (directoryID) {
  3015. NSArray *recordsTableMetadata = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND status != %i", directoryID, k_metadataStatusHide] sorted:sorted ascending:[CCUtility getAscendingSettings]];
  3016. _sectionDataSource = [CCSectionDataSourceMetadata new];
  3017. _sectionDataSource = [CCSectionMetadata creataDataSourseSectionMetadata:recordsTableMetadata listProgressMetadata:nil groupByField:_directoryGroupBy activeAccount:appDelegate.activeAccount];
  3018. // get auto upload folder
  3019. _autoUploadFileName = [[NCManageDatabase sharedInstance] getAccountAutoUploadFileName];
  3020. _autoUploadDirectory = [[NCManageDatabase sharedInstance] getAccountAutoUploadDirectory:appDelegate.activeUrl];
  3021. }
  3022. } else {
  3023. NSLog(@"[LOG] [OPTIMIZATION] Rebuild Data Source File : %@ - %@", _serverUrl, _dateReadDataSource);
  3024. }
  3025. [self tableViewReloadData];
  3026. }
  3027. - (NSArray *)getMetadatasFromSelectedRows:(NSArray *)selectedRows
  3028. {
  3029. NSMutableArray *metadatas = [[NSMutableArray alloc] init];
  3030. if (selectedRows.count > 0) {
  3031. for (NSIndexPath *selectionIndex in selectedRows) {
  3032. NSString *fileID = [[_sectionDataSource.sectionArrayRow objectForKey:[_sectionDataSource.sections objectAtIndex:selectionIndex.section]] objectAtIndex:selectionIndex.row];
  3033. tableMetadata *metadata = [_sectionDataSource.allRecordsDataSource objectForKey:fileID];
  3034. [metadatas addObject:metadata];
  3035. }
  3036. }
  3037. return metadatas;
  3038. }
  3039. - (tableMetadata *)getMetadataFromSectionDataSource:(NSIndexPath *)indexPath
  3040. {
  3041. NSInteger section = indexPath.section + 1;
  3042. NSInteger row = indexPath.row + 1;
  3043. NSInteger totSections = [_sectionDataSource.sections count] ;
  3044. if ((totSections < section) || (section > totSections)) {
  3045. NSLog(@"[LOG] %@", [NSString stringWithFormat:@"DEBUG [0] : error section, totSections = %lu - section = %lu", (long)totSections, (long)section]);
  3046. return nil;
  3047. }
  3048. id valueSection = [_sectionDataSource.sections objectAtIndex:indexPath.section];
  3049. NSArray *fileIDs = [_sectionDataSource.sectionArrayRow objectForKey:valueSection];
  3050. if (fileIDs) {
  3051. NSInteger totRows =[fileIDs count] ;
  3052. if ((totRows < row) || (row > totRows)) {
  3053. NSLog(@"[LOG] %@", [NSString stringWithFormat:@"DEBUG [1] : error row, totRows = %lu - row = %lu", (long)totRows, (long)row]);
  3054. return nil;
  3055. }
  3056. } else {
  3057. NSLog(@"[LOG] DEBUG [2] : fileIDs is NIL");
  3058. return nil;
  3059. }
  3060. NSString *fileID = [fileIDs objectAtIndex:indexPath.row];
  3061. tableMetadata *metadata = [_sectionDataSource.allRecordsDataSource objectForKey:fileID];
  3062. return metadata;
  3063. }
  3064. - (NSArray *)getMetadatasFromSectionDataSource:(NSInteger)section
  3065. {
  3066. NSInteger totSections =[_sectionDataSource.sections count] ;
  3067. if ((totSections < (section + 1)) || ((section + 1) > totSections)) {
  3068. return nil;
  3069. }
  3070. id valueSection = [_sectionDataSource.sections objectAtIndex:section];
  3071. return [_sectionDataSource.sectionArrayRow objectForKey:valueSection];
  3072. }
  3073. #pragma --------------------------------------------------------------------------------------------
  3074. #pragma mark - ==== Table ====
  3075. #pragma --------------------------------------------------------------------------------------------
  3076. - (void)tableViewSelect:(BOOL)edit
  3077. {
  3078. // chiudiamo eventuali swipe aperti
  3079. if (edit)
  3080. [self.tableView setEditing:NO animated:NO];
  3081. [self.tableView setAllowsMultipleSelectionDuringEditing:edit];
  3082. [self.tableView setEditing:edit animated:YES];
  3083. _isSelectedMode = edit;
  3084. if (edit)
  3085. [self setUINavigationBarSelected];
  3086. else
  3087. [self setUINavigationBarDefault];
  3088. [_selectedFileIDsMetadatas removeAllObjects];
  3089. [self setTitle];
  3090. }
  3091. - (void)tableViewReloadData
  3092. {
  3093. // store selected cells before relod
  3094. NSArray *indexPaths = [self.tableView indexPathsForSelectedRows];
  3095. // reload table view
  3096. [self.tableView reloadData];
  3097. // selected cells stored
  3098. for (NSIndexPath *path in indexPaths)
  3099. [self.tableView selectRowAtIndexPath:path animated:NO scrollPosition:UITableViewScrollPositionNone];
  3100. [self setTableViewFooter];
  3101. if (self.tableView.editing)
  3102. [self setTitle];
  3103. }
  3104. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
  3105. {
  3106. if (tableView.editing == 1) {
  3107. tableMetadata *metadata = [self getMetadataFromSectionDataSource:indexPath];
  3108. if (!metadata || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata])
  3109. return NO;
  3110. if (metadata == nil || metadata.status != k_metadataStatusNormal)
  3111. return NO;
  3112. else
  3113. return YES;
  3114. } else {
  3115. [_selectedFileIDsMetadatas removeAllObjects];
  3116. }
  3117. return YES;
  3118. }
  3119. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  3120. {
  3121. return 60;
  3122. }
  3123. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  3124. {
  3125. return [[_sectionDataSource.sectionArrayRow allKeys] count];
  3126. }
  3127. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  3128. {
  3129. return [[_sectionDataSource.sectionArrayRow objectForKey:[_sectionDataSource.sections objectAtIndex:section]] count];
  3130. }
  3131. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  3132. {
  3133. NSArray *sections = [_sectionDataSource.sectionArrayRow allKeys];
  3134. NSString *sectionTitle = [sections objectAtIndex:section];
  3135. if ([sectionTitle isKindOfClass:[NSString class]] && [sectionTitle rangeOfString:@"download"].location != NSNotFound) return 18.f;
  3136. if ([sectionTitle isKindOfClass:[NSString class]] && [sectionTitle rangeOfString:@"upload"].location != NSNotFound) return 18.f;
  3137. if ([_directoryGroupBy isEqualToString:@"none"] && [sections count] <= 1) return 0.0f;
  3138. return 20.f;
  3139. }
  3140. -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  3141. {
  3142. float shift;
  3143. UIVisualEffectView *visualEffectView;
  3144. NSString *titleSection;
  3145. if (![self indexPathIsValid:[NSIndexPath indexPathForRow:0 inSection:section]])
  3146. return nil;
  3147. if ([[_sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSString class]])
  3148. titleSection = [_sectionDataSource.sections objectAtIndex:section];
  3149. if ([[_sectionDataSource.sections objectAtIndex:section] isKindOfClass:[NSDate class]])
  3150. titleSection = [CCUtility getTitleSectionDate:[_sectionDataSource.sections objectAtIndex:section]];
  3151. if ([titleSection isEqualToString:@"_none_"]) titleSection = @"";
  3152. else if ([titleSection rangeOfString:@"download"].location != NSNotFound) titleSection = NSLocalizedString(@"_title_section_download_",nil);
  3153. else if ([titleSection rangeOfString:@"upload"].location != NSNotFound) titleSection = NSLocalizedString(@"_title_section_upload_",nil);
  3154. else titleSection = NSLocalizedString(titleSection,nil);
  3155. // Format title
  3156. NSString *currentDevice = [CCUtility currentDevice];
  3157. if ([currentDevice rangeOfString:@"iPad3"].location != NSNotFound) {
  3158. visualEffectView = [[UIVisualEffectView alloc] init];
  3159. visualEffectView.backgroundColor = [[NCBrandColor sharedInstance].brand colorWithAlphaComponent:0.3];
  3160. } else {
  3161. UIVisualEffect *blurEffect;
  3162. blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
  3163. visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
  3164. visualEffectView.backgroundColor = [[NCBrandColor sharedInstance].brand colorWithAlphaComponent:0.2];
  3165. }
  3166. if ([_directoryGroupBy isEqualToString:@"alphabetic"]) {
  3167. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  3168. shift = - 35;
  3169. else
  3170. shift = - 20;
  3171. } else shift = - 10;
  3172. // Title
  3173. UILabel *titleLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, -12, 0, 44)];
  3174. titleLabel.backgroundColor = [UIColor clearColor];
  3175. titleLabel.textColor = [UIColor blackColor];
  3176. titleLabel.font = [UIFont systemFontOfSize:12];
  3177. titleLabel.textAlignment = NSTextAlignmentLeft;
  3178. titleLabel.text = titleSection;
  3179. titleLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  3180. [visualEffectView.contentView addSubview:titleLabel];
  3181. // Elements
  3182. UILabel *elementLabel= [[UILabel alloc]initWithFrame:CGRectMake(shift, -12, 0, 44)];
  3183. elementLabel.backgroundColor = [UIColor clearColor];
  3184. elementLabel.textColor = [UIColor blackColor];;
  3185. elementLabel.font = [UIFont systemFontOfSize:12];
  3186. elementLabel.textAlignment = NSTextAlignmentRight;
  3187. elementLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  3188. NSArray *metadatas = [self getMetadatasFromSectionDataSource:section];
  3189. NSUInteger rowsCount = [metadatas count];
  3190. if (rowsCount == 0) return nil;
  3191. if (rowsCount == 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_element_",nil)];
  3192. if (rowsCount > 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount, NSLocalizedString(@"_elements_",nil)];
  3193. [visualEffectView.contentView addSubview:elementLabel];
  3194. return visualEffectView;
  3195. }
  3196. - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
  3197. {
  3198. return [_sectionDataSource.sections indexOfObject:title];
  3199. }
  3200. - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
  3201. {
  3202. if ([_directoryGroupBy isEqualToString:@"alphabetic"])
  3203. return [[UILocalizedIndexedCollation currentCollation] sectionIndexTitles];
  3204. else
  3205. return nil;
  3206. }
  3207. /*
  3208. -(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
  3209. {
  3210. if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){
  3211. }
  3212. }
  3213. */
  3214. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  3215. {
  3216. tableMetadata *metadata = [self getMetadataFromSectionDataSource:indexPath];
  3217. if (metadata == nil || [[NCManageDatabase sharedInstance] isTableInvalidated:metadata])
  3218. return [tableView dequeueReusableCellWithIdentifier:@"CellMain"];
  3219. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  3220. if (serverUrl == nil) {
  3221. return [tableView dequeueReusableCellWithIdentifier:@"CellMain"];
  3222. }
  3223. // Create File System
  3224. if (metadata.directory) {
  3225. [CCUtility getDirectoryProviderStorageFileID:metadata.fileID];
  3226. } else {
  3227. [CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView];
  3228. }
  3229. // CCCell
  3230. if (metadata.status == k_metadataStatusNormal) {
  3231. // NORMAL
  3232. CCCellMain *cell = (CCCellMain *)[tableView dequeueReusableCellWithIdentifier:@"CellMain" forIndexPath:indexPath];
  3233. cell.separatorInset = UIEdgeInsetsMake(0.f, 60.f, 0.f, 0.f);
  3234. cell.accessoryType = UITableViewCellAccessoryNone;
  3235. cell.file.image = nil;
  3236. cell.status.image = nil;
  3237. cell.favorite.image = nil;
  3238. cell.shared.image = nil;
  3239. cell.local.image = nil;
  3240. cell.imageTitleSegue = nil;
  3241. cell.backgroundColor = [NCBrandColor sharedInstance].backgroundView;
  3242. // change color selection
  3243. UIView *selectionColor = [UIView new];
  3244. selectionColor.backgroundColor = [[NCBrandColor sharedInstance] getColorSelectBackgrond];
  3245. cell.selectedBackgroundView = selectionColor;
  3246. cell.tintColor = [NCBrandColor sharedInstance].brandElement;
  3247. cell.delegate = self;
  3248. cell.indexPath = indexPath;
  3249. cell.labelTitle.textColor = [UIColor blackColor];
  3250. cell.labelTitle.text = metadata.fileNameView;
  3251. NSString *shareLink = [appDelegate.sharesLink objectForKey:[serverUrl stringByAppendingString:metadata.fileName]];
  3252. NSString *shareUserAndGroup = [appDelegate.sharesUserAndGroup objectForKey:[serverUrl stringByAppendingString:metadata.fileName]];
  3253. BOOL isShare = [metadata.permissions containsString:k_permission_shared] && ![_fatherPermission containsString:k_permission_shared];
  3254. BOOL isMounted = [metadata.permissions containsString:k_permission_mounted] && ![_fatherPermission containsString:k_permission_mounted];
  3255. if (metadata.directory) {
  3256. // lable Info
  3257. cell.labelInfoFile.text = [CCUtility dateDiff:metadata.date];
  3258. // File Image & Image Title Segue
  3259. if (metadata.e2eEncrypted) {
  3260. cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folderEncrypted"] multiplier:3 color:[NCBrandColor sharedInstance].brandElement];
  3261. cell.imageTitleSegue = [UIImage imageNamed:@"lock"];
  3262. } else if ([metadata.fileName isEqualToString:_autoUploadFileName] && [self.serverUrl isEqualToString:_autoUploadDirectory]) {
  3263. cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folderPhotos"] multiplier:3 color:[NCBrandColor sharedInstance].brandElement];
  3264. cell.imageTitleSegue = [UIImage imageNamed:@"photos"];
  3265. } else if (isShare) {
  3266. cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder_shared_with_me"] multiplier:3 color:[NCBrandColor sharedInstance].brandElement];
  3267. cell.imageTitleSegue = [UIImage imageNamed:@"share"];
  3268. } else if (isMounted) {
  3269. cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder_external"] multiplier:3 color:[NCBrandColor sharedInstance].brandElement];
  3270. cell.imageTitleSegue = [UIImage imageNamed:@"shareMounted"];
  3271. } else if (shareUserAndGroup != nil) {
  3272. cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder_shared_with_me"] multiplier:3 color:[NCBrandColor sharedInstance].brandElement];
  3273. cell.imageTitleSegue = [UIImage imageNamed:@"share"];
  3274. } else if (shareLink != nil) {
  3275. cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder_public"] multiplier:3 color:[NCBrandColor sharedInstance].brandElement];
  3276. cell.imageTitleSegue = [UIImage imageNamed:@"sharebylink"];
  3277. } else
  3278. cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"folder"] multiplier:3 color:[NCBrandColor sharedInstance].brandElement];
  3279. // Image Status Lock Passcode
  3280. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:serverUrl addFileName:metadata.fileName];
  3281. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  3282. if ((directory.lock && [[CCUtility getBlockCode] length])) {
  3283. cell.status.image = [UIImage imageNamed:@"passcode"];
  3284. }
  3285. } else {
  3286. BOOL iconFileExists = [[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  3287. // Lable Info
  3288. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@ %@", [CCUtility dateDiff:metadata.date], [CCUtility transformedSize:metadata.size]];
  3289. // File Image
  3290. if (iconFileExists) {
  3291. cell.file.image = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  3292. } else {
  3293. if (metadata.iconName.length > 0) {
  3294. cell.file.image = [UIImage imageNamed:metadata.iconName];
  3295. } else {
  3296. cell.file.image = [UIImage imageNamed:@"file"];
  3297. }
  3298. }
  3299. // Local Image
  3300. tableLocalFile *localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  3301. if (localFile && [CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView]) {
  3302. cell.local.image = [UIImage imageNamed:@"local"];
  3303. } else {
  3304. cell.local.image = nil;
  3305. }
  3306. // Download thumbnail
  3307. if (metadata.thumbnailExists && !iconFileExists && !_metadataFolder.e2eEncrypted) {
  3308. [[CCActions sharedInstance] downloadTumbnail:metadata delegate:self];
  3309. }
  3310. // Status Image
  3311. tableE2eEncryption *tableE2eEncryption = [[NCManageDatabase sharedInstance] getE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND fileNameIdentifier == %@", appDelegate.activeAccount, metadata.fileName]];
  3312. if (tableE2eEncryption) {
  3313. cell.status.image = [UIImage imageNamed:@"encrypted"];
  3314. }
  3315. // Share
  3316. if (isShare) {
  3317. cell.shared.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"share"] multiplier:2 color:[NCBrandColor sharedInstance].gray];
  3318. } else if (isMounted) {
  3319. cell.shared.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"shareMounted"] multiplier:2 color:[NCBrandColor sharedInstance].gray];
  3320. } else if (shareLink != nil) {
  3321. cell.shared.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"sharebylink"] multiplier:2 color:[NCBrandColor sharedInstance].gray];
  3322. } else if (shareUserAndGroup != nil) {
  3323. cell.shared.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"share"] multiplier:2 color:[NCBrandColor sharedInstance].gray];
  3324. }
  3325. }
  3326. //
  3327. // File & Directory
  3328. //
  3329. // Favorite
  3330. if (metadata.favorite) {
  3331. cell.favorite.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] multiplier:2 color:[NCBrandColor sharedInstance].yellowFavorite];
  3332. }
  3333. // Share add Tap
  3334. if (isShare || isMounted || shareLink != nil || shareUserAndGroup != nil) {
  3335. if (isShare || isMounted) { // Shared with you
  3336. UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionConnectionMounted:)];
  3337. [tap setNumberOfTapsRequired:1];
  3338. cell.shared.userInteractionEnabled = YES;
  3339. [cell.shared addGestureRecognizer:tap];
  3340. } else if (shareLink != nil || shareUserAndGroup != nil) { // You share
  3341. if (metadata.directory) {
  3342. cell.shared.userInteractionEnabled = NO;
  3343. } else {
  3344. UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapActionShared:)];
  3345. [tap setNumberOfTapsRequired:1];
  3346. cell.shared.userInteractionEnabled = YES;
  3347. [cell.shared addGestureRecognizer:tap];
  3348. }
  3349. }
  3350. } else {
  3351. cell.shared.userInteractionEnabled = NO;
  3352. }
  3353. // More Image
  3354. cell.more.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"more"] multiplier:2 color:[NCBrandColor sharedInstance].gray];
  3355. if ([self canOpenMenuAction:metadata]) {
  3356. UITapGestureRecognizer *tapMore = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(actionMore:)];
  3357. [tapMore setNumberOfTapsRequired:1];
  3358. cell.more.userInteractionEnabled = YES;
  3359. [cell.more addGestureRecognizer:tapMore];
  3360. }
  3361. // MGSwipeButton
  3362. // LEFT
  3363. cell.leftButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] multiplier:2 color:[UIColor whiteColor]] backgroundColor:[NCBrandColor sharedInstance].yellowFavorite padding:25]];
  3364. cell.leftExpansion.buttonIndex = 0;
  3365. cell.leftExpansion.fillOnTrigger = NO;
  3366. //centerIconOverText
  3367. MGSwipeButton *favoriteButton = (MGSwipeButton *)[cell.leftButtons objectAtIndex:0];
  3368. [favoriteButton centerIconOverText];
  3369. // RIGHT
  3370. cell.rightButtons = @[[MGSwipeButton buttonWithTitle:@"" icon:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"delete"] multiplier:2 color:[UIColor whiteColor]] backgroundColor:[UIColor redColor] padding:25]];
  3371. cell.rightExpansion.buttonIndex = 0;
  3372. cell.rightExpansion.fillOnTrigger = NO;
  3373. //centerIconOverText
  3374. MGSwipeButton *deleteButton = (MGSwipeButton *)[cell.rightButtons objectAtIndex:0];
  3375. [deleteButton centerIconOverText];
  3376. return cell;
  3377. } else {
  3378. // TRASNFER
  3379. CCCellMainTransfer *cell = (CCCellMainTransfer *)[tableView dequeueReusableCellWithIdentifier:@"CellMainTransfer" forIndexPath:indexPath];
  3380. cell.separatorInset = UIEdgeInsetsMake(0.f, 60.f, 0.f, 0.f);
  3381. cell.accessoryType = UITableViewCellAccessoryNone;
  3382. cell.file.image = nil;
  3383. cell.status.image = nil;
  3384. cell.backgroundColor = [NCBrandColor sharedInstance].transferBackground;
  3385. cell.labelTitle.textColor = [UIColor blackColor];
  3386. cell.labelTitle.text = metadata.fileNameView;
  3387. cell.labelInfoFile.text = [CCUtility transformedSize:metadata.size];
  3388. BOOL iconFileExists = [[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  3389. if (iconFileExists) {
  3390. cell.file.image = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  3391. } else {
  3392. if (metadata.iconName.length > 0) {
  3393. cell.file.image = [UIImage imageNamed:metadata.iconName];
  3394. } else {
  3395. cell.file.image = [UIImage imageNamed:@"file"];
  3396. }
  3397. }
  3398. // Session Upload Extension
  3399. if ([metadata.session isEqualToString:k_upload_session_extension] && (metadata.status == k_metadataStatusInUpload || metadata.status == k_metadataStatusUploading)) {
  3400. cell.labelTitle.enabled = NO;
  3401. cell.labelInfoFile.enabled = NO;
  3402. cell.userInteractionEnabled = NO;
  3403. // cell.cancelTaskButton.enabled = NO;
  3404. } else {
  3405. cell.labelTitle.enabled = YES;
  3406. cell.labelInfoFile.enabled = YES;
  3407. cell.userInteractionEnabled = YES;
  3408. // cell.cancelTaskButton.enabled = YES;
  3409. }
  3410. // downloadFile
  3411. if (metadata.status == k_metadataStatusWaitDownload || metadata.status == k_metadataStatusInDownload || metadata.status == k_metadataStatusDownloading || metadata.status == k_metadataStatusDownloadError) {
  3412. cell.status.image = [UIImage imageNamed:@"statusdownload"];
  3413. // [cell.cancelTaskButton setBackgroundImage:[UIImage imageNamed:@"taskCancelDownload"] forState:UIControlStateNormal];
  3414. // cell.cancelTaskButton.hidden = NO;
  3415. }
  3416. // downloadFile Error
  3417. if (metadata.status == k_metadataStatusDownloadError) {
  3418. cell.status.image = [UIImage imageNamed:@"statuserror"];
  3419. if ([metadata.sessionError length] == 0) {
  3420. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@, %@", NSLocalizedString(@"_error_",nil), NSLocalizedString(@"_file_not_downloaded_",nil)];
  3421. } else {
  3422. cell.labelInfoFile.text = metadata.sessionError;
  3423. }
  3424. }
  3425. // uploadFile
  3426. if (metadata.status == k_metadataStatusWaitUpload || metadata.status == k_metadataStatusInUpload || metadata.status == k_metadataStatusUploading || metadata.status == k_metadataStatusUploadError) {
  3427. cell.status.image = [UIImage imageNamed:@"statusupload"];
  3428. // [cell.cancelTaskButton setBackgroundImage:[UIImage imageNamed:@"taskCancelUpload"] forState:UIControlStateNormal];
  3429. // cell.cancelTaskButton.hidden = NO;
  3430. if (!iconFileExists) {
  3431. cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"uploadCloud"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  3432. }
  3433. cell.labelTitle.enabled = NO;
  3434. }
  3435. // uploadFileError
  3436. if (metadata.status == k_metadataStatusUploadError) {
  3437. cell.labelTitle.enabled = NO;
  3438. cell.status.image = [UIImage imageNamed:@"statuserror"];
  3439. if (!iconFileExists) {
  3440. cell.file.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"uploadCloud"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  3441. }
  3442. if ([metadata.sessionError length] == 0) {
  3443. cell.labelInfoFile.text = [NSString stringWithFormat:@"%@, %@", NSLocalizedString(@"_error_",nil), NSLocalizedString(@"_file_not_uploaded_",nil)];
  3444. } else {
  3445. cell.labelInfoFile.text = metadata.sessionError;
  3446. }
  3447. }
  3448. // gesture Transfer
  3449. // [cell.cancelTaskButton addTarget:self action:@selector(cancelTaskButton:withEvent:) forControlEvents:UIControlEventTouchUpInside];
  3450. UILongPressGestureRecognizer *cancelLongGesture = [UILongPressGestureRecognizer new];
  3451. [cancelLongGesture addTarget:self action:@selector(cancelAllTask:)];
  3452. // [cell.cancelTaskButton addGestureRecognizer:cancelLongGesture];
  3453. return cell;
  3454. }
  3455. }
  3456. - (void)setTableViewFooter
  3457. {
  3458. UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  3459. [footerView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  3460. UILabel *footerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 0, 40)];
  3461. [footerLabel setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  3462. UIFont *appFont = [UIFont systemFontOfSize:12];
  3463. footerLabel.font = appFont;
  3464. footerLabel.textColor = [UIColor grayColor];
  3465. footerLabel.backgroundColor = [UIColor clearColor];
  3466. footerLabel.textAlignment = NSTextAlignmentCenter;
  3467. NSString *folders;
  3468. NSString *files;
  3469. NSString *footerText;
  3470. if (_sectionDataSource.directories > 1) {
  3471. folders = [NSString stringWithFormat:@"%ld %@", (long)_sectionDataSource.directories, NSLocalizedString(@"_folders_", nil)];
  3472. } else if (_sectionDataSource.directories == 1){
  3473. folders = [NSString stringWithFormat:@"%ld %@", (long)_sectionDataSource.directories, NSLocalizedString(@"_folder_", nil)];
  3474. } else {
  3475. folders = @"";
  3476. }
  3477. if (_sectionDataSource.files > 1) {
  3478. files = [NSString stringWithFormat:@"%ld %@ %@", (long)_sectionDataSource.files, NSLocalizedString(@"_files_", nil), [CCUtility transformedSize:_sectionDataSource.totalSize]];
  3479. } else if (_sectionDataSource.files == 1){
  3480. files = [NSString stringWithFormat:@"%ld %@ %@", (long)_sectionDataSource.files, NSLocalizedString(@"_file_", nil), [CCUtility transformedSize:_sectionDataSource.totalSize]];
  3481. } else {
  3482. files = @"";
  3483. }
  3484. if ([folders isEqualToString:@""]) {
  3485. footerText = files;
  3486. } else if ([files isEqualToString:@""]) {
  3487. footerText = folders;
  3488. } else {
  3489. footerText = [NSString stringWithFormat:@"%@, %@", folders, files];
  3490. }
  3491. footerLabel.text = footerText;
  3492. [footerView addSubview:footerLabel];
  3493. [self.tableView setTableFooterView:footerView];
  3494. }
  3495. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  3496. {
  3497. CCCellMain *cell = [tableView cellForRowAtIndexPath:indexPath];
  3498. // settiamo il record file.
  3499. _metadata = [self getMetadataFromSectionDataSource:indexPath];
  3500. if (!_metadata)
  3501. return;
  3502. // se non può essere selezionata deseleziona
  3503. if ([cell isEditing] == NO)
  3504. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  3505. // se siamo in modalità editing impostiamo il titolo dei selezioati e usciamo subito
  3506. if (self.tableView.editing) {
  3507. [_selectedFileIDsMetadatas setObject:_metadata forKey:_metadata.fileID];
  3508. [self setTitle];
  3509. return;
  3510. }
  3511. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadata.directoryID];
  3512. if (!serverUrl) return;
  3513. // se è in corso una sessione
  3514. if (_metadata.status != k_metadataStatusNormal)
  3515. return;
  3516. // file
  3517. if (_metadata.directory == NO) {
  3518. // se il file esiste andiamo direttamente al delegato altrimenti carichiamolo
  3519. if ([CCUtility fileProviderStorageExists:_metadata.fileID fileName:_metadata.fileNameView]) {
  3520. [self downloadFileSuccessFailure:_metadata.fileName fileID:_metadata.fileID serverUrl:serverUrl selector:selectorLoadFileView errorMessage:@"" errorCode:0];
  3521. } else {
  3522. if (_metadataFolder.e2eEncrypted && ![CCUtility isEndToEndEnabled:appDelegate.activeAccount]) {
  3523. [appDelegate messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  3524. } else {
  3525. _metadata.session = k_download_session;
  3526. _metadata.sessionError = @"";
  3527. _metadata.sessionSelector = selectorLoadFileView;
  3528. _metadata.status = k_metadataStatusWaitDownload;
  3529. // Add Metadata for Download
  3530. (void)[[NCManageDatabase sharedInstance] addMetadata:_metadata];
  3531. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  3532. NSIndexPath *indexPath = [_sectionDataSource.fileIDIndexPath objectForKey:_metadata.fileID];
  3533. if (indexPath) [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationAutomatic];
  3534. }
  3535. }
  3536. }
  3537. if (_metadata.directory) {
  3538. imageTitleSegue = cell.imageTitleSegue;
  3539. [self performSegueDirectoryWithControlPasscode:true];
  3540. }
  3541. }
  3542. - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(nonnull NSIndexPath *)indexPath
  3543. {
  3544. tableMetadata *metadata = [self getMetadataFromSectionDataSource:indexPath];
  3545. [_selectedFileIDsMetadatas removeObjectForKey:metadata.fileID];
  3546. [self setTitle];
  3547. }
  3548. - (BOOL)indexPathIsValid:(NSIndexPath *)indexPath
  3549. {
  3550. if (!indexPath)
  3551. return NO;
  3552. NSInteger section = indexPath.section;
  3553. NSInteger row = indexPath.row;
  3554. NSInteger lastSectionIndex = [self numberOfSectionsInTableView:self.tableView] - 1;
  3555. if (section > lastSectionIndex || lastSectionIndex < 0)
  3556. return NO;
  3557. NSInteger rowCount = [self.tableView numberOfRowsInSection:indexPath.section] - 1;
  3558. if (rowCount < 0)
  3559. return NO;
  3560. return row <= rowCount;
  3561. }
  3562. #pragma --------------------------------------------------------------------------------------------
  3563. #pragma mark ===== Navigation ====
  3564. #pragma --------------------------------------------------------------------------------------------
  3565. - (BOOL)shouldPerformSegue
  3566. {
  3567. // if background return
  3568. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) return NO;
  3569. if (self.view.window == NO)
  3570. return NO;
  3571. // Collapsed ma siamo già in detail esci
  3572. if (self.splitViewController.isCollapsed)
  3573. if (_detailViewController.isViewLoaded && _detailViewController.view.window) return NO;
  3574. return YES;
  3575. }
  3576. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  3577. {
  3578. id viewController = segue.destinationViewController;
  3579. NSMutableArray *allRecordsDataSourceImagesVideos = [NSMutableArray new];
  3580. tableMetadata *metadata;
  3581. if ([viewController isKindOfClass:[UINavigationController class]]) {
  3582. UINavigationController *nav = viewController;
  3583. _detailViewController = (CCDetail *)nav.topViewController;
  3584. } else {
  3585. _detailViewController = segue.destinationViewController;
  3586. }
  3587. if ([sender isKindOfClass:[tableMetadata class]]) {
  3588. metadata = sender;
  3589. [allRecordsDataSourceImagesVideos addObject:sender];
  3590. } else {
  3591. metadata = _metadata;
  3592. for (NSString *fileID in _sectionDataSource.allEtag) {
  3593. tableMetadata *metadata = [_sectionDataSource.allRecordsDataSource objectForKey:fileID];
  3594. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video] || [metadata.typeFile isEqualToString: k_metadataTypeFile_audio])
  3595. [allRecordsDataSourceImagesVideos addObject:metadata];
  3596. }
  3597. }
  3598. _detailViewController.metadataDetail = metadata;
  3599. _detailViewController.dataSourceImagesVideos = allRecordsDataSourceImagesVideos;
  3600. _detailViewController.dateFilterQuery = nil;
  3601. [_detailViewController setTitle:metadata.fileNameView];
  3602. }
  3603. // can i go to next viewcontroller
  3604. - (void)performSegueDirectoryWithControlPasscode:(BOOL)controlPasscode
  3605. {
  3606. NSString *nomeDir;
  3607. if (self.tableView.editing == NO) {
  3608. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadata.directoryID];
  3609. if (!serverUrl) return;
  3610. NSString *lockServerUrl = [CCUtility stringAppendServerUrl:serverUrl addFileName:_metadata.fileName];
  3611. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl]];
  3612. // 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
  3613. if (directory.lock && [[CCUtility getBlockCode] length] && appDelegate.sessionePasscodeLock == nil && controlPasscode) {
  3614. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  3615. viewController.delegate = self;
  3616. viewController.fromType = CCBKPasscodeFromLockDirectory;
  3617. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  3618. viewController.inputViewTitlePassword = YES;
  3619. if ([CCUtility getSimplyBlockCode]) {
  3620. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  3621. viewController.passcodeInputView.maximumLength = 6;
  3622. } else {
  3623. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  3624. viewController.passcodeInputView.maximumLength = 64;
  3625. }
  3626. BKTouchIDManager *touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:k_serviceShareKeyChain];
  3627. touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  3628. viewController.touchIDManager = touchIDManager;
  3629. viewController.title = NSLocalizedString(@"_folder_blocked_", nil);
  3630. viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(passcodeViewCloseButtonPressed:)];
  3631. viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor blackColor];
  3632. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
  3633. [self presentViewController:navController animated:YES completion:nil];
  3634. return;
  3635. }
  3636. // E2EE Check enable
  3637. if (_metadata.e2eEncrypted && [CCUtility isEndToEndEnabled:appDelegate.activeAccount] == NO) {
  3638. [appDelegate messageNotification:@"_info_" description:@"_e2e_goto_settings_for_enable_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  3639. return;
  3640. }
  3641. nomeDir = _metadata.fileName;
  3642. NSString *serverUrlPush = [CCUtility stringAppendServerUrl:serverUrl addFileName:nomeDir];
  3643. CCMain *viewController = [appDelegate.listMainVC objectForKey:serverUrlPush];
  3644. if (!viewController) {
  3645. viewController = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"CCMain"];
  3646. viewController.serverUrl = serverUrlPush;
  3647. viewController.titleMain = _metadata.fileName;
  3648. viewController.textBackButton = _titleMain;
  3649. viewController.imageTitle = imageTitleSegue;
  3650. // save self
  3651. [appDelegate.listMainVC setObject:viewController forKey:serverUrlPush];
  3652. [self.navigationController pushViewController:viewController animated:YES];
  3653. } else {
  3654. if (viewController.isViewLoaded) {
  3655. // Icon Title
  3656. viewController.imageTitle = imageTitleSegue;
  3657. // Fix : Application tried to present modally an active controller
  3658. if ([self.navigationController isBeingPresented]) {
  3659. // being presented
  3660. } else if ([self.navigationController isMovingToParentViewController]) {
  3661. // being pushed
  3662. } else {
  3663. [self.navigationController pushViewController:viewController animated:YES];
  3664. }
  3665. }
  3666. }
  3667. }
  3668. }
  3669. @end