CCMain.m 222 KB

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