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