CCMain.m 224 KB

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