privatebin.js 200 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114
  1. /**
  2. * PrivateBin
  3. *
  4. * a zero-knowledge paste bin
  5. *
  6. * @see {@link https://github.com/PrivateBin/PrivateBin}
  7. * @copyright 2012 Sébastien SAUVAGE ({@link http://sebsauvage.net})
  8. * @license {@link https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License}
  9. * @name PrivateBin
  10. * @namespace
  11. */
  12. /**
  13. * draghover plugin replacement
  14. * adds draghoverstart and draghoverend events to an element
  15. */
  16. function draghover(element) {
  17. 'use strict';
  18. let collection = new Set();
  19. element.addEventListener('dragenter', function (e) {
  20. if (collection.size === 0) {
  21. element.dispatchEvent(new CustomEvent('draghoverstart'));
  22. }
  23. collection.add(e.target);
  24. });
  25. element.addEventListener('dragleave', function (e) {
  26. collection.delete(e.target);
  27. if (collection.size === 0) {
  28. element.dispatchEvent(new CustomEvent('draghoverend'));
  29. }
  30. });
  31. element.addEventListener('drop', function (e) {
  32. collection.delete(e.target);
  33. if (collection.size === 0) {
  34. element.dispatchEvent(new CustomEvent('draghoverend'));
  35. }
  36. });
  37. }
  38. window.PrivateBin = (function () {
  39. 'use strict';
  40. /**
  41. * zlib library interface
  42. *
  43. * @private
  44. */
  45. let z;
  46. /**
  47. * DOMpurify settings for HTML content
  48. *
  49. * @private
  50. */
  51. const purifyHtmlConfig = {
  52. ALLOWED_URI_REGEXP: /^(?:(?:(?:f|ht)tps?|mailto|magnet):)/i,
  53. ALLOWED_ATTR: ['href', 'id', 'target', 'rel', 'class', 'style'],
  54. USE_PROFILES: {
  55. html: true
  56. }
  57. };
  58. /**
  59. * DOMpurify settings for HTML content, where only a strict subset is allowed.
  60. *
  61. * NOTE: The key {@link purifyHtmlConfig.USE_PROFILES} **must not** be included,
  62. * as otherwise `USE_PROFILES` takes precedence over {@link purifyHtmlConfigStrictSubset.ALLOWED_TAGS}.
  63. *
  64. * @private
  65. */
  66. const purifyHtmlConfigStrictSubset = {
  67. ALLOWED_URI_REGEXP: purifyHtmlConfig.ALLOWED_URI_REGEXP,
  68. ALLOWED_TAGS: ['a', 'i', 'span', 'kbd'],
  69. ALLOWED_ATTR: ['href', 'id', 'target', 'rel'],
  70. ADD_ATTR: ['target', 'rel']
  71. };
  72. /**
  73. * DOMpurify settings for SVG content
  74. *
  75. * @private
  76. */
  77. const purifySvgConfig = {
  78. USE_PROFILES: {
  79. svg: true,
  80. svgFilters: true
  81. }
  82. };
  83. /**
  84. * URL fragment prefix requiring load confirmation
  85. *
  86. * @private
  87. */
  88. const loadConfirmPrefix = '#-';
  89. /**
  90. * CryptoData class
  91. *
  92. * bundles helper functions used in both document and comment formats
  93. *
  94. * @name CryptoData
  95. * @class
  96. */
  97. function CryptoData(data) {
  98. // store all keys in the default locations for drop-in replacement
  99. for (const key in data) {
  100. if (Object.prototype.hasOwnProperty.call(data, key)) {
  101. this[key] = data[key];
  102. }
  103. }
  104. /**
  105. * gets the cipher data (cipher text + adata)
  106. *
  107. * @name CryptoData.getCipherData
  108. * @function
  109. * @return {Array}
  110. */
  111. this.getCipherData = function () {
  112. return [this.ct, this.adata];
  113. };
  114. }
  115. /**
  116. * Paste class
  117. *
  118. * bundles helper functions around the document formats
  119. *
  120. * @name Paste
  121. * @class
  122. */
  123. function Paste(data) {
  124. // inherit constructor and methods of CryptoData
  125. CryptoData.call(this, data);
  126. /**
  127. * gets the used formatter
  128. *
  129. * @name Paste.getFormat
  130. * @function
  131. * @return {string}
  132. */
  133. this.getFormat = function () {
  134. return this.adata[1];
  135. };
  136. /**
  137. * gets the remaining seconds before the document expires
  138. *
  139. * returns 0 if there is no expiration
  140. *
  141. * @name Paste.getTimeToLive
  142. * @function
  143. * @return {string}
  144. */
  145. this.getTimeToLive = function () {
  146. return this.meta.time_to_live || 0;
  147. };
  148. /**
  149. * is burn-after-reading enabled
  150. *
  151. * @name Paste.isBurnAfterReadingEnabled
  152. * @function
  153. * @return {bool}
  154. */
  155. this.isBurnAfterReadingEnabled = function () {
  156. return this.adata[3];
  157. };
  158. /**
  159. * are discussions enabled
  160. *
  161. * @name Paste.isDiscussionEnabled
  162. * @function
  163. * @return {bool}
  164. */
  165. this.isDiscussionEnabled = function () {
  166. return this.adata[2];
  167. };
  168. }
  169. /**
  170. * Comment class
  171. *
  172. * bundles helper functions around the comment formats
  173. *
  174. * @name Comment
  175. * @class
  176. */
  177. function Comment(data) {
  178. // inherit constructor and methods of CryptoData
  179. CryptoData.call(this, data);
  180. /**
  181. * gets the UNIX timestamp of the comment creation
  182. *
  183. * @name Comment.getCreated
  184. * @function
  185. * @return {int}
  186. */
  187. this.getCreated = function () {
  188. return this.meta.created || 0;
  189. }
  190. /**
  191. * gets the icon of the comment submitter
  192. *
  193. * @name Comment.getIcon
  194. * @function
  195. * @return {string}
  196. */
  197. this.getIcon = function () {
  198. return this.meta.icon || '';
  199. };
  200. }
  201. /**
  202. * static Helper methods
  203. *
  204. * @name Helper
  205. * @class
  206. */
  207. const Helper = (function () {
  208. const me = {};
  209. /**
  210. * character to HTML entity lookup table
  211. *
  212. * @see {@link https://github.com/janl/mustache.js/blob/master/mustache.js#L60}
  213. * @name Helper.entityMap
  214. * @private
  215. * @enum {Object}
  216. * @readonly
  217. */
  218. const entityMap = {
  219. '&': '&',
  220. '<': '&lt;',
  221. '>': '&gt;',
  222. '"': '&quot;',
  223. '\'': '&#39;',
  224. '/': '&#x2F;',
  225. '`': '&#x60;',
  226. '=': '&#x3D;'
  227. };
  228. /**
  229. * number of seconds in a minute
  230. *
  231. * @name Helper.minute
  232. * @private
  233. * @enum {number}
  234. * @readonly
  235. */
  236. const minute = 60;
  237. /**
  238. * number of seconds in an hour
  239. *
  240. * = 60 * 60 seconds
  241. *
  242. * @name Helper.minute
  243. * @private
  244. * @enum {number}
  245. * @readonly
  246. */
  247. const hour = 3600;
  248. /**
  249. * number of seconds in a day
  250. *
  251. * = 60 * 60 * 24 seconds
  252. *
  253. * @name Helper.day
  254. * @private
  255. * @enum {number}
  256. * @readonly
  257. */
  258. const day = 86400;
  259. /**
  260. * number of seconds in a week
  261. *
  262. * = 60 * 60 * 24 * 7 seconds
  263. *
  264. * @name Helper.week
  265. * @private
  266. * @enum {number}
  267. * @readonly
  268. */
  269. const week = 604800;
  270. /**
  271. * number of seconds in a month (30 days, an approximation)
  272. *
  273. * = 60 * 60 * 24 * 30 seconds
  274. *
  275. * @name Helper.month
  276. * @private
  277. * @enum {number}
  278. * @readonly
  279. */
  280. const month = 2592000;
  281. /**
  282. * number of seconds in a non-leap year
  283. *
  284. * = 60 * 60 * 24 * 365 seconds
  285. *
  286. * @name Helper.year
  287. * @private
  288. * @enum {number}
  289. * @readonly
  290. */
  291. const year = 31536000;
  292. /**
  293. * cache for script location
  294. *
  295. * @name Helper.baseUri
  296. * @private
  297. * @enum {string|null}
  298. */
  299. let baseUri = null;
  300. /**
  301. * converts a duration (in seconds) into human friendly approximation
  302. *
  303. * @name Helper.secondsToHuman
  304. * @function
  305. * @param {number} seconds
  306. * @return {Array}
  307. */
  308. me.secondsToHuman = function (seconds) {
  309. let v;
  310. if (seconds < minute) {
  311. v = Math.floor(seconds);
  312. return [v, 'second'];
  313. }
  314. if (seconds < hour) {
  315. v = Math.floor(seconds / minute);
  316. return [v, 'minute'];
  317. }
  318. if (seconds < day) {
  319. v = Math.floor(seconds / hour);
  320. return [v, 'hour'];
  321. }
  322. // If less than 2 months, display in days:
  323. if (seconds <= (2 * month)) {
  324. v = Math.floor(seconds / day);
  325. return [v, 'day'];
  326. }
  327. v = Math.floor(seconds / month);
  328. return [v, 'month'];
  329. };
  330. /**
  331. * converts a duration string into seconds
  332. *
  333. * The string is expected to be optional digits, followed by a time.
  334. * Supported times are: min, hour, day, month, year, never
  335. * Examples: 5min, 13hour, never
  336. *
  337. * @name Helper.durationToSeconds
  338. * @function
  339. * @param {String} duration
  340. * @return {number}
  341. */
  342. me.durationToSeconds = function (duration) {
  343. let pieces = duration.split(/(\D+)/),
  344. factor = pieces[0] || 0,
  345. timespan = pieces[1] || pieces[0];
  346. switch (timespan) {
  347. case 'min':
  348. return factor * minute;
  349. case 'hour':
  350. return factor * hour;
  351. case 'day':
  352. return factor * day;
  353. case 'week':
  354. return factor * week;
  355. case 'month':
  356. return factor * month;
  357. case 'year':
  358. return factor * year;
  359. case 'never':
  360. return 0;
  361. default:
  362. return factor;
  363. }
  364. };
  365. /**
  366. * text range selection
  367. *
  368. * @name Helper.selectText
  369. * @function
  370. * @param {HTMLElement} element
  371. */
  372. me.selectText = function (element) {
  373. let range, selection;
  374. if (window.getSelection) {
  375. selection = window.getSelection();
  376. if (!selection) {
  377. console.warn('window.getSelection() returned null, could not get any select text');
  378. return;
  379. }
  380. range = document.createRange();
  381. range.selectNodeContents(element);
  382. selection.removeAllRanges();
  383. selection.addRange(range);
  384. }
  385. };
  386. /**
  387. * convert URLs to clickable links in the provided element.
  388. *
  389. * URLs to handle:
  390. * <pre>
  391. * magnet:?xt.1=urn:sha1:YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C&xt.2=urn:sha1:TXGCZQTH26NL6OUQAJJPFALHG2LTGBC7
  392. * https://example.com:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
  393. * http://user:example.com@localhost:8800/zero/?6f09182b8ea51997#WtLEUO5Epj9UHAV9JFs+6pUQZp13TuspAUjnF+iM+dM=
  394. * </pre>
  395. *
  396. * @name Helper.urls2links
  397. * @function
  398. * @param {HTMLElement} element
  399. * @param {bool} strict - optional
  400. */
  401. me.urls2links = function (element, strict = true) {
  402. const raw = element.innerHTML;
  403. element.innerHTML = DOMPurify.sanitize(
  404. raw.replace(
  405. /(((https?|ftp):\/\/[\w?!=&.\/;#@~%+*-]+(?![\w\s?!&.\/;#~%"=-]>))|((magnet):[\w?=&.\/;#@~%+*-]+))/ig,
  406. '<a href="$1">$1</a>'
  407. ),
  408. strict ? purifyHtmlConfigStrictSubset : purifyHtmlConfig
  409. );
  410. element.querySelectorAll('a').forEach(function (link) {
  411. const href = link.getAttribute('href');
  412. if (href && href.match(/^(?:(?:(?:f|ht)tps?|mailto|magnet):)/i)) {
  413. link.setAttribute('target', '_blank');
  414. link.setAttribute('rel', 'nofollow noopener noreferrer');
  415. }
  416. });
  417. };
  418. /**
  419. * minimal sprintf emulation for %s and %d formats
  420. *
  421. * Note that this function needs the parameters in the same order as the
  422. * format strings appear in the string, contrary to the original.
  423. *
  424. * @see {@link https://stackoverflow.com/questions/610406/javascript-equivalent-to-printf-string-format#4795914}
  425. * @name Helper.sprintf
  426. * @function
  427. * @param {string} format
  428. * @param {...*} args - one or multiple parameters injected into format string
  429. * @return {string}
  430. */
  431. me.sprintf = function () {
  432. const args = Array.prototype.slice.call(arguments);
  433. let format = args[0],
  434. i = 1;
  435. return format.replace(/%(s|d)/g, function (m) {
  436. let val = args[i];
  437. if (m === '%d') {
  438. val = parseFloat(val);
  439. if (isNaN(val)) {
  440. val = 0;
  441. }
  442. }
  443. ++i;
  444. return val;
  445. });
  446. };
  447. /**
  448. * get value of cookie, if it was set, empty string otherwise
  449. *
  450. * @see {@link http://www.w3schools.com/js/js_cookies.asp}
  451. * @name Helper.getCookie
  452. * @function
  453. * @param {string} cname - may not be empty
  454. * @return {string}
  455. */
  456. me.getCookie = function (cname) {
  457. const name = cname + '=',
  458. ca = document.cookie.split(';');
  459. for (let i = 0; i < ca.length; ++i) {
  460. let c = ca[i];
  461. while (c.charAt(0) === ' ') {
  462. c = c.substring(1);
  463. }
  464. if (c.indexOf(name) === 0) {
  465. return c.substring(name.length, c.length);
  466. }
  467. }
  468. return '';
  469. };
  470. /**
  471. * get the current location (without search or hash part of the URL),
  472. * eg. https://example.com/path/?aaaa#bbbb --> https://example.com/path/
  473. *
  474. * @name Helper.baseUri
  475. * @function
  476. * @return {string}
  477. */
  478. me.baseUri = function () {
  479. // check for cached version
  480. if (baseUri !== null) {
  481. return baseUri;
  482. }
  483. baseUri = window.location.origin + window.location.pathname;
  484. return baseUri;
  485. };
  486. /**
  487. * wrap an object into a Paste, used for mocking in the unit tests
  488. *
  489. * @name Helper.PasteFactory
  490. * @function
  491. * @param {object} data
  492. * @return {Paste}
  493. */
  494. me.PasteFactory = function (data) {
  495. return new Paste(data);
  496. };
  497. /**
  498. * wrap an object into a Comment, used for mocking in the unit tests
  499. *
  500. * @name Helper.CommentFactory
  501. * @function
  502. * @param {object} data
  503. * @return {Comment}
  504. */
  505. me.CommentFactory = function (data) {
  506. return new Comment(data);
  507. };
  508. /**
  509. * convert all applicable characters to HTML entities
  510. *
  511. * @see {@link https://cheatsheetseries.owasp.org/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.html}
  512. * @name Helper.htmlEntities
  513. * @function
  514. * @param {string} str
  515. * @return {string} escaped HTML
  516. */
  517. me.htmlEntities = function (str) {
  518. return String(str).replace(
  519. /[&<>"'`=\/]/g, function (s) {
  520. return entityMap[s];
  521. }
  522. );
  523. };
  524. /**
  525. * calculate expiration date given initial date and expiration period
  526. *
  527. * @name Helper.calculateExpirationDate
  528. * @function
  529. * @param {Date} initialDate - may not be empty
  530. * @param {string|number} expirationDisplayStringOrSecondsToExpire - may not be empty
  531. * @return {Date}
  532. */
  533. me.calculateExpirationDate = function (initialDate, expirationDisplayStringOrSecondsToExpire) {
  534. let expirationDate = new Date(initialDate),
  535. secondsToExpiration = expirationDisplayStringOrSecondsToExpire;
  536. if (typeof expirationDisplayStringOrSecondsToExpire === 'string') {
  537. secondsToExpiration = me.durationToSeconds(expirationDisplayStringOrSecondsToExpire);
  538. }
  539. if (typeof secondsToExpiration !== 'number') {
  540. throw new Error('Cannot calculate expiration date.');
  541. }
  542. if (secondsToExpiration === 0) {
  543. return null;
  544. }
  545. expirationDate = expirationDate.setUTCSeconds(expirationDate.getUTCSeconds() + secondsToExpiration);
  546. return expirationDate;
  547. };
  548. /**
  549. * Convert Bytes to kB/MB/GB/TB/PB/EB/ZB/YB
  550. *
  551. * @name Helper.formatBytes
  552. * @function
  553. *
  554. * @param {number} bytes
  555. * @return {string}
  556. */
  557. me.formatBytes = function (bytes) {
  558. let result = '';
  559. const kilobyte = 1000;
  560. const decimalPoint = 2;
  561. const sizes = [
  562. I18n._('B'), I18n._('kB'), I18n._('MB'), I18n._('GB'), I18n._('TB'),
  563. I18n._('PB'), I18n._('EB'), I18n._('ZB'), I18n._('YB')
  564. ];
  565. const index = Math.floor(Math.log(bytes) / Math.log(kilobyte));
  566. if (bytes > 0) {
  567. result = parseFloat((bytes / Math.pow(kilobyte, index)).toFixed(decimalPoint)) + ' ' + sizes[index];
  568. } else {
  569. result = `0 ${I18n._('B')}`;
  570. }
  571. return result;
  572. };
  573. /**
  574. * resets state, used for unit testing
  575. *
  576. * @name Helper.reset
  577. * @function
  578. */
  579. me.reset = function () {
  580. baseUri = null;
  581. };
  582. /**
  583. * check if bootstrap5 object detected
  584. *
  585. * @name Helper.isBootstrap5
  586. * @returns {Boolean}
  587. */
  588. me.isBootstrap5 = function () {
  589. return typeof bootstrap !== 'undefined';
  590. };
  591. return me;
  592. })();
  593. /**
  594. * internationalization module
  595. *
  596. * @name I18n
  597. * @class
  598. */
  599. const I18n = (function () {
  600. const me = {};
  601. /**
  602. * const for string of loaded language
  603. *
  604. * @name I18n.languageLoadedEvent
  605. * @private
  606. * @prop {string}
  607. * @readonly
  608. */
  609. const languageLoadedEvent = 'languageLoaded';
  610. /**
  611. * supported languages, minus the built in 'en'
  612. *
  613. * @name I18n.supportedLanguages
  614. * @private
  615. * @prop {string[]}
  616. * @readonly
  617. */
  618. const supportedLanguages = ['ar', 'bg', 'ca', 'co', 'cs', 'de', 'el', 'es', 'et', 'fa', 'fi', 'fr', 'he', 'hu', 'id', 'it', 'ja', 'jbo', 'lt', 'no', 'nl', 'pl', 'pt', 'oc', 'ro', 'ru', 'sk', 'sl', 'sv', 'th', 'tr', 'uk', 'zh'];
  619. /**
  620. * built in language
  621. *
  622. * @name I18n.language
  623. * @private
  624. * @prop {string|null}
  625. */
  626. let language = null;
  627. /**
  628. * translation cache
  629. *
  630. * @name I18n.translations
  631. * @private
  632. * @enum {Object}
  633. */
  634. let translations = Object.create(null);
  635. /**
  636. * translate a string, alias for I18n.translate
  637. *
  638. * @name I18n._
  639. * @function
  640. * @param {HTMLElement} element - optional
  641. * @param {string} messageId
  642. * @param {...*} args - one or multiple parameters injected into placeholders
  643. * @return {string}
  644. */
  645. me._ = function () {
  646. return me.translate.apply(this, arguments);
  647. };
  648. /**
  649. * translate a string
  650. *
  651. * Optionally pass an HTMLElement as the first parameter, to automatically
  652. * let the text of this element be replaced. In case the (asynchronously
  653. * loaded) language is not downloaded yet, this will make sure the string
  654. * is replaced when it eventually gets loaded. Using this is both simpler
  655. * and more secure, as it avoids potential XSS when inserting text.
  656. * The next parameter is the message ID, matching the ones found in
  657. * the translation files under the i18n directory.
  658. * Any additional parameters will get inserted into the message ID in
  659. * place of %s (strings) or %d (digits), applying the appropriate plural
  660. * in case of digits. See also Helper.sprintf().
  661. *
  662. * @name I18n.translate
  663. * @function
  664. * @param {HTMLElement} element - optional
  665. * @param {string} messageId
  666. * @param {...*} args - one or multiple parameters injected into placeholders
  667. * @return {string}
  668. */
  669. me.translate = function () // eslint-disable-line complexity
  670. {
  671. // convert parameters to array
  672. let args = Array.prototype.slice.call(arguments),
  673. messageId,
  674. element = null;
  675. // parse arguments
  676. if (args[0] === null || args[0] instanceof HTMLElement) {
  677. // optional HTMLElement as first parameter (null means element not found)
  678. element = args[0];
  679. args.shift();
  680. }
  681. // extract messageId from arguments
  682. let usesPlurals = Array.isArray(args[0]);
  683. if (usesPlurals) {
  684. // use the first plural form as messageId, otherwise the singular
  685. messageId = args[0].length > 1 ? args[0][1] : args[0][0];
  686. } else {
  687. messageId = args[0];
  688. }
  689. if (messageId.length === 0) {
  690. return messageId;
  691. }
  692. // if no translation string cannot be found (in translations object)
  693. if (!Object.prototype.hasOwnProperty.call(translations, messageId) || language === null) {
  694. // if language is still loading and we have an element assigned
  695. if (language === null && element !== null) {
  696. // handle the error by attaching the language loaded event
  697. let orgArguments = arguments;
  698. document.addEventListener(languageLoadedEvent, function () {
  699. // re-execute this function
  700. me.translate.apply(this, orgArguments);
  701. });
  702. // and fall back to English for now until the real language
  703. // file is loaded
  704. }
  705. // for all other languages than English for which this behaviour
  706. // is expected as it is built-in, log error
  707. if (language !== null && language !== 'en') {
  708. console.error('Missing translation for: ', messageId, 'in language', language);
  709. // fallback to English
  710. }
  711. // save English translation (should be the same on both sides)
  712. translations[messageId] = args[0];
  713. }
  714. // lookup plural translation
  715. if (usesPlurals && Array.isArray(translations[messageId])) {
  716. let n = parseInt(args[1] || 1, 10),
  717. key = me.getPluralForm(n),
  718. maxKey = translations[messageId].length - 1;
  719. if (key > maxKey) {
  720. key = maxKey;
  721. }
  722. args[0] = translations[messageId][key];
  723. args[1] = n;
  724. } else {
  725. // lookup singular translation
  726. args[0] = translations[messageId];
  727. }
  728. // messageID may contain HTML, but should be from a trusted source (code or translation JSON files)
  729. let containsHtml = isStringContainsHtml(args[0]);
  730. // prevent double encoding, when we insert into a text node
  731. if (containsHtml || element === null) {
  732. for (let i = 0; i < args.length; ++i) {
  733. // parameters (i > 0) may never contain HTML as they may come from untrusted parties
  734. if ((containsHtml ? i > 1 : i > 0) || !containsHtml) {
  735. args[i] = Helper.htmlEntities(args[i]);
  736. }
  737. }
  738. }
  739. // format string
  740. let output = Helper.sprintf.apply(this, args);
  741. if (containsHtml) {
  742. // only allow tags/attributes we actually use in translations
  743. output = DOMPurify.sanitize(output, purifyHtmlConfigStrictSubset);
  744. }
  745. // if element is given, insert translation
  746. if (element !== null) {
  747. if (containsHtml) {
  748. element.innerHTML = output;
  749. } else {
  750. // text node takes care of entity encoding
  751. element.textContent = output;
  752. }
  753. return '';
  754. }
  755. return output;
  756. };
  757. /**
  758. * get currently loaded language
  759. *
  760. * @name I18n.getLanguage
  761. * @function
  762. * @return {string}
  763. */
  764. me.getLanguage = function () {
  765. return language;
  766. };
  767. /**
  768. * per language functions to use to determine the plural form
  769. *
  770. * @see {@link https://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html}
  771. * @name I18n.getPluralForm
  772. * @function
  773. * @param {int} n
  774. * @return {int} array key
  775. */
  776. me.getPluralForm = function (n) { // eslint-disable-line complexity
  777. switch (language) {
  778. case 'ar':
  779. return n === 0 ? 0 : (n === 1 ? 1 : (n === 2 ? 2 : (n % 100 >= 3 && n % 100 <= 10 ? 3 : (n % 100 >= 11 ? 4 : 5))));
  780. case 'cs':
  781. case 'sk':
  782. return n === 1 ? 0 : (n >= 2 && n <= 4 ? 1 : 2);
  783. case 'co':
  784. case 'fa':
  785. case 'fr':
  786. case 'oc':
  787. case 'tr':
  788. case 'zh':
  789. return n > 1 ? 1 : 0;
  790. case 'he':
  791. return n === 1 ? 0 : (n === 2 ? 1 : ((n < 0 || n > 10) && (n % 10 === 0) ? 2 : 3));
  792. case 'id':
  793. case 'ja':
  794. case 'jbo':
  795. case 'th':
  796. return 0;
  797. case 'lt':
  798. return n % 10 === 1 && n % 100 !== 11 ? 0 : ((n % 10 >= 2 && n % 100 < 10 || n % 100 >= 20) ? 1 : 2);
  799. case 'pl':
  800. return n === 1 ? 0 : (n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);
  801. case 'ro':
  802. return n === 1 ? 0 : ((n === 0 || (n % 100 > 0 && n % 100 < 20)) ? 1 : 2);
  803. case 'ru':
  804. case 'uk':
  805. return n % 10 === 1 && n % 100 !== 11 ? 0 : (n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);
  806. case 'sl':
  807. return n % 100 === 1 ? 1 : (n % 100 === 2 ? 2 : (n % 100 === 3 || n % 100 === 4 ? 3 : 0));
  808. // bg, ca, de, el, en, es, et, fi, hu, it, nl, no, pt, sv
  809. default:
  810. return n !== 1 ? 1 : 0;
  811. }
  812. };
  813. /**
  814. * load translations into cache
  815. *
  816. * @name I18n.loadTranslations
  817. * @function
  818. */
  819. me.loadTranslations = function () {
  820. let newLanguage = Helper.getCookie('lang');
  821. // auto-select language based on browser settings
  822. if (newLanguage.length === 0) {
  823. newLanguage = (navigator.language || navigator.userLanguage || 'en');
  824. if (newLanguage.indexOf('-') > 0) {
  825. newLanguage = newLanguage.split('-')[0];
  826. }
  827. }
  828. // if language is already used skip update
  829. if (newLanguage === language) {
  830. return;
  831. }
  832. // if language is built-in (English) skip update
  833. if (newLanguage === 'en') {
  834. language = 'en';
  835. return;
  836. }
  837. // if language is not supported, show error
  838. if (supportedLanguages.indexOf(newLanguage) === -1) {
  839. console.error('Language \'%s\' is not supported. Translation failed, fallback to English.', newLanguage);
  840. language = 'en';
  841. return;
  842. }
  843. // load strings from JSON
  844. const scriptTag = document.querySelector('script[src^="js/privatebin.js"]');
  845. const cacheBreaker = scriptTag ? (scriptTag.getAttribute('src').split('.js')[1] || '') : '';
  846. fetch('i18n/' + newLanguage + '.json' + cacheBreaker)
  847. .then(response => {
  848. if (!response.ok) {
  849. throw new Error('HTTP ' + response.status + ' ' + response.statusText);
  850. }
  851. return response.json();
  852. })
  853. .then(data => {
  854. language = newLanguage;
  855. translations = Object.assign(Object.create(null), data);
  856. document.dispatchEvent(new CustomEvent(languageLoadedEvent));
  857. })
  858. .catch(error => {
  859. console.error(`Language \'${newLanguage}\' could not be loaded (${error.message}). Translation failed, fallback to English.`);
  860. language = 'en';
  861. });
  862. };
  863. /**
  864. * resets state, used for unit testing
  865. *
  866. * @name I18n.reset
  867. * @function
  868. */
  869. me.reset = function (mockLanguage, mockTranslations) {
  870. language = mockLanguage || null;
  871. translations = mockTranslations || Object.create(null);
  872. };
  873. /**
  874. * Check if string contains valid HTML code.
  875. *
  876. * If it is no string at all, this always returns false for compatibility.
  877. *
  878. * @name I18n.isStringContainsHtml
  879. * @function
  880. * @private
  881. * @param {string|object} messageId
  882. * @returns {boolean}
  883. */
  884. function isStringContainsHtml(messageId) {
  885. // message IDs are allowed to contain anchors, spans, keyboard and emphasis tags
  886. // we can recognize all of them by only checking for anchors and keyboard tags
  887. return typeof messageId === 'string' && (messageId.indexOf('<a') !== -1 || messageId.indexOf('<kbd') !== -1);
  888. }
  889. return me;
  890. })();
  891. /**
  892. * handles everything related to en/decryption
  893. *
  894. * @name CryptTool
  895. * @class
  896. */
  897. const CryptTool = (function () {
  898. const me = {};
  899. /**
  900. * base58 encoder & decoder
  901. *
  902. * @private
  903. */
  904. const base58 = new baseX('123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz');
  905. /**
  906. * convert UTF-8 string stored in a DOMString to a standard UTF-16 DOMString
  907. *
  908. * Iterates over the bytes of the message, converting them all hexadecimal
  909. * percent encoded representations, then URI decodes them all
  910. *
  911. * @name CryptTool.utf8To16
  912. * @function
  913. * @private
  914. * @param {string} message UTF-8 string
  915. * @return {string} UTF-16 string
  916. */
  917. function utf8To16(message) {
  918. return decodeURIComponent(
  919. message.split('').map(
  920. function (character) {
  921. return '%' + ('00' + character.charCodeAt(0).toString(16)).slice(-2);
  922. }
  923. ).join('')
  924. );
  925. }
  926. /**
  927. * convert DOMString (UTF-16) to a UTF-8 string stored in a DOMString
  928. *
  929. * URI encodes the message, then finds the percent encoded characters
  930. * and transforms these hexadecimal representation back into bytes
  931. *
  932. * @name CryptTool.utf16To8
  933. * @function
  934. * @private
  935. * @param {string} message UTF-16 string
  936. * @return {string} UTF-8 string
  937. */
  938. function utf16To8(message) {
  939. return encodeURIComponent(message).replace(
  940. /%([0-9A-F]{2})/g,
  941. function (match, hexCharacter) {
  942. return String.fromCharCode('0x' + hexCharacter);
  943. }
  944. );
  945. }
  946. /**
  947. * convert ArrayBuffer into a UTF-8 string
  948. *
  949. * Iterates over the bytes of the array, catenating them into a string
  950. *
  951. * @name CryptTool.arraybufferToString
  952. * @function
  953. * @private
  954. * @param {ArrayBuffer} messageArray
  955. * @return {string} message
  956. */
  957. function arraybufferToString(messageArray) {
  958. const array = new Uint8Array(messageArray);
  959. let message = '',
  960. i = 0;
  961. while (i < array.length) {
  962. message += String.fromCharCode(array[i++]);
  963. }
  964. return message;
  965. }
  966. /**
  967. * convert UTF-8 string into a Uint8Array
  968. *
  969. * Iterates over the bytes of the message, writing them to the array
  970. *
  971. * @name CryptTool.stringToArraybuffer
  972. * @function
  973. * @private
  974. * @param {string} message UTF-8 string
  975. * @return {Uint8Array} array
  976. */
  977. function stringToArraybuffer(message) {
  978. const messageArray = new Uint8Array(message.length);
  979. for (let i = 0; i < message.length; ++i) {
  980. messageArray[i] = message.charCodeAt(i);
  981. }
  982. return messageArray;
  983. }
  984. /**
  985. * compress a string (deflate compression), returns buffer
  986. *
  987. * @name CryptTool.compress
  988. * @async
  989. * @function
  990. * @private
  991. * @param {string} message
  992. * @param {string} mode
  993. * @param {object} zlib
  994. * @throws {string}
  995. * @return {ArrayBuffer} data
  996. */
  997. async function compress(message, mode, zlib) {
  998. message = stringToArraybuffer(
  999. utf16To8(message)
  1000. );
  1001. if (mode === 'zlib') {
  1002. if (typeof zlib === 'undefined') {
  1003. throw 'Error compressing document, due to missing WebAssembly support.'
  1004. }
  1005. return zlib.deflate(message).buffer;
  1006. }
  1007. return message;
  1008. }
  1009. /**
  1010. * decompress potentially base64 encoded, deflate compressed buffer, returns string
  1011. *
  1012. * @name CryptTool.decompress
  1013. * @async
  1014. * @function
  1015. * @private
  1016. * @param {ArrayBuffer} data
  1017. * @param {string} mode
  1018. * @param {object} zlib
  1019. * @throws {string}
  1020. * @return {string} message
  1021. */
  1022. async function decompress(data, mode, zlib) {
  1023. if (mode === 'zlib') {
  1024. if (typeof zlib === 'undefined') {
  1025. throw 'Error decompressing document, your browser does not support WebAssembly. Please use another browser to view this document.'
  1026. }
  1027. data = zlib.inflate(
  1028. new Uint8Array(data)
  1029. ).buffer;
  1030. }
  1031. return utf8To16(
  1032. arraybufferToString(data)
  1033. );
  1034. }
  1035. /**
  1036. * returns specified number of random bytes
  1037. *
  1038. * @name CryptTool.getRandomBytes
  1039. * @function
  1040. * @private
  1041. * @param {int} length number of random bytes to fetch
  1042. * @throws {string}
  1043. * @return {string} random bytes
  1044. */
  1045. function getRandomBytes(length) {
  1046. let bytes = '';
  1047. const byteArray = new Uint8Array(length);
  1048. window.crypto.getRandomValues(byteArray);
  1049. for (let i = 0; i < length; ++i) {
  1050. bytes += String.fromCharCode(byteArray[i]);
  1051. }
  1052. return bytes;
  1053. }
  1054. /**
  1055. * derive cryptographic key from key string and password
  1056. *
  1057. * @name CryptTool.deriveKey
  1058. * @async
  1059. * @function
  1060. * @private
  1061. * @param {string} key
  1062. * @param {string} password
  1063. * @param {array} spec cryptographic specification
  1064. * @return {CryptoKey} derived key
  1065. */
  1066. async function deriveKey(key, password, spec) {
  1067. let keyArray = stringToArraybuffer(key);
  1068. if (password.length > 0) {
  1069. let passwordArray = stringToArraybuffer(password),
  1070. newKeyArray = new Uint8Array(keyArray.length + passwordArray.length);
  1071. newKeyArray.set(keyArray, 0);
  1072. newKeyArray.set(passwordArray, keyArray.length);
  1073. keyArray = newKeyArray;
  1074. }
  1075. // import raw key
  1076. const importedKey = await window.crypto.subtle.importKey(
  1077. 'raw', // only 'raw' is allowed
  1078. keyArray,
  1079. { name: 'PBKDF2' }, // we use PBKDF2 for key derivation
  1080. false, // the key may not be exported
  1081. ['deriveKey'] // we may only use it for key derivation
  1082. ).catch(Alert.showError);
  1083. // derive a stronger key for use with AES
  1084. return window.crypto.subtle.deriveKey(
  1085. {
  1086. name: 'PBKDF2', // we use PBKDF2 for key derivation
  1087. salt: stringToArraybuffer(spec[1]), // salt used in HMAC
  1088. iterations: spec[2], // amount of iterations to apply
  1089. hash: { name: 'SHA-256' } // can be "SHA-1", "SHA-256", "SHA-384" or "SHA-512"
  1090. },
  1091. importedKey,
  1092. {
  1093. name: 'AES-' + spec[6].toUpperCase(), // can be any supported AES algorithm ("AES-CTR", "AES-CBC", "AES-CMAC", "AES-GCM", "AES-CFB", "AES-KW", "ECDH", "DH" or "HMAC")
  1094. length: spec[3] // can be 128, 192 or 256
  1095. },
  1096. false, // the key may not be exported
  1097. ['encrypt', 'decrypt'] // we may only use it for en- and decryption
  1098. ).catch(Alert.showError);
  1099. }
  1100. /**
  1101. * gets crypto settings from specification and authenticated data
  1102. *
  1103. * @name CryptTool.cryptoSettings
  1104. * @function
  1105. * @private
  1106. * @param {string} adata authenticated data
  1107. * @param {array} spec cryptographic specification
  1108. * @return {object} crypto settings
  1109. */
  1110. function cryptoSettings(adata, spec) {
  1111. return {
  1112. name: 'AES-' + spec[6].toUpperCase(), // can be any supported AES algorithm ("AES-CTR", "AES-CBC", "AES-CMAC", "AES-GCM", "AES-CFB", "AES-KW", "ECDH", "DH" or "HMAC")
  1113. iv: stringToArraybuffer(spec[0]), // the initialization vector you used to encrypt
  1114. additionalData: stringToArraybuffer(adata), // the addtional data you used during encryption (if any)
  1115. tagLength: spec[4] // the length of the tag you used to encrypt (if any)
  1116. };
  1117. }
  1118. /**
  1119. * compress, then encrypt message with given key and password
  1120. *
  1121. * @name CryptTool.cipher
  1122. * @async
  1123. * @function
  1124. * @param {string} key
  1125. * @param {string} password
  1126. * @param {string} message
  1127. * @param {array} adata
  1128. * @return {array} encrypted message in base64 encoding & adata containing encryption spec
  1129. */
  1130. me.cipher = async function (key, password, message, adata) {
  1131. let zlib = (await z);
  1132. // AES in Galois Counter Mode, keysize 256 bit,
  1133. // authentication tag 128 bit, 10000 iterations in key derivation
  1134. const compression = (
  1135. typeof zlib === 'undefined' ?
  1136. 'none' : // client lacks support for WASM
  1137. (document.body.dataset.compression || 'zlib')
  1138. ),
  1139. spec = [
  1140. getRandomBytes(16), // initialization vector
  1141. getRandomBytes(8), // salt
  1142. 100000, // iterations
  1143. 256, // key size
  1144. 128, // tag size
  1145. 'aes', // algorithm
  1146. 'gcm', // algorithm mode
  1147. compression // compression
  1148. ], encodedSpec = [];
  1149. for (let i = 0; i < spec.length; ++i) {
  1150. encodedSpec[i] = i < 2 ? btoa(spec[i]) : spec[i];
  1151. }
  1152. if (adata.length === 0) {
  1153. // comment
  1154. adata = encodedSpec;
  1155. } else if (adata[0] === null) {
  1156. // paste
  1157. adata[0] = encodedSpec;
  1158. }
  1159. // finally, encrypt message
  1160. return [
  1161. btoa(
  1162. arraybufferToString(
  1163. await window.crypto.subtle.encrypt(
  1164. cryptoSettings(JSON.stringify(adata), spec),
  1165. await deriveKey(key, password, spec),
  1166. await compress(message, compression, zlib)
  1167. ).catch(Alert.showError)
  1168. )
  1169. ),
  1170. adata
  1171. ];
  1172. };
  1173. /**
  1174. * decrypt message with key, then decompress
  1175. *
  1176. * @name CryptTool.decipher
  1177. * @async
  1178. * @function
  1179. * @param {string} key
  1180. * @param {string} password
  1181. * @param {string|object} data encrypted message
  1182. * @return {string} decrypted message, empty if decryption failed
  1183. */
  1184. me.decipher = async function (key, password, data) {
  1185. let adataString, spec, cipherMessage, plaintext;
  1186. let zlib = (await z);
  1187. if (data instanceof Array) {
  1188. // version 2
  1189. adataString = JSON.stringify(data[1]);
  1190. // clone the array instead of passing the reference
  1191. spec = (data[1][0] instanceof Array ? data[1][0] : data[1]).slice();
  1192. cipherMessage = data[0];
  1193. } else {
  1194. throw 'unsupported message format';
  1195. }
  1196. spec[0] = atob(spec[0]);
  1197. spec[1] = atob(spec[1]);
  1198. if (spec[7] === 'zlib') {
  1199. if (typeof zlib === 'undefined') {
  1200. throw 'Error decompressing document, your browser does not support WebAssembly. Please use another browser to view this document.';
  1201. }
  1202. }
  1203. try {
  1204. plaintext = await window.crypto.subtle.decrypt(
  1205. cryptoSettings(adataString, spec),
  1206. await deriveKey(key, password, spec),
  1207. stringToArraybuffer(
  1208. atob(cipherMessage)
  1209. )
  1210. );
  1211. } catch (err) {
  1212. console.error(err);
  1213. return '';
  1214. }
  1215. try {
  1216. return await decompress(plaintext, spec[7], zlib);
  1217. } catch (err) {
  1218. Alert.showError(err);
  1219. return err;
  1220. }
  1221. };
  1222. /**
  1223. * returns a random symmetric key
  1224. *
  1225. * generates 256 bit long keys (8 Bits * 32) for AES with 256 bit long blocks
  1226. *
  1227. * @name CryptTool.getSymmetricKey
  1228. * @function
  1229. * @throws {string}
  1230. * @return {string} raw bytes
  1231. */
  1232. me.getSymmetricKey = function () {
  1233. return getRandomBytes(32);
  1234. };
  1235. /**
  1236. * base58 encode a DOMString (UTF-16)
  1237. *
  1238. * @name CryptTool.base58encode
  1239. * @function
  1240. * @param {string} input
  1241. * @return {string} output
  1242. */
  1243. me.base58encode = function (input) {
  1244. return base58.encode(
  1245. stringToArraybuffer(input)
  1246. );
  1247. }
  1248. /**
  1249. * base58 decode a DOMString (UTF-16)
  1250. *
  1251. * @name CryptTool.base58decode
  1252. * @function
  1253. * @param {string} input
  1254. * @return {string} output
  1255. */
  1256. me.base58decode = function (input) {
  1257. return arraybufferToString(
  1258. base58.decode(input)
  1259. );
  1260. }
  1261. return me;
  1262. })();
  1263. /**
  1264. * (Model) Data source (aka MVC)
  1265. *
  1266. * @name Model
  1267. * @class
  1268. */
  1269. const Model = (function () {
  1270. const me = {};
  1271. let id = null,
  1272. pasteData = null,
  1273. symmetricKey = null,
  1274. templates;
  1275. /**
  1276. * returns the expiration set in the HTML
  1277. *
  1278. * @name Model.getExpirationDefault
  1279. * @function
  1280. * @return string
  1281. */
  1282. me.getExpirationDefault = function () {
  1283. const element = document.getElementById('pasteExpiration');
  1284. return element ? element.value : '';
  1285. };
  1286. /**
  1287. * returns the format set in the HTML
  1288. *
  1289. * @name Model.getFormatDefault
  1290. * @function
  1291. * @return string
  1292. */
  1293. me.getFormatDefault = function () {
  1294. const element = document.getElementById('pasteFormatter');
  1295. return element ? element.value : '';
  1296. };
  1297. /**
  1298. * returns the document data (including the cipher data)
  1299. *
  1300. * @name Model.getPasteData
  1301. * @function
  1302. * @param {function} callback (optional) Called when data is available
  1303. * @param {function} useCache (optional) Whether to use the cache or
  1304. * force a data reload. Default: true
  1305. * @return string
  1306. */
  1307. me.getPasteData = function (callback, useCache) {
  1308. // use cache if possible/allowed
  1309. if (useCache !== false && pasteData !== null) {
  1310. //execute callback
  1311. if (typeof callback === 'function') {
  1312. return callback(pasteData);
  1313. }
  1314. // alternatively just using inline
  1315. return pasteData;
  1316. }
  1317. // reload data
  1318. ServerInteraction.prepare();
  1319. ServerInteraction.setUrl(Helper.baseUri() + '?pasteid=' + me.getPasteId());
  1320. ServerInteraction.setFailure(function (status, data) {
  1321. // revert loading status…
  1322. Alert.hideLoading();
  1323. TopNav.showViewButtons();
  1324. // show error message
  1325. Alert.showError(ServerInteraction.parseUploadError(status, data, 'get document data'));
  1326. });
  1327. ServerInteraction.setSuccess(function (status, data) {
  1328. pasteData = new Paste(data);
  1329. if (typeof callback === 'function') {
  1330. return callback(pasteData);
  1331. }
  1332. });
  1333. ServerInteraction.run();
  1334. };
  1335. /**
  1336. * get the documents unique identifier from the URL,
  1337. * eg. https://example.com/path/?c05354954c49a487#dfdsdgdgdfgdf returns c05354954c49a487
  1338. *
  1339. * @name Model.getPasteId
  1340. * @function
  1341. * @return {string} unique identifier
  1342. * @throws {string}
  1343. */
  1344. me.getPasteId = function () {
  1345. const idRegEx = /^[a-z0-9]{16}$/;
  1346. // return cached value
  1347. if (id !== null) {
  1348. return id;
  1349. }
  1350. // do use URL interface, if possible
  1351. const url = new URL(window.location);
  1352. for (const param of url.searchParams) {
  1353. const key = param[0];
  1354. const value = param[1];
  1355. if (value === '' && idRegEx.test(key)) {
  1356. // safe, as the whole regex is matched
  1357. id = key;
  1358. return key;
  1359. }
  1360. }
  1361. if (id === null) {
  1362. throw 'no document id given';
  1363. }
  1364. return id;
  1365. }
  1366. /**
  1367. * returns true, when the URL has a delete token and the current call was used for deleting a document.
  1368. *
  1369. * @name Model.hasDeleteToken
  1370. * @function
  1371. * @return {bool}
  1372. */
  1373. me.hasDeleteToken = function () {
  1374. return window.location.search.indexOf('deletetoken') !== -1;
  1375. }
  1376. /**
  1377. * return the deciphering key stored in anchor part of the URL
  1378. *
  1379. * @name Model.getPasteKey
  1380. * @function
  1381. * @return {string|null} key
  1382. * @throws {string}
  1383. */
  1384. me.getPasteKey = function () {
  1385. if (symmetricKey === null) {
  1386. let startPos = 1;
  1387. if (window.location.hash.startsWith(loadConfirmPrefix)) {
  1388. startPos = loadConfirmPrefix.length;
  1389. }
  1390. let newKey = window.location.hash.substring(startPos);
  1391. // Some web 2.0 services and redirectors add data AFTER the anchor
  1392. // (such as &utm_source=...). We will strip any additional data.
  1393. let ampersandPos = newKey.indexOf('&');
  1394. if (ampersandPos > -1) {
  1395. newKey = newKey.substring(0, ampersandPos);
  1396. }
  1397. if (newKey === '') {
  1398. throw 'no encryption key given';
  1399. }
  1400. // version 2 uses base58, version 1 uses base64 without decoding
  1401. try {
  1402. // base58 encode strips NULL bytes at the beginning of the
  1403. // string, so we re-add them if necessary
  1404. symmetricKey = CryptTool.base58decode(newKey).padStart(32, '\u0000');
  1405. } catch (e) {
  1406. throw 'encryption key of unsupported format given or incomplete, mangled URL';
  1407. }
  1408. }
  1409. return symmetricKey;
  1410. };
  1411. /**
  1412. * returns a copy of the HTML template
  1413. *
  1414. * @name Model.getTemplate
  1415. * @function
  1416. * @param {string} name - the name of the template
  1417. * @return {HTMLElement}
  1418. */
  1419. me.getTemplate = function (name) {
  1420. // find template
  1421. const template = document.getElementById(name + 'template');
  1422. if (!template || !templates.contains(template)) {
  1423. return null;
  1424. }
  1425. let element = template.cloneNode(true);
  1426. // change ID to avoid collisions (one ID should really be unique)
  1427. element.id = name;
  1428. return element;
  1429. };
  1430. /**
  1431. * resets state, used for unit testing
  1432. *
  1433. * @name Model.reset
  1434. * @function
  1435. */
  1436. me.reset = function () {
  1437. pasteData = templates = id = symmetricKey = null;
  1438. };
  1439. /**
  1440. * init navigation manager
  1441. *
  1442. * preloads elements
  1443. *
  1444. * @name Model.init
  1445. * @function
  1446. */
  1447. me.init = function () {
  1448. templates = document.getElementById('templates');
  1449. };
  1450. return me;
  1451. })();
  1452. /**
  1453. * Helper functions for user interface
  1454. *
  1455. * everything directly UI-related, which fits nowhere else
  1456. *
  1457. * @name UiHelper
  1458. * @class
  1459. */
  1460. const UiHelper = (function () {
  1461. const me = {};
  1462. /**
  1463. * handle history (pop) state changes
  1464. *
  1465. * currently this does only handle redirects to the home page.
  1466. *
  1467. * @name UiHelper.historyChange
  1468. * @private
  1469. * @function
  1470. * @param {Event} event
  1471. */
  1472. function historyChange(event) {
  1473. let currentLocation = Helper.baseUri();
  1474. if (event.originalEvent.state === null && // no state object passed
  1475. event.target.location.href === currentLocation && // target location is home page
  1476. window.location.href === currentLocation // and we are not already on the home page
  1477. ) {
  1478. // redirect to home page
  1479. window.location.href = currentLocation;
  1480. }
  1481. }
  1482. /**
  1483. * reload the page
  1484. *
  1485. * This takes the user to the PrivateBin homepage.
  1486. *
  1487. * @name UiHelper.reloadHome
  1488. * @function
  1489. */
  1490. me.reloadHome = function () {
  1491. window.location.href = Helper.baseUri();
  1492. };
  1493. /**
  1494. * trigger a history (pop) state change
  1495. *
  1496. * used to test the UiHelper.historyChange private function
  1497. *
  1498. * @name UiHelper.mockHistoryChange
  1499. * @function
  1500. * @param {string} state (optional) state to mock
  1501. */
  1502. me.mockHistoryChange = function (state) {
  1503. if (typeof state === 'undefined') {
  1504. state = null;
  1505. }
  1506. historyChange({ originalEvent: new PopStateEvent('popstate', { state: state }), target: window });
  1507. };
  1508. /**
  1509. * initialize
  1510. *
  1511. * @name UiHelper.init
  1512. * @function
  1513. */
  1514. me.init = function () {
  1515. // update link to home page
  1516. document.querySelectorAll('.reloadlink').forEach(link => (link.href = Helper.baseUri()));
  1517. window.addEventListener('popstate', historyChange);
  1518. };
  1519. return me;
  1520. })();
  1521. /**
  1522. * Alert/error manager
  1523. *
  1524. * @name Alert
  1525. * @class
  1526. */
  1527. const Alert = (function () {
  1528. const me = {};
  1529. let errorMessage,
  1530. loadingIndicator,
  1531. statusMessage,
  1532. remainingTime,
  1533. currentIcon,
  1534. customHandler;
  1535. const alertType = [
  1536. 'loading', // not in bootstrap CSS, but using a plausible value here
  1537. 'info', // status icon
  1538. 'warning', // warning icon
  1539. 'danger' // error icon
  1540. ];
  1541. /**
  1542. * forwards a request to the i18n module and shows the element
  1543. *
  1544. * @name Alert.handleNotification
  1545. * @private
  1546. * @function
  1547. * @param {number} id - id of notification
  1548. * @param {HTMLElement} element - HTML element
  1549. * @param {string|array} args
  1550. * @param {string|null} icon - optional, icon
  1551. */
  1552. function handleNotification(id, element, args, icon) {
  1553. // basic parsing/conversion of parameters
  1554. if (typeof icon === 'undefined') {
  1555. icon = null;
  1556. }
  1557. if (typeof args === 'undefined') {
  1558. args = null;
  1559. } else if (typeof args === 'string') {
  1560. // convert string to array if needed
  1561. args = [args];
  1562. } else if (args instanceof Error) {
  1563. // extract message into array if needed
  1564. args = [args.message];
  1565. }
  1566. // function guard
  1567. if (!element) {
  1568. throw new TypeError(`invalid/no element (${element}) given for alert type ${alertType[id]} with ID ${id}`);
  1569. }
  1570. // pass to custom handler if defined
  1571. if (typeof customHandler === 'function') {
  1572. let handlerResult = customHandler(alertType[id], element, args, icon);
  1573. if (handlerResult === true) {
  1574. // if it returns true, skip own handler
  1575. return;
  1576. }
  1577. if (handlerResult instanceof HTMLElement) {
  1578. // continue processing with new element
  1579. element = handlerResult;
  1580. icon = null; // icons not supported in this case
  1581. }
  1582. }
  1583. let translationTarget = element;
  1584. // handle icon, if template uses one
  1585. const glyphIcon = element.querySelector(':first-child');
  1586. if (glyphIcon) {
  1587. // if there is an icon, we need to provide an inner element
  1588. // to translate the message into, instead of the parent
  1589. translationTarget = document.createElement('span');
  1590. element.innerHTML = ' ';
  1591. element.prepend(glyphIcon);
  1592. element.appendChild(translationTarget);
  1593. if (icon !== null && // icon was passed
  1594. icon !== currentIcon[id] // and it differs from current icon
  1595. ) {
  1596. // remove (previous) icon
  1597. glyphIcon.classList.remove(currentIcon[id]);
  1598. // any other thing as a string (e.g. 'null') (only) removes the icon
  1599. if (typeof icon === 'string') {
  1600. // set new icon
  1601. currentIcon[id] = 'glyphicon-' + icon;
  1602. glyphIcon.classList.add(currentIcon[id]);
  1603. }
  1604. }
  1605. }
  1606. // translate and insert message
  1607. I18n._(translationTarget, ...args);
  1608. // show element
  1609. element.classList.remove('hidden');
  1610. }
  1611. /**
  1612. * display a status message
  1613. *
  1614. * This automatically passes the text to I18n for translation.
  1615. *
  1616. * @name Alert.showStatus
  1617. * @function
  1618. * @param {string|array} message string, use an array for %s/%d options
  1619. * @param {string|null} icon optional, the icon to show,
  1620. * default: leave previous icon
  1621. */
  1622. me.showStatus = function (message, icon) {
  1623. handleNotification(1, statusMessage, message, icon);
  1624. };
  1625. /**
  1626. * display a warning message
  1627. *
  1628. * This automatically passes the text to I18n for translation.
  1629. *
  1630. * @name Alert.showWarning
  1631. * @function
  1632. * @param {string|array} message string, use an array for %s/%d options
  1633. * @param {string|null} icon optional, the icon to show, default:
  1634. * leave previous icon
  1635. */
  1636. me.showWarning = function (message, icon) {
  1637. const glyphIcon = errorMessage.querySelector(':first-child');
  1638. if (glyphIcon) {
  1639. glyphIcon.classList.remove(currentIcon[3]);
  1640. glyphIcon.classList.add(currentIcon[2]);
  1641. }
  1642. handleNotification(2, errorMessage, message, icon);
  1643. };
  1644. /**
  1645. * display an error message
  1646. *
  1647. * This automatically passes the text to I18n for translation.
  1648. *
  1649. * @name Alert.showError
  1650. * @function
  1651. * @param {string|array} message string, use an array for %s/%d options
  1652. * @param {string|null} icon optional, the icon to show, default:
  1653. * leave previous icon
  1654. */
  1655. me.showError = function (message, icon) {
  1656. handleNotification(3, errorMessage, message, icon);
  1657. };
  1658. /**
  1659. * display remaining message
  1660. *
  1661. * This automatically passes the text to I18n for translation.
  1662. *
  1663. * @name Alert.showRemaining
  1664. * @function
  1665. * @param {string|array} message string, use an array for %s/%d options
  1666. */
  1667. me.showRemaining = function (message) {
  1668. handleNotification(1, remainingTime, message);
  1669. };
  1670. /**
  1671. * shows a loading message, optionally with a percentage
  1672. *
  1673. * This automatically passes all texts to the i10s module.
  1674. *
  1675. * @name Alert.showLoading
  1676. * @function
  1677. * @param {string|array|null} message optional, use an array for %s/%d options, default: 'Loading…'
  1678. * @param {string|null} icon optional, the icon to show, default: leave previous icon
  1679. */
  1680. me.showLoading = function (message, icon) {
  1681. // default message text
  1682. if (typeof message === 'undefined') {
  1683. message = 'Loading…';
  1684. }
  1685. handleNotification(0, loadingIndicator, message, icon);
  1686. // show loading status (cursor)
  1687. document.body.classList.add('loading');
  1688. };
  1689. /**
  1690. * hides the loading message
  1691. *
  1692. * @name Alert.hideLoading
  1693. * @function
  1694. */
  1695. me.hideLoading = function () {
  1696. loadingIndicator.classList.add('hidden');
  1697. // hide loading cursor
  1698. document.body.classList.remove('loading');
  1699. };
  1700. /**
  1701. * hides any status/error messages
  1702. *
  1703. * This does not include the loading message.
  1704. *
  1705. * @name Alert.hideMessages
  1706. * @function
  1707. */
  1708. me.hideMessages = function () {
  1709. statusMessage.classList.add('hidden');
  1710. errorMessage.classList.add('hidden');
  1711. };
  1712. /**
  1713. * set a custom handler, which gets all notifications.
  1714. *
  1715. * This handler gets the following arguments:
  1716. * alertType (see array), $element, args, icon
  1717. * If it returns true, the own processing will be stopped so the message
  1718. * will not be displayed. Otherwise it will continue.
  1719. * As an aditional feature it can return a HTMLElement, which will
  1720. * then be used to add the message there. Icons are not supported in
  1721. * that case and will be ignored.
  1722. * Pass 'null' to reset/delete the custom handler.
  1723. * Note that there is no notification when a message is supposed to get
  1724. * hidden.
  1725. *
  1726. * @name Alert.setCustomHandler
  1727. * @function
  1728. * @param {function|null} newHandler
  1729. */
  1730. me.setCustomHandler = function (newHandler) {
  1731. customHandler = newHandler;
  1732. };
  1733. /**
  1734. * init status manager
  1735. *
  1736. * preloads HTMLElements
  1737. *
  1738. * @name Alert.init
  1739. * @function
  1740. */
  1741. me.init = function () {
  1742. // hide "no javascript" error message (guard in test environments)
  1743. const noscriptEl = document.getElementById('noscript');
  1744. if (noscriptEl) {
  1745. noscriptEl.style.display = 'none';
  1746. }
  1747. // not a reset, but first set of the elements
  1748. errorMessage = document.getElementById('errormessage');
  1749. loadingIndicator = document.getElementById('loadingindicator');
  1750. statusMessage = document.getElementById('status');
  1751. remainingTime = document.getElementById('remainingtime');
  1752. currentIcon = [
  1753. 'glyphicon-time', // loading icon
  1754. 'glyphicon-info-sign', // status icon
  1755. 'glyphicon-warning-sign', // warning icon
  1756. 'glyphicon-alert' // error icon
  1757. ];
  1758. };
  1759. return me;
  1760. })();
  1761. /**
  1762. * handles paste status/result
  1763. *
  1764. * @name PasteStatus
  1765. * @class
  1766. */
  1767. const PasteStatus = (function () {
  1768. const me = {};
  1769. let pasteSuccess,
  1770. pasteUrl,
  1771. remainingTime,
  1772. shortenButton;
  1773. /**
  1774. * forward to URL shortener
  1775. *
  1776. * @name PasteStatus.sendToShortener
  1777. * @private
  1778. * @function
  1779. */
  1780. function sendToShortener() {
  1781. if (shortenButton.classList.contains('buttondisabled')) {
  1782. return;
  1783. }
  1784. fetch(`${shortenButton.dataset.shortener}${encodeURIComponent(pasteUrl.href)}`, {
  1785. method: 'GET',
  1786. headers: { 'Accept': 'text/html, application/xhtml+xml, application/xml, application/json' },
  1787. credentials: 'omit',
  1788. signal: AbortSignal.timeout(10000)
  1789. })
  1790. .then(response => {
  1791. if (!response.ok) {
  1792. throw new Error('HTTP ' + response.status);
  1793. }
  1794. return response.text();
  1795. })
  1796. .then(data => PasteStatus.extractUrl(data))
  1797. .catch(error => {
  1798. console.error('Shortener error:', error);
  1799. // we don't know why it failed, could be CORS of the external
  1800. // server not setup properly, in which case we follow old
  1801. // behavior to open it in new tab
  1802. window.open(
  1803. `${shortenButton.dataset.shortener}${encodeURIComponent(pasteUrl.href)}`,
  1804. '_blank',
  1805. 'noopener, noreferrer'
  1806. );
  1807. });
  1808. }
  1809. /**
  1810. * Forces opening the document if the link does not do this automatically.
  1811. *
  1812. * This is necessary as browsers will not reload the page when it is
  1813. * already loaded (which is fake as it is set via history.pushState()).
  1814. *
  1815. * @name PasteStatus.pasteLinkClick
  1816. * @function
  1817. */
  1818. function pasteLinkClick() {
  1819. // check if location is (already) shown in URL bar
  1820. if (window.location.href === pasteUrl.href) {
  1821. // if so we need to load link by reloading the current site
  1822. window.location.reload(true);
  1823. }
  1824. }
  1825. /**
  1826. * creates a notification after a successful document upload
  1827. *
  1828. * @name PasteStatus.createPasteNotification
  1829. * @function
  1830. * @param {string} url
  1831. * @param {string} deleteUrl
  1832. */
  1833. me.createPasteNotification = function (url, deleteUrl) {
  1834. I18n._(
  1835. document.getElementById('pastelink'),
  1836. 'Your document is <a id="pasteurl" href="%s">%s</a> <span id="copyhint">(Hit <kbd>Ctrl</kbd>+<kbd>c</kbd> to copy)</span>',
  1837. url, url
  1838. );
  1839. // save newly created element
  1840. pasteUrl = document.getElementById('pasteurl');
  1841. // and add click event
  1842. if (pasteUrl) {
  1843. pasteUrl.addEventListener('click', pasteLinkClick);
  1844. }
  1845. // delete link
  1846. const deleteLink = document.getElementById('deletelink');
  1847. if (deleteLink) {
  1848. deleteLink.href = deleteUrl;
  1849. }
  1850. I18n._(document.querySelector('#deletelink span:not(.glyphicon)'), 'Delete data');
  1851. // enable shortener button
  1852. if (shortenButton) {
  1853. shortenButton.classList.remove('buttondisabled');
  1854. }
  1855. // show result
  1856. if (pasteSuccess) {
  1857. pasteSuccess.classList.remove('hidden');
  1858. }
  1859. // we pre-select the link so that the user only has to [Ctrl]+[c] the link
  1860. Helper.selectText(pasteUrl);
  1861. };
  1862. /**
  1863. * Checks if auto-shortening is enabled and sends the link to the shortener if it is.
  1864. *
  1865. * @name PasteStatus.checkAutoShorten
  1866. * @function
  1867. */
  1868. me.checkAutoShorten = function () {
  1869. // check if auto-shortening is enabled
  1870. if (shortenButton && shortenButton.dataset.autoshorten === 'true') {
  1871. // if so, we send the link to the shortener
  1872. // we do not remove the button, in case shortener fails
  1873. sendToShortener();
  1874. }
  1875. }
  1876. /**
  1877. * extracts URLs from given string
  1878. *
  1879. * if at least one is found, it disables the shortener button and
  1880. * replaces the document URL
  1881. *
  1882. * @name PasteStatus.extractUrl
  1883. * @function
  1884. * @param {string} response
  1885. */
  1886. me.extractUrl = function (response) {
  1887. if (typeof response === 'object') {
  1888. response = JSON.stringify(response);
  1889. }
  1890. if (typeof response === 'string' && response.length > 0) {
  1891. const shortUrlMatcher = /https?:\/\/[^\s"<]+/g; // JSON API will have URL in quotes, XML in tags
  1892. const shortUrl = (response.match(shortUrlMatcher) || []).filter(function (urlRegExMatch) {
  1893. if (typeof URL.canParse === 'function') {
  1894. return URL.canParse(urlRegExMatch);
  1895. }
  1896. // polyfill for older browsers (< 120) & node (< 19.9 & < 18.17)
  1897. try {
  1898. return !!new URL(urlRegExMatch);
  1899. } catch (error) {
  1900. return false;
  1901. }
  1902. }).sort(function (a, b) {
  1903. return a.length - b.length; // shortest first
  1904. })[0];
  1905. if (typeof shortUrl === 'string' && shortUrl.length > 0) {
  1906. // we disable the button to avoid calling shortener again
  1907. if (shortenButton) {
  1908. shortenButton.classList.add('buttondisabled');
  1909. }
  1910. // update link
  1911. pasteUrl.textContent = shortUrl;
  1912. pasteUrl.href = shortUrl;
  1913. // we pre-select the link so that the user only has to [Ctrl]+[c] the link
  1914. Helper.selectText(pasteUrl);
  1915. CopyToClipboard.setUrl(shortUrl);
  1916. return;
  1917. }
  1918. }
  1919. Alert.showError('Cannot parse response from URL shortener.');
  1920. };
  1921. /**
  1922. * shows the remaining time
  1923. *
  1924. * @name PasteStatus.showRemainingTime
  1925. * @function
  1926. * @param {Paste} paste
  1927. */
  1928. me.showRemainingTime = function (paste) {
  1929. if (paste.isBurnAfterReadingEnabled()) {
  1930. // display document "for your eyes only" if it is deleted
  1931. // the document has been deleted when the JSON with the ciphertext
  1932. // has been downloaded
  1933. Alert.showRemaining('FOR YOUR EYES ONLY. Don\'t close this window, this message can\'t be displayed again.');
  1934. remainingTime.classList.add('foryoureyesonly');
  1935. } else if (paste.getTimeToLive() > 0) {
  1936. // display document expiration
  1937. let expiration = Helper.secondsToHuman(paste.getTimeToLive()),
  1938. expirationLabel = [
  1939. 'This document will expire in %d ' + expiration[1] + '.',
  1940. 'This document will expire in %d ' + expiration[1] + 's.'
  1941. ];
  1942. Alert.showRemaining([expirationLabel, expiration[0]]);
  1943. remainingTime.classList.remove('foryoureyesonly');
  1944. } else {
  1945. // never expires
  1946. return;
  1947. }
  1948. // in the end, display notification
  1949. remainingTime.classList.remove('hidden');
  1950. };
  1951. /**
  1952. * hides the remaining time and successful upload notification
  1953. *
  1954. * @name PasteStatus.hideMessages
  1955. * @function
  1956. */
  1957. me.hideMessages = function () {
  1958. remainingTime.classList.add('hidden');
  1959. pasteSuccess.classList.add('hidden');
  1960. };
  1961. /**
  1962. * init status manager
  1963. *
  1964. * preloads HTMLElements
  1965. *
  1966. * @name PasteStatus.init
  1967. * @function
  1968. */
  1969. me.init = function () {
  1970. pasteSuccess = document.getElementById('pastesuccess');
  1971. // pasteUrl is saved in me.createPasteNotification() after creation
  1972. remainingTime = document.getElementById('remainingtime');
  1973. shortenButton = document.getElementById('shortenbutton');
  1974. // bind elements
  1975. if (shortenButton) {
  1976. shortenButton.addEventListener('click', sendToShortener);
  1977. }
  1978. };
  1979. return me;
  1980. })();
  1981. /**
  1982. * password prompt
  1983. *
  1984. * @name Prompt
  1985. * @class
  1986. */
  1987. const Prompt = (function () {
  1988. const me = {};
  1989. let passwordDecrypt,
  1990. passwordModal,
  1991. bootstrap5PasswordModal = null,
  1992. password = '';
  1993. /**
  1994. * submit a password in the modal dialog
  1995. *
  1996. * @name Prompt.submitPasswordModal
  1997. * @private
  1998. * @function
  1999. * @param {Event} event
  2000. */
  2001. function submitPasswordModal(event) {
  2002. event.preventDefault();
  2003. // get input
  2004. password = passwordDecrypt.value;
  2005. // hide modal
  2006. if (bootstrap5PasswordModal) {
  2007. bootstrap5PasswordModal.hide();
  2008. } else {
  2009. if (passwordModal) {
  2010. passwordModal.classList.remove('show');
  2011. passwordModal.style.display = 'none';
  2012. }
  2013. }
  2014. PasteDecrypter.run();
  2015. }
  2016. /**
  2017. * Request users confirmation to load possibly burn after reading document
  2018. *
  2019. * @name Prompt.requestLoadConfirmation
  2020. * @function
  2021. */
  2022. me.requestLoadConfirmation = function () {
  2023. const loadconfirmmodal = document.getElementById('loadconfirmmodal');
  2024. const loadconfirmOpenNow = loadconfirmmodal.querySelector('#loadconfirm-open-now');
  2025. loadconfirmOpenNow.removeEventListener('click', PasteDecrypter.run);
  2026. loadconfirmOpenNow.addEventListener('click', PasteDecrypter.run);
  2027. const loadconfirmClose = loadconfirmmodal.querySelector('.close');
  2028. loadconfirmClose.removeEventListener('click', Controller.newPaste);
  2029. loadconfirmClose.addEventListener('click', Controller.newPaste);
  2030. loadconfirmmodal.addEventListener('shown.bs.modal', () => {
  2031. loadconfirmOpenNow.focus();
  2032. });
  2033. if (typeof bootstrap !== 'undefined' && bootstrap.Tooltip && typeof bootstrap.Modal === 'function') {
  2034. (new bootstrap.Modal(loadconfirmmodal)).show();
  2035. } else {
  2036. // minimal fallback: make element visible
  2037. loadconfirmmodal.classList.add('show');
  2038. }
  2039. };
  2040. /**
  2041. * ask the user for the password and set it
  2042. *
  2043. * @name Prompt.requestPassword
  2044. * @function
  2045. */
  2046. me.requestPassword = function () {
  2047. // show new bootstrap method (if available)
  2048. if (passwordModal !== null) {
  2049. if (bootstrap5PasswordModal) {
  2050. bootstrap5PasswordModal.show();
  2051. }
  2052. return;
  2053. }
  2054. PasteDecrypter.run();
  2055. };
  2056. /**
  2057. * get the cached password
  2058. *
  2059. * If you do not get a password with this function
  2060. * (returns an empty string), use requestPassword.
  2061. *
  2062. * @name Prompt.getPassword
  2063. * @function
  2064. * @return {string}
  2065. */
  2066. me.getPassword = function () {
  2067. return password;
  2068. };
  2069. /**
  2070. * resets the password to an empty string
  2071. *
  2072. * @name Prompt.reset
  2073. * @function
  2074. */
  2075. me.reset = function () {
  2076. // reset internal
  2077. password = '';
  2078. // and also reset UI
  2079. passwordDecrypt.value = '';
  2080. };
  2081. /**
  2082. * init status manager
  2083. *
  2084. * preloads HTMLElements
  2085. *
  2086. * @name Prompt.init
  2087. * @function
  2088. */
  2089. me.init = function () {
  2090. passwordDecrypt = document.getElementById('passworddecrypt');
  2091. passwordModal = document.getElementById('passwordmodal');
  2092. // bind events - handle Model password submission
  2093. if (passwordModal) {
  2094. const passwordForm = document.getElementById('passwordform');
  2095. if (passwordForm) {
  2096. passwordForm.addEventListener('submit', submitPasswordModal);
  2097. }
  2098. const disableClosingConfig = {
  2099. backdrop: 'static',
  2100. keyboard: false,
  2101. show: false
  2102. };
  2103. if (typeof bootstrap !== 'undefined' && bootstrap.Tooltip && typeof bootstrap.Modal === 'function') {
  2104. bootstrap5PasswordModal = new bootstrap.Modal(passwordModal, disableClosingConfig);
  2105. } else {
  2106. // fallback: keep modal hidden until explicitly shown
  2107. passwordModal.style.display = 'none';
  2108. }
  2109. // ensure focus when modal shown (works for bootstrap5)
  2110. passwordModal.addEventListener('shown.bs.modal', () => {
  2111. passwordDecrypt.focus();
  2112. });
  2113. }
  2114. };
  2115. return me;
  2116. })();
  2117. /**
  2118. * Manage paste/message input, and preview tab
  2119. *
  2120. * Note that the actual preview is handled by PasteViewer.
  2121. *
  2122. * @name Editor
  2123. * @class
  2124. */
  2125. const Editor = (function () {
  2126. const me = {};
  2127. let editorTabs,
  2128. messageEdit,
  2129. messageEditParent,
  2130. messagePreview,
  2131. messagePreviewParent,
  2132. messageTab,
  2133. messageTabParent,
  2134. message,
  2135. isPreview = false,
  2136. isTabSupported = true;
  2137. /**
  2138. * support input of tab character
  2139. *
  2140. * @name Editor.supportTabs
  2141. * @function
  2142. * @param {KeyboardEvent} event
  2143. * @this message
  2144. */
  2145. function supportTabs(event) {
  2146. // support disabling tab support using [Esc] and [Ctrl]+[m]
  2147. if (event.key === 'Escape' || (event.ctrlKey && event.key === 'm')) {
  2148. toggleTabSupport();
  2149. if (messageTab) messageTab.checked = isTabSupported;
  2150. event.preventDefault();
  2151. }
  2152. else if (isTabSupported && event.key === 'Tab') {
  2153. // get caret position & selection
  2154. const val = this.value,
  2155. start = this.selectionStart,
  2156. end = this.selectionEnd;
  2157. // set textarea value to: text before caret + tab + text after caret
  2158. this.value = val.substring(0, start) + '\t' + val.substring(end);
  2159. // put caret at right position again
  2160. this.selectionStart = this.selectionEnd = start + 1;
  2161. // prevent the textarea to lose focus
  2162. event.preventDefault();
  2163. }
  2164. }
  2165. /**
  2166. * toggle tab support in message textarea
  2167. *
  2168. * @name Editor.toggleTabSupport
  2169. * @private
  2170. * @function
  2171. */
  2172. function toggleTabSupport() {
  2173. isTabSupported = !isTabSupported;
  2174. }
  2175. /**
  2176. * view the Editor tab
  2177. *
  2178. * @name Editor.viewEditor
  2179. * @function
  2180. * @param {Event} event - optional
  2181. */
  2182. function viewEditor(event) {
  2183. // toggle buttons
  2184. messageEdit.classList.add('active');
  2185. messageEditParent.classList.add('active');
  2186. messagePreview.classList.remove('active');
  2187. messagePreviewParent.classList.remove('active');
  2188. messageEdit.setAttribute('aria-selected', 'true');
  2189. messagePreview.setAttribute('aria-selected', 'false');
  2190. PasteViewer.hide();
  2191. // reshow input
  2192. message.classList.remove('hidden');
  2193. messageTabParent.classList.remove('hidden');
  2194. me.focusInput();
  2195. // finish
  2196. isPreview = false;
  2197. // prevent jumping of page to top
  2198. if (typeof event !== 'undefined') {
  2199. event.preventDefault();
  2200. }
  2201. }
  2202. /**
  2203. * view the preview tab
  2204. *
  2205. * @name Editor.viewPreview
  2206. * @function
  2207. * @param {Event} event
  2208. */
  2209. function viewPreview(event) {
  2210. // toggle buttons
  2211. messageEdit.classList.remove('active');
  2212. messageEditParent.classList.remove('active');
  2213. messagePreview.classList.add('active');
  2214. messagePreviewParent.classList.add('active');
  2215. messageEdit.setAttribute('aria-selected', 'false');
  2216. messagePreview.setAttribute('aria-selected', 'true');
  2217. // hide input as now preview is shown
  2218. message.classList.add('hidden');
  2219. messageTabParent.classList.add('hidden');
  2220. // show preview
  2221. PasteViewer.setText(message.value);
  2222. if (AttachmentViewer.hasAttachmentData()) {
  2223. const attachmentsData = AttachmentViewer.getAttachmentsData();
  2224. attachmentsData.forEach(attachmentData => {
  2225. const mimeType = AttachmentViewer.getAttachmentMimeType(attachmentData);
  2226. AttachmentViewer.handleBlobAttachmentPreview(
  2227. AttachmentViewer.getAttachmentPreview(),
  2228. attachmentData, mimeType
  2229. );
  2230. });
  2231. AttachmentViewer.showAttachment();
  2232. }
  2233. PasteViewer.run();
  2234. // finish
  2235. isPreview = true;
  2236. // prevent jumping of page to top
  2237. if (typeof event !== 'undefined') {
  2238. event.preventDefault();
  2239. }
  2240. }
  2241. /**
  2242. * get the state of the preview
  2243. *
  2244. * @name Editor.isPreview
  2245. * @function
  2246. */
  2247. me.isPreview = function () {
  2248. return isPreview;
  2249. };
  2250. /**
  2251. * reset the Editor view
  2252. *
  2253. * @name Editor.resetInput
  2254. * @function
  2255. */
  2256. me.resetInput = function () {
  2257. // go back to input
  2258. if (isPreview) {
  2259. viewEditor();
  2260. }
  2261. // clear content
  2262. message.value = '';
  2263. };
  2264. /**
  2265. * shows the Editor
  2266. *
  2267. * @name Editor.show
  2268. * @function
  2269. */
  2270. me.show = function () {
  2271. message.classList.remove('hidden');
  2272. messageTabParent.classList.remove('hidden');
  2273. editorTabs.classList.remove('hidden');
  2274. };
  2275. /**
  2276. * hides the Editor
  2277. *
  2278. * @name Editor.hide
  2279. * @function
  2280. */
  2281. me.hide = function () {
  2282. message.classList.add('hidden');
  2283. messageTabParent.classList.add('hidden');
  2284. editorTabs.classList.add('hidden');
  2285. };
  2286. /**
  2287. * focuses the message input
  2288. *
  2289. * @name Editor.focusInput
  2290. * @function
  2291. */
  2292. me.focusInput = function () {
  2293. message.focus();
  2294. };
  2295. /**
  2296. * sets a new text
  2297. *
  2298. * @name Editor.setText
  2299. * @function
  2300. * @param {string} newText
  2301. */
  2302. me.setText = function (newText) {
  2303. message.value = newText;
  2304. };
  2305. /**
  2306. * returns the current text
  2307. *
  2308. * @name Editor.getText
  2309. * @function
  2310. * @return {string}
  2311. */
  2312. me.getText = function () {
  2313. return message.value;
  2314. };
  2315. /**
  2316. * init editor
  2317. *
  2318. * preloads HTMLElements and binds events
  2319. *
  2320. * @name Editor.init
  2321. * @function
  2322. */
  2323. me.init = function () {
  2324. editorTabs = document.getElementById('editorTabs');
  2325. message = document.getElementById('message');
  2326. messageTab = document.getElementById('messagetab');
  2327. messageTabParent = messageTab ? messageTab.parentElement : null;
  2328. // bind events
  2329. if (message) {
  2330. message.addEventListener('keydown', supportTabs);
  2331. }
  2332. if (messageTab) {
  2333. messageTab.addEventListener('change', toggleTabSupport);
  2334. }
  2335. // bind click events to tab switchers (a), and save parents (li)
  2336. messageEdit = document.getElementById('messageedit');
  2337. if (messageEdit) {
  2338. messageEdit.addEventListener('click', viewEditor);
  2339. messageEditParent = messageEdit.parentElement;
  2340. }
  2341. messagePreview = document.getElementById('messagepreview');
  2342. if (messagePreview) {
  2343. messagePreview.addEventListener('click', viewPreview);
  2344. messagePreviewParent = messagePreview.parentElement;
  2345. }
  2346. };
  2347. return me;
  2348. })();
  2349. /**
  2350. * (view) Parse and show document.
  2351. *
  2352. * @name PasteViewer
  2353. * @class
  2354. */
  2355. const PasteViewer = (function () {
  2356. const me = {};
  2357. let messageTabParent,
  2358. placeholder,
  2359. prettyMessage,
  2360. prettyPrintEl,
  2361. plainText,
  2362. text,
  2363. format = 'plaintext',
  2364. isDisplayed = false,
  2365. isChanged = true; // by default true as nothing was parsed yet
  2366. /**
  2367. * apply the set format on paste and displays it
  2368. *
  2369. * @name PasteViewer.parsePaste
  2370. * @private
  2371. * @function
  2372. */
  2373. function parsePaste() {
  2374. // skip parsing if no text is given
  2375. if (text === '') {
  2376. return;
  2377. }
  2378. if (format === 'markdown') {
  2379. const converter = new showdown.Converter({
  2380. strikethrough: true,
  2381. tables: true,
  2382. tablesHeaderId: true,
  2383. simplifiedAutoLink: true,
  2384. excludeTrailingPunctuationFromURLs: true
  2385. });
  2386. // let showdown convert the HTML and sanitize HTML *afterwards*!
  2387. if (plainText) {
  2388. plainText.innerHTML = DOMPurify.sanitize(
  2389. converter.makeHtml(text),
  2390. purifyHtmlConfig
  2391. );
  2392. // add table classes from bootstrap css
  2393. plainText.querySelectorAll('table').forEach(t => {
  2394. t.classList.add('table-condensed', 'table-bordered');
  2395. });
  2396. }
  2397. } else {
  2398. if (format === 'syntaxhighlighting') {
  2399. // yes, this is really needed to initialize the environment
  2400. if (typeof prettyPrint === 'function') {
  2401. prettyPrint();
  2402. }
  2403. if (prettyPrintEl) {
  2404. prettyPrintEl.innerHTML = prettyPrintOne(
  2405. Helper.htmlEntities(text), null, true
  2406. );
  2407. }
  2408. } else {
  2409. // = 'plaintext'
  2410. if (prettyPrintEl) {
  2411. prettyPrintEl.textContent = text;
  2412. }
  2413. }
  2414. if (prettyPrintEl) {
  2415. Helper.urls2links(prettyPrintEl, format !== 'syntaxhighlighting');
  2416. prettyPrintEl.style.whiteSpace = 'pre-wrap';
  2417. prettyPrintEl.style.wordBreak = 'normal';
  2418. prettyPrintEl.classList.remove('prettyprint', 'prettyprinted');
  2419. }
  2420. }
  2421. }
  2422. /**
  2423. * displays the document
  2424. *
  2425. * NOTE: FOr some obscure reaosn, Markdown is shown in the "plaintext" class
  2426. * and all other ones are rendered in the "prettyPrintEl" one.
  2427. *
  2428. * @name PasteViewer.showPaste
  2429. * @private
  2430. * @function
  2431. */
  2432. function showPaste() {
  2433. // instead of "nothing" better display a placeholder
  2434. if (text === '') {
  2435. if (placeholder) placeholder.classList.remove('hidden');
  2436. return;
  2437. }
  2438. // otherwise hide the placeholder
  2439. if (placeholder) placeholder.classList.add('hidden');
  2440. if (messageTabParent) messageTabParent.classList.add('hidden');
  2441. if (format === 'markdown') {
  2442. if (plainText) plainText.classList.remove('hidden');
  2443. if (prettyMessage) prettyMessage.classList.add('hidden');
  2444. } else {
  2445. if (plainText) plainText.classList.add('hidden');
  2446. if (prettyMessage) prettyMessage.classList.remove('hidden');
  2447. }
  2448. }
  2449. /**
  2450. * sets the format in which the text is shown
  2451. *
  2452. * @name PasteViewer.setFormat
  2453. * @function
  2454. * @param {string} newFormat the new format
  2455. */
  2456. me.setFormat = function (newFormat) {
  2457. // skip if there is no update
  2458. if (format === newFormat) {
  2459. return;
  2460. }
  2461. // needs to update display too, if we switch from or to Markdown
  2462. if (format === 'markdown' || newFormat === 'markdown') {
  2463. isDisplayed = false;
  2464. }
  2465. format = newFormat;
  2466. isChanged = true;
  2467. // update preview
  2468. if (Editor.isPreview()) {
  2469. PasteViewer.run();
  2470. }
  2471. };
  2472. /**
  2473. * returns the current format
  2474. *
  2475. * @name PasteViewer.getFormat
  2476. * @function
  2477. * @return {string}
  2478. */
  2479. me.getFormat = function () {
  2480. return format;
  2481. };
  2482. /**
  2483. * returns whether the current view is pretty printed
  2484. *
  2485. * @name PasteViewer.isPrettyPrinted
  2486. * @function
  2487. * @return {bool}
  2488. */
  2489. me.isPrettyPrinted = function () {
  2490. return prettyPrintEl ? prettyPrintEl.classList.contains('prettyprinted') : false;
  2491. };
  2492. /**
  2493. * sets the text to show
  2494. *
  2495. * @name PasteViewer.setText
  2496. * @function
  2497. * @param {string} newText the text to show
  2498. */
  2499. me.setText = function (newText) {
  2500. if (text !== newText) {
  2501. text = newText;
  2502. isChanged = true;
  2503. }
  2504. };
  2505. /**
  2506. * gets the current cached text
  2507. *
  2508. * @name PasteViewer.getText
  2509. * @function
  2510. * @return {string}
  2511. */
  2512. me.getText = function () {
  2513. return text;
  2514. };
  2515. /**
  2516. * show/update the parsed text (preview)
  2517. *
  2518. * @name PasteViewer.run
  2519. * @function
  2520. */
  2521. me.run = function () {
  2522. if (isChanged) {
  2523. parsePaste();
  2524. isChanged = false;
  2525. }
  2526. if (!isDisplayed) {
  2527. showPaste();
  2528. isDisplayed = true;
  2529. }
  2530. };
  2531. /**
  2532. * hide parsed text (preview)
  2533. *
  2534. * @name PasteViewer.hide
  2535. * @function
  2536. */
  2537. me.hide = function () {
  2538. if (!isDisplayed) {
  2539. return;
  2540. }
  2541. if (plainText) plainText.classList.add('hidden');
  2542. if (prettyMessage) prettyMessage.classList.add('hidden');
  2543. if (placeholder) placeholder.classList.add('hidden');
  2544. AttachmentViewer.hideAttachmentPreview();
  2545. isDisplayed = false;
  2546. };
  2547. /**
  2548. * init status manager
  2549. *
  2550. * preloads jQuery elements
  2551. *
  2552. * @name PasteViewer.init
  2553. * @function
  2554. */
  2555. me.init = function () {
  2556. const messagetab = document.getElementById('messagetab');
  2557. messageTabParent = messagetab ? messagetab.parentElement : null;
  2558. placeholder = document.getElementById('placeholder');
  2559. plainText = document.getElementById('plaintext');
  2560. prettyMessage = document.getElementById('prettymessage');
  2561. prettyPrintEl = document.getElementById('prettyprint');
  2562. // get default option from template/HTML or fall back to set value
  2563. format = Model.getFormatDefault() || format;
  2564. text = '';
  2565. isDisplayed = false;
  2566. isChanged = true;
  2567. };
  2568. return me;
  2569. })();
  2570. /**
  2571. * (view) Show attachment and preview if possible
  2572. *
  2573. * @name AttachmentViewer
  2574. * @class
  2575. */
  2576. const AttachmentViewer = (function () {
  2577. const me = {};
  2578. let attachmentPreview,
  2579. attachment,
  2580. attachmentsData = [],
  2581. files,
  2582. fileInput,
  2583. dragAndDropFileNames,
  2584. dropzone;
  2585. /**
  2586. * get blob URL from string data and mime type
  2587. *
  2588. * @name AttachmentViewer.getBlobUrl
  2589. * @private
  2590. * @function
  2591. * @param {string} data - raw data of attachment
  2592. * @param {string} data - mime type of attachment
  2593. * @return {string} objectURL
  2594. */
  2595. function getBlobUrl(data, mimeType) {
  2596. // Transform into a Blob
  2597. const buf = new Uint8Array(data.length);
  2598. for (let i = 0; i < data.length; ++i) {
  2599. buf[i] = data.charCodeAt(i);
  2600. }
  2601. const blob = new window.Blob(
  2602. [buf],
  2603. {
  2604. type: mimeType
  2605. }
  2606. );
  2607. // Get blob URL
  2608. return window.URL.createObjectURL(blob);
  2609. }
  2610. /**
  2611. * sets the attachment but does not yet show it
  2612. *
  2613. * @name AttachmentViewer.setAttachment
  2614. * @function
  2615. * @param {string} attachmentData - base64-encoded data of file
  2616. * @param {string} fileName - optional, file name
  2617. */
  2618. me.setAttachment = function (attachmentData, fileName) {
  2619. // skip, if attachments got disabled
  2620. if (!attachment) return;
  2621. // data URI format: data:[<mimeType>][;base64],<data>
  2622. const template = Model.getTemplate('attachment');
  2623. const attachmentLink = template.querySelector('a');
  2624. // position in data URI string of where data begins
  2625. const base64Start = attachmentData.indexOf(',') + 1;
  2626. const mimeType = me.getAttachmentMimeType(attachmentData);
  2627. // extract data and convert to binary
  2628. const rawData = attachmentData.substring(base64Start);
  2629. const decodedData = rawData.length > 0 ? atob(rawData) : '';
  2630. let blobUrl = getBlobUrl(decodedData, mimeType);
  2631. attachmentLink.setAttribute('href', blobUrl);
  2632. if (typeof fileName !== 'undefined') {
  2633. attachmentLink.setAttribute('download', fileName);
  2634. const fileSize = Helper.formatBytes(decodedData.length);
  2635. const spans = template.querySelectorAll('span');
  2636. const span = spans[spans.length - 1];
  2637. span.textContent += ` (${fileName}, ${fileSize})`;
  2638. }
  2639. // sanitize SVG preview
  2640. // prevents executing embedded scripts when CSP is not set and user
  2641. // right-clicks/long-taps and opens the SVG in a new tab - prevented
  2642. // in the preview by use of an img tag, which disables scripts, too
  2643. if (mimeType.match(/^image\/.*svg/i)) {
  2644. const sanitizedData = DOMPurify.sanitize(
  2645. decodedData,
  2646. purifySvgConfig
  2647. );
  2648. blobUrl = getBlobUrl(sanitizedData, mimeType);
  2649. }
  2650. template.classList.remove('hidden');
  2651. attachment.appendChild(template);
  2652. me.handleBlobAttachmentPreview(attachmentPreview, blobUrl, mimeType);
  2653. };
  2654. /**
  2655. * displays the attachment and (if possible) the preview
  2656. *
  2657. * @name AttachmentViewer.showAttachment
  2658. * @function
  2659. */
  2660. me.showAttachment = function () {
  2661. if (!attachment) {
  2662. return;
  2663. }
  2664. attachment.classList.remove('hidden');
  2665. if (attachmentPreview && me.hasAttachmentPreview()) {
  2666. attachmentPreview.classList.remove('hidden');
  2667. }
  2668. };
  2669. /**
  2670. * removes the attachment
  2671. *
  2672. * This automatically hides the attachment containers too, to
  2673. * prevent an inconsistent display.
  2674. *
  2675. * @name AttachmentViewer.removeAttachment
  2676. * @function
  2677. */
  2678. me.removeAttachment = function () {
  2679. if (!attachment) {
  2680. return;
  2681. }
  2682. me.hideAttachment();
  2683. me.hideAttachmentPreview();
  2684. attachment.innerHTML = '';
  2685. if (attachmentPreview) {
  2686. attachmentPreview.innerHTML = '';
  2687. }
  2688. me.clearDragAndDrop();
  2689. AttachmentViewer.removeAttachmentData();
  2690. };
  2691. /**
  2692. * removes the attachment data
  2693. *
  2694. * This removes the data, which would be uploaded otherwise.
  2695. *
  2696. * @name AttachmentViewer.removeAttachmentData
  2697. * @function
  2698. */
  2699. me.removeAttachmentData = function () {
  2700. files = [];
  2701. attachmentsData = [];
  2702. };
  2703. /**
  2704. * Cleares the drag & drop data.
  2705. *
  2706. * @name AttachmentViewer.clearDragAndDrop
  2707. * @function
  2708. */
  2709. me.clearDragAndDrop = function () {
  2710. if (dragAndDropFileNames) {
  2711. dragAndDropFileNames.innerHTML = '';
  2712. }
  2713. };
  2714. /**
  2715. * Print file names added via drag & drop
  2716. *
  2717. * @name AttachmentViewer.printDragAndDropFileNames
  2718. * @private
  2719. * @function
  2720. * @param {string[]} fileNames
  2721. */
  2722. function printDragAndDropFileNames(fileNames) {
  2723. me.clearDragAndDrop();
  2724. fileNames.forEach(fileName => {
  2725. const name = document.createTextNode(fileName);
  2726. dragAndDropFileNames.appendChild(name);
  2727. dragAndDropFileNames.appendChild(document.createElement('br'));
  2728. });
  2729. }
  2730. /**
  2731. * hides the attachment
  2732. *
  2733. * This will not hide the preview (see {@see AttachmentViewer.hideAttachmentPreview}
  2734. * for that) nor will it hide the attachment link if it was moved somewhere
  2735. * else (see {@see AttachmentViewer.moveAttachmentTo}).
  2736. *
  2737. * @name AttachmentViewer.hideAttachment
  2738. * @function
  2739. */
  2740. me.hideAttachment = function () {
  2741. attachment.classList.add('hidden');
  2742. };
  2743. /**
  2744. * hides the attachment preview
  2745. *
  2746. * @name AttachmentViewer.hideAttachmentPreview
  2747. * @function
  2748. */
  2749. me.hideAttachmentPreview = function () {
  2750. if (attachmentPreview) {
  2751. attachmentPreview.classList.add('hidden');
  2752. }
  2753. };
  2754. /**
  2755. * checks if has any attachment preview that is currently rendered
  2756. *
  2757. * Note: This does not verify if the attachment preview is actually shown to the user, as it might be hidden ({@see AttachmentViewer.hideAttachmentPreview}).
  2758. *
  2759. * @name AttachmentViewer.hasAttachmentPreview
  2760. * @function
  2761. * @return {boolean}
  2762. */
  2763. me.hasAttachmentPreview = function () {
  2764. return attachmentPreview.children.length > 0;
  2765. }
  2766. /**
  2767. * checks if there is an attachment displayed
  2768. *
  2769. * @name AttachmentViewer.hasAttachment
  2770. * @function
  2771. */
  2772. me.hasAttachment = function () {
  2773. if (!attachment) {
  2774. return false;
  2775. }
  2776. // Check if there are actual attachment data items (not just UI elements)
  2777. if (attachmentsData.length > 0) {
  2778. return true;
  2779. }
  2780. // Also check UI elements in case data was removed but UI wasn't updated
  2781. return attachment.children.length > 0;
  2782. };
  2783. /**
  2784. * checks if there is attachment data (for preview!) available
  2785. *
  2786. * It returns true, when there is data that needs to be encrypted.
  2787. *
  2788. * @name AttachmentViewer.hasAttachmentData
  2789. * @function
  2790. */
  2791. me.hasAttachmentData = function()
  2792. {
  2793. // Check if there are actual attachment data items (not just UI elements)
  2794. return attachmentsData.length > 0;
  2795. };
  2796. /**
  2797. * return the attachments
  2798. *
  2799. * @name AttachmentViewer.getAttachments
  2800. * @function
  2801. * @returns {array}
  2802. */
  2803. me.getAttachments = function () {
  2804. return [...attachment.querySelectorAll('a')].map(link => (
  2805. [
  2806. link.href,
  2807. link.download
  2808. ]
  2809. ));
  2810. };
  2811. /**
  2812. * Get attachment mime type
  2813. *
  2814. * @name AttachmentViewer.getAttachmentMimeType
  2815. * @function
  2816. * @param {string} attachmentData - Base64 string
  2817. */
  2818. me.getAttachmentMimeType = function (attachmentData) {
  2819. // position in data URI string of where mimeType ends
  2820. const mimeTypeEnd = attachmentData.indexOf(';');
  2821. // extract mimeType
  2822. return attachmentData.substring(5, mimeTypeEnd);
  2823. }
  2824. /**
  2825. * moves the attachment link to another element
  2826. *
  2827. * It is advisable to hide the attachment afterwards (AttachmentViewer.hideAttachment)
  2828. *
  2829. * @name AttachmentViewer.moveAttachmentTo
  2830. * @function
  2831. * @param {HTMLElement} element - the wrapper/container element where this should be moved to
  2832. * @param {array} attachment - attachment data
  2833. * @param {string} label - the text to show (%s will be replaced with the file name), will automatically be translated
  2834. */
  2835. me.moveAttachmentTo = function (element, attachment, label) {
  2836. const attachmentLink = document.createElement('a');
  2837. attachmentLink.className = 'alert-link';
  2838. attachmentLink.href = attachment[0];
  2839. attachmentLink.download = attachment[1];
  2840. // move element to new place
  2841. element.appendChild(attachmentLink);
  2842. // update text - ensuring no HTML is inserted into the text node
  2843. I18n._(attachmentLink, label, attachment[1]);
  2844. };
  2845. /**
  2846. * read files data as data URL using the FileReader API
  2847. *
  2848. * @name AttachmentViewer.readFileData
  2849. * @private
  2850. * @function
  2851. * @param {FileList[]} loadedFiles (optional) loaded files array
  2852. * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/FileReader#readAsDataURL()}
  2853. */
  2854. function readFileData(loadedFiles = []) {
  2855. // Clear old cache
  2856. me.removeAttachmentData();
  2857. if (typeof FileReader === 'undefined') {
  2858. // revert loading status…
  2859. me.hideAttachment();
  2860. me.hideAttachmentPreview();
  2861. Alert.showWarning('Your browser does not support uploading encrypted files. Please use a newer browser.');
  2862. return;
  2863. }
  2864. if (loadedFiles && loadedFiles.length > 0) {
  2865. const fileNames = loadedFiles.map((loadedFile => loadedFile.name));
  2866. printDragAndDropFileNames(fileNames);
  2867. } else {
  2868. const fileInput = document.getElementById('file');
  2869. if (fileInput && fileInput.files) {
  2870. loadedFiles = [...fileInput.files];
  2871. }
  2872. me.clearDragAndDrop();
  2873. }
  2874. if (loadedFiles.length > 0) {
  2875. files = loadedFiles;
  2876. loadedFiles.forEach((loadedFile, index) => {
  2877. const fileReader = new FileReader();
  2878. fileReader.onload = function (event) {
  2879. const dataURL = event.target.result;
  2880. if (dataURL) {
  2881. attachmentsData[index] = dataURL;
  2882. }
  2883. if (Editor.isPreview()) {
  2884. me.handleAttachmentPreview(attachmentPreview, dataURL);
  2885. attachmentPreview.classList.remove('hidden');
  2886. }
  2887. TopNav.highlightFileupload();
  2888. };
  2889. fileReader.readAsDataURL(loadedFile);
  2890. });
  2891. } else {
  2892. me.removeAttachmentData();
  2893. }
  2894. }
  2895. /**
  2896. * handle the preview of files decoded to blob that can either be an image, video, audio or pdf element
  2897. *
  2898. * @name AttachmentViewer.handleBlobAttachmentPreview
  2899. * @function
  2900. * @argument {HTMLElement?} targetElement element where the preview should be appended
  2901. * @argument {string} blobUrl as a blob URL
  2902. * @argument {string} mimeType type
  2903. */
  2904. me.handleBlobAttachmentPreview = function (targetElement, blobUrl, mimeType) {
  2905. if (!targetElement) {
  2906. console.log('Attachment preview element not found/disabled, cannot show attachment preview.');
  2907. return;
  2908. }
  2909. const alreadyIncludesCurrentAttachment = targetElement.querySelectorAll(`[src='${blobUrl}']`).length > 0;
  2910. if (blobUrl && !alreadyIncludesCurrentAttachment) {
  2911. if (mimeType.toLowerCase().startsWith('image/')) {
  2912. const image = document.createElement('img');
  2913. image.setAttribute('src', blobUrl);
  2914. image.setAttribute('class', 'img-thumbnail');
  2915. targetElement.appendChild(image);
  2916. } else if (mimeType.toLowerCase().startsWith('video/')) {
  2917. const video = document.createElement('video');
  2918. video.setAttribute('controls', 'true');
  2919. video.setAttribute('autoplay', 'true');
  2920. video.setAttribute('class', 'img-thumbnail');
  2921. const source = document.createElement('source');
  2922. source.setAttribute('type', mimeType);
  2923. source.setAttribute('src', blobUrl);
  2924. video.appendChild(source);
  2925. targetElement.appendChild(video);
  2926. } else if (mimeType.toLowerCase().startsWith('audio/')) {
  2927. const audio = document.createElement('audio');
  2928. audio.setAttribute('controls', 'true');
  2929. audio.setAttribute('autoplay', 'true');
  2930. const source = document.createElement('source');
  2931. source.setAttribute('type', mimeType);
  2932. source.setAttribute('src', blobUrl);
  2933. audio.appendChild(source);
  2934. targetElement.appendChild(audio);
  2935. } else if (mimeType.toLowerCase().endsWith('/pdf')) {
  2936. const embed = document.createElement('embed');
  2937. embed.setAttribute('src', blobUrl);
  2938. embed.setAttribute('type', 'application/pdf');
  2939. embed.setAttribute('class', 'pdfPreview');
  2940. // Fallback for browsers, that don't support the vh unit
  2941. embed.style.height = window.innerHeight + 'px';
  2942. targetElement.appendChild(embed);
  2943. }
  2944. }
  2945. };
  2946. /**
  2947. * attaches the file attachment drag & drop handler to the page
  2948. *
  2949. * @name AttachmentViewer.addDragDropHandler
  2950. * @private
  2951. * @function
  2952. */
  2953. function addDragDropHandler() {
  2954. if (typeof fileInput === 'undefined' || fileInput === null) {
  2955. return;
  2956. }
  2957. const handleDragEnterOrOver = function (event) {
  2958. event.stopPropagation();
  2959. event.preventDefault();
  2960. return false;
  2961. };
  2962. const handleDrop = function (event) {
  2963. event.stopPropagation();
  2964. event.preventDefault();
  2965. if (TopNav.isAttachmentReadonly()) {
  2966. return false;
  2967. }
  2968. if (fileInput) {
  2969. const files = [...event.dataTransfer.files];
  2970. //Clear the file input:
  2971. fileInput.value = '';
  2972. //Only works in Chrome:
  2973. //fileInput.files = event.dataTransfer.files;
  2974. readFileData(files);
  2975. }
  2976. };
  2977. draghover(document);
  2978. document.addEventListener('draghoverstart', function (e) {
  2979. if (TopNav.isAttachmentReadonly()) {
  2980. e.stopPropagation();
  2981. e.preventDefault();
  2982. return false;
  2983. }
  2984. // show dropzone to indicate drop support
  2985. dropzone.classList.remove('hidden');
  2986. });
  2987. document.addEventListener('draghoverend', function () {
  2988. dropzone.classList.add('hidden');
  2989. });
  2990. document.addEventListener('drop', handleDrop);
  2991. document.addEventListener('dragenter', handleDragEnterOrOver);
  2992. document.addEventListener('dragover', handleDragEnterOrOver);
  2993. fileInput.addEventListener('change', function () {
  2994. readFileData();
  2995. });
  2996. }
  2997. /**
  2998. * attaches the clipboard attachment handler to the page
  2999. *
  3000. * @name AttachmentViewer.addClipboardEventHandler
  3001. * @private
  3002. * @function
  3003. */
  3004. function addClipboardEventHandler() {
  3005. document.addEventListener('paste', (event) => {
  3006. const items = (event.clipboardData || event.originalEvent.clipboardData).items;
  3007. const files = [...items]
  3008. .filter(item => item.kind === 'file')
  3009. .map(item => item.getAsFile());
  3010. if (TopNav.isAttachmentReadonly() && files.length) {
  3011. event.stopPropagation();
  3012. event.preventDefault();
  3013. return false;
  3014. }
  3015. if (files.length) {
  3016. readFileData(files);
  3017. }
  3018. });
  3019. }
  3020. /**
  3021. * getter for attachment data
  3022. *
  3023. * @name AttachmentViewer.getAttachmentsData
  3024. * @function
  3025. * @return {string[]}
  3026. */
  3027. me.getAttachmentsData = function () {
  3028. return attachmentsData;
  3029. };
  3030. /**
  3031. * getter for attachment preview
  3032. *
  3033. * @name AttachmentViewer.getAttachmentPreview
  3034. * @function
  3035. * @return {HTMLElement}
  3036. */
  3037. me.getAttachmentPreview = function () {
  3038. return attachmentPreview;
  3039. };
  3040. /**
  3041. * getter for files data, returns the file list
  3042. *
  3043. * @name AttachmentViewer.getFiles
  3044. * @function
  3045. * @return {FileList[]}
  3046. */
  3047. me.getFiles = function () {
  3048. return files;
  3049. };
  3050. /**
  3051. * initiate
  3052. *
  3053. * preloads HTMLElements
  3054. *
  3055. * @name AttachmentViewer.init
  3056. * @function
  3057. */
  3058. me.init = function () {
  3059. attachment = document.getElementById('attachment');
  3060. dragAndDropFileNames = document.getElementById('dragAndDropFileName');
  3061. dropzone = document.getElementById('dropzone');
  3062. if (attachment) {
  3063. attachmentPreview = document.getElementById('attachmentPreview');
  3064. fileInput = document.getElementById('file');
  3065. addDragDropHandler();
  3066. addClipboardEventHandler();
  3067. }
  3068. }
  3069. return me;
  3070. })();
  3071. /**
  3072. * (view) Shows discussion thread and handles replies
  3073. *
  3074. * @name DiscussionViewer
  3075. * @class
  3076. */
  3077. const DiscussionViewer = (function () {
  3078. const me = {};
  3079. let commentTail,
  3080. discussion,
  3081. reply,
  3082. replyMessage,
  3083. replyNickname,
  3084. replyStatus,
  3085. commentContainer,
  3086. replyCommentId;
  3087. /**
  3088. * initializes the templates
  3089. *
  3090. * @name DiscussionViewer.initTemplates
  3091. * @private
  3092. * @function
  3093. */
  3094. function initTemplates() {
  3095. reply = Model.getTemplate('reply');
  3096. replyMessage = reply.querySelector('#replymessage');
  3097. replyNickname = reply.querySelector('#nickname');
  3098. replyStatus = reply.querySelector('#replystatus');
  3099. // cache elements
  3100. commentTail = Model.getTemplate('commenttail');
  3101. const replyButton = reply.querySelector('#replybutton');
  3102. if (replyButton) {
  3103. replyButton.addEventListener('click', PasteEncrypter.sendComment);
  3104. }
  3105. addEventListeners();
  3106. }
  3107. /**
  3108. * open the comment entry when clicking the "Reply" button of a comment
  3109. *
  3110. * @name DiscussionViewer.openReply
  3111. * @private
  3112. * @function
  3113. * @param {Event} event
  3114. */
  3115. function openReply(event) {
  3116. const source = event.currentTarget || event.target;
  3117. // show all reply buttons
  3118. commentContainer.querySelectorAll('button').forEach(btn => btn.classList.remove('hidden'));
  3119. // hide the current reply button
  3120. source.classList.add('hidden');
  3121. // clear input
  3122. replyMessage.value = '';
  3123. replyNickname.value = '';
  3124. // get comment id from source element
  3125. replyCommentId = source.parentElement.id.split('_')[1];
  3126. // move to correct position
  3127. const parent = source.parentNode;
  3128. if (parent && !reply.contains(source)) {
  3129. if (typeof source.after === 'function') {
  3130. source.after(reply);
  3131. } else if (source.nextSibling) {
  3132. parent.insertBefore(reply, source.nextSibling);
  3133. } else {
  3134. parent.appendChild(reply);
  3135. }
  3136. }
  3137. // show
  3138. reply.classList.remove('hidden');
  3139. replyMessage.focus();
  3140. event.preventDefault();
  3141. }
  3142. /**
  3143. * custom handler for displaying notifications in own status message area
  3144. *
  3145. * @name DiscussionViewer.handleNotification
  3146. * @function
  3147. * @param {string} alertType
  3148. * @return {Boolean|HTMLElement}
  3149. */
  3150. me.handleNotification = function (alertType) {
  3151. // ignore loading messages
  3152. if (alertType === 'loading') {
  3153. return false;
  3154. }
  3155. if (alertType === 'danger') {
  3156. replyStatus.classList.remove('alert-info');
  3157. replyStatus.classList.add('alert-danger');
  3158. const replyIcon = replyStatus.querySelector(':first-child');
  3159. if (replyIcon) {
  3160. replyIcon.classList.remove('glyphicon-alert');
  3161. replyIcon.classList.add('glyphicon-info-sign');
  3162. }
  3163. } else {
  3164. replyStatus.classList.remove('alert-danger');
  3165. replyStatus.classList.add('alert-info');
  3166. const replyIcon = replyStatus.querySelector(':first-child');
  3167. if (replyIcon) {
  3168. replyIcon.classList.remove('glyphicon-info-sign');
  3169. replyIcon.classList.add('glyphicon-alert');
  3170. }
  3171. }
  3172. return replyStatus;
  3173. };
  3174. /**
  3175. * adds another comment
  3176. *
  3177. * @name DiscussionViewer.addComment
  3178. * @function
  3179. * @param {Comment} comment
  3180. * @param {string} commentText
  3181. * @param {string} nickname
  3182. */
  3183. me.addComment = function (comment, commentText, nickname) {
  3184. if (commentText === '') {
  3185. commentText = 'comment decryption failed';
  3186. }
  3187. // create new comment based on template
  3188. const commentEntry = Model.getTemplate('comment');
  3189. if (!commentEntry) {
  3190. return;
  3191. }
  3192. commentEntry.id = 'comment_' + comment.id;
  3193. const commentEntryData = commentEntry.querySelector('div.commentdata');
  3194. if (!commentEntryData) {
  3195. return;
  3196. }
  3197. // set & parse text
  3198. commentEntryData.textContent = commentText;
  3199. Helper.urls2links(commentEntryData);
  3200. // set nickname
  3201. if (nickname.length > 0) {
  3202. const nicknameElement = commentEntry.querySelector('span.nickname');
  3203. if (nicknameElement) {
  3204. nicknameElement.textContent = nickname;
  3205. }
  3206. } else {
  3207. const anonCommenter = document.createElement('em');
  3208. anonCommenter.textContent = I18n._('Anonymous');
  3209. const nicknameElement = commentEntry.querySelector('span.nickname');
  3210. if (nicknameElement) {
  3211. nicknameElement.innerHTML = '';
  3212. nicknameElement.appendChild(anonCommenter);
  3213. }
  3214. }
  3215. // set date
  3216. const created = comment.getCreated();
  3217. const commentDate = created === 0 ? '' : ' (' + (new Date(created * 1000).toLocaleString()) + ')';
  3218. const dateSpan = commentEntry.querySelector('span.commentdate');
  3219. if (dateSpan) {
  3220. dateSpan.textContent = commentDate;
  3221. dateSpan.setAttribute('title', 'CommentID: ' + comment.id);
  3222. }
  3223. // if an avatar is available, display it
  3224. const icon = comment.getIcon();
  3225. if (icon) {
  3226. const image = document.createElement('img');
  3227. image.setAttribute('src', icon);
  3228. image.setAttribute('class', 'vizhash');
  3229. const nickSpan = commentEntry.querySelector('span.nickname');
  3230. if (nickSpan) {
  3231. nickSpan.prepend(' ');
  3232. nickSpan.prepend(image);
  3233. }
  3234. }
  3235. // starting point (default value/fallback)
  3236. let place = commentContainer;
  3237. // if parent comment exists
  3238. const parentComment = document.getElementById('comment_' + comment.parentid);
  3239. if (parentComment) {
  3240. // use parent as position for new comment, so it is shifted
  3241. // to the right
  3242. place = parentComment;
  3243. }
  3244. // attach button handler before inserting
  3245. const replyButton = commentEntry.querySelector('button');
  3246. if (replyButton) {
  3247. replyButton.addEventListener('click', openReply);
  3248. }
  3249. // finally append comment
  3250. place.appendChild(commentEntry);
  3251. };
  3252. /**
  3253. * finishes the discussion area after last comment
  3254. *
  3255. * @name DiscussionViewer.finishDiscussion
  3256. * @function
  3257. */
  3258. me.finishDiscussion = function () {
  3259. // add 'add new comment' area
  3260. const tail = commentTail.cloneNode(true);
  3261. const tailButton = tail.querySelector('button');
  3262. if (tailButton) {
  3263. tailButton.addEventListener('click', openReply);
  3264. }
  3265. commentContainer.appendChild(tail);
  3266. // show discussions
  3267. discussion.classList.remove('hidden');
  3268. };
  3269. /**
  3270. * removes the old discussion and prepares everything for creating a new
  3271. * one.
  3272. *
  3273. * @name DiscussionViewer.prepareNewDiscussion
  3274. * @function
  3275. */
  3276. me.prepareNewDiscussion = function () {
  3277. commentContainer.innerHTML = '';
  3278. discussion.classList.add('hidden');
  3279. // (re-)init templates
  3280. initTemplates();
  3281. };
  3282. /**
  3283. * returns the users message from the reply form
  3284. *
  3285. * @name DiscussionViewer.getReplyMessage
  3286. * @function
  3287. * @return {String}
  3288. */
  3289. me.getReplyMessage = function () {
  3290. return replyMessage.value;
  3291. };
  3292. /**
  3293. * returns the users nickname (if any) from the reply form
  3294. *
  3295. * @name DiscussionViewer.getReplyNickname
  3296. * @function
  3297. * @return {String}
  3298. */
  3299. me.getReplyNickname = function () {
  3300. return replyNickname.value;
  3301. };
  3302. /**
  3303. * returns the id of the parent comment the user is replying to
  3304. *
  3305. * @name DiscussionViewer.getReplyCommentId
  3306. * @function
  3307. * @return {number|undefined}
  3308. */
  3309. me.getReplyCommentId = function () {
  3310. return replyCommentId;
  3311. };
  3312. /**
  3313. * highlights a specific comment and scrolls to it if necessary
  3314. *
  3315. * @name DiscussionViewer.highlightComment
  3316. * @function
  3317. * @param {string} commentId
  3318. * @param {Boolean} fadeOut - whether to fade out the comment
  3319. */
  3320. me.highlightComment = function (commentId, fadeOut) {
  3321. const comment = document.getElementById('comment_' + commentId);
  3322. // in case comment does not exist, cancel
  3323. if (!comment) {
  3324. return;
  3325. }
  3326. comment.classList.add('highlight');
  3327. if (fadeOut === true) {
  3328. setTimeout(function () {
  3329. comment.classList.remove('highlight');
  3330. }, 300);
  3331. }
  3332. if (('checkVisibility' in comment ? comment.checkVisibility() : comment.offsetParent !== null) === false) {
  3333. if (typeof comment.scrollIntoView === 'function') {
  3334. comment.scrollIntoView({ block: 'center' });
  3335. }
  3336. }
  3337. };
  3338. /**
  3339. * Binds events to templates (**and** all )
  3340. */
  3341. function addEventListeners() {
  3342. //
  3343. document.querySelectorAll('#commenttail button')
  3344. .forEach(btn => btn.addEventListener('click', openReply));
  3345. document.querySelectorAll('#comment button')
  3346. .forEach(btn => btn.addEventListener('click', openReply));
  3347. }
  3348. /**
  3349. * initiate
  3350. *
  3351. * preloads HTML elements
  3352. *
  3353. * @name DiscussionViewer.init
  3354. * @function
  3355. */
  3356. me.init = function () {
  3357. // todo: remove
  3358. addEventListeners();
  3359. commentContainer = document.getElementById('commentcontainer');
  3360. discussion = document.getElementById('discussion');
  3361. };
  3362. return me;
  3363. })();
  3364. /**
  3365. * Manage top (navigation) bar
  3366. *
  3367. * @name TopNav
  3368. * @param {object} window
  3369. * @param {object} document
  3370. * @class
  3371. */
  3372. const TopNav = (function (window, document) {
  3373. const me = {};
  3374. let createButtonsDisplayed = false,
  3375. viewButtonsDisplayed = false,
  3376. burnAfterReadingDefault = false,
  3377. openDiscussionDefault = false,
  3378. attach,
  3379. burnAfterReading,
  3380. burnAfterReadingOption,
  3381. cloneButton,
  3382. customAttachment,
  3383. expiration,
  3384. fileRemoveButton,
  3385. fileWrap,
  3386. formatter,
  3387. newButton,
  3388. openDiscussion,
  3389. openDiscussionOption,
  3390. password,
  3391. passwordInput,
  3392. rawTextButton,
  3393. downloadTextButton,
  3394. qrCodeLink,
  3395. emailLink,
  3396. sendButton,
  3397. retryButton,
  3398. pasteExpiration = null,
  3399. retryButtonCallback;
  3400. /**
  3401. * set the expiration on bootstrap templates in dropdown
  3402. *
  3403. * @name TopNav.updateExpiration
  3404. * @private
  3405. * @function
  3406. * @param {Event} event
  3407. */
  3408. function updateExpiration(event) {
  3409. // get selected option
  3410. const target = event.target;
  3411. // update dropdown display and save new expiration time
  3412. const display = document.getElementById('pasteExpirationDisplay');
  3413. if (display) {
  3414. display.textContent = target.textContent;
  3415. }
  3416. pasteExpiration = target.getAttribute('data-expiration');
  3417. event.preventDefault();
  3418. }
  3419. /**
  3420. * set the format on bootstrap templates in dropdown from user interaction
  3421. *
  3422. * @name TopNav.updateFormat
  3423. * @private
  3424. * @function
  3425. * @param {Event} event
  3426. */
  3427. function updateFormat(event) {
  3428. // get selected option
  3429. const target = event.target;
  3430. // update dropdown display and save new format
  3431. const newFormat = target.getAttribute('data-format');
  3432. const display = document.getElementById('pasteFormatterDisplay');
  3433. if (display) {
  3434. display.textContent = target.textContent;
  3435. }
  3436. PasteViewer.setFormat(newFormat);
  3437. event.preventDefault();
  3438. }
  3439. /**
  3440. * when "burn after reading" is checked, disable discussion
  3441. *
  3442. * @name TopNav.changeBurnAfterReading
  3443. * @private
  3444. * @function
  3445. */
  3446. function changeBurnAfterReading() {
  3447. if (me.getBurnAfterReading()) {
  3448. if (openDiscussionOption) {
  3449. openDiscussionOption.classList.add('buttondisabled');
  3450. }
  3451. if (openDiscussion) {
  3452. openDiscussion.checked = false;
  3453. }
  3454. // if button is actually disabled, force-enable it and uncheck other button
  3455. if (burnAfterReadingOption) {
  3456. burnAfterReadingOption.classList.remove('buttondisabled');
  3457. }
  3458. } else {
  3459. if (openDiscussionOption) {
  3460. openDiscussionOption.classList.remove('buttondisabled');
  3461. }
  3462. }
  3463. }
  3464. /**
  3465. * when discussion is checked, disable "burn after reading"
  3466. *
  3467. * @name TopNav.changeOpenDiscussion
  3468. * @private
  3469. * @function
  3470. */
  3471. function changeOpenDiscussion() {
  3472. if (me.getOpenDiscussion()) {
  3473. if (burnAfterReadingOption) {
  3474. burnAfterReadingOption.classList.add('buttondisabled');
  3475. }
  3476. if (burnAfterReading) {
  3477. burnAfterReading.checked = false;
  3478. }
  3479. // if button is actually disabled, force-enable it and uncheck other button
  3480. if (openDiscussionOption) {
  3481. openDiscussionOption.classList.remove('buttondisabled');
  3482. }
  3483. } else {
  3484. if (burnAfterReadingOption) {
  3485. burnAfterReadingOption.classList.remove('buttondisabled');
  3486. }
  3487. }
  3488. }
  3489. /**
  3490. * Clear the password input in the top navigation
  3491. *
  3492. * @name TopNav.clearPasswordInput
  3493. * @function
  3494. */
  3495. function clearPasswordInput() {
  3496. if (passwordInput) {
  3497. passwordInput.value = '';
  3498. }
  3499. }
  3500. /**
  3501. * Clear the attachment input in the top navigation.
  3502. *
  3503. * @name TopNav.clearAttachmentInput
  3504. * @function
  3505. */
  3506. function clearAttachmentInput() {
  3507. // hide UI for selected files
  3508. const inputElement = fileWrap && fileWrap.querySelector('input');
  3509. if (inputElement) {
  3510. inputElement.value = '';
  3511. }
  3512. }
  3513. /**
  3514. * return raw text
  3515. *
  3516. * @name TopNav.rawText
  3517. * @private
  3518. * @function
  3519. */
  3520. function rawText() {
  3521. TopNav.hideAllButtons();
  3522. Alert.showLoading('Showing raw text…', 'time');
  3523. let paste = PasteViewer.getText();
  3524. // push a new state to allow back navigation with browser back button
  3525. history.pushState(
  3526. { type: 'raw' },
  3527. document.title,
  3528. // recreate document URL
  3529. Helper.baseUri() + '?' + Model.getPasteId() + '#' +
  3530. CryptTool.base58encode(Model.getPasteKey())
  3531. );
  3532. // we use text/html instead of text/plain to avoid a bug when
  3533. // reloading the raw text view (it reverts to type text/html)
  3534. const headElements = document.head.querySelectorAll(':not(noscript):not(script):not(link[type="text/css"])');
  3535. const newDoc = document.open('text/html', 'replace');
  3536. newDoc.write('<!DOCTYPE html><html><head>');
  3537. for (let i = 0; i < headElements.length; ++i) {
  3538. newDoc.write(headElements[i].outerHTML);
  3539. }
  3540. newDoc.write(
  3541. '</head><body><pre>' +
  3542. DOMPurify.sanitize(
  3543. Helper.htmlEntities(paste),
  3544. purifyHtmlConfig
  3545. ) +
  3546. '</pre></body></html>'
  3547. );
  3548. newDoc.close();
  3549. }
  3550. /**
  3551. * download text
  3552. *
  3553. * @name TopNav.downloadText
  3554. * @private
  3555. * @function
  3556. */
  3557. function downloadText() {
  3558. const fileFormat = PasteViewer.getFormat() === 'markdown' ? '.md' : '.txt';
  3559. const filename = 'document-' + Model.getPasteId() + fileFormat;
  3560. const text = PasteViewer.getText();
  3561. const element = document.createElement('a');
  3562. element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text));
  3563. element.setAttribute('download', filename);
  3564. element.style.display = 'none';
  3565. document.body.appendChild(element);
  3566. element.click();
  3567. document.body.removeChild(element);
  3568. }
  3569. /**
  3570. * saves the language in a cookie and reloads the page
  3571. *
  3572. * @name TopNav.setLanguage
  3573. * @private
  3574. * @function
  3575. * @param {Event} event
  3576. */
  3577. function setLanguage(event) {
  3578. let lang = event.target.getAttribute('data-lang') || event.target.value;
  3579. document.cookie = 'lang=' + lang + '; SameSite=Lax; Secure';
  3580. window.location.reload();
  3581. event.preventDefault();
  3582. }
  3583. /**
  3584. * save the template in a cookie and reloads the page
  3585. *
  3586. * @name TopNav.setTemplate
  3587. * @private
  3588. * @function
  3589. * @param {Event} event
  3590. */
  3591. function setTemplate(event) {
  3592. let template = event.target.getAttribute('data-template') || event.target.value;
  3593. document.cookie = 'template=' + template + '; SameSite=Lax; Secure';
  3594. window.location.reload();
  3595. event.preventDefault();
  3596. }
  3597. /**
  3598. * hides all messages and creates a new document
  3599. *
  3600. * @name TopNav.clickNewPaste
  3601. * @private
  3602. * @function
  3603. */
  3604. function clickNewPaste() {
  3605. Controller.hideStatusMessages();
  3606. Controller.newPaste();
  3607. }
  3608. /**
  3609. * retrys some callback registered before
  3610. *
  3611. * @name TopNav.clickRetryButton
  3612. * @private
  3613. * @function
  3614. * @param {Event} event
  3615. */
  3616. function clickRetryButton(event) {
  3617. retryButtonCallback(event);
  3618. }
  3619. /**
  3620. * removes the existing attachment
  3621. *
  3622. * @name TopNav.removeAttachment
  3623. * @private
  3624. * @function
  3625. * @param {Event} event
  3626. */
  3627. function removeAttachment(event) {
  3628. // if custom attachment is used, remove it first
  3629. if (customAttachment && !customAttachment.classList.contains('hidden')) {
  3630. AttachmentViewer.removeAttachment();
  3631. customAttachment.classList.add('hidden');
  3632. fileWrap.classList.remove('hidden');
  3633. }
  3634. // in any case, remove saved attachment data
  3635. AttachmentViewer.removeAttachmentData();
  3636. clearAttachmentInput();
  3637. AttachmentViewer.clearDragAndDrop();
  3638. // pevent '#' from appearing in the URL
  3639. event.preventDefault();
  3640. }
  3641. /**
  3642. * Shows the QR code of the current document (URL).
  3643. *
  3644. * @name TopNav.displayQrCode
  3645. * @private
  3646. * @function
  3647. */
  3648. function displayQrCode() {
  3649. const qrCanvas = kjua({
  3650. render: 'canvas',
  3651. text: window.location.href
  3652. });
  3653. const qrDisplay = document.getElementById('qrcode-display');
  3654. if (qrDisplay) {
  3655. qrDisplay.innerHTML = '';
  3656. qrDisplay.appendChild(qrCanvas);
  3657. }
  3658. }
  3659. /**
  3660. * Template Email body.
  3661. *
  3662. * @name TopNav.templateEmailBody
  3663. * @private
  3664. * @param {string} expirationDateString
  3665. * @param {bool} isBurnafterreading
  3666. */
  3667. function templateEmailBody(expirationDateString, isBurnafterreading) {
  3668. const EOL = '\n';
  3669. const BULLET = ' - ';
  3670. let emailBody = '';
  3671. if (expirationDateString !== null || isBurnafterreading) {
  3672. emailBody += I18n._('Notice:');
  3673. emailBody += EOL;
  3674. if (expirationDateString !== null) {
  3675. emailBody += EOL;
  3676. emailBody += BULLET;
  3677. // avoid DOMPurify mess with forward slash in expirationDateString
  3678. emailBody += Helper.sprintf(
  3679. I18n._(
  3680. 'This link will expire after %s.',
  3681. '%s'
  3682. ),
  3683. expirationDateString
  3684. );
  3685. }
  3686. if (isBurnafterreading) {
  3687. emailBody += EOL;
  3688. emailBody += BULLET;
  3689. emailBody += I18n._(
  3690. 'This link can only be accessed once, do not use back or refresh button in your browser.'
  3691. );
  3692. }
  3693. emailBody += EOL;
  3694. emailBody += EOL;
  3695. }
  3696. emailBody += I18n._('Link:');
  3697. emailBody += EOL;
  3698. const pasteUrlElement = document.getElementById('pasteurl');
  3699. emailBody += (pasteUrlElement && pasteUrlElement.getAttribute('href')) || window.location.href; // href is tried first as it might have been shortened
  3700. return emailBody;
  3701. }
  3702. /**
  3703. * Trigger Email send.
  3704. *
  3705. * @name TopNav.triggerEmailSend
  3706. * @private
  3707. * @param {string} emailBody
  3708. */
  3709. function triggerEmailSend(emailBody) {
  3710. window.open(
  3711. `mailto:?body=${encodeURIComponent(emailBody)}`,
  3712. '_self',
  3713. 'noopener, noreferrer'
  3714. );
  3715. }
  3716. /**
  3717. * Send Email with current document (URL).
  3718. *
  3719. * @name TopNav.sendEmail
  3720. * @private
  3721. * @function
  3722. * @param {Date|null} expirationDate date of expiration
  3723. * @param {bool} isBurnafterreading whether it is burn after reading
  3724. */
  3725. function sendEmail(expirationDate, isBurnafterreading) {
  3726. const expirationDateRoundedToSecond = new Date(expirationDate);
  3727. // round down at least 30 seconds to make up for the delay of request
  3728. expirationDateRoundedToSecond.setUTCSeconds(
  3729. expirationDateRoundedToSecond.getUTCSeconds() - 30
  3730. );
  3731. expirationDateRoundedToSecond.setUTCSeconds(0);
  3732. const emailconfirmmodal = document.getElementById('emailconfirmmodal');
  3733. if (expirationDate !== null) {
  3734. const emailconfirmTimezoneCurrent = emailconfirmmodal.querySelector('#emailconfirm-timezone-current');
  3735. const emailconfirmTimezoneUtc = emailconfirmmodal.querySelector('#emailconfirm-timezone-utc');
  3736. let localeConfiguration = { dateStyle: 'long', timeStyle: 'long' };
  3737. const bootstrap5EmailConfirmModal = typeof bootstrap !== 'undefined' && bootstrap.Tooltip && bootstrap.Tooltip.VERSION ?
  3738. new bootstrap.Modal(emailconfirmmodal) : null;
  3739. function sendEmailAndHideModal() {
  3740. const emailBody = templateEmailBody(
  3741. // we don't use Date.prototype.toUTCString() because we would like to avoid GMT
  3742. expirationDateRoundedToSecond.toLocaleString(
  3743. [], localeConfiguration
  3744. ), isBurnafterreading
  3745. );
  3746. if (bootstrap5EmailConfirmModal) {
  3747. bootstrap5EmailConfirmModal.hide();
  3748. }
  3749. triggerEmailSend(emailBody);
  3750. }
  3751. emailconfirmmodal.addEventListener('shown.bs.modal', () => {
  3752. emailconfirmTimezoneUtc.focus();
  3753. });
  3754. emailconfirmTimezoneCurrent.removeEventListener('click', sendEmailAndHideModal);
  3755. emailconfirmTimezoneCurrent.addEventListener('click', sendEmailAndHideModal);
  3756. emailconfirmTimezoneUtc.removeEventListener('click', sendEmailAndHideModal);
  3757. emailconfirmTimezoneUtc.addEventListener('click', () => {
  3758. localeConfiguration.timeZone = 'UTC';
  3759. sendEmailAndHideModal();
  3760. });
  3761. if (bootstrap5EmailConfirmModal) {
  3762. bootstrap5EmailConfirmModal.show();
  3763. }
  3764. } else {
  3765. triggerEmailSend(templateEmailBody(null, isBurnafterreading));
  3766. }
  3767. }
  3768. /**
  3769. * Shows all navigation elements for viewing an existing document
  3770. *
  3771. * @name TopNav.showViewButtons
  3772. * @function
  3773. */
  3774. me.showViewButtons = function () {
  3775. if (viewButtonsDisplayed) {
  3776. return;
  3777. }
  3778. newButton.classList.remove('hidden');
  3779. cloneButton.classList.remove('hidden');
  3780. rawTextButton.classList.remove('hidden');
  3781. downloadTextButton.classList.remove('hidden');
  3782. qrCodeLink.classList.remove('hidden');
  3783. viewButtonsDisplayed = true;
  3784. };
  3785. /**
  3786. * Hides all navigation elements for viewing an existing document
  3787. *
  3788. * @name TopNav.hideViewButtons
  3789. * @function
  3790. */
  3791. me.hideViewButtons = function () {
  3792. if (!viewButtonsDisplayed) {
  3793. return;
  3794. }
  3795. cloneButton.classList.add('hidden');
  3796. newButton.classList.add('hidden');
  3797. rawTextButton.classList.add('hidden');
  3798. downloadTextButton.classList.add('hidden');
  3799. qrCodeLink.classList.add('hidden');
  3800. me.hideEmailButton();
  3801. viewButtonsDisplayed = false;
  3802. };
  3803. /**
  3804. * Hides all elements belonging to existing documents
  3805. *
  3806. * @name TopNav.hideAllButtons
  3807. * @function
  3808. */
  3809. me.hideAllButtons = function () {
  3810. me.hideViewButtons();
  3811. me.hideCreateButtons();
  3812. };
  3813. /**
  3814. * shows all elements needed when creating a new document
  3815. *
  3816. * @name TopNav.showCreateButtons
  3817. * @function
  3818. */
  3819. me.showCreateButtons = function () {
  3820. if (createButtonsDisplayed) {
  3821. return;
  3822. }
  3823. if (attach) {
  3824. attach.classList.remove('hidden');
  3825. }
  3826. burnAfterReadingOption.classList.remove('hidden');
  3827. expiration.classList.remove('hidden');
  3828. formatter.classList.remove('hidden');
  3829. newButton.classList.remove('hidden');
  3830. openDiscussionOption.classList.remove('hidden');
  3831. password.classList.remove('hidden');
  3832. sendButton.classList.remove('hidden');
  3833. createButtonsDisplayed = true;
  3834. };
  3835. /**
  3836. * shows all elements needed when creating a new document
  3837. *
  3838. * @name TopNav.hideCreateButtons
  3839. * @function
  3840. */
  3841. me.hideCreateButtons = function () {
  3842. if (!createButtonsDisplayed) {
  3843. return;
  3844. }
  3845. newButton.classList.add('hidden');
  3846. sendButton.classList.add('hidden');
  3847. expiration.classList.add('hidden');
  3848. formatter.classList.add('hidden');
  3849. burnAfterReadingOption.classList.add('hidden');
  3850. openDiscussionOption.classList.add('hidden');
  3851. password.classList.add('hidden');
  3852. if (attach) {
  3853. attach.classList.add('hidden');
  3854. }
  3855. createButtonsDisplayed = false;
  3856. };
  3857. /**
  3858. * only shows the "new document" button
  3859. *
  3860. * @name TopNav.showNewPasteButton
  3861. * @function
  3862. */
  3863. me.showNewPasteButton = function () {
  3864. newButton.classList.remove('hidden');
  3865. };
  3866. /**
  3867. * only shows the "retry" button
  3868. *
  3869. * @name TopNav.showRetryButton
  3870. * @function
  3871. */
  3872. me.showRetryButton = function () {
  3873. retryButton.classList.remove('hidden');
  3874. }
  3875. /**
  3876. * hides the "retry" button
  3877. *
  3878. * @name TopNav.hideRetryButton
  3879. * @function
  3880. */
  3881. me.hideRetryButton = function () {
  3882. retryButton.classList.add('hidden');
  3883. }
  3884. /**
  3885. * show the "email" button
  3886. *
  3887. * @name TopNav.showEmailbutton
  3888. * @function
  3889. * @param {number|undefined} optionalRemainingTimeInSeconds
  3890. */
  3891. me.showEmailButton = function (optionalRemainingTimeInSeconds) {
  3892. try {
  3893. // we cache expiration date in closure to avoid inaccurate expiration datetime
  3894. const expirationDate = Helper.calculateExpirationDate(
  3895. new Date(),
  3896. typeof optionalRemainingTimeInSeconds === 'number' ? optionalRemainingTimeInSeconds : TopNav.getExpiration()
  3897. );
  3898. const isBurnafterreading = TopNav.getBurnAfterReading();
  3899. emailLink.classList.remove('hidden');
  3900. emailLink.removeEventListener('click', sendEmail);
  3901. emailLink.addEventListener('click', () => {
  3902. sendEmail(expirationDate, isBurnafterreading);
  3903. });
  3904. } catch (error) {
  3905. console.error(error);
  3906. Alert.showError('Cannot calculate expiration date.');
  3907. }
  3908. }
  3909. /**
  3910. * hide the "email" button
  3911. *
  3912. * @name TopNav.hideEmailButton
  3913. * @function
  3914. */
  3915. me.hideEmailButton = function () {
  3916. if (!emailLink) {
  3917. return;
  3918. }
  3919. emailLink.classList.add('hidden');
  3920. emailLink.removeEventListener('click', sendEmail);
  3921. }
  3922. /**
  3923. * only hides the clone button
  3924. *
  3925. * @name TopNav.hideCloneButton
  3926. * @function
  3927. */
  3928. me.hideCloneButton = function () {
  3929. cloneButton.classList.add('hidden');
  3930. };
  3931. /**
  3932. * only hides the raw text button
  3933. *
  3934. * @name TopNav.hideRawButton
  3935. * @function
  3936. */
  3937. me.hideRawButton = function () {
  3938. rawTextButton.classList.add('hidden');
  3939. };
  3940. /**
  3941. * only hides the download text button
  3942. *
  3943. * @name TopNav.hideRawButton
  3944. * @function
  3945. */
  3946. me.hideDownloadButton = function () {
  3947. downloadTextButton.classList.add('hidden');
  3948. };
  3949. /**
  3950. * only hides the qr code button
  3951. *
  3952. * @name TopNav.hideQrCodeButton
  3953. * @function
  3954. */
  3955. me.hideQrCodeButton = function () {
  3956. qrCodeLink.classList.add('hidden');
  3957. }
  3958. /**
  3959. * hide irrelevant buttons when viewing burn after reading document
  3960. *
  3961. * @name TopNav.hideBurnAfterReadingButtons
  3962. * @function
  3963. */
  3964. me.hideBurnAfterReadingButtons = function () {
  3965. me.hideCloneButton();
  3966. me.hideQrCodeButton();
  3967. me.hideEmailButton();
  3968. }
  3969. /**
  3970. * hides the file selector in attachment
  3971. *
  3972. * @name TopNav.hideFileSelector
  3973. * @function
  3974. */
  3975. me.hideFileSelector = function () {
  3976. fileWrap.classList.add('hidden');
  3977. };
  3978. /**
  3979. * shows the custom attachment
  3980. *
  3981. * @name TopNav.showCustomAttachment
  3982. * @function
  3983. */
  3984. me.showCustomAttachment = function () {
  3985. if (!customAttachment) {
  3986. return;
  3987. }
  3988. customAttachment.classList.remove('hidden');
  3989. };
  3990. /**
  3991. * hides the custom attachment
  3992. *
  3993. * @name TopNav.hideCustomAttachment
  3994. * @function
  3995. */
  3996. me.hideCustomAttachment = function () {
  3997. if (customAttachment) {
  3998. customAttachment.classList.add('hidden');
  3999. }
  4000. if (fileWrap) {
  4001. fileWrap.classList.remove('hidden');
  4002. }
  4003. };
  4004. /**
  4005. * collapses the navigation bar, only if expanded
  4006. *
  4007. * @name TopNav.collapseBar
  4008. * @function
  4009. */
  4010. me.collapseBar = function () {
  4011. const navbar = document.getElementById('navbar');
  4012. if (navbar && navbar.getAttribute('aria-expanded') === 'true') {
  4013. const toggle = document.querySelector('.navbar-toggle');
  4014. if (toggle) {
  4015. toggle.click();
  4016. }
  4017. }
  4018. };
  4019. /**
  4020. * Reset the top navigation back to it's default values.
  4021. *
  4022. * @name TopNav.resetInput
  4023. * @function
  4024. */
  4025. me.resetInput = function () {
  4026. clearAttachmentInput();
  4027. clearPasswordInput();
  4028. if (burnAfterReading) {
  4029. burnAfterReading.checked = burnAfterReadingDefault;
  4030. }
  4031. if (openDiscussion) {
  4032. openDiscussion.checked = openDiscussionDefault;
  4033. }
  4034. if (openDiscussionDefault || !burnAfterReadingDefault) {
  4035. openDiscussionOption.classList.remove('buttondisabled');
  4036. }
  4037. if (burnAfterReadingDefault || !openDiscussionDefault) {
  4038. burnAfterReadingOption.classList.remove('buttondisabled');
  4039. }
  4040. pasteExpiration = Model.getExpirationDefault() || pasteExpiration;
  4041. const pasteExpirationSelect = document.getElementById('pasteExpiration');
  4042. if (pasteExpirationSelect) {
  4043. pasteExpirationSelect.querySelectorAll('option').forEach((option) => {
  4044. if (option.value === pasteExpiration) {
  4045. const display = document.getElementById('pasteExpirationDisplay');
  4046. if (display) {
  4047. display.textContent = option.textContent;
  4048. }
  4049. }
  4050. });
  4051. }
  4052. };
  4053. /**
  4054. * returns the currently set expiration time
  4055. *
  4056. * @name TopNav.getExpiration
  4057. * @function
  4058. * @return {int}
  4059. */
  4060. me.getExpiration = function () {
  4061. return pasteExpiration;
  4062. };
  4063. /**
  4064. * returns the currently selected file(s)
  4065. *
  4066. * @name TopNav.getFileList
  4067. * @function
  4068. * @return {FileList|null}
  4069. */
  4070. me.getFileList = function () {
  4071. const file = document.getElementById('file');
  4072. // if no file given, return null
  4073. if (!file || !file.files || !file.files.length) {
  4074. return null;
  4075. }
  4076. // ensure the selected file is still accessible
  4077. if (!file.files[0]) {
  4078. return null;
  4079. }
  4080. return file.files;
  4081. };
  4082. /**
  4083. * returns the state of the burn after reading checkbox
  4084. *
  4085. * @name TopNav.getBurnAfterReading
  4086. * @function
  4087. * @return {bool}
  4088. */
  4089. me.getBurnAfterReading = function () {
  4090. return burnAfterReading ? !!burnAfterReading.checked : false;
  4091. };
  4092. /**
  4093. * returns the state of the discussion checkbox
  4094. *
  4095. * @name TopNav.getOpenDiscussion
  4096. * @function
  4097. * @return {bool}
  4098. */
  4099. me.getOpenDiscussion = function () {
  4100. return openDiscussion ? !!openDiscussion.checked : false;
  4101. };
  4102. /**
  4103. * returns the entered password
  4104. *
  4105. * @name TopNav.getPassword
  4106. * @function
  4107. * @return {string}
  4108. */
  4109. me.getPassword = function () {
  4110. // when password is disabled passwordInput.value will return undefined
  4111. return passwordInput && passwordInput.value || '';
  4112. };
  4113. /**
  4114. * returns the element where custom attachments can be placed
  4115. *
  4116. * Used by AttachmentViewer when an attachment is cloned here.
  4117. *
  4118. * @name TopNav.getCustomAttachment
  4119. * @function
  4120. * @return {HTMLElement}
  4121. */
  4122. me.getCustomAttachment = function () {
  4123. return customAttachment;
  4124. };
  4125. /**
  4126. * Set a function to call when the retry button is clicked.
  4127. *
  4128. * @name TopNav.setRetryCallback
  4129. * @function
  4130. * @param {function} callback
  4131. */
  4132. me.setRetryCallback = function (callback) {
  4133. retryButtonCallback = callback;
  4134. }
  4135. /**
  4136. * Highlight file upload
  4137. *
  4138. * @name TopNav.highlightFileupload
  4139. * @function
  4140. */
  4141. me.highlightFileupload = function () {
  4142. // visually indicate file uploaded
  4143. const attachDropdownToggle = attach && attach.querySelector('.dropdown-toggle');
  4144. if (attachDropdownToggle && attachDropdownToggle.getAttribute('aria-expanded') === 'false') {
  4145. if (Helper.isBootstrap5()) {
  4146. new bootstrap.Dropdown(attachDropdownToggle).toggle();
  4147. } else {
  4148. attachDropdownToggle.click();
  4149. }
  4150. }
  4151. fileWrap.classList.add('highlight');
  4152. setTimeout(function () {
  4153. fileWrap.classList.remove('highlight');
  4154. }, 300);
  4155. }
  4156. /**
  4157. * set the format on bootstrap templates in dropdown programmatically
  4158. *
  4159. * @name TopNav.setFormat
  4160. * @function
  4161. */
  4162. me.setFormat = function (format) {
  4163. if (Helper.isBootstrap5()) {
  4164. const select = formatter.querySelector('select');
  4165. if (select) {
  4166. select.value = format;
  4167. }
  4168. } else {
  4169. const formatLink = formatter.parentElement.querySelector(`a[data-format="${format}"]`);
  4170. if (formatLink) {
  4171. formatLink.click();
  4172. }
  4173. }
  4174. }
  4175. /**
  4176. * returns if attachment dropdown is readonly, not editable
  4177. *
  4178. * @name TopNav.isAttachmentReadonly
  4179. * @function
  4180. * @return {bool}
  4181. */
  4182. me.isAttachmentReadonly = function () {
  4183. return !createButtonsDisplayed || (attach && attach.classList.contains('hidden'));
  4184. }
  4185. /**
  4186. * init navigation manager
  4187. *
  4188. * preloads DOM elements
  4189. *
  4190. * @name TopNav.init
  4191. * @function
  4192. */
  4193. /**
  4194. * bind all navigation event listeners
  4195. *
  4196. * @name TopNav.bindEvents
  4197. * @private
  4198. * @function
  4199. */
  4200. function bindEvents() {
  4201. const languageDropdown = document.getElementById('language');
  4202. if (languageDropdown) {
  4203. languageDropdown.querySelectorAll('ul.dropdown-menu li a').forEach(link => {
  4204. link.addEventListener('click', setLanguage);
  4205. });
  4206. }
  4207. const templateDropdown = document.getElementById('template');
  4208. if (templateDropdown) {
  4209. templateDropdown.querySelectorAll('ul.dropdown-menu li a').forEach(link => {
  4210. link.addEventListener('click', setTemplate);
  4211. });
  4212. }
  4213. // bind events
  4214. if (burnAfterReading) {
  4215. burnAfterReading.addEventListener('change', changeBurnAfterReading);
  4216. }
  4217. if (openDiscussionOption) {
  4218. openDiscussionOption.addEventListener('change', changeOpenDiscussion);
  4219. }
  4220. if (newButton) {
  4221. newButton.addEventListener('click', clickNewPaste);
  4222. }
  4223. if (sendButton) {
  4224. sendButton.addEventListener('click', PasteEncrypter.sendPaste);
  4225. }
  4226. if (cloneButton) {
  4227. cloneButton.addEventListener('click', Controller.clonePaste);
  4228. }
  4229. if (rawTextButton) {
  4230. rawTextButton.addEventListener('click', rawText);
  4231. }
  4232. if (downloadTextButton) {
  4233. downloadTextButton.addEventListener('click', downloadText);
  4234. }
  4235. if (retryButton) {
  4236. retryButton.addEventListener('click', clickRetryButton);
  4237. }
  4238. if (fileRemoveButton) {
  4239. fileRemoveButton.addEventListener('click', removeAttachment);
  4240. }
  4241. if (qrCodeLink) {
  4242. qrCodeLink.addEventListener('click', displayQrCode);
  4243. }
  4244. if (Helper.isBootstrap5()) {
  4245. const pasteExpirationSelect = document.getElementById('pasteExpiration');
  4246. if (pasteExpirationSelect) {
  4247. pasteExpirationSelect.addEventListener('change', function () {
  4248. pasteExpiration = Model.getExpirationDefault();
  4249. });
  4250. }
  4251. const pasteFormatterSelect = document.getElementById('pasteFormatter');
  4252. if (pasteFormatterSelect) {
  4253. pasteFormatterSelect.addEventListener('change', function () {
  4254. PasteViewer.setFormat(Model.getFormatDefault());
  4255. });
  4256. }
  4257. } else {
  4258. // bootstrap template drop downs
  4259. if (expiration) {
  4260. expiration.parentElement.querySelectorAll('ul.dropdown-menu li a').forEach(link => {
  4261. link.addEventListener('click', updateExpiration);
  4262. });
  4263. }
  4264. if (formatter) {
  4265. formatter.parentElement.querySelectorAll('ul.dropdown-menu li a').forEach(link => {
  4266. link.addEventListener('click', updateFormat);
  4267. });
  4268. }
  4269. // page drop downs
  4270. const pasteExpirationSelect = document.getElementById('pasteExpiration');
  4271. if (pasteExpirationSelect) {
  4272. pasteExpirationSelect.addEventListener('change', function () {
  4273. pasteExpiration = Model.getExpirationDefault();
  4274. });
  4275. }
  4276. const pasteFormatterSelect = document.getElementById('pasteFormatter');
  4277. if (pasteFormatterSelect) {
  4278. pasteFormatterSelect.addEventListener('change', function () {
  4279. PasteViewer.setFormat(Model.getFormatDefault());
  4280. });
  4281. }
  4282. }
  4283. }
  4284. me.init = function () {
  4285. attach = document.getElementById('attach');
  4286. burnAfterReading = document.getElementById('burnafterreading');
  4287. burnAfterReadingOption = document.getElementById('burnafterreadingoption');
  4288. cloneButton = document.getElementById('clonebutton');
  4289. customAttachment = document.getElementById('customattachment');
  4290. expiration = document.getElementById('expiration');
  4291. fileRemoveButton = document.getElementById('fileremovebutton');
  4292. fileWrap = document.getElementById('filewrap');
  4293. formatter = document.getElementById('formatter');
  4294. newButton = document.getElementById('newbutton');
  4295. openDiscussion = document.getElementById('opendiscussion');
  4296. openDiscussionOption = document.getElementById('opendiscussionoption');
  4297. password = document.getElementById('password');
  4298. passwordInput = document.getElementById('passwordinput');
  4299. rawTextButton = document.getElementById('rawtextbutton');
  4300. downloadTextButton = document.getElementById('downloadtextbutton');
  4301. retryButton = document.getElementById('retrybutton');
  4302. sendButton = document.getElementById('sendbutton');
  4303. qrCodeLink = document.getElementById('qrcodelink');
  4304. emailLink = document.getElementById('emaillink');
  4305. bindEvents();
  4306. // initiate default state of checkboxes
  4307. changeBurnAfterReading();
  4308. changeOpenDiscussion();
  4309. // get default values from template or fall back to set value
  4310. burnAfterReadingDefault = me.getBurnAfterReading();
  4311. openDiscussionDefault = me.getOpenDiscussion();
  4312. pasteExpiration = Model.getExpirationDefault();
  4313. createButtonsDisplayed = false;
  4314. viewButtonsDisplayed = false;
  4315. };
  4316. return me;
  4317. })(window, document);
  4318. /**
  4319. * Responsible for AJAX requests, transparently handles encryption…
  4320. *
  4321. * @name ServerInteraction
  4322. * @class
  4323. */
  4324. const ServerInteraction = (function () {
  4325. const me = {};
  4326. let successFunc = null,
  4327. failureFunc = null,
  4328. symmetricKey = null,
  4329. url,
  4330. data,
  4331. password;
  4332. /**
  4333. * public variable ('constant') for errors to prevent magic numbers
  4334. *
  4335. * @name ServerInteraction.error
  4336. * @readonly
  4337. * @enum {Object}
  4338. */
  4339. me.error = {
  4340. okay: 0,
  4341. custom: 1,
  4342. unknown: 2,
  4343. serverError: 3
  4344. };
  4345. /**
  4346. * ajaxHeaders to send in AJAX requests
  4347. *
  4348. * @name ServerInteraction.ajaxHeaders
  4349. * @private
  4350. * @readonly
  4351. * @enum {Object}
  4352. */
  4353. const ajaxHeaders = {
  4354. 'X-Requested-With': 'JSONHttpRequest',
  4355. 'Content-Type': 'application/json'
  4356. };
  4357. /**
  4358. * called after successful upload
  4359. *
  4360. * @name ServerInteraction.success
  4361. * @private
  4362. * @function
  4363. * @param {int} status
  4364. * @param {int} result - optional
  4365. */
  4366. function success(status, result) {
  4367. if (successFunc !== null) {
  4368. // add useful data to result
  4369. result.encryptionKey = symmetricKey;
  4370. successFunc(status, result);
  4371. }
  4372. }
  4373. /**
  4374. * called after a upload failure
  4375. *
  4376. * @name ServerInteraction.fail
  4377. * @private
  4378. * @function
  4379. * @param {int} status - internal code
  4380. * @param {int} result - original error code
  4381. */
  4382. function fail(status, result) {
  4383. if (failureFunc !== null) {
  4384. failureFunc(status, result);
  4385. }
  4386. }
  4387. /**
  4388. * actually uploads the data
  4389. *
  4390. * @name ServerInteraction.run
  4391. * @function
  4392. */
  4393. me.run = function () {
  4394. let isPost = Object.keys(data).length > 0,
  4395. options = {
  4396. method: isPost ? 'POST' : 'GET',
  4397. headers: ajaxHeaders
  4398. };
  4399. if (isPost) {
  4400. options.body = JSON.stringify(data);
  4401. }
  4402. fetch(url, options)
  4403. .then(response => {
  4404. if (!response.ok) {
  4405. throw response;
  4406. }
  4407. return response.json();
  4408. })
  4409. .then(result => {
  4410. if (result.status === 0) {
  4411. success(0, result);
  4412. } else if (result.status === 1) {
  4413. fail(1, result);
  4414. } else {
  4415. fail(2, result);
  4416. }
  4417. })
  4418. .catch(error => {
  4419. console.error(error);
  4420. fail(3, error);
  4421. });
  4422. };
  4423. /**
  4424. * return currently set data, used in unit testing
  4425. *
  4426. * @name ServerInteraction.getData
  4427. * @function
  4428. */
  4429. me.getData = function () {
  4430. return data;
  4431. };
  4432. /**
  4433. * set success function
  4434. *
  4435. * @name ServerInteraction.setUrl
  4436. * @function
  4437. * @param {function} newUrl
  4438. */
  4439. me.setUrl = function (newUrl) {
  4440. url = newUrl;
  4441. };
  4442. /**
  4443. * sets the password to use (first value) and optionally also the
  4444. * encryption key (not recommended, it is automatically generated).
  4445. *
  4446. * Note: Call this after prepare() as prepare() resets these values.
  4447. *
  4448. * @name ServerInteraction.setCryptValues
  4449. * @function
  4450. * @param {string} newPassword
  4451. * @param {string} newKey - optional
  4452. */
  4453. me.setCryptParameters = function (newPassword, newKey) {
  4454. password = newPassword;
  4455. if (typeof newKey !== 'undefined') {
  4456. symmetricKey = newKey;
  4457. }
  4458. };
  4459. /**
  4460. * set success function
  4461. *
  4462. * @name ServerInteraction.setSuccess
  4463. * @function
  4464. * @param {function} func
  4465. */
  4466. me.setSuccess = function (func) {
  4467. successFunc = func;
  4468. };
  4469. /**
  4470. * set failure function
  4471. *
  4472. * @name ServerInteraction.setFailure
  4473. * @function
  4474. * @param {function} func
  4475. */
  4476. me.setFailure = function (func) {
  4477. failureFunc = func;
  4478. };
  4479. /**
  4480. * prepares a new upload
  4481. *
  4482. * Call this when doing a new upload to reset any data from potential
  4483. * previous uploads. Must be called before any other method of this
  4484. * module.
  4485. *
  4486. * @name ServerInteraction.prepare
  4487. * @function
  4488. * @return {object}
  4489. */
  4490. me.prepare = function () {
  4491. // entropy should already be checked!
  4492. // reset password
  4493. password = '';
  4494. // reset key, so it a new one is generated when it is used
  4495. symmetricKey = null;
  4496. // reset data
  4497. successFunc = null;
  4498. failureFunc = null;
  4499. url = Helper.baseUri();
  4500. data = {};
  4501. };
  4502. /**
  4503. * encrypts and sets the data
  4504. *
  4505. * @name ServerInteraction.setCipherMessage
  4506. * @async
  4507. * @function
  4508. * @param {object} cipherMessage
  4509. */
  4510. me.setCipherMessage = async function (cipherMessage) {
  4511. if (
  4512. symmetricKey === null ||
  4513. (typeof symmetricKey === 'string' && symmetricKey === '')
  4514. ) {
  4515. symmetricKey = CryptTool.getSymmetricKey();
  4516. }
  4517. if (!data.hasOwnProperty('adata')) {
  4518. data['adata'] = [];
  4519. }
  4520. let cipherResult = await CryptTool.cipher(symmetricKey, password, JSON.stringify(cipherMessage), data['adata']);
  4521. data['v'] = 2;
  4522. data['ct'] = cipherResult[0];
  4523. data['adata'] = cipherResult[1];
  4524. };
  4525. /**
  4526. * set the additional metadata to send unencrypted
  4527. *
  4528. * @name ServerInteraction.setUnencryptedData
  4529. * @function
  4530. * @param {string} index
  4531. * @param {mixed} element
  4532. */
  4533. me.setUnencryptedData = function (index, element) {
  4534. data[index] = element;
  4535. };
  4536. /**
  4537. * Helper, which parses shows a general error message based on the result of the ServerInteraction
  4538. *
  4539. * @name ServerInteraction.parseUploadError
  4540. * @function
  4541. * @param {int} status
  4542. * @param {object} data
  4543. * @param {string} doThisThing - a human description of the action, which was tried
  4544. * @return {array}
  4545. */
  4546. me.parseUploadError = function (status, data, doThisThing) {
  4547. let errorArray;
  4548. switch (status) {
  4549. case me.error.custom:
  4550. errorArray = ['Could not ' + doThisThing + ': %s', data.message];
  4551. break;
  4552. case me.error.unknown:
  4553. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('unknown status')];
  4554. break;
  4555. case me.error.serverError:
  4556. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('server error or not responding')];
  4557. break;
  4558. default:
  4559. errorArray = ['Could not ' + doThisThing + ': %s', I18n._('unknown error')];
  4560. break;
  4561. }
  4562. return errorArray;
  4563. };
  4564. return me;
  4565. })();
  4566. /**
  4567. * (controller) Responsible for encrypting document and sending it to server.
  4568. *
  4569. * Does upload, encryption is done transparently by ServerInteraction.
  4570. *
  4571. * @name PasteEncrypter
  4572. * @class
  4573. */
  4574. const PasteEncrypter = (function () {
  4575. const me = {};
  4576. /**
  4577. * called after successful document upload
  4578. *
  4579. * @name PasteEncrypter.showCreatedPaste
  4580. * @private
  4581. * @function
  4582. * @param {int} status
  4583. * @param {object} data
  4584. */
  4585. function showCreatedPaste(status, data) {
  4586. Alert.hideLoading();
  4587. Alert.hideMessages();
  4588. // show notification
  4589. const baseUri = Helper.baseUri() + '?',
  4590. url = baseUri + data.id + (TopNav.getBurnAfterReading() ? loadConfirmPrefix : '#') + CryptTool.base58encode(data.encryptionKey),
  4591. deleteUrl = baseUri + 'pasteid=' + data.id + '&deletetoken=' + data.deletetoken;
  4592. PasteStatus.createPasteNotification(url, deleteUrl);
  4593. // show new URL in browser bar
  4594. history.pushState({ type: 'newpaste' }, document.title, url);
  4595. TopNav.showViewButtons();
  4596. CopyToClipboard.setUrl(url);
  4597. CopyToClipboard.showKeyboardShortcutHint();
  4598. // this cannot be grouped with showViewButtons due to remaining time calculation
  4599. TopNav.showEmailButton();
  4600. TopNav.hideRawButton();
  4601. TopNav.hideDownloadButton();
  4602. Editor.hide();
  4603. PasteStatus.checkAutoShorten();
  4604. // parse and show text
  4605. // (preparation already done in me.sendPaste())
  4606. PasteViewer.run();
  4607. }
  4608. /**
  4609. * called after successful comment upload
  4610. *
  4611. * @name PasteEncrypter.showUploadedComment
  4612. * @private
  4613. * @function
  4614. * @param {int} status
  4615. * @param {object} data
  4616. */
  4617. function showUploadedComment(status, data) {
  4618. // show success message
  4619. Alert.showStatus('Comment posted.');
  4620. // reload document
  4621. Controller.refreshPaste(function () {
  4622. // highlight sent comment
  4623. DiscussionViewer.highlightComment(data.id, true);
  4624. // reset error handler
  4625. Alert.setCustomHandler(null);
  4626. });
  4627. }
  4628. /**
  4629. * send a reply in a discussion
  4630. *
  4631. * @name PasteEncrypter.sendComment
  4632. * @async
  4633. * @function
  4634. */
  4635. me.sendComment = async function () {
  4636. // get data
  4637. const plainText = DiscussionViewer.getReplyMessage();
  4638. // do not send if there is no data
  4639. if (plainText.length === 0) {
  4640. return;
  4641. }
  4642. let nickname = DiscussionViewer.getReplyNickname(),
  4643. parentid = DiscussionViewer.getReplyCommentId();
  4644. Alert.hideMessages();
  4645. Alert.setCustomHandler(DiscussionViewer.handleNotification);
  4646. // UI loading state
  4647. TopNav.hideAllButtons();
  4648. Alert.showLoading('Sending comment…', 'cloud-upload');
  4649. // prepare server interaction
  4650. ServerInteraction.prepare();
  4651. ServerInteraction.setCryptParameters(Prompt.getPassword(), Model.getPasteKey());
  4652. // set success/fail functions
  4653. ServerInteraction.setSuccess(showUploadedComment);
  4654. ServerInteraction.setFailure(function (status, data) {
  4655. // revert loading status…
  4656. Alert.hideLoading();
  4657. TopNav.showViewButtons();
  4658. // …show error message…
  4659. Alert.showError(
  4660. ServerInteraction.parseUploadError(status, data, 'post comment')
  4661. );
  4662. // …and reset error handler
  4663. Alert.setCustomHandler(null);
  4664. });
  4665. // fill it with unencrypted params
  4666. ServerInteraction.setUnencryptedData('pasteid', Model.getPasteId());
  4667. if (typeof parentid === 'undefined') {
  4668. // if parent id is not set, this is the top-most comment, so use
  4669. // document id as parent, as the root element of the discussion tree
  4670. ServerInteraction.setUnencryptedData('parentid', Model.getPasteId());
  4671. } else {
  4672. ServerInteraction.setUnencryptedData('parentid', parentid);
  4673. }
  4674. // prepare cypher message
  4675. let cipherMessage = {
  4676. 'comment': plainText
  4677. };
  4678. if (nickname.length > 0) {
  4679. cipherMessage['nickname'] = nickname;
  4680. }
  4681. await ServerInteraction.setCipherMessage(cipherMessage).catch(Alert.showError);
  4682. ServerInteraction.run();
  4683. };
  4684. /**
  4685. * sends a new document to server
  4686. *
  4687. * @name PasteEncrypter.sendPaste
  4688. * @async
  4689. * @function
  4690. */
  4691. me.sendPaste = async function () {
  4692. // hide previous (error) messages
  4693. Controller.hideStatusMessages();
  4694. // UI loading state
  4695. TopNav.hideAllButtons();
  4696. Alert.showLoading('Sending document…', 'cloud-upload');
  4697. TopNav.collapseBar();
  4698. // get data
  4699. const plainText = Editor.getText(),
  4700. format = PasteViewer.getFormat(),
  4701. // the methods may return different values if no files are attached (null, undefined or false)
  4702. files = TopNav.getFileList() || AttachmentViewer.getFiles() || AttachmentViewer.hasAttachmentData();
  4703. // do not send if there is no data
  4704. if (plainText.length === 0 && !files) {
  4705. // revert loading status…
  4706. Alert.hideLoading();
  4707. TopNav.showCreateButtons();
  4708. return;
  4709. }
  4710. // prepare server interaction
  4711. ServerInteraction.prepare();
  4712. ServerInteraction.setCryptParameters(TopNav.getPassword());
  4713. // set success/fail functions
  4714. ServerInteraction.setSuccess(showCreatedPaste);
  4715. ServerInteraction.setFailure(function (status, data) {
  4716. // revert loading status…
  4717. Alert.hideLoading();
  4718. TopNav.showCreateButtons();
  4719. // show error message
  4720. Alert.showError(
  4721. ServerInteraction.parseUploadError(status, data, 'create document')
  4722. );
  4723. });
  4724. // fill it with unencrypted submitted options
  4725. ServerInteraction.setUnencryptedData('adata', [
  4726. null, format,
  4727. TopNav.getOpenDiscussion() ? 1 : 0,
  4728. TopNav.getBurnAfterReading() ? 1 : 0
  4729. ]);
  4730. ServerInteraction.setUnencryptedData('meta', { 'expire': TopNav.getExpiration() });
  4731. // prepare PasteViewer for later preview
  4732. PasteViewer.setText(plainText);
  4733. PasteViewer.setFormat(format);
  4734. // prepare cypher message
  4735. let attachmentsData = AttachmentViewer.getAttachmentsData(),
  4736. cipherMessage = {
  4737. 'paste': plainText
  4738. };
  4739. if (attachmentsData.length) {
  4740. cipherMessage['attachment'] = attachmentsData;
  4741. cipherMessage['attachment_name'] = AttachmentViewer.getFiles().map(fileInfo => fileInfo.name);
  4742. } else if (AttachmentViewer.hasAttachment()) {
  4743. // fall back to cloned part
  4744. let attachments = AttachmentViewer.getAttachments();
  4745. cipherMessage['attachment'] = attachments.map(attachment => attachment[0]);
  4746. cipherMessage['attachment_name'] = attachments.map(attachment => attachment[1]);
  4747. cipherMessage['attachment'] = await Promise.all(cipherMessage['attachment'].map(async (attachment, i) => {
  4748. // we need to retrieve data from blob if browser already parsed it in memory
  4749. if (typeof attachment === 'string' && attachment.startsWith('blob:')) {
  4750. Alert.showStatus(
  4751. [
  4752. 'Retrieving cloned file \'%s\' from memory...',
  4753. cipherMessage['attachment_name'][i]
  4754. ],
  4755. 'copy'
  4756. );
  4757. try {
  4758. const blobData = await $.ajax({
  4759. type: 'GET',
  4760. url: attachment,
  4761. processData: false,
  4762. timeout: 10000,
  4763. dataType: 'binary',
  4764. xhrFields: {
  4765. withCredentials: false,
  4766. responseType: 'blob'
  4767. }
  4768. });
  4769. if (blobData instanceof window.Blob) {
  4770. const fileReading = new Promise(function (resolve, reject) {
  4771. const fileReader = new FileReader();
  4772. fileReader.onload = function (event) {
  4773. resolve(event.target.result);
  4774. };
  4775. fileReader.onerror = function (error) {
  4776. reject(error);
  4777. }
  4778. fileReader.readAsDataURL(blobData);
  4779. });
  4780. return await fileReading;
  4781. } else {
  4782. const error = 'Cannot process attachment data.';
  4783. Alert.showError(error);
  4784. throw new TypeError(error);
  4785. }
  4786. } catch (error) {
  4787. Alert.showError('Cannot retrieve attachment.');
  4788. throw error;
  4789. }
  4790. }
  4791. }));
  4792. }
  4793. // encrypt message
  4794. await ServerInteraction.setCipherMessage(cipherMessage).catch(Alert.showError);
  4795. // send data
  4796. ServerInteraction.run();
  4797. };
  4798. return me;
  4799. })();
  4800. /**
  4801. * (controller) Responsible for decrypting cipherdata and passing data to view.
  4802. *
  4803. * Only decryption, no download.
  4804. *
  4805. * @name PasteDecrypter
  4806. * @class
  4807. */
  4808. const PasteDecrypter = (function () {
  4809. const me = {};
  4810. /**
  4811. * decrypt data or prompts for password in case of failure
  4812. *
  4813. * @name PasteDecrypter.decryptOrPromptPassword
  4814. * @private
  4815. * @async
  4816. * @function
  4817. * @param {string} key
  4818. * @param {string} password - optional, may be an empty string
  4819. * @param {string} cipherdata
  4820. * @throws {string}
  4821. * @return {Promise<false|string>} false, when unsuccessful or string (decrypted data)
  4822. */
  4823. async function decryptOrPromptPassword(key, password, cipherdata) {
  4824. // try decryption without password
  4825. const plaindata = await CryptTool.decipher(key, password, cipherdata);
  4826. // if it fails, request password
  4827. if (plaindata.length === 0 && password.length === 0) {
  4828. // show prompt
  4829. Prompt.requestPassword();
  4830. // Thus, we cannot do anything yet, we need to wait for the user
  4831. // input.
  4832. return false;
  4833. }
  4834. // if all tries failed, we can only return an error
  4835. if (plaindata.length === 0) {
  4836. return false;
  4837. }
  4838. return plaindata;
  4839. }
  4840. /**
  4841. * decrypt the actual document text
  4842. *
  4843. * @name PasteDecrypter.decryptPaste
  4844. * @private
  4845. * @async
  4846. * @function
  4847. * @param {Paste} paste - document data in object form
  4848. * @param {string} key
  4849. * @param {string} password
  4850. * @throws {string}
  4851. * @return {Promise}
  4852. */
  4853. async function decryptPaste(paste, key, password) {
  4854. const pastePlain = await decryptOrPromptPassword(
  4855. key, password,
  4856. paste.getCipherData()
  4857. );
  4858. if (pastePlain === false) {
  4859. if (password.length === 0) {
  4860. throw 'waiting on user to provide a password';
  4861. } else {
  4862. Alert.hideLoading();
  4863. // reset password, so it can be re-entered
  4864. Prompt.reset();
  4865. TopNav.showRetryButton();
  4866. throw 'Could not decrypt data. Did you enter a wrong password? Retry with the button at the top.';
  4867. }
  4868. }
  4869. const pasteMessage = JSON.parse(pastePlain);
  4870. if (pasteMessage.hasOwnProperty('attachment') && pasteMessage.hasOwnProperty('attachment_name')) {
  4871. if (Array.isArray(pasteMessage.attachment) && Array.isArray(pasteMessage.attachment_name)) {
  4872. pasteMessage.attachment.forEach((attachment, key) => {
  4873. const attachment_name = pasteMessage.attachment_name[key];
  4874. AttachmentViewer.setAttachment(attachment, attachment_name);
  4875. });
  4876. } else {
  4877. // Continue to process attachment parameters as strings to ensure backward compatibility
  4878. AttachmentViewer.setAttachment(pasteMessage.attachment, pasteMessage.attachment_name);
  4879. }
  4880. AttachmentViewer.showAttachment();
  4881. }
  4882. PasteViewer.setFormat(paste.getFormat());
  4883. PasteViewer.setText(pasteMessage.paste);
  4884. PasteViewer.run();
  4885. }
  4886. /**
  4887. * decrypts all comments and shows them
  4888. *
  4889. * @name PasteDecrypter.decryptComments
  4890. * @private
  4891. * @async
  4892. * @function
  4893. * @param {Paste} paste - document data in object form
  4894. * @param {string} key
  4895. * @param {string} password
  4896. * @return {Promise}
  4897. */
  4898. async function decryptComments(paste, key, password) {
  4899. // remove potential previous discussion
  4900. DiscussionViewer.prepareNewDiscussion();
  4901. const commentDecryptionPromises = [];
  4902. // iterate over comments
  4903. for (let i = 0; i < paste.comments.length; ++i) {
  4904. const comment = new Comment(paste.comments[i]),
  4905. commentPromise = CryptTool.decipher(key, password, comment.getCipherData());
  4906. paste.comments[i] = comment;
  4907. commentDecryptionPromises.push(
  4908. commentPromise.then(function (commentJson) {
  4909. const commentMessage = JSON.parse(commentJson);
  4910. return [
  4911. commentMessage.comment || '',
  4912. commentMessage.nickname || ''
  4913. ];
  4914. })
  4915. );
  4916. }
  4917. return Promise.all(commentDecryptionPromises).then(function (plaintexts) {
  4918. for (let i = 0; i < paste.comments.length; ++i) {
  4919. if (plaintexts[i][0].length === 0) {
  4920. continue;
  4921. }
  4922. DiscussionViewer.addComment(
  4923. paste.comments[i],
  4924. plaintexts[i][0],
  4925. plaintexts[i][1]
  4926. );
  4927. }
  4928. document.addEventListener(I18n.languageLoadedEvent, function () {
  4929. const commentContainer = document.getElementById('commentcontainer');
  4930. if (!commentContainer) {
  4931. return;
  4932. }
  4933. commentContainer.querySelectorAll('img.vizhash')
  4934. .forEach(img => img.setAttribute('title', I18n._('Avatar generated from IP address')));
  4935. });
  4936. });
  4937. }
  4938. /**
  4939. * show decrypted text in the display area, including discussion (if open)
  4940. *
  4941. * @name PasteDecrypter.run
  4942. * @function
  4943. * @param {Paste} [paste] - (optional) object including comments to display (items = array with keys ('data','meta'))
  4944. */
  4945. me.run = function (paste) {
  4946. Alert.hideMessages();
  4947. Alert.setCustomHandler(null);
  4948. Alert.showLoading('Decrypting document…', 'cloud-download');
  4949. if (typeof paste === 'undefined' || paste.type === 'click') {
  4950. // get cipher data and wait until it is available
  4951. Model.getPasteData(me.run);
  4952. return;
  4953. }
  4954. let key = Model.getPasteKey(),
  4955. password = Prompt.getPassword(),
  4956. decryptionPromises = [];
  4957. TopNav.setRetryCallback(function () {
  4958. TopNav.hideRetryButton();
  4959. me.run(paste);
  4960. });
  4961. // Clear attachments to prevent duplicates
  4962. AttachmentViewer.removeAttachment();
  4963. // decrypt paste & attachments
  4964. decryptionPromises.push(decryptPaste(paste, key, password));
  4965. // if the discussion is opened on this document, display it
  4966. if (paste.isDiscussionEnabled()) {
  4967. decryptionPromises.push(decryptComments(paste, key, password));
  4968. }
  4969. // shows the remaining time (until) deletion
  4970. PasteStatus.showRemainingTime(paste);
  4971. CopyToClipboard.showKeyboardShortcutHint();
  4972. Promise.all(decryptionPromises)
  4973. .then(() => {
  4974. Alert.hideLoading();
  4975. TopNav.showViewButtons();
  4976. // discourage cloning (it cannot really be prevented)
  4977. if (paste.isBurnAfterReadingEnabled()) {
  4978. TopNav.hideBurnAfterReadingButtons();
  4979. } else {
  4980. // we have to pass in remaining_time here
  4981. TopNav.showEmailButton(paste.getTimeToLive());
  4982. }
  4983. // only offer adding comments, after document was successfully decrypted
  4984. if (paste.isDiscussionEnabled()) {
  4985. DiscussionViewer.finishDiscussion();
  4986. }
  4987. })
  4988. .catch((err) => {
  4989. // wait for the user to type in the password,
  4990. // then PasteDecrypter.run will be called again
  4991. Alert.showError(err);
  4992. });
  4993. };
  4994. return me;
  4995. })();
  4996. /**
  4997. *
  4998. * @name CopyToClipboard
  4999. * @class
  5000. */
  5001. const CopyToClipboard = (function () {
  5002. const me = {};
  5003. let copyButton,
  5004. copyLinkButton,
  5005. shortcutHint,
  5006. url;
  5007. /**
  5008. * Handle copy to clipboard button click
  5009. *
  5010. * @name CopyToClipboard.handleCopyButtonClick
  5011. * @private
  5012. * @function
  5013. */
  5014. function handleCopyButtonClick() {
  5015. if (!copyButton) return;
  5016. copyButton.addEventListener('click', function () {
  5017. const text = PasteViewer.getText();
  5018. saveToClipboard(text);
  5019. showAlertMessage('Document copied to clipboard');
  5020. });
  5021. }
  5022. /**
  5023. * Handle copy link to clipboard button click
  5024. *
  5025. * @name CopyToClipboard.handleCopyLinkButtonClick
  5026. * @private
  5027. * @function
  5028. */
  5029. function handleCopyLinkButtonClick() {
  5030. if (!copyLinkButton) return;
  5031. copyLinkButton.addEventListener('click', function () {
  5032. saveToClipboard(url);
  5033. showAlertMessage('Link copied to clipboard');
  5034. });
  5035. }
  5036. /**
  5037. * Handle CTRL+C/CMD+C keyboard shortcut
  5038. *
  5039. * @name CopyToClipboard.handleKeyboardShortcut
  5040. * @private
  5041. * @function
  5042. */
  5043. function handleKeyboardShortcut() {
  5044. document.addEventListener('copy', function () {
  5045. if (!isUserSelectedTextToCopy()) {
  5046. const text = PasteViewer.getText();
  5047. saveToClipboard(text);
  5048. showAlertMessage('Document copied to clipboard');
  5049. }
  5050. });
  5051. }
  5052. /**
  5053. * Check if user selected some text on the page to copy it
  5054. *
  5055. * @name CopyToClipboard.isUserSelectedTextToCopy
  5056. * @private
  5057. * @function
  5058. * @returns {boolean}
  5059. */
  5060. function isUserSelectedTextToCopy() {
  5061. let text = '';
  5062. if (window.getSelection) {
  5063. text = window.getSelection().toString();
  5064. } else if (document.selection && document.selection.type !== 'Control') {
  5065. text = document.selection.createRange().text;
  5066. }
  5067. return text.length > 0;
  5068. }
  5069. /**
  5070. * Save text to the clipboard
  5071. *
  5072. * @name CopyToClipboard.saveToClipboard
  5073. * @private
  5074. * @param {string} text
  5075. * @function
  5076. */
  5077. function saveToClipboard(text) {
  5078. navigator.clipboard.writeText(text);
  5079. }
  5080. /**
  5081. * Show alert message after text copy
  5082. *
  5083. * @name CopyToClipboard.showAlertMessage
  5084. * @private
  5085. * @param {string} message
  5086. * @function
  5087. */
  5088. function showAlertMessage(message) {
  5089. Alert.showStatus(message);
  5090. }
  5091. /**
  5092. * Show keyboard shortcut hint
  5093. *
  5094. * @name CopyToClipboard.showKeyboardShortcutHint
  5095. * @function
  5096. */
  5097. me.showKeyboardShortcutHint = function () {
  5098. shortcutHint.classList.remove('hidden');
  5099. };
  5100. /**
  5101. * Hide keyboard shortcut hint
  5102. *
  5103. * @name CopyToClipboard.showKeyboardShortcutHint
  5104. * @function
  5105. */
  5106. me.hideKeyboardShortcutHint = function () {
  5107. shortcutHint.classList.add('hidden');
  5108. };
  5109. /**
  5110. * Set document url
  5111. *
  5112. * @name CopyToClipboard.setUrl
  5113. * @param {string} newUrl
  5114. * @function
  5115. */
  5116. me.setUrl = function (newUrl) {
  5117. url = newUrl;
  5118. };
  5119. /**
  5120. * Initialize
  5121. *
  5122. * @name CopyToClipboard.init
  5123. * @function
  5124. */
  5125. me.init = function () {
  5126. copyButton = document.getElementById('copyShortcutHintBtn');
  5127. copyLinkButton = document.getElementById('copyLink');
  5128. shortcutHint = document.getElementById('copyShortcutHint');
  5129. handleCopyButtonClick();
  5130. handleCopyLinkButtonClick();
  5131. handleKeyboardShortcut();
  5132. };
  5133. return me;
  5134. })();
  5135. /**
  5136. *
  5137. * @name PasswordPeek
  5138. * @class
  5139. */
  5140. const PasswordPeek = (function () {
  5141. const me = {};
  5142. /**
  5143. * Switch between visible and hidden password
  5144. *
  5145. * @name PasswordPeek.handleRevealButtonClick
  5146. * @private
  5147. * @function
  5148. */
  5149. function handleRevealButtonClick() {
  5150. const element = this;
  5151. const inputGroup = element.closest('.input-group');
  5152. const passwordInput = inputGroup ? inputGroup.querySelector('.input-password') : null;
  5153. if (!passwordInput) {
  5154. return;
  5155. }
  5156. const isHidden = passwordInput.getAttribute('type') === 'password';
  5157. passwordInput.setAttribute('type', isHidden ? 'text' : 'password');
  5158. const tooltip = I18n._(isHidden ? 'Hide password' : 'Show password');
  5159. element.setAttribute('title', tooltip);
  5160. element.setAttribute('aria-label', tooltip);
  5161. // handle bootstrap 5 icons: eye & eye-slash
  5162. const buttonSvg = element.querySelector('use');
  5163. if (buttonSvg) {
  5164. const iconHref = buttonSvg.getAttribute('href');
  5165. if (iconHref) {
  5166. buttonSvg.setAttribute('href', isHidden ? `${iconHref}-slash` : iconHref.substring(0, iconHref.length - 6));
  5167. }
  5168. return;
  5169. }
  5170. // handle bootstrap 3 icons: eye-open & eye-close
  5171. const buttonSpan = element.querySelector('span');
  5172. if (buttonSpan) {
  5173. if (isHidden) {
  5174. buttonSpan.classList.add('glyphicon-eye-close');
  5175. buttonSpan.classList.remove('glyphicon-eye-open');
  5176. } else {
  5177. buttonSpan.classList.add('glyphicon-eye-open');
  5178. buttonSpan.classList.remove('glyphicon-eye-close');
  5179. }
  5180. }
  5181. }
  5182. /**
  5183. * Initialize
  5184. *
  5185. * @name PasswordPeek.init
  5186. * @function
  5187. */
  5188. me.init = function () {
  5189. const revealButton = document.querySelector('.toggle-password');
  5190. if (!revealButton) {
  5191. return;
  5192. }
  5193. revealButton.addEventListener('click', handleRevealButtonClick);
  5194. };
  5195. return me;
  5196. })();
  5197. /**
  5198. * (controller) main PrivateBin logic
  5199. *
  5200. * @name Controller
  5201. * @param {object} window
  5202. * @param {object} document
  5203. * @class
  5204. */
  5205. const Controller = (function (window, document) {
  5206. const me = {};
  5207. /**
  5208. * hides all status messages no matter which module showed them
  5209. *
  5210. * @name Controller.hideStatusMessages
  5211. * @function
  5212. */
  5213. me.hideStatusMessages = function () {
  5214. PasteStatus.hideMessages();
  5215. Alert.hideMessages();
  5216. CopyToClipboard.hideKeyboardShortcutHint();
  5217. };
  5218. /**
  5219. * creates a new document
  5220. *
  5221. * @name Controller.newPaste
  5222. * @function
  5223. */
  5224. me.newPaste = function () {
  5225. // Important: This *must not* run Alert.hideMessages() as previous
  5226. // errors from viewing a document should be shown.
  5227. TopNav.hideAllButtons();
  5228. Alert.showLoading('Preparing new document…', 'time');
  5229. PasteStatus.hideMessages();
  5230. PasteViewer.hide();
  5231. Editor.resetInput();
  5232. Editor.show();
  5233. Editor.focusInput();
  5234. AttachmentViewer.removeAttachment();
  5235. TopNav.resetInput();
  5236. // reset format
  5237. PasteViewer.setFormat('plaintext');
  5238. TopNav.setFormat('plaintext');
  5239. TopNav.showCreateButtons();
  5240. // newPaste could be called when user is on document clone editing view
  5241. TopNav.hideCustomAttachment();
  5242. AttachmentViewer.clearDragAndDrop();
  5243. AttachmentViewer.removeAttachmentData();
  5244. Alert.hideLoading();
  5245. // only push new state if we are coming from a different one
  5246. if (Helper.baseUri() !== window.location) {
  5247. history.pushState({ type: 'create' }, document.title, Helper.baseUri());
  5248. }
  5249. // clear discussion
  5250. DiscussionViewer.prepareNewDiscussion();
  5251. };
  5252. /**
  5253. * shows the loaded document
  5254. *
  5255. * @name Controller.showPaste
  5256. * @function
  5257. */
  5258. me.showPaste = function () {
  5259. try {
  5260. Model.getPasteKey();
  5261. } catch (err) {
  5262. console.error(err);
  5263. Alert.showError('Cannot decrypt document: Decryption key missing in URL (Did you use a redirector or an URL shortener which strips part of the URL?)');
  5264. return;
  5265. }
  5266. // check if we should request loading confirmation
  5267. if (window.location.hash.startsWith(loadConfirmPrefix)) {
  5268. Prompt.requestLoadConfirmation();
  5269. return;
  5270. }
  5271. // show proper elements on screen
  5272. PasteDecrypter.run();
  5273. };
  5274. /**
  5275. * refreshes the loaded document to show potential new data
  5276. *
  5277. * @name Controller.refreshPaste
  5278. * @function
  5279. * @param {function} callback
  5280. */
  5281. me.refreshPaste = function (callback) {
  5282. // save window position to restore it later
  5283. const orgPosition = window.scrollY;
  5284. Model.getPasteData(function (data) {
  5285. ServerInteraction.prepare();
  5286. ServerInteraction.setUrl(Helper.baseUri() + '?pasteid=' + Model.getPasteId());
  5287. ServerInteraction.setFailure(function (status, data) {
  5288. // revert loading status…
  5289. Alert.hideLoading();
  5290. TopNav.showViewButtons();
  5291. // show error message
  5292. Alert.showError(
  5293. ServerInteraction.parseUploadError(status, data, 'refresh display')
  5294. );
  5295. });
  5296. ServerInteraction.setSuccess(function (status, data) {
  5297. PasteDecrypter.run(new Paste(data));
  5298. // NOTE: callback needs to be called (with setTimeout) after a JS
  5299. // rendering cycle, as otherwise it would be called before the new content
  5300. // is actually rendered, which would cause problems when trying to e.g.
  5301. // highlight a comment right after refreshing the document, as the comment would not be in the DOM at that time.
  5302. // For scrolling, more timeout is used.
  5303. setTimeout(() => {
  5304. // restore position instantly (as the process should be instantly)
  5305. window.scrollTo({
  5306. top: orgPosition,
  5307. behavior: 'instant'
  5308. });
  5309. callback();
  5310. }, 10);
  5311. });
  5312. ServerInteraction.run();
  5313. }, false); // this false is important as it circumvents the cache
  5314. }
  5315. /**
  5316. * clone the current document
  5317. *
  5318. * @name Controller.clonePaste
  5319. * @function
  5320. */
  5321. me.clonePaste = function () {
  5322. TopNav.collapseBar();
  5323. TopNav.hideAllButtons();
  5324. // hide messages from previous document
  5325. me.hideStatusMessages();
  5326. // erase the id and the key in url
  5327. history.pushState({ type: 'clone' }, document.title, Helper.baseUri());
  5328. if (AttachmentViewer.hasAttachment()) {
  5329. const attachments = AttachmentViewer.getAttachments();
  5330. attachments.forEach(attachment => {
  5331. AttachmentViewer.moveAttachmentTo(
  5332. TopNav.getCustomAttachment(),
  5333. attachment,
  5334. 'Cloned: \'%s\''
  5335. );
  5336. });
  5337. TopNav.hideFileSelector();
  5338. AttachmentViewer.hideAttachment();
  5339. // NOTE: it also looks nice without removing the attachment
  5340. // but for a consistent display we remove it…
  5341. AttachmentViewer.hideAttachmentPreview();
  5342. TopNav.showCustomAttachment();
  5343. // show another status messages to make the user aware that the
  5344. // files were cloned too!
  5345. Alert.showStatus(
  5346. [
  5347. 'The cloned file \'%s\' was attached to this document.',
  5348. attachments.map(attachment => attachment[1]).join(', ')
  5349. ],
  5350. 'copy'
  5351. );
  5352. }
  5353. Editor.setText(PasteViewer.getText());
  5354. // also clone the format
  5355. TopNav.setFormat(PasteViewer.getFormat());
  5356. PasteViewer.hide();
  5357. Editor.show();
  5358. TopNav.showCreateButtons();
  5359. // clear discussion
  5360. DiscussionViewer.prepareNewDiscussion();
  5361. };
  5362. /**
  5363. * try initializing zlib or display a warning if it fails,
  5364. * extracted from main init to allow unit testing
  5365. *
  5366. * @name Controller.initZlib
  5367. * @function
  5368. */
  5369. me.initZlib = function () {
  5370. z = zlib.catch(function () {
  5371. if (document.body.dataset.compression !== 'none') {
  5372. Alert.showWarning('Your browser doesn\'t support WebAssembly, used for zlib compression. You can create uncompressed documents, but can\'t read compressed ones.');
  5373. }
  5374. });
  5375. }
  5376. /**
  5377. * application start
  5378. *
  5379. * @name Controller.init
  5380. * @function
  5381. */
  5382. me.init = function () {
  5383. // first load translations
  5384. I18n.loadTranslations();
  5385. // Add a hook to make all links open a new window
  5386. DOMPurify.addHook('afterSanitizeAttributes', function (node) {
  5387. // set all elements owning target to target=_blank
  5388. if ('target' in node && node.id !== 'pasteurl') {
  5389. node.setAttribute('target', '_blank');
  5390. }
  5391. // set non-HTML/MathML links to xlink:show=new
  5392. if (!node.hasAttribute('target')
  5393. && (node.hasAttribute('xlink:href')
  5394. || node.hasAttribute('href'))) {
  5395. node.setAttribute('xlink:show', 'new');
  5396. }
  5397. if ('rel' in node) {
  5398. node.setAttribute('rel', 'nofollow noopener noreferrer');
  5399. }
  5400. });
  5401. // center all modals
  5402. document.querySelectorAll('.modal').forEach(modal => {
  5403. modal.addEventListener('show.bs.modal', function (e) {
  5404. e.target.style.display = 'flex';
  5405. });
  5406. });
  5407. // initialize other modules/"classes"
  5408. Alert.init();
  5409. Model.init();
  5410. AttachmentViewer.init();
  5411. DiscussionViewer.init();
  5412. Editor.init();
  5413. PasteStatus.init();
  5414. PasteViewer.init();
  5415. Prompt.init();
  5416. TopNav.init();
  5417. UiHelper.init();
  5418. CopyToClipboard.init();
  5419. PasswordPeek.init();
  5420. // check for legacy browsers before going any further
  5421. if (!Legacy.Check.getInit()) {
  5422. // Legacy check didn't complete, wait and try again
  5423. setTimeout(init, 500);
  5424. return;
  5425. }
  5426. if (!Legacy.Check.getStatus()) {
  5427. // something major is wrong, stop right away
  5428. return;
  5429. }
  5430. me.initZlib();
  5431. // if delete token is passed (i.e. document has been deleted by this
  5432. // access), add an event listener for the 'new' document button in the alert
  5433. if (Model.hasDeleteToken()) {
  5434. const newFromAlert = document.getElementById('new-from-alert');
  5435. if (newFromAlert) {
  5436. newFromAlert.addEventListener('click', function () {
  5437. UiHelper.reloadHome();
  5438. });
  5439. }
  5440. return;
  5441. }
  5442. // check whether existing document needs to be shown
  5443. try {
  5444. Model.getPasteId();
  5445. } catch (e) {
  5446. // otherwise create a new document
  5447. return me.newPaste();
  5448. }
  5449. // always reload on back button to invalidate cache (protect burn after read document)
  5450. window.addEventListener('popstate', () => {
  5451. window.location.reload();
  5452. });
  5453. // display an existing document
  5454. return me.showPaste();
  5455. }
  5456. return me;
  5457. })(window, document);
  5458. return {
  5459. Helper: Helper,
  5460. I18n: I18n,
  5461. CryptTool: CryptTool,
  5462. Model: Model,
  5463. UiHelper: UiHelper,
  5464. Alert: Alert,
  5465. PasteStatus: PasteStatus,
  5466. Prompt: Prompt,
  5467. Editor: Editor,
  5468. PasteViewer: PasteViewer,
  5469. AttachmentViewer: AttachmentViewer,
  5470. DiscussionViewer: DiscussionViewer,
  5471. TopNav: TopNav,
  5472. ServerInteraction: ServerInteraction,
  5473. PasteEncrypter: PasteEncrypter,
  5474. PasteDecrypter: PasteDecrypter,
  5475. PasswordPeek: PasswordPeek,
  5476. CopyToClipboard: CopyToClipboard,
  5477. Controller: Controller
  5478. };
  5479. })();
  5480. // main application start, called when DOM is fully loaded
  5481. // skip auto-initialization in test environments (Node.js)
  5482. if (typeof module === 'undefined' || !module.exports) {
  5483. window.addEventListener('DOMContentLoaded', function () {
  5484. 'use strict';
  5485. // run main controller
  5486. window.PrivateBin.Controller.init();
  5487. });
  5488. }