CCMain.m 227 KB

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