CCMain.m 226 KB

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