CCMain.m 222 KB

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