CCMain.m 234 KB

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