CCMain.m 220 KB

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